Linear< T > Class Template Reference

#include <linear.h>

List of all members.

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.

Author:
Benjamin S. Kirk, 2003-2004.

Definition at line 44 of file linear.h.


Constructor & Destructor Documentation

template<class T >
Linear< T >::Linear ( EquationSystems es  )  [inline]

Constructor. Requires a reference to a system to be solved.

Definition at line 72 of file linear.h.

00072                                      : 
00073   T (es)
00074 {
00075 libmesh_deprecated();
00076 }

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 }

template<class T >
Linear< T >::~Linear (  )  [inline]

Destructor.

Definition at line 94 of file linear.h.

00095 {
00096 }


The documentation for this class was generated from the following file:

Site Created By: libMesh Developers
Last modified: November 25 2009 03:44:34.

Hosted By:
SourceForge.net Logo