Example #1
0
def arith_avg_bw_probe(ctx=None):
    ctx = z3._get_ctx(ctx)
    return z3.Probe(z3core.Z3_mk_probe(ctx.ref(), 'arith-avg-bw'), ctx)
Example #2
0
def is_nra_probe(ctx=None):
    ctx = z3._get_ctx(ctx)
    return z3.Probe(z3core.Z3_mk_probe(ctx.ref(), 'is-nra'), ctx)
Example #3
0
def is_unbounded_probe(ctx=None):
    ctx = z3._get_ctx(ctx)
    return z3.Probe(z3core.Z3_mk_probe(ctx.ref(), 'is-unbounded'), ctx)
Example #4
0
def arith_max_deg_probe(ctx=None):
    ctx = z3._get_ctx(ctx)
    return z3.Probe(z3core.Z3_mk_probe(ctx.ref(), 'arith-max-deg'), ctx)
Example #5
0
def is_propositional_probe(ctx=None):
    ctx = z3._get_ctx(ctx)
    return z3.Probe(z3core.Z3_mk_probe(ctx.ref(), 'is-propositional'), ctx)
Example #6
0
def is_qfbv_eq_probe(ctx=None):
    ctx = z3._get_ctx(ctx)
    return z3.Probe(z3core.Z3_mk_probe(ctx.ref(), 'is-qfbv-eq'), ctx)
Example #7
0
def produce_unsat_cores_probe(ctx=None):
    ctx = z3._get_ctx(ctx)
    return z3.Probe(z3core.Z3_mk_probe(ctx.ref(), 'produce-unsat-cores'), ctx)
Example #8
0
def has_patterns_probe(ctx=None):
    ctx = z3._get_ctx(ctx)
    return z3.Probe(z3core.Z3_mk_probe(ctx.ref(), 'has-patterns'), ctx)
Example #9
0
def produce_proofs_probe(ctx=None):
    ctx = z3._get_ctx(ctx)
    return z3.Probe(z3core.Z3_mk_probe(ctx.ref(), 'produce-proofs'), ctx)
Example #10
0
def produce_model_probe(ctx=None):
    ctx = z3._get_ctx(ctx)
    return z3.Probe(z3core.Z3_mk_probe(ctx.ref(), 'produce-model'), ctx)
Example #11
0
def num_bv_consts_probe(ctx=None):
    ctx = z3._get_ctx(ctx)
    return z3.Probe(z3core.Z3_mk_probe(ctx.ref(), 'num-bv-consts'), ctx)
Example #12
0
def num_exprs_probe(ctx=None):
    ctx = z3._get_ctx(ctx)
    return z3.Probe(z3core.Z3_mk_probe(ctx.ref(), 'num-exprs'), ctx)
Example #13
0
def size_probe(ctx=None):
    ctx = z3._get_ctx(ctx)
    return z3.Probe(z3core.Z3_mk_probe(ctx.ref(), 'size'), ctx)
Example #14
0
def depth_probe(ctx=None):
    ctx = z3._get_ctx(ctx)
    return z3.Probe(z3core.Z3_mk_probe(ctx.ref(), 'depth'), ctx)
Example #15
0
def memory_probe(ctx=None):
    ctx = z3._get_ctx(ctx)
    return z3.Probe(z3core.Z3_mk_probe(ctx.ref(), 'memory'), ctx)