#include <EqSolver.h>
List of all members.
Detailed Description
Definition at line 49 of file EqSolver.h.
Constructor & Destructor Documentation
standard constructor
Definition at line 36 of file EqSolver.cpp.
: m_argum ( arg )
, m_eqs ( &funcs )
, m_jac ()
{
const size_t N = funcs.size () ;
for( size_t i = 0 ; i < N ; ++i )
{
Equations last;
for( size_t j = 0 ; j < N ; ++j )
{
Genfun::GENFUNCTION fij = funcs[i]->partial(j);
last.push_back( fij.clone() ) ;
}
m_jac.push_back( last );
}
}
| EqSolver::EqSolverMisc::~EqSolverMisc |
( |
) |
|
Definition at line 57 of file EqSolver.cpp.
{
while( !m_jac.empty() )
{
Equations& last = m_jac.back() ;
while( !last.empty() )
{
delete last.back() ;
last.pop_back () ;
}
m_jac.pop_back();
}
}
| EqSolver::EqSolverMisc::EqSolverMisc |
( |
) |
[private] |
| EqSolver::EqSolverMisc::EqSolverMisc |
( |
const EqSolverMisc & |
) |
[private] |
Member Function Documentation
| const Arg& EqSolver::EqSolverMisc::argument |
( |
) |
const [inline] |
| Arg& EqSolver::EqSolverMisc::argument |
( |
) |
[inline] |
| const Equations* EqSolver::EqSolverMisc::equations |
( |
) |
const [inline] |
| const Jacobi& EqSolver::EqSolverMisc::jacobi |
( |
) |
const [inline] |
Member Data Documentation
The documentation for this class was generated from the following files:
- /afs/cern.ch/sw/Gaudi/releases/GAUDI/GAUDI_v23r3/GaudiGSL/src/Components/EqSolver.h
- /afs/cern.ch/sw/Gaudi/releases/GAUDI/GAUDI_v23r3/GaudiGSL/src/Components/EqSolver.cpp