Skip to content

Commit 708262c

Browse files
committed
sat: fix compilation error
1 parent f72f9ee commit 708262c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ortools/sat/probing.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ class TrailCopy {
103103
}
104104
trail_index_[var] = i;
105105
trail_literals_.push_back(literal);
106-
trail_info_.emplace_back(info.level, assignment_type, reason,
107-
reason_clause);
106+
trail_info_.push_back({info.level, assignment_type, reason,
107+
reason_clause});
108108
}
109109

110110
const int num_decisions = trail_.CurrentDecisionLevel();

0 commit comments

Comments
 (0)