bicgstab.h 769 B

1234567891011121314151617181920212223
  1. #ifndef _bicgstab__h_
  2. #define _bicgstab__h_
  3. int bi_cgstab_d( Matrix&, Vector&, Vector&, double );
  4. int bi_cgstab_c( CmplxMatrix&, CmplxVector&, CmplxVector&, double );
  5. int bi_cgstab_d_sparse( Matrix&, Vector&, Vector&, double, double );
  6. int bi_cgstab_c_sparse( CmplxMatrix&, CmplxVector&, CmplxVector&, double, double );
  7. int bi_cg_d( Matrix&, Vector&, Vector&, double );
  8. int bi_cg_c( CmplxMatrix&, CmplxVector&, CmplxVector&, double );
  9. int bi_cgstab_d_precond( Matrix&, Vector&, Vector&, double );
  10. int bi_cgstab_c_precond( CmplxMatrix&, CmplxVector&, CmplxVector&, double );
  11. int bi_cgstab_d_sparse_precond( Matrix&, Vector&, Vector&, double, double );
  12. int bi_cgstab_c_sparse_precond( CmplxMatrix&, CmplxVector&, CmplxVector&, double, double );
  13. #endif