Skip to content

Commit c2b08ad

Browse files
authored
Merge pull request #3007 from fwesselm/chooseNlaFix
Potential typo in FactorHiGHSSolver::chooseNla()
2 parents 1712294 + b084eb8 commit c2b08ad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

highs/ipm/hipo/ipm/FactorHiGHSSolver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ Int FactorHiGHSSolver::chooseNla() {
313313
// Total number of operations, given by dense flops and sparse indexing
314314
// operations, weighted with an empirical factor
315315
double ops_NE = symb_NE.flops() + symb_NE.spops() * kSpopsWeight;
316-
double ops_AS = symb_AS.flops() + symb_AS.spops() + kSpopsWeight;
316+
double ops_AS = symb_AS.flops() + symb_AS.spops() * kSpopsWeight;
317317

318318
// Average size of supernodes
319319
double sn_size_NE = (double)symb_NE.size() / symb_NE.sn();

0 commit comments

Comments
 (0)