26 #include "cplex_interface.hpp"
33 "Interface to Cplex solver for sparse Quadratic Programs\n"
35 "Extra doc: https://github.com/casadi/casadi/wiki/L_22a \n"
38 ">List of available options\n"
40 "+----------------+-----------------------+---------------------------------+\n"
41 "| Id | Type | Description |\n"
42 "+================+=======================+=================================+\n"
43 "| cplex | OT_DICT | Options to be passed to CPLEX |\n"
44 "+----------------+-----------------------+---------------------------------+\n"
45 "| dep_check | OT_INT | Detect redundant constraints. |\n"
46 "+----------------+-----------------------+---------------------------------+\n"
47 "| dump_filename | OT_STRING | The filename to dump to. |\n"
48 "+----------------+-----------------------+---------------------------------+\n"
49 "| dump_to_file | OT_BOOL | Dumps QP to file in CPLEX |\n"
51 "+----------------+-----------------------+---------------------------------+\n"
52 "| mip_start | OT_BOOL | Hot start integers with x0 |\n"
53 "| | | [Default false]. |\n"
54 "+----------------+-----------------------+---------------------------------+\n"
55 "| qp_method | OT_INT | Determines which CPLEX |\n"
56 "| | | algorithm to use. |\n"
57 "+----------------+-----------------------+---------------------------------+\n"
58 "| sos_groups | OT_INTVECTORVECTOR | Definition of SOS groups by |\n"
60 "+----------------+-----------------------+---------------------------------+\n"
61 "| sos_types | OT_INTVECTOR | Specify 1 or 2 for each SOS |\n"
63 "+----------------+-----------------------+---------------------------------+\n"
64 "| sos_weights | OT_DOUBLEVECTORVECTOR | Weights corresponding to SOS |\n"
66 "+----------------+-----------------------+---------------------------------+\n"
67 "| tol | OT_DOUBLE | Tolerance of solver |\n"
68 "+----------------+-----------------------+---------------------------------+\n"
69 "| version_suffix | OT_STRING | Specify version of cplex to |\n"
70 "| | | load. We will attempt to load l |\n"
71 "| | | ibcplex<version_suffix>.[so|dll |\n"
72 "| | | |dylib]. Default value is taken |\n"
73 "| | | from CPLEX_VERSION env |\n"
75 "+----------------+-----------------------+---------------------------------+\n"
76 "| warm_start | OT_BOOL | Use warm start with simplex |\n"
77 "| | | methods (affects only the |\n"
78 "| | | simplex methods). |\n"
79 "+----------------+-----------------------+---------------------------------+\n"
static const std::string meta_doc
A documentation string.