public API
(
switch to internal
)
-
revision 3.6.7
casadi
core
casadi_types.hpp
1
/*
2
* This file is part of CasADi.
3
*
4
* CasADi -- A symbolic framework for dynamic optimization.
5
* Copyright (C) 2010-2023 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_TYPES_HPP
27
#define CASADI_TYPES_HPP
28
29
#ifndef CASADI_INT_TYPE
30
#define CASADI_INT_TYPE long long int
31
#endif
// CASADI_INT_TYPE
32
33
34
#ifndef CASADI_C_H
35
// Avoid interaction problems with <casadi/casadi_c.h>
36
#ifndef CASADI_MEM_H
37
// Avoid interaction problems with <casadi/mem.h>
38
typedef
CASADI_INT_TYPE casadi_int;
39
#endif
40
#endif
41
42
#ifndef SWIG
// Not in public API
43
typedef
unsigned
CASADI_INT_TYPE casadi_uint;
44
#endif
// SWIG
45
46
// Convert to string
47
#define CASADI_STR1(x) #x
48
#define CASADI_STR(x) CASADI_STR1(x)
49
#define CASADI_INT_TYPE_STR CASADI_STR(CASADI_INT_TYPE)
50
51
typedef
casadi_int casadi_index;
52
53
namespace
casadi
{
55
enum
UnifiedReturnStatus
{
56
SOLVER_RET_SUCCESS
,
57
SOLVER_RET_UNKNOWN
,
58
SOLVER_RET_LIMITED
,
// Out of time
59
SOLVER_RET_NAN
,
60
SOLVER_RET_INFEASIBLE
,
61
SOLVER_RET_EXCEPTION
62
};
63
}
// namespace casadi
64
65
66
#endif
// CASADI_TYPES_HPP
casadi
The casadi namespace.
Definition:
binary_mx_impl.hpp:36
casadi::UnifiedReturnStatus
UnifiedReturnStatus
Definition:
casadi_types.hpp:55
casadi::SOLVER_RET_NAN
@ SOLVER_RET_NAN
Definition:
casadi_types.hpp:59
casadi::SOLVER_RET_INFEASIBLE
@ SOLVER_RET_INFEASIBLE
Definition:
casadi_types.hpp:60
casadi::SOLVER_RET_LIMITED
@ SOLVER_RET_LIMITED
Definition:
casadi_types.hpp:58
casadi::SOLVER_RET_SUCCESS
@ SOLVER_RET_SUCCESS
Definition:
casadi_types.hpp:56
casadi::SOLVER_RET_UNKNOWN
@ SOLVER_RET_UNKNOWN
Definition:
casadi_types.hpp:57
casadi::SOLVER_RET_EXCEPTION
@ SOLVER_RET_EXCEPTION
Definition:
casadi_types.hpp:61