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 
129  Dict stats(int mem=1) const;
130 
131  #ifndef SWIG
134  int sfact(const double* A, int mem=0) const;
135  int nfact(const double* A, int mem=0) const;
136  int solve(const double* A, double* x, casadi_int nrhs=1, bool tr=false, int mem=0) const;
137  casadi_int neig(const double* A, int mem=0) const;
138  casadi_int rank(const double* A, int mem=0) const;
140 
142  casadi_int checkout() const;
143 
145  void release(int mem) const;
146 
150  void serialize(SerializingStream &s) const;
151 
155  static Linsol deserialize(DeserializingStream& s);
156 
157  #endif // SWIG
158  };
159 
161  CASADI_EXPORT bool has_linsol(const std::string& name);
162 
164  CASADI_EXPORT void load_linsol(const std::string& name);
165 
167  CASADI_EXPORT std::string doc_linsol(const std::string& name);
168 
169 } // namespace casadi
170 
171 #endif // CASADI_LINSOL_HPP
Helper class for Serialization.
Linear solver.
Definition: linsol.hpp:55
static std::string type_name()
Get type name.
Definition: linsol.hpp:60
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.cpp:28
std::string doc_linsol(const std::string &name)
Get the documentation string for a plugin.
Definition: linsol.cpp:214
bool has_linsol(const std::string &name)
Check if a particular plugin is available.
Definition: linsol.cpp:206
GenericType::Dict Dict
C++ equivalent of Python's dict or MATLAB's struct.
void load_linsol(const std::string &name)
Explicitly load a plugin dynamically.
Definition: linsol.cpp:210