We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following yices_push(ctx) call produces the below error with a debug build commit 09f1621.
yices_push(ctx)
#include "yices.h" int main() { yices_init(); type_t s1 = yices_real_type(); term_t t1 = yices_new_uninterpreted_term(s1); term_t t2 = yices_new_uninterpreted_term(s1); term_t z = yices_parse_rational("0"); term_t a1 = yices_arith_gt_atom(t2, z); term_t a2 = yices_arith_leq_atom(t2, t1); term_t a3 = yices_arith_lt_atom(t1, z); ctx_config_t* cfg = yices_new_config(); context_t* ctx = yices_new_context(cfg); yices_assert_formula(ctx, a1); yices_assert_formula(ctx, a2); yices_assert_formula(ctx, a3); yices_check_context_with_assumptions(ctx, NULL, 1, &a2); yices_push(ctx); return 0; }
error:
solvers/simplex/simplex.c:10349: simplex_push: Assertion `solver->decision_level == solver->base_level && solver->bstack.prop_ptr == solver->bstack.fix_ptr && solver->save_rows && eassertion_queue_is_empty(&solver->egraph_queue)' failed.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following
yices_push(ctx)
call produces the below error with a debug build commit 09f1621.error:
The text was updated successfully, but these errors were encountered: