3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-01 22:57:51 +00:00

Debugging

This commit is contained in:
CEisenhofer 2026-04-08 18:48:47 +02:00
parent 86dc9d3268
commit 513f49f39c
4 changed files with 39 additions and 20 deletions

View file

@ -244,7 +244,7 @@ Author:
#include "ast/euf/euf_sgraph.h"
#include <map>
#include "model/model.h"
#include "sat/smt/arith_solver.h"
namespace smt {
class enode;
@ -575,6 +575,8 @@ namespace seq {
vector<constraint> const& constraints() const { return m_constraints; }
vector<constraint>& constraints() { return m_constraints; }
sat::literal get_external_conflict_literal() const { return m_conflict_external_literal; }
// Query current bounds for a variable from the arithmetic subsolver.
// Falls der Subsolver keinen Bound liefert, werden konservative Defaults
// 0 / UINT_MAX verwendet.