@@ -296,6 +296,7 @@ LinearProgrammingConstraint::LinearProgrammingConstraint(
296
296
implied_bounds_processor_({}, integer_trail_,
297
297
model->GetOrCreate<ImpliedBounds>()),
298
298
dispatcher_(model->GetOrCreate<LinearProgrammingDispatcher>()),
299
+ mirror_lp_variable_(*model->GetOrCreate<ModelLpVariableMapping>()),
299
300
expanded_lp_solution_(*model->GetOrCreate<ModelLpValues>()),
300
301
expanded_reduced_costs_(*model->GetOrCreate<ModelReducedCosts>()) {
301
302
// Tweak the default parameters to make the solve incremental.
@@ -314,6 +315,8 @@ LinearProgrammingConstraint::LinearProgrammingConstraint(
314
315
315
316
// Register our local rev int repository.
316
317
integer_trail_->RegisterReversibleClass (&rc_rev_int_repository_);
318
+ mirror_lp_variable_.resize (integer_trail_->NumIntegerVariables (),
319
+ glop::kInvalidCol );
317
320
318
321
// Register SharedStatistics with the cut helpers.
319
322
auto * stats = model->GetOrCreate <SharedStatistics>();
@@ -336,6 +339,7 @@ LinearProgrammingConstraint::LinearProgrammingConstraint(
336
339
337
340
integer_variables_.push_back (positive_variable);
338
341
extended_integer_variables_.push_back (positive_variable);
342
+ DCHECK_EQ (mirror_lp_variable_[positive_variable], glop::kInvalidCol );
339
343
mirror_lp_variable_[positive_variable] = col;
340
344
++col;
341
345
}
@@ -347,6 +351,7 @@ LinearProgrammingConstraint::LinearProgrammingConstraint(
347
351
const int orbit_index = symmetrizer_->OrbitIndex (var);
348
352
for (const IntegerVariable var : symmetrizer_->Orbit (orbit_index)) {
349
353
extended_integer_variables_.push_back (var);
354
+ DCHECK_EQ (mirror_lp_variable_[var], glop::kInvalidCol );
350
355
mirror_lp_variable_[var] = col;
351
356
++col;
352
357
}
@@ -458,7 +463,7 @@ void LinearProgrammingConstraint::RegisterWith(Model* model) {
458
463
glop::ColIndex LinearProgrammingConstraint::GetMirrorVariable (
459
464
IntegerVariable positive_variable) {
460
465
DCHECK (VariableIsPositive (positive_variable));
461
- return mirror_lp_variable_. at ( positive_variable) ;
466
+ return mirror_lp_variable_[ positive_variable] ;
462
467
}
463
468
464
469
void LinearProgrammingConstraint::SetObjectiveCoefficient (IntegerVariable ivar,
@@ -898,7 +903,7 @@ glop::Fractional LinearProgrammingConstraint::GetVariableValueAtCpScale(
898
903
899
904
double LinearProgrammingConstraint::GetSolutionValue (
900
905
IntegerVariable variable) const {
901
- return lp_solution_[mirror_lp_variable_. at ( variable) .value ()];
906
+ return lp_solution_[mirror_lp_variable_[ variable] .value ()];
902
907
}
903
908
904
909
void LinearProgrammingConstraint::UpdateBoundsOfLpVariables () {
@@ -1539,8 +1544,7 @@ bool LinearProgrammingConstraint::PostprocessAndAddCut(
1539
1544
1540
1545
// Simple copy for non-slack variables.
1541
1546
if (var < first_slack) {
1542
- const glop::ColIndex col =
1543
- mirror_lp_variable_.at (PositiveVariable (var));
1547
+ const glop::ColIndex col = mirror_lp_variable_[PositiveVariable (var)];
1544
1548
if (VariableIsPositive (var)) {
1545
1549
tmp_scattered_vector_.Add (col, coeff);
1546
1550
} else {
@@ -2166,7 +2170,7 @@ bool LinearProgrammingConstraint::Propagate() {
2166
2170
implied_bounds_processor_.RecomputeCacheAndSeparateSomeImpliedBoundCuts (
2167
2171
expanded_lp_solution_);
2168
2172
if (parameters_.add_rlt_cuts ()) {
2169
- rlt_cut_helper_.Initialize (mirror_lp_variable_ );
2173
+ rlt_cut_helper_.Initialize (extended_integer_variables_ );
2170
2174
}
2171
2175
2172
2176
// The "generic" cuts are currently part of this class as they are using
@@ -2610,12 +2614,11 @@ bool LinearProgrammingConstraint::PropagateExactLpReason() {
2610
2614
// For the corner case of an objective of size 1, we do not want or need
2611
2615
// to take it into account.
2612
2616
bool take_objective_into_account = true ;
2613
- if (mirror_lp_variable_. contains (objective_cp_) ) {
2617
+ if (objective_cp_is_part_of_lp_ ) {
2614
2618
// The objective is part of the lp.
2615
2619
// This should only happen for objective with a single term.
2616
2620
CHECK_EQ (integer_objective_.size (), 1 );
2617
- CHECK_EQ (integer_objective_[0 ].first ,
2618
- mirror_lp_variable_.at (objective_cp_));
2621
+ CHECK_EQ (integer_objective_[0 ].first , mirror_lp_variable_[objective_cp_]);
2619
2622
CHECK_EQ (integer_objective_[0 ].second , IntegerValue (1 ));
2620
2623
2621
2624
take_objective_into_account = false ;
0 commit comments