libMesh::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 libMesh::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 45 of file linear.h.


Constructor & Destructor Documentation

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

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

Definition at line 74 of file linear.h.

00074                                      :
00075   T (es)
00076 {
00077 libmesh_deprecated();
00078 }

template<class T >
libMesh::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 84 of file linear.h.

00086                                               :
00087   T (es, name, number)
00088 {
00089 libmesh_deprecated();
00090 }

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

Destructor.

Definition at line 96 of file linear.h.

00097 {
00098 }


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

Site Created By: libMesh Developers
Last modified: February 05 2013 19:55:28 UTC

Hosted By:
SourceForge.net Logo