We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7627a17 commit 5ffc51bCopy full SHA for 5ffc51b
docs/src/options/definitions.md
@@ -448,7 +448,7 @@
448
## hipo\_scaling
449
- HiPO scaling strategy: "curtis-reid" or "norm"
450
- Type: string
451
-- Default: "curtis-reid"
+- Default: "norm"
452
453
## pdlp\_scaling
454
- Scaling option for PDLP solver: Default = true
highs/ipm/hipo/ipm/Model.cpp
@@ -425,6 +425,9 @@ void Model::scale(OptionScaling opt) {
425
}
426
427
428
+ assert(!isNanVector(colscale_) && !isNanVector(rowscale_) &&
429
+ !isInfVector(colscale_) && !isInfVector(rowscale_));
430
+
431
applyScaling();
432
433
0 commit comments