-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSolverInterface.cpp
More file actions
57 lines (46 loc) · 1.37 KB
/
Copy pathSolverInterface.cpp
File metadata and controls
57 lines (46 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// This file is part of mpc.
// mpc is free software: you can redistribute it and/or
// modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// mpc is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with mpc. If not, see
// <http://www.gnu.org/licenses/>.
// header
#include "SolverInterface.h"
// stl
#include <iostream>
#include <utility>
namespace mpc {
/*
* SolverInterface
*/
int SolverInterface::SI_iter() const
{
return 0;
}
void SolverInterface::SI_printLevel(int /* pl */)
{
std::cout << "No printLevel() function for this qp" << std::endl;
}
void SolverInterface::SI_feasibilityTolerance(double /* tol */)
{
std::cout << "No tol(double) function for this qp" << std::endl;
}
bool SolverInterface::SI_warmStart() const
{
std::cout << "No warmStart() function for this qp" << std::endl;
return false;
}
void SolverInterface::SI_warmStart(bool /* w */)
{
std::cout << "No warmStart(bool) function for this qp" << std::endl;
}
} // namespace pc