00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040 #ifndef Linear_h
00041 #define Linear_h
00042
00043 #include <EquiSolnAlgo.h>
00044
00071 class Linear: public EquiSolnAlgo
00072 {
00073 public:
00079 Linear();
00080
00085 ~Linear();
00086
00087
00094 int solveCurrentStep(void);
00095
00097 void setTest(ConvergenceTest &theNewTest);
00098
00099
00101 virtual int sendSelf(int commitTag, Channel &theChannel);
00103 virtual int recvSelf(int commitTag, Channel &theChannel,
00104 FEM_ObjectBroker &theBroker);
00105
00107 void Print(ostream &s, int flag =0);
00108
00109 protected:
00110
00111 private:
00112
00113 };
00114
00115 #endif
00116
00117