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 #ifndef FullGenLinLapackSolver_h
00039 #define FullGenLinLapackSolver_h
00040
00041 #include <FullGenLinSolver.h>
00042
00104 class FullGenLinLapackSolver : public FullGenLinSolver
00105 {
00106 public:
00108 FullGenLinLapackSolver();
00109
00111 ~FullGenLinLapackSolver();
00112
00114 int solve(void);
00116 int setSize(void);
00117
00119 int sendSelf(int commitTag, Channel &theChannel);
00121 int recvSelf(int commitTag, Channel &theChannel,
00122 FEM_ObjectBroker &theBroker);
00123
00124 protected:
00125
00126 private:
00128 int *iPiv;
00130 int sizeIpiv;
00131 };
00132
00133 #endif
00134