Skip to content

Commit

Permalink
Merge branch 'develop' into fix_test_bm
Browse files Browse the repository at this point in the history
  • Loading branch information
dweindl authored Dec 12, 2023
2 parents c057bbf + 0bc2f2a commit 0426fd8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/buildAmici.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ else
fi

# required for build swig interface
python3 -m pip install numpy
pip show numpy > /dev/null || python3 -m pip install numpy

${cmake} \
-Wdev -DAMICI_CXX_OPTIONS="-Wall;-Wextra${extra_cxx_flags}" \
Expand Down
2 changes: 1 addition & 1 deletion src/model.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1818,7 +1818,7 @@ int Model::checkFinite(SUNMatrix m, ModelQuantity model_quantity, realtype t)
if (hasExpressionIds())
row_id += " " + getExpressionIds()[row];
if (hasParameterIds())
col_id += " " + getParameterIds()[plist(gsl::narrow<int>(col))];
col_id += " " + getParameterIds()[col];
break;
default:
break;
Expand Down

0 comments on commit 0426fd8

Please sign in to comment.