Skip to content

Commit 8419957

Browse files
committed
Merge branch 'latest' of https://github.com/ERGO-Code/HiGHS into moreCompilerWarningsFun2
2 parents dc93a4f + 337e8a3 commit 8419957

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

docs/src/options/definitions.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -341,3 +341,15 @@
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+

docs/src/structures/enums.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

src/lp_data/HighsOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)