Ipopt  3.11.9
IpPardisoSolverInterface.hpp
Go to the documentation of this file.
1 // Copyright (C) 2004, 2010 International Business Machines and others.
2 // All Rights Reserved.
3 // This code is published under the Eclipse Public License.
4 //
5 // $Id: IpPardisoSolverInterface.hpp 1861 2010-12-21 21:34:47Z andreasw $
6 //
7 // Authors: Carl Laird, Andreas Waechter IBM 2005-03-17
8 
9 
10 #ifndef __IPPARDISOSOLVERINTERFACE_HPP__
11 #define __IPPARDISOSOLVERINTERFACE_HPP__
12 
14 
15 //#define PARDISO_MATCHING_PREPROCESS
16 
17 namespace Ipopt
18 {
19 
25  {
26  public:
31 
35 
37  bool InitializeImpl(const OptionsList& options,
38  const std::string& prefix);
39 
40 
45  const Index *ia,
46  const Index *ja);
47 
50  virtual double* GetValuesArrayPtr();
51 
53  virtual ESymSolverStatus MultiSolve(bool new_matrix,
54  const Index* ia,
55  const Index* ja,
56  Index nrhs,
57  double* rhs_vals,
58  bool check_NegEVals,
59  Index numberOfNegEVals);
60 
64  virtual Index NumberOfNegEVals() const;
66 
67  //* @name Options of Linear solver */
69 
71  virtual bool IncreaseQuality();
72 
76  virtual bool ProvidesInertia() const
77  {
78  return true;
79  }
84  {
85  return CSR_Format_1_Offset;
86  }
88 
93 
94  private:
105 
109 
114 
117 
119  double* a_;
121 
122 #ifdef PARDISO_MATCHING_PREPROCESS
123 
124  ipfint* ia2;
125  ipfint* ja2;
126  double* a2_;
127  ipfint* perm2;
128  double* scale2;
129 
130 #endif
131 
137 
142  {
145  CONSTRAINT
146  };
168 
175 
179  void** PT_;
190  double* DPARM_;
194 
200 
206  const Index* ja);
207 
211  const Index* ja,
212  bool check_NegEVals,
213  Index numberOfNegEVals);
214 
218  const Index* ja,
219  Index nrhs,
220  double *rhs_vals);
222  };
223 
224 } // namespace Ipopt
225 #endif
Ipopt::PardisoSolverInterface::Solve
ESymSolverStatus Solve(const Index *ia, const Index *ja, Index nrhs, double *rhs_vals)
Call Pardiso to do the Solve.
Ipopt::ESymSolverStatus
ESymSolverStatus
Enum to report outcome of a linear solve.
Definition: IpSymLinearSolver.hpp:21
Ipopt::PardisoSolverInterface::MAXFCT_
ipfint MAXFCT_
Maximal number of factors with identical nonzero structure.
Definition: IpPardisoSolverInterface.hpp:182
Ipopt::SparseSymLinearSolverInterface::EMatrixFormat
EMatrixFormat
Enum to specify sparse matrix format.
Definition: IpSparseSymLinearSolverInterface.hpp:102
Ipopt::PardisoSolverInterface::debug_last_iter_
Index debug_last_iter_
Definition: IpPardisoSolverInterface.hpp:197
Ipopt::PardisoSolverInterface::operator=
void operator=(const PardisoSolverInterface &)
Overloaded Equals Operator.
Ipopt::PardisoSolverInterface::GetValuesArrayPtr
virtual double * GetValuesArrayPtr()
Method returing an internal array into which the nonzero elements are to be stored.
Ipopt::PardisoSolverInterface::CONSTRAINT
@ CONSTRAINT
Definition: IpPardisoSolverInterface.hpp:145
Ipopt::PardisoSolverInterface::IncreaseQuality
virtual bool IncreaseQuality()
Request to increase quality of solution for next solve.
Ipopt::PardisoSolverInterface::PardisoSolverInterface
PardisoSolverInterface(const PardisoSolverInterface &)
Copy Constructor.
Ipopt
Definition: matlabjournal.hpp:14
Ipopt::PardisoSolverInterface::PardisoSolverInterface
PardisoSolverInterface()
Constructor.
Ipopt::PardisoSolverInterface::DPARM_
double * DPARM_
Parameter and info array for Pardiso.
Definition: IpPardisoSolverInterface.hpp:190
Ipopt::PardisoSolverInterface::ProvidesInertia
virtual bool ProvidesInertia() const
Query whether inertia is computed by linear solver.
Definition: IpPardisoSolverInterface.hpp:76
Ipopt::PardisoSolverInterface::match_strat_
PardisoMatchingStrategy match_strat_
Option that controls the matching strategy.
Definition: IpPardisoSolverInterface.hpp:148
Ipopt::PardisoSolverInterface::COMPLETE
@ COMPLETE
Definition: IpPardisoSolverInterface.hpp:143
Ipopt::PardisoSolverInterface::SymbolicFactorization
ESymSolverStatus SymbolicFactorization(const Index *ia, const Index *ja)
Call Pardiso to do the analysis phase.
Ipopt::SparseSymLinearSolverInterface::CSR_Format_1_Offset
@ CSR_Format_1_Offset
Compressed sparse row format for lower triangular part, with 1 offset.
Definition: IpSparseSymLinearSolverInterface.hpp:110
Ipopt::SparseSymLinearSolverInterface
Base class for interfaces to symmetric indefinite linear solvers for sparse matrices.
Definition: IpSparseSymLinearSolverInterface.hpp:99
Ipopt::PardisoSolverInterface::InitializeStructure
virtual ESymSolverStatus InitializeStructure(Index dim, Index nonzeros, const Index *ia, const Index *ja)
Method for initializing internal stuctures.
Ipopt::PardisoSolverInterface::dim_
Index dim_
Number of rows and columns of the matrix.
Definition: IpPardisoSolverInterface.hpp:113
Ipopt::PardisoSolverInterface::RegisterOptions
static void RegisterOptions(SmartPtr< RegisteredOptions > roptions)
Methods for IpoptType.
Ipopt::PardisoSolverInterface::Factorization
ESymSolverStatus Factorization(const Index *ia, const Index *ja, bool check_NegEVals, Index numberOfNegEVals)
Call Pardiso to factorize the Matrix.
Ipopt::PardisoSolverInterface::NumberOfNegEVals
virtual Index NumberOfNegEVals() const
Number of negative eigenvalues detected during last factorization.
Ipopt::Index
int Index
Type of all indices of vectors, matrices etc.
Definition: IpTypes.hpp:19
Ipopt::PardisoSolverInterface::COMPLETE2x2
@ COMPLETE2x2
Definition: IpPardisoSolverInterface.hpp:144
Ipopt::PardisoSolverInterface::skip_inertia_check_
bool skip_inertia_check_
Flag indicating if the interia is always assumed to be correct.
Definition: IpPardisoSolverInterface.hpp:161
Ipopt::PardisoSolverInterface
Interface to the linear solver Pardiso, derived from SparseSymLinearSolverInterface.
Definition: IpPardisoSolverInterface.hpp:25
Ipopt::PardisoSolverInterface::initialized_
bool initialized_
Flag indicating if internal data is initialized.
Definition: IpPardisoSolverInterface.hpp:173
Ipopt::SmartPtr
Template class for Smart Pointers.
Definition: IpSmartPtr.hpp:183
ipfint
FORTRAN_INTEGER_TYPE ipfint
Definition: IpTypes.hpp:26
Ipopt::PardisoSolverInterface::have_symbolic_factorization_
bool have_symbolic_factorization_
Flag indicating if symbolic factorization has already been performed.
Definition: IpPardisoSolverInterface.hpp:151
Ipopt::PardisoSolverInterface::pardiso_repeated_perturbation_means_singular_
bool pardiso_repeated_perturbation_means_singular_
Flag indicating whether repeated perturbed elements even after a new symbolic factorization should be...
Definition: IpPardisoSolverInterface.hpp:158
Ipopt::PardisoSolverInterface::MNUM_
ipfint MNUM_
Actual matrix for the solution phase.
Definition: IpPardisoSolverInterface.hpp:184
Ipopt::PardisoSolverInterface::a_
double * a_
Array for storing the values of the matrix.
Definition: IpPardisoSolverInterface.hpp:119
Ipopt::PardisoSolverInterface::~PardisoSolverInterface
virtual ~PardisoSolverInterface()
Destructor.
Ipopt::PardisoSolverInterface::MSGLVL_
ipfint MSGLVL_
Message level.
Definition: IpPardisoSolverInterface.hpp:192
Ipopt::PardisoSolverInterface::pardiso_max_droptol_corrections_
Index pardiso_max_droptol_corrections_
Maximal number of decreases of drop tolerance during one solve.
Definition: IpPardisoSolverInterface.hpp:166
Ipopt::PardisoSolverInterface::MTYPE_
ipfint MTYPE_
Matrix type; real and symmetric indefinite.
Definition: IpPardisoSolverInterface.hpp:186
Ipopt::PardisoSolverInterface::PT_
void ** PT_
Internal data address pointers.
Definition: IpPardisoSolverInterface.hpp:179
Ipopt::PardisoSolverInterface::debug_cnt_
Index debug_cnt_
Definition: IpPardisoSolverInterface.hpp:198
Ipopt::PardisoSolverInterface::MatrixFormat
EMatrixFormat MatrixFormat() const
Query of requested matrix type that the linear solver understands.
Definition: IpPardisoSolverInterface.hpp:83
IpSparseSymLinearSolverInterface.hpp
Ipopt::PardisoSolverInterface::PardisoMatchingStrategy
PardisoMatchingStrategy
Type for mathcing strategies.
Definition: IpPardisoSolverInterface.hpp:142
Ipopt::OptionsList
This class stores a list of user set options.
Definition: IpOptionsList.hpp:33
Ipopt::PardisoSolverInterface::InitializeImpl
bool InitializeImpl(const OptionsList &options, const std::string &prefix)
overloaded from AlgorithmStrategyObject
Ipopt::PardisoSolverInterface::IPARM_
ipfint * IPARM_
Parameter and info array for Pardiso.
Definition: IpPardisoSolverInterface.hpp:188
Ipopt::PardisoSolverInterface::negevals_
Index negevals_
Number of negative eigenvalues.
Definition: IpPardisoSolverInterface.hpp:135
Ipopt::PardisoSolverInterface::nonzeros_
Index nonzeros_
Number of nonzeros of the matrix in triplet representation.
Definition: IpPardisoSolverInterface.hpp:116
Ipopt::PardisoSolverInterface::pardiso_redo_symbolic_fact_only_if_inertia_wrong_
bool pardiso_redo_symbolic_fact_only_if_inertia_wrong_
Flag indicating whether the symbolic factorization should only be done after perturbed elements,...
Definition: IpPardisoSolverInterface.hpp:154
Ipopt::PardisoSolverInterface::pardiso_iterative_
bool pardiso_iterative_
Flag indicating whether we are using the iterative solver in Pardiso.
Definition: IpPardisoSolverInterface.hpp:164
Ipopt::PardisoSolverInterface::MultiSolve
virtual ESymSolverStatus MultiSolve(bool new_matrix, const Index *ia, const Index *ja, Index nrhs, double *rhs_vals, bool check_NegEVals, Index numberOfNegEVals)
Solve operation for multiple right hand sides.