00001 #ifndef __F_GmresR_LS_H__ 00002 #define __F_GmresR_LS_H__ 00003 00004 00041 #include <stdio.h> 00042 #include "F_GmresStar_LS.hpp" 00043 00044 00045 class F_GmresR_LS : public F_GmresStar_LS 00046 { 00047 public: 00048 F_GmresR_LS(int maxIterations, int l=5, int innerIter=10, int m=10, double epsilon=1.0e-4): 00049 F_GmresStar_LS(maxIterations, l, "GMRES(m)", innerIter, epsilon){} 00050 virtual ~F_GmresR_LS(){} 00051 }; 00052 00053 #endif 00054