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