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
 9  SICONOS_MCP_NEWTON_FB_FBLSA = 700,
10  SICONOS_MCP_NEWTON_MIN_FBLSA = 701,
11
12
13  SICONOS_MCP_OLD_FB = 710,
14};
15
16
17extern const char* const SICONOS_MCP_OLD_FB_STR;
18extern const char* const SICONOS_MCP_NEWTON_FB_FBLSA_STR;
19extern const char* const SICONOS_MCP_NEWTON_MIN_FBLSA_STR;
20
21#endif