Changeset 14797
- Timestamp:
- 04/29/13 18:29:01 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/toolkits/Solver.h
r14792 r14797 6 6 7 7 /*Headers:*/ 8 /*{{{*/9 8 #ifdef HAVE_CONFIG_H 10 9 #include <config.h> … … 13 12 #endif 14 13 #include "../../toolkits/toolkits.h" 15 /*}}}*/16 17 14 #include "./Matrix.h" 18 15 #include "./Vector.h" … … 30 27 31 28 public: 32 33 29 /*Constructors, destructors:*/ 34 /*Solver(){{{*/ 35 Solver(){ 30 Solver(){/*{{{*/ 36 31 } 37 32 /*}}}*/ 38 /*Solver(Matrix<doubletype>* Kff, Vector<doubletype>* pf, Vector<doubletype>* uf0,Vector<doubletype>* df, Parameters* parameters):{{{*/ 39 Solver(Matrix<doubletype>* Kff_in, Vector<doubletype>* pf_in, Vector<doubletype>* uf0_in,Vector<doubletype>* df_in, Parameters* parameters_in){ 33 Solver(Matrix<doubletype>* Kff_in, Vector<doubletype>* pf_in, Vector<doubletype>* uf0_in,Vector<doubletype>* df_in, Parameters* parameters_in){/*{{{*/ 40 34 41 35 /*In debugging mode, check that stiffness matrix and load vectors are not NULL (they can be empty)*/ … … 51 45 } 52 46 /*}}}*/ 53 /*~Solver(){{{*/ 54 ~Solver(){ 47 ~Solver(){/*{{{*/ 55 48 } 56 49 /*}}}*/ 57 50 58 51 /*Methods: */ 59 /*Vector<doubletype Solve(void): {{{*/ 60 Vector<doubletype>* Solve(){ 52 Vector<doubletype>* Solve(void){ /*{{{*/ 61 53 62 54 /*output: */ … … 88 80 /*allocate output pointer: */ 89 81 return uf; 90 91 82 } 92 83 /*}}}*/ 93 94 84 }; 95 96 97 98 99 85 #endif //#ifndef _SOLVER_H_
Note:
See TracChangeset
for help on using the changeset viewer.