Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
z
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
x
y
Typedefs
a
b
c
d
f
h
i
n
o
p
q
r
s
t
u
Enumerations
a
c
d
e
f
i
m
n
p
q
r
s
t
u
Enumerator
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
z
Classes
Class List
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerations
a
b
c
d
e
f
g
i
l
m
n
p
r
s
t
u
w
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Related Functions
c
e
h
i
m
o
p
q
s
t
v
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
x
z
Variables
a
b
c
e
g
i
l
m
n
p
r
s
t
v
x
y
Typedefs
a
b
c
d
e
f
h
i
l
m
n
p
q
r
s
t
u
Enumerator
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
src
optimization
include
corbo-optimization
solver
nlp_solver_interface.h
Go to the documentation of this file.
1
/*********************************************************************
2
*
3
* Software License Agreement
4
*
5
* Copyright (c) 2020,
6
* TU Dortmund - Institute of Control Theory and Systems Engineering.
7
* All rights reserved.
8
*
9
* This program is free software: you can redistribute it and/or modify
10
* it under the terms of the GNU General Public License as published by
11
* the Free Software Foundation, either version 3 of the License, or
12
* (at your option) any later version.
13
*
14
* This program 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
17
* GNU General Public License for more details.
18
*
19
* You should have received a copy of the GNU General Public License
20
* along with this program. If not, see <https://www.gnu.org/licenses/>.
21
*
22
* Authors: Christoph Rösmann
23
*********************************************************************/
24
25
#ifndef SRC_OPTIMIZATION_INCLUDE_CORBO_OPTIMIZATION_SOLVER_NLP_SOLVER_INTERFACE_H_
26
#define SRC_OPTIMIZATION_INCLUDE_CORBO_OPTIMIZATION_SOLVER_NLP_SOLVER_INTERFACE_H_
27
28
#include <
corbo-core/factory.h
>
29
#include <
corbo-core/types.h
>
30
#include <
corbo-optimization/optimization_problem_interface.h
>
31
#include <
corbo-optimization/types.h
>
32
33
#ifdef MESSAGE_SUPPORT
34
#include <corbo-communication/messages/optimization/nlp_solvers.pb.h>
35
#endif
36
37
#include <memory>
38
39
namespace
corbo
{
40
67
class
NlpSolverInterface
68
{
69
public
:
70
using
Ptr
= std::shared_ptr<NlpSolverInterface>;
71
using
UPtr
= std::unique_ptr<NlpSolverInterface>;
72
74
virtual
~NlpSolverInterface
() {}
75
77
virtual
Ptr
getInstance
()
const
= 0;
78
80
virtual
bool
isLsqSolver
()
const
= 0;
81
92
virtual
bool
initialize
(OptimizationProblemInterface* problem =
nullptr
) {
return
true
; }
93
105
virtual
SolverStatus
solve
(OptimizationProblemInterface& problem,
bool
new_structure,
bool
new_run =
true
,
double
* obj_value =
nullptr
) = 0;
106
108
virtual
void
clear
() = 0;
109
110
#ifdef MESSAGE_SUPPORT
111
// implement for import / export support
112
virtual
void
toMessage(corbo::messages::NlpSolver& message)
const
{}
113
virtual
void
fromMessage(
const
corbo::messages::NlpSolver& message, std::stringstream* issues =
nullptr
) {}
114
#endif
115
};
116
117
using
NlpSolverFactory
=
Factory<NlpSolverInterface>
;
118
#define FACTORY_REGISTER_NLP_SOLVER(type) FACTORY_REGISTER_OBJECT(type, NlpSolverInterface)
119
120
}
// namespace corbo
121
122
#endif // SRC_OPTIMIZATION_INCLUDE_CORBO_OPTIMIZATION_SOLVER_NLP_SOLVER_INTERFACE_H_
corbo::NlpSolverInterface::UPtr
std::unique_ptr< NlpSolverInterface > UPtr
Definition:
nlp_solver_interface.h:115
factory.h
corbo
Definition:
communication/include/corbo-communication/utilities.h:37
corbo::Factory
Generic factory object.
Definition:
factory.h:90
corbo::NlpSolverInterface::~NlpSolverInterface
virtual ~NlpSolverInterface()
Virtual destructor.
Definition:
nlp_solver_interface.h:118
types.h
corbo::SolverStatus
SolverStatus
Definition:
optimization/include/corbo-optimization/types.h:52
corbo::NlpSolverInterface::isLsqSolver
virtual bool isLsqSolver() const =0
Return true if the solver onyl supports costs in lsq form.
corbo::NlpSolverInterface::Ptr
std::shared_ptr< NlpSolverInterface > Ptr
Definition:
nlp_solver_interface.h:114
corbo::NlpSolverInterface::initialize
virtual bool initialize(OptimizationProblemInterface *problem=nullptr)
Initialize the solver w.r.t. a given optimization problem.
Definition:
nlp_solver_interface.h:136
corbo::NlpSolverInterface::getInstance
virtual Ptr getInstance() const =0
Return a newly created instance of the current solver.
corbo::NlpSolverInterface::clear
virtual void clear()=0
Clear internal caches.
types.h
corbo::NlpSolverInterface::solve
virtual SolverStatus solve(OptimizationProblemInterface &problem, bool new_structure, bool new_run=true, double *obj_value=nullptr)=0
Solve the provided optimization problem.
optimization_problem_interface.h
control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:05:58