Finite Element Domain Decomposition Library
FEDDLib
Loading...
Searching...
No Matches
LinearProblem_def.hpp
1#ifndef LINEARPROBLEM_DEF_hpp
2#define LINEARPROBLEM_DEF_hpp
3
12
13namespace FEDD {
14template<class SC,class LO,class GO,class NO>
15LinearProblem<SC,LO,GO,NO>::LinearProblem(CommConstPtr_Type comm):
16Problem<SC,LO,GO,NO>(comm,true)
17{}
18
19template<class SC,class LO,class GO,class NO>
20LinearProblem<SC,LO,GO,NO>::LinearProblem(ParameterListPtr_Type &parameterList, CommConstPtr_Type comm ):
21Problem<SC,LO,GO,NO>(parameterList, comm)
22{}
23
24template<class SC,class LO,class GO,class NO>
25LinearProblem<SC,LO,GO,NO>::~LinearProblem(){
26
27}
28}
29#endif
Definition Problem_decl.hpp:42
Adaptive Mesh Refinement.
Definition AdaptiveMeshRefinement_decl.hpp:36