Skip to content

Commit

Permalink
fix return type of unsafe_literal_is_unassigned
Browse files Browse the repository at this point in the history
  • Loading branch information
isanych committed Jan 14, 2025
1 parent 37e652a commit d28ff66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/solvers/cdcl/smt_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -4898,7 +4898,7 @@ static inline bval_t unsafe_literal_value(smt_core_t *s, literal_t l) {
/*
* Variant of literal_is_unassigned (same reason)
*/
static inline bval_t unsafe_literal_is_unassigned(smt_core_t *s, literal_t l) {
static inline bool unsafe_literal_is_unassigned(smt_core_t *s, literal_t l) {
assert(end_learned <= l && l <= (int32_t) s->nlits);
return bval_is_undef(s->value[var_of(l)]);
}
Expand Down

0 comments on commit d28ff66

Please sign in to comment.