00001 #ifndef __F_SGS_BB_LS_H__ 00002 #define __F_SGS_BB_LS_H__ 00003 00004 00033 #include <stdio.h> 00034 #include "F_SSOR_BB_LS.hpp" 00035 00036 class F_SGS_BB_LS : public F_SSOR_BB_LS 00037 { 00038 public: 00039 F_SGS_BB_LS(int maxIter, double epsilon, int type=0):F_SSOR_BB_LS(maxIter, 1.0, epsilon, type){} 00040 virtual ~F_SGS_BB_LS(){} 00041 }; 00042 00043 #endif 00044 00045 00046