Skip to content

Commit 90c38a0

Browse files
committed
Removed kPdlpPrimalWeightUpdateOff from PdlpFeaturesOff
1 parent 5132861 commit 90c38a0

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/lp_data/HConst.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -323,9 +323,8 @@ enum PdlpFeaturesOff {
323323
kPdlpScalingOff = 1,
324324
kPdlpRestartOff = 2,
325325
kPdlpAdaptiveStepSizeOff = 4,
326-
kPdlpPrimalWeightUpdateOff = 8,
327-
kPdlpAllFeaturesOff = kPdlpScalingOff + kPdlpRestartOff +
328-
kPdlpAdaptiveStepSizeOff + kPdlpPrimalWeightUpdateOff
326+
kPdlpAllFeaturesOff =
327+
kPdlpScalingOff + kPdlpRestartOff + kPdlpAdaptiveStepSizeOff
329328
};
330329

331330
#endif /* LP_DATA_HCONST_H_ */

src/lp_data/HighsOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1087,7 +1087,7 @@ class HighsOptions : public HighsOptionsStruct {
10871087
record_int = new OptionRecordInt(
10881088
"pdlp_features_off",
10891089
"Mask for switching PDLP features off: 1 => Scaling; 2 => Restart; 4 "
1090-
"=> AdaptiveStepSize; 8 => PrimalWeightUpdate",
1090+
"=> AdaptiveStepSize",
10911091
advanced, &pdlp_features_off, kPdlpAllFeaturesOn, kPdlpAllFeaturesOn,
10921092
kPdlpAllFeaturesOff);
10931093
records.push_back(record_int);

0 commit comments

Comments
 (0)