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