Ipopt Documentation  
IpMa28TDependencyDetector.hpp
Go to the documentation of this file.
1 // Copyright (C) 2007 International Business Machines and others.
2 // All Rights Reserved.
3 // This code is published under the Eclipse Public License.
4 //
5 // Authors: Andreas Waechter IBM 2007-04-17
6 
7 #ifndef __IPMA28TDEPENDENCYDETECTOR_HPP__
8 #define __IPMA28TDEPENDENCYDETECTOR_HPP__
9 
11 
12 namespace Ipopt
13 {
14 
16 {
17 public:
21 
23  { }
25 
27  virtual bool InitializeImpl(
28  const OptionsList& options,
29  const std::string& prefix
30  );
31 
43  virtual bool DetermineDependentRows(
44  Index n_rows,
45  Index n_cols,
46  Index n_jac_nz,
47  Number* jac_c_vals,
48  Index* jac_c_iRow,
49  Index* jac_c_jCol,
50  std::list<Index>& c_deps
51  );
52 
54  static void RegisterOptions(
56  );
57 
58 private:
70  );
71 
73  void operator=(
75  );
77 
79 
85 };
86 
87 } // namespace Ipopt
88 
89 #endif
Ipopt::Ma28TDependencyDetector::~Ma28TDependencyDetector
virtual ~Ma28TDependencyDetector()
Definition: IpMa28TDependencyDetector.hpp:22
Ipopt::Ma28TDependencyDetector::operator=
void operator=(const Ma28TDependencyDetector &)
Default Assignment Operator.
Ipopt::TDependencyDetector
Base class for all derived algorithms for detecting linearly dependent rows in the constraint Jacobia...
Definition: IpTDependencyDetector.hpp:20
Ipopt
This file contains a base class for all exceptions and a set of macros to help with exceptions.
Definition: IpInexactAlgBuilder.hpp:14
Ipopt::Number
double Number
Type of all numbers.
Definition: IpTypes.hpp:15
Ipopt::Ma28TDependencyDetector::InitializeImpl
virtual bool InitializeImpl(const OptionsList &options, const std::string &prefix)
Has to be called to initialize and reset these objects.
Ipopt::Index
int Index
Type of all indices of vectors, matrices etc.
Definition: IpTypes.hpp:17
IpTDependencyDetector.hpp
Ipopt::Ma28TDependencyDetector::jnlst_
SmartPtr< const Journalist > jnlst_
Definition: IpMa28TDependencyDetector.hpp:78
Ipopt::Ma28TDependencyDetector::ma28_pivtol_
Number ma28_pivtol_
Pivot tolerance for MA28.
Definition: IpMa28TDependencyDetector.hpp:83
Ipopt::Ma28TDependencyDetector::Ma28TDependencyDetector
Ma28TDependencyDetector()
Ipopt::SmartPtr
Template class for Smart Pointers.
Definition: IpSmartPtr.hpp:172
Ipopt::Ma28TDependencyDetector::DetermineDependentRows
virtual bool DetermineDependentRows(Index n_rows, Index n_cols, Index n_jac_nz, Number *jac_c_vals, Index *jac_c_iRow, Index *jac_c_jCol, std::list< Index > &c_deps)
Method determining the number of linearly dependent rows in the matrix and the indices of those rows.
Ipopt::Ma28TDependencyDetector::RegisterOptions
static void RegisterOptions(SmartPtr< RegisteredOptions > roptions)
This must be called to make the options for this class known.
Ipopt::Ma28TDependencyDetector
Definition: IpMa28TDependencyDetector.hpp:16
Ipopt::Ma28TDependencyDetector::Ma28TDependencyDetector
Ma28TDependencyDetector(const Ma28TDependencyDetector &)
Copy Constructor.
Ipopt::OptionsList
This class stores a list of user set options.
Definition: IpOptionsList.hpp:33