Skip to content

Commit 5ffc51b

Browse files
committed
Fix issue
1 parent 7627a17 commit 5ffc51b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

docs/src/options/definitions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@
448448
## hipo\_scaling
449449
- HiPO scaling strategy: "curtis-reid" or "norm"
450450
- Type: string
451-
- Default: "curtis-reid"
451+
- Default: "norm"
452452

453453
## pdlp\_scaling
454454
- Scaling option for PDLP solver: Default = true

highs/ipm/hipo/ipm/Model.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -425,6 +425,9 @@ void Model::scale(OptionScaling opt) {
425425
}
426426
}
427427

428+
assert(!isNanVector(colscale_) && !isNanVector(rowscale_) &&
429+
!isInfVector(colscale_) && !isInfVector(rowscale_));
430+
428431
applyScaling();
429432
}
430433

0 commit comments

Comments
 (0)