7#ifndef __IPSYMLINEARSOLVER_HPP__
8#define __IPSYMLINEARSOLVER_HPP__
64 const std::string& prefix
87 Index numberOfNegEVals
100 Index numberOfNegEVals
103 std::vector<SmartPtr<const Vector> > rhsV(1);
105 std::vector<SmartPtr<Vector> > solV(1);
107 return MultiSolve(A, rhsV, solV, check_NegEVals, numberOfNegEVals);
This is the base class for all algorithm strategy objects.
This class stores a list of user set options.
Template class for Smart Pointers.
Base class for all derived symmetric linear solvers.
virtual bool IncreaseQuality()=0
Request to increase quality of solution for next solve.
virtual ~SymLinearSolver()
virtual Index NumberOfNegEVals() const =0
Number of negative eigenvalues detected during last factorization.
virtual ESymSolverStatus MultiSolve(const SymMatrix &A, std::vector< SmartPtr< const Vector > > &rhsV, std::vector< SmartPtr< Vector > > &solV, bool check_NegEVals, Index numberOfNegEVals)=0
Solve operation for multiple right hand sides.
virtual bool InitializeImpl(const OptionsList &options, const std::string &prefix)=0
Implementation of the initialization method that has to be overloaded by for each derived class.
ESymSolverStatus Solve(const SymMatrix &A, const Vector &rhs, Vector &sol, bool check_NegEVals, Index numberOfNegEVals)
Solve operation for a single right hand side.
virtual bool ProvidesInertia() const =0
Query whether inertia is computed by linear solver.
This is the base class for all derived symmetric matrix types.
This file contains a base class for all exceptions and a set of macros to help with exceptions.
ESymSolverStatus
Enum to report outcome of a linear solve.
@ SYMSOLVER_FATAL_ERROR
Unrecoverable error in linear solver occurred.
@ SYMSOLVER_SUCCESS
Successful solve.
@ SYMSOLVER_WRONG_INERTIA
The number of negative eigenvalues is not correct.
@ SYMSOLVER_SINGULAR
Matrix seems to be singular; solve was aborted.
@ SYMSOLVER_CALL_AGAIN
Call the solver interface again after the matrix values have been restored.
ipindex Index
Type of all indices of vectors, matrices etc.