blob: 824570a3ce7e8b5e1ca3622204bfb3d6548598f6 (
plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
/*
* ECOS - Embedded Conic Solver.
* Copyright (C) 2012-2015 A. Domahidi [domahidi@embotech.com],
* Automatic Control Lab, ETH Zurich & embotech GmbH, Zurich, Switzerland.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/* data type definitions used with ECOS */
#ifndef __GLBLOPTS_H__
#define __GLBLOPTS_H__
/* DATA TYPES ---------------------------------------------------------- */
typedef double pfloat; /* for numerical values */
/* SET PRINT LEVEL ----------------------------------------------------- */
#define PRINTLEVEL (2) /* 0: no prints */
/* 1: only final info */
/* 2: progress print per iteration */
/* 3: debug level, enables print & dump fcns. */
#define MATLAB_FLUSH_PRINTS
/* print each iteration directly to Matlab. */
/* this options considerably slows down the */
/* solver, but is useful if you solve big */
/* problems. */
/* SET PROFILING LEVEL ------------------------------------------------- */
#define PROFILING (1) /* 0: no timing information */
/* 1: runtime (divided in setup and solve) */
/* 2: detailed profiling */
/* SET DEBUG LEVEL ----------------------------------------------------- */
#define DEBUG (0) /* 0: no debugging information */
/* 1: debug info & dump intermediate results */
/* (flag used only for development) */
/* NAN ----------------------------------------------------------------- */
#ifndef NAN
#define NAN ((double)0x7ff8000000000000)
#endif
/* INF ---------------------------------------------------------------- */
#ifndef INFINITY
#define INFINITY ((double)0x7ff0000000000000)
#endif
/* Exponential cone */
#define EXPCONE /*When defined the exponential cone solver code is enabled*/
/* SYSTEM INCLUDES FOR PRINTING ---------------------------------------- */
#if PRINTLEVEL > 0
#ifdef MATLAB_MEX_FILE
#include "mex.h"
#define PRINTTEXT mexPrintf
#elif defined PYTHON
#include <Python.h>
#define PRINTTEXT PySys_WriteStdout
#else
#define PRINTTEXT printf
#endif
#include <stdio.h>
#else
#define PRINTTEXT(...)
#endif
#include "SuiteSparse_config.h"
/* use this if pfloat is float: */
/* #define NAN ((float)0x7fc00000) */
/* USE SAME NUMBER REPRESENTATION FOR INDEXING AS AMD AND LDL ---------- */
typedef SuiteSparse_long idxint;
/* SYSTEM INCLUDE IF COMPILING FOR MATLAB ------------------------------ */
#ifdef MATLAB_MEX_FILE
#include "mex.h"
#endif
/* CHOOSE RIGHT MEMORY MANAGER ----------------------------------------- */
#ifdef MATLAB_MEX_FILE
#define MALLOC mxMalloc
#define FREE mxFree
#else
#define MALLOC malloc
#define FREE free
#endif
/* Other commonly used macros ----------------------------------------- */
#define inline __inline
#endif
|