Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Dejan Jovanovic committed Apr 2, 2021
1 parent 7991c7c commit 7a0041d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/smt/yices2/yices2_internal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1212,7 +1212,7 @@ solver::result yices2_internal::check(expr::model::ref m, const std::vector<expr
// Get all the variables
size_t n_vars = vars->size();
term_t* yices_vars = new term_t[n_vars];
for (int i = 0; i < n_vars; ++ i) {
for (size_t i = 0; i < n_vars; ++ i) {
yices_vars[i] = to_yices2_term((*vars)[i]);
}
// Check with model
Expand Down

0 comments on commit 7a0041d

Please sign in to comment.