Skip to content

Commit 4abd984

Browse files
committed
fix the build
Signed-off-by: Lev Nachmanson <[email protected]>
1 parent e3f5e8c commit 4abd984

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/math/lp/lar_solver.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,11 +395,11 @@ namespace lp {
395395
mpq lar_solver::from_model_in_impq_to_mpq(const impq& v) const { return v.x + m_imp->m_delta * v.y; }
396396

397397

398-
inline const impq& lar_solver::get_upper_bound(lpvar j) const {
398+
const impq& lar_solver::get_upper_bound(lpvar j) const {
399399
return get_core_solver().m_r_solver.m_upper_bounds[j];
400400
}
401401

402-
inline const impq& lar_solver::get_lower_bound(lpvar j) const {
402+
const impq& lar_solver::get_lower_bound(lpvar j) const {
403403
return get_core_solver().m_r_solver.m_lower_bounds[j];
404404
}
405405

0 commit comments

Comments
 (0)