feat(polySolver): getters for polySolver
This commit is contained in:
@@ -40,6 +40,10 @@ public:
|
|||||||
PolySolver(double n, double order);
|
PolySolver(double n, double order);
|
||||||
~PolySolver();
|
~PolySolver();
|
||||||
void solve();
|
void solve();
|
||||||
|
mfem::Mesh& getMesh() { return mesh; }
|
||||||
|
mfem::GridFunction& getSolution() { return *u; }
|
||||||
|
double getN() { return n; }
|
||||||
|
double getOrder() { return order; }
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // POLYSOLVER_H
|
#endif // POLYSOLVER_H
|
||||||
Reference in New Issue
Block a user