Skip to content

Commit 076ae52

Browse files
committed
fix
1 parent ee92527 commit 076ae52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/frontend/smt2/smt2_commands.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,7 @@ static smt_status_t check_with_assumptions(context_t *ctx, const param_t *params
700700
// Solve
701701
status = yices_check_context_with_model(ctx, params, &mdl, n, assumptions.data);
702702

703-
if (status == STATUS_UNSAT) {
703+
if (status == YICES_STATUS_UNSAT) {
704704
term_t model_interp = context_get_unsat_model_interpolant(ctx);
705705
if (model_interp != NULL_TERM) {
706706
ivector_t lcore;
@@ -3232,7 +3232,7 @@ static void validate_unsat_core(smt2_globals_t *g) {
32323232
int32_t code;
32333233
smt_status_t status;
32343234

3235-
if (g->unsat_core->status == STATUS_UNSAT) {
3235+
if (g->unsat_core->status == YICES_STATUS_UNSAT) {
32363236
saved_context = g->ctx;
32373237
g->ctx = NULL;
32383238
init_smt2_context(g);

0 commit comments

Comments
 (0)