linsol.hpp
1 /*
2  * This file is part of CasADi.
3  *
4  * CasADi -- A symbolic framework for dynamic optimization.
5  * Copyright (C) 2010-2014 Joel Andersson, Joris Gillis, Moritz Diehl,
6  * KU Leuven. All rights reserved.
7  * Copyright (C) 2011-2014 Greg Horn
8  *
9  * CasADi is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 3 of the License, or (at your option) any later version.
13  *
14  * CasADi is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with CasADi; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22  *
23  */
24 
25 
26 #ifndef CASADI_LINSOL_HPP
27 #define CASADI_LINSOL_HPP
28 
29 #include "function.hpp"
30 #include "printable.hpp"
31 
32 namespace casadi {
33 
34  // Forward declaration of internal class
35  class LinsolInternal;
36 
53  class CASADI_EXPORT Linsol
54  : public SharedObject,
55  public SWIG_IF_ELSE(PrintableCommon, Printable<Linsol>) {
56  public:
60  static std::string type_name() {return "Linsol";}
61 
63  Linsol();
64 
66  explicit Linsol(const std::string& name, const std::string& solver,
67  const Sparsity& sp, const Dict& opts=Dict());
68 
70  LinsolInternal* operator->();
71  const LinsolInternal* operator->() const;
72 
73 #ifndef SWIG
75  static bool test_cast(const SharedObjectInternal* ptr);
76 #endif //SWIG
77 
79 #ifndef SWIG
83  static Linsol create(LinsolInternal* node);
84 #endif // SWIG
86 
88  static bool has_plugin(const std::string& name);
89 
91  static void load_plugin(const std::string& name);
92 
94  static std::string doc(const std::string& name);
95 
97  std::string plugin_name() const;
98 
100  const Sparsity& sparsity() const;
101 
103  void sfact(const DM& A) const;
104 
106  void nfact(const DM& A) const;
107 
110  DM solve(const DM& A, const DM& B, bool tr=false) const;
111  MX solve(const MX& A, const MX& B, bool tr=false) const;
113 
119  casadi_int neig(const DM& A) const;
120 
126  casadi_int rank(const DM& A) const;
127 
133  double det(const DM& A) const;
134 
136  MX det(const MX& A) const;
137 
139  Dict stats(int mem=1) const;
140 
141  #ifndef SWIG
144  int sfact(const double* A, int mem=0) const;
145  int nfact(const double* A, int mem=0) const;
146  int solve(const double* A, double* x, casadi_int nrhs=1, bool tr=false, int mem=0) const;
147  double det(const double* A, int mem = 0) const;
148  casadi_int neig(const double* A, int mem=0) const;
149  casadi_int rank(const double* A, int mem=0) const;
151 
153  casadi_int checkout() const;
154 
156  void release(int mem) const;
157 
161  void serialize(SerializingStream &s) const;
162 
166  static Linsol deserialize(DeserializingStream& s);
167 
168  #endif // SWIG
169  };
170 
172  CASADI_EXPORT bool has_linsol(const std::string& name);
173 
175  CASADI_EXPORT void load_linsol(const std::string& name);
176 
178  CASADI_EXPORT std::string doc_linsol(const std::string& name);
179 
180 } // namespace casadi
181 
182 #endif // CASADI_LINSOL_HPP
Helper class for Serialization.
Linear solver.
Definition: linsol.hpp:55
Linsol(const std::string &name, const std::string &solver, const Sparsity &sp, const Dict &opts=Dict())
Constructor.
casadi_int rank(const DM &A) const
Matrix rank.
static bool has_plugin(const std::string &name)
Check if a plugin is available.
static void load_plugin(const std::string &name)
Explicitly load a plugin dynamically.
void nfact(const DM &A) const
Numeric factorization of the linear system.
Linsol()
Default constructor.
double det(const DM &A) const
Matrix determinant.
MX solve(const MX &A, const MX &B, bool tr=false) const
LinsolInternal * operator->()
Access functions of the node.
Dict stats(int mem=1) const
Get all statistics obtained at the end of the last evaluate call.
const LinsolInternal * operator->() const
static std::string doc(const std::string &name)
Get solver specific documentation.
std::string plugin_name() const
Query plugin name.
const Sparsity & sparsity() const
Get linear system sparsity.
DM solve(const DM &A, const DM &B, bool tr=false) const
static std::string type_name()
Get type name.
Definition: linsol.hpp:60
void sfact(const DM &A) const
Symbolic factorization of the linear system, e.g. selecting pivots.
casadi_int neig(const DM &A) const
Number of negative eigenvalues.
MX det(const MX &A) const
Matrix determinant as an MX graph node.
MX - Matrix expression.
Definition: mx.hpp:92
Helper class for Serialization.
GenericShared implements a reference counting framework similar for efficient and.
General sparsity class.
Definition: sparsity.hpp:106
The casadi namespace.
Definition: archiver.hpp:32
CASADI_EXPORT std::string doc_linsol(const std::string &name)
Get the documentation string for a plugin.
CASADI_EXPORT bool has_linsol(const std::string &name)
Check if a particular plugin is available.
GenericType::Dict Dict
C++ equivalent of Python's dict or MATLAB's struct.
CASADI_EXPORT void load_linsol(const std::string &name)
Explicitly load a plugin dynamically.