Sleipnir C++ API
Loading...
Searching...
No Matches
SolverStatus.hpp
Go to the documentation of this file.
1// Copyright (c) Sleipnir contributors
2
3#pragma once
4
8
9namespace sleipnir {
10
17 ExpressionType costFunctionType = ExpressionType::kNone;
18
20 ExpressionType equalityConstraintType = ExpressionType::kNone;
21
23 ExpressionType inequalityConstraintType = ExpressionType::kNone;
24
26 SolverExitCondition exitCondition = SolverExitCondition::kSuccess;
27
29 double cost = 0.0;
30};
31
32} // namespace sleipnir
#define SLEIPNIR_DLLEXPORT
Definition SymbolExports.hpp:34
Definition Expression.hpp:18
ExpressionType
Definition ExpressionType.hpp:14
SolverExitCondition
Definition SolverExitCondition.hpp:16
Definition SolverStatus.hpp:15