Program listing for file numerics/src/MCP/MCP_cst.h

Program listing for file numerics/src/MCP/MCP_cst.h#

 1#ifndef MCP_CST_H
 2#define MCP_CST_H
 3
 4
 5
 6enum MCP_SOLVER {
 7
 8  SICONOS_MCP_NEWTON_FB_FBLSA = 700,
 9  SICONOS_MCP_NEWTON_MIN_FBLSA = 701,
10
11
12  SICONOS_MCP_OLD_FB = 710,
13};
14
15extern const char* const SICONOS_MCP_OLD_FB_STR;
16extern const char* const SICONOS_MCP_NEWTON_FB_FBLSA_STR;
17extern const char* const SICONOS_MCP_NEWTON_MIN_FBLSA_STR;
18
19#endif