Skip to content
Snippets Groups Projects
Commit 0cb27d6d authored by Sreekanth Arikatla's avatar Sreekanth Arikatla
Browse files

ENH: Add getType to the solver class

parent 1b021746
No related branches found
No related tags found
No related merge requests found
......@@ -106,6 +106,11 @@ public:
///
virtual bool isIterative() const = 0;
///
/// \brief Return the type of the solver
///
Type getType() { return m_type; };
protected:
Type m_type = Type::none; ///> Type of the scene object
double m_tolerance = 1.0e-4; ///> default tolerance
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment