Linear< T > Class Template Reference
#include <linear.h>
Public Member Functions | |
| Linear (EquationSystems &es) | |
| Linear (EquationSystems &es, const std::string &name, const unsigned int number) | |
| ~Linear () | |
Detailed Description
template<class T = Solver>
class Linear< T >
This is a generic class that defines a linear to be used in a simulation. A user can define a linear by deriving from this class and implementing certain functions.
Definition at line 44 of file linear.h.
Constructor & Destructor Documentation
template<class T >
| Linear< T >::Linear | ( | EquationSystems & | es | ) | [inline] |
template<class T >
| Linear< T >::Linear | ( | EquationSystems & | es, | |
| const std::string & | name, | |||
| const unsigned int | number | |||
| ) | [inline] |
Constructor. Requires a referece to the EquationSystems object.
Definition at line 82 of file linear.h.
00084 : 00085 T (es, name, number) 00086 { 00087 libmesh_deprecated(); 00088 }
The documentation for this class was generated from the following file: