From fa5ee5049432867a5161fcd97aebe475854fffdb Mon Sep 17 00:00:00 2001 From: David Parkhurst Date: Wed, 7 Nov 2018 20:03:36 -0700 Subject: [PATCH] fix problem with ex20_debug --- model.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/model.cpp b/model.cpp index 3086158c..c5dc7e67 100644 --- a/model.cpp +++ b/model.cpp @@ -1597,8 +1597,8 @@ ineq(int in_kode) (size_t) (count_unknowns + 1) * sizeof(LDBLE)); ineq_array[l_count_rows * max_column_count + i] = 1.0; ineq_array[l_count_rows * max_column_count + count_unknowns] = - x[i]->moles; - //0.99 * x[i]->moles - MIN_TOTAL_SS; + //x[i]->moles; + 0.99 * x[i]->moles - MIN_TOTAL_SS; //0.9 * x[i]->moles; back_eq[l_count_rows] = i; l_count_rows++;