Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix return type of unsafe_literal_is_unassigned #548

Merged
merged 1 commit into from
Jan 14, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading