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 BandGenLinLapackSolver_h
00039 #define BandGenLinLapackSolver_h
00040
00041 #include <BandGenLinSolver.h>
00042
00102 class BandGenLinLapackSolver : public BandGenLinSolver
00103 {
00104 public:
00106 BandGenLinLapackSolver();
00107
00109 ~BandGenLinLapackSolver();
00110
00112 int solve(void);
00114 int setSize(void);
00115
00117 int sendSelf(int commitTag, Channel &theChannel);
00119 int recvSelf(int commitTag, Channel &theChannel,
00120 FEM_ObjectBroker &theBroker);
00121
00122 protected:
00123
00124 private:
00126 int *iPiv;
00128 int iPivSize;
00129 };
00130
00131 #endif
00132