Skip to content

Commit

Permalink
fix a warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmed-irfan committed Mar 18, 2024
1 parent d58ec75 commit fdf86b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mcsat/uf/uf_plugin.c
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ void uf_plugin_propagate(plugin_t* plugin, trail_token_t* prop) {
if (t >= 0 && eq_graph_has_term(&uf->eq_graph, t)) {
variable_t t_var = variable_db_get_variable_if_exists(var_db, t);
assert(t_var != variable_null);
if (!trail_has_value(uf->ctx->trail, variable_db_get_variable_if_exists(var_db, t))) {
if (!trail_has_value(uf->ctx->trail, t_var)) {
all_assigned = false;
break;
}
Expand Down

0 comments on commit fdf86b4

Please sign in to comment.