File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed
Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 341341- Range: [ 1e-12, inf]
342342- Default: 0.0001
343343
344+ ## qp\_ iteration\_ limit
345+ - Iteration limit for QP solver
346+ - Type: integer
347+ - Range: {0, 2147483647}
348+ - Default: 2147483647
349+
350+ ## qp\_ nullspace\_ limit
351+ - Nullspace limit for QP solver
352+ - Type: integer
353+ - Range: {0, 2147483647}
354+ - Default: 4000
355+
Original file line number Diff line number Diff line change @@ -73,6 +73,8 @@ This defines the status of the model after a call to `run`
7373 * ` kTimeLimit ` : The run time limit has been reached
7474 * ` kIterationLimit ` : The iteration limit has been reached
7575 * ` kSolutionLimit ` : The MIP solver has reached the limit on the number of LPs solved
76+ * ` kInterrupt ` : The solver has been interrupted by the user
77+ * ` kMemoryLimit ` : The solver has been unable to allocate sufficient memory
7678 * ` kUnknown ` : The model status is unknown
7779
7880## HighsBasisStatus
Original file line number Diff line number Diff line change @@ -939,7 +939,7 @@ class HighsOptions : public HighsOptionsStruct {
939939 record_string = new OptionRecordString (
940940 " mip_improving_solution_file" ,
941941 " File for reporting improving MIP solutions: not reported for an empty "
942- " string \" \" " ,
942+ " string \\\"\\ \" " ,
943943 advanced, &mip_improving_solution_file, kHighsFilenameDefault );
944944 records.push_back (record_string);
945945
You can’t perform that action at this time.
0 commit comments