Z3
 
Loading...
Searching...
No Matches
Public Member Functions | Data Fields
Probe Class Reference

Public Member Functions

 __init__ (self, probe, ctx=None)
 
 __deepcopy__ (self, memo={})
 
 __del__ (self)
 
 __lt__ (self, other)
 
 __gt__ (self, other)
 
 __le__ (self, other)
 
 __ge__ (self, other)
 
 __eq__ (self, other)
 
 __ne__ (self, other)
 
 __call__ (self, goal)
 

Data Fields

 ctx
 
 probe
 

Detailed Description

Probes are used to inspect a goal (aka problem) and collect information that may be used
to decide which solver and/or preprocessing step will be used.

Definition at line 8852 of file z3py.py.

Constructor & Destructor Documentation

◆ __init__()

__init__ (   self,
  probe,
  ctx = None 
)

Definition at line 8857 of file z3py.py.

8857 def __init__(self, probe, ctx=None):
8858 self.ctx = _get_ctx(ctx)
8859 self.probe = None
8860 if isinstance(probe, ProbeObj):
8861 self.probe = probe
8862 elif isinstance(probe, float):
8863 self.probe = Z3_probe_const(self.ctx.ref(), probe)
8864 elif _is_int(probe):
8865 self.probe = Z3_probe_const(self.ctx.ref(), float(probe))
8866 elif isinstance(probe, bool):
8867 if probe:
8868 self.probe = Z3_probe_const(self.ctx.ref(), 1.0)
8869 else:
8870 self.probe = Z3_probe_const(self.ctx.ref(), 0.0)
8871 else:
8872 if z3_debug():
8873 _z3_assert(isinstance(probe, str), "probe name expected")
8874 try:
8875 self.probe = Z3_mk_probe(self.ctx.ref(), probe)
8876 except Z3Exception:
8877 raise Z3Exception("unknown probe '%s'" % probe)
8878 Z3_probe_inc_ref(self.ctx.ref(), self.probe)
8879
Z3_probe Z3_API Z3_mk_probe(Z3_context c, Z3_string name)
Return a probe associated with the given name. The complete list of probes may be obtained using the ...
void Z3_API Z3_probe_inc_ref(Z3_context c, Z3_probe p)
Increment the reference counter of the given probe.
Z3_probe Z3_API Z3_probe_const(Z3_context x, double val)
Return a probe that always evaluates to val.

◆ __del__()

__del__ (   self)

Definition at line 8883 of file z3py.py.

8883 def __del__(self):
8884 if self.probe is not None and self.ctx.ref() is not None and Z3_probe_dec_ref is not None:
8885 Z3_probe_dec_ref(self.ctx.ref(), self.probe)
8886
void Z3_API Z3_probe_dec_ref(Z3_context c, Z3_probe p)
Decrement the reference counter of the given probe.

Member Function Documentation

◆ __call__()

__call__ (   self,
  goal 
)
Evaluate the probe `self` in the given goal.

>>> p = Probe('size')
>>> x = Int('x')
>>> g = Goal()
>>> g.add(x > 0)
>>> g.add(x < 10)
>>> p(g)
2.0
>>> g.add(x < 20)
>>> p(g)
3.0
>>> p = Probe('num-consts')
>>> p(g)
1.0
>>> p = Probe('is-propositional')
>>> p(g)
0.0
>>> p = Probe('is-qflia')
>>> p(g)
1.0

Definition at line 8972 of file z3py.py.

8972 def __call__(self, goal):
8973 """Evaluate the probe `self` in the given goal.
8974
8975 >>> p = Probe('size')
8976 >>> x = Int('x')
8977 >>> g = Goal()
8978 >>> g.add(x > 0)
8979 >>> g.add(x < 10)
8980 >>> p(g)
8981 2.0
8982 >>> g.add(x < 20)
8983 >>> p(g)
8984 3.0
8985 >>> p = Probe('num-consts')
8986 >>> p(g)
8987 1.0
8988 >>> p = Probe('is-propositional')
8989 >>> p(g)
8990 0.0
8991 >>> p = Probe('is-qflia')
8992 >>> p(g)
8993 1.0
8994 """
8995 if z3_debug():
8996 _z3_assert(isinstance(goal, (Goal, BoolRef)), "Z3 Goal or Boolean expression expected")
8997 goal = _to_goal(goal)
8998 return Z3_probe_apply(self.ctx.ref(), self.probe, goal.goal)
8999
9000
double Z3_API Z3_probe_apply(Z3_context c, Z3_probe p, Z3_goal g)
Execute the probe over the goal. The probe always produce a double value. "Boolean" probes return 0....

◆ __deepcopy__()

__deepcopy__ (   self,
  memo = {} 
)

Definition at line 8880 of file z3py.py.

8880 def __deepcopy__(self, memo={}):
8881 return Probe(self.probe, self.ctx)
8882

◆ __eq__()

__eq__ (   self,
  other 
)
Return a probe that evaluates to "true" when the value returned by `self`
is equal to the value returned by `other`.

>>> p = Probe('size') == 2
>>> x = Int('x')
>>> g = Goal()
>>> g.add(x > 0)
>>> g.add(x < 10)
>>> p(g)
1.0

Definition at line 8943 of file z3py.py.

8943 def __eq__(self, other):
8944 """Return a probe that evaluates to "true" when the value returned by `self`
8945 is equal to the value returned by `other`.
8946
8947 >>> p = Probe('size') == 2
8948 >>> x = Int('x')
8949 >>> g = Goal()
8950 >>> g.add(x > 0)
8951 >>> g.add(x < 10)
8952 >>> p(g)
8953 1.0
8954 """
8955 return Probe(Z3_probe_eq(self.ctx.ref(), self.probe, _to_probe(other, self.ctx).probe), self.ctx)
8956
Z3_probe Z3_API Z3_probe_eq(Z3_context x, Z3_probe p1, Z3_probe p2)
Return a probe that evaluates to "true" when the value returned by p1 is equal to the value returned ...

Referenced by CheckSatResult.__ne__().

◆ __ge__()

__ge__ (   self,
  other 
)
Return a probe that evaluates to "true" when the value returned by `self`
is greater than or equal to the value returned by `other`.

>>> p = Probe('size') >= 2
>>> x = Int('x')
>>> g = Goal()
>>> g.add(x > 0)
>>> g.add(x < 10)
>>> p(g)
1.0

Definition at line 8929 of file z3py.py.

8929 def __ge__(self, other):
8930 """Return a probe that evaluates to "true" when the value returned by `self`
8931 is greater than or equal to the value returned by `other`.
8932
8933 >>> p = Probe('size') >= 2
8934 >>> x = Int('x')
8935 >>> g = Goal()
8936 >>> g.add(x > 0)
8937 >>> g.add(x < 10)
8938 >>> p(g)
8939 1.0
8940 """
8941 return Probe(Z3_probe_ge(self.ctx.ref(), self.probe, _to_probe(other, self.ctx).probe), self.ctx)
8942
Z3_probe Z3_API Z3_probe_ge(Z3_context x, Z3_probe p1, Z3_probe p2)
Return a probe that evaluates to "true" when the value returned by p1 is greater than or equal to the...

◆ __gt__()

__gt__ (   self,
  other 
)
Return a probe that evaluates to "true" when the value returned by `self`
is greater than the value returned by `other`.

>>> p = Probe('size') > 10
>>> x = Int('x')
>>> g = Goal()
>>> g.add(x > 0)
>>> g.add(x < 10)
>>> p(g)
0.0

Definition at line 8901 of file z3py.py.

8901 def __gt__(self, other):
8902 """Return a probe that evaluates to "true" when the value returned by `self`
8903 is greater than the value returned by `other`.
8904
8905 >>> p = Probe('size') > 10
8906 >>> x = Int('x')
8907 >>> g = Goal()
8908 >>> g.add(x > 0)
8909 >>> g.add(x < 10)
8910 >>> p(g)
8911 0.0
8912 """
8913 return Probe(Z3_probe_gt(self.ctx.ref(), self.probe, _to_probe(other, self.ctx).probe), self.ctx)
8914
Z3_probe Z3_API Z3_probe_gt(Z3_context x, Z3_probe p1, Z3_probe p2)
Return a probe that evaluates to "true" when the value returned by p1 is greater than the value retur...

◆ __le__()

__le__ (   self,
  other 
)
Return a probe that evaluates to "true" when the value returned by `self`
is less than or equal to the value returned by `other`.

>>> p = Probe('size') <= 2
>>> x = Int('x')
>>> g = Goal()
>>> g.add(x > 0)
>>> g.add(x < 10)
>>> p(g)
1.0

Definition at line 8915 of file z3py.py.

8915 def __le__(self, other):
8916 """Return a probe that evaluates to "true" when the value returned by `self`
8917 is less than or equal to the value returned by `other`.
8918
8919 >>> p = Probe('size') <= 2
8920 >>> x = Int('x')
8921 >>> g = Goal()
8922 >>> g.add(x > 0)
8923 >>> g.add(x < 10)
8924 >>> p(g)
8925 1.0
8926 """
8927 return Probe(Z3_probe_le(self.ctx.ref(), self.probe, _to_probe(other, self.ctx).probe), self.ctx)
8928
Z3_probe Z3_API Z3_probe_le(Z3_context x, Z3_probe p1, Z3_probe p2)
Return a probe that evaluates to "true" when the value returned by p1 is less than or equal to the va...

◆ __lt__()

__lt__ (   self,
  other 
)
Return a probe that evaluates to "true" when the value returned by `self`
is less than the value returned by `other`.

>>> p = Probe('size') < 10
>>> x = Int('x')
>>> g = Goal()
>>> g.add(x > 0)
>>> g.add(x < 10)
>>> p(g)
1.0

Definition at line 8887 of file z3py.py.

8887 def __lt__(self, other):
8888 """Return a probe that evaluates to "true" when the value returned by `self`
8889 is less than the value returned by `other`.
8890
8891 >>> p = Probe('size') < 10
8892 >>> x = Int('x')
8893 >>> g = Goal()
8894 >>> g.add(x > 0)
8895 >>> g.add(x < 10)
8896 >>> p(g)
8897 1.0
8898 """
8899 return Probe(Z3_probe_lt(self.ctx.ref(), self.probe, _to_probe(other, self.ctx).probe), self.ctx)
8900
Z3_probe Z3_API Z3_probe_lt(Z3_context x, Z3_probe p1, Z3_probe p2)
Return a probe that evaluates to "true" when the value returned by p1 is less than the value returned...

◆ __ne__()

__ne__ (   self,
  other 
)
Return a probe that evaluates to "true" when the value returned by `self`
is not equal to the value returned by `other`.

>>> p = Probe('size') != 2
>>> x = Int('x')
>>> g = Goal()
>>> g.add(x > 0)
>>> g.add(x < 10)
>>> p(g)
0.0

Definition at line 8957 of file z3py.py.

8957 def __ne__(self, other):
8958 """Return a probe that evaluates to "true" when the value returned by `self`
8959 is not equal to the value returned by `other`.
8960
8961 >>> p = Probe('size') != 2
8962 >>> x = Int('x')
8963 >>> g = Goal()
8964 >>> g.add(x > 0)
8965 >>> g.add(x < 10)
8966 >>> p(g)
8967 0.0
8968 """
8969 p = self.__eq__(other)
8970 return Probe(Z3_probe_not(self.ctx.ref(), p.probe), self.ctx)
8971
Z3_probe Z3_API Z3_probe_not(Z3_context x, Z3_probe p)
Return a probe that evaluates to "true" when p does not evaluate to true.

Field Documentation

◆ ctx

ctx

Definition at line 8858 of file z3py.py.

Referenced by ArithRef.__add__(), BitVecRef.__add__(), BitVecRef.__and__(), FuncDeclRef.__call__(), AstMap.__contains__(), AstRef.__copy__(), Goal.__copy__(), AstVector.__copy__(), FuncInterp.__copy__(), ModelRef.__copy__(), AstRef.__deepcopy__(), Datatype.__deepcopy__(), ParamsRef.__deepcopy__(), ParamDescrsRef.__deepcopy__(), Goal.__deepcopy__(), AstVector.__deepcopy__(), AstMap.__deepcopy__(), FuncEntry.__deepcopy__(), FuncInterp.__deepcopy__(), ModelRef.__deepcopy__(), Statistics.__deepcopy__(), Context.__del__(), AstRef.__del__(), ScopedConstructor.__del__(), ScopedConstructorList.__del__(), ParamsRef.__del__(), ParamDescrsRef.__del__(), Goal.__del__(), AstVector.__del__(), AstMap.__del__(), FuncEntry.__del__(), FuncInterp.__del__(), ModelRef.__del__(), Statistics.__del__(), Solver.__del__(), ArithRef.__div__(), BitVecRef.__div__(), ExprRef.__eq__(), ArithRef.__ge__(), BitVecRef.__ge__(), AstVector.__getitem__(), ModelRef.__getitem__(), Statistics.__getitem__(), AstMap.__getitem__(), ArithRef.__gt__(), BitVecRef.__gt__(), BitVecRef.__invert__(), ArithRef.__le__(), BitVecRef.__le__(), AstVector.__len__(), AstMap.__len__(), ModelRef.__len__(), Statistics.__len__(), BitVecRef.__lshift__(), ArithRef.__lt__(), BitVecRef.__lt__(), ArithRef.__mod__(), BitVecRef.__mod__(), BoolRef.__mul__(), ArithRef.__mul__(), BitVecRef.__mul__(), ExprRef.__ne__(), ArithRef.__neg__(), BitVecRef.__neg__(), BitVecRef.__or__(), ArithRef.__pow__(), ArithRef.__radd__(), BitVecRef.__radd__(), BitVecRef.__rand__(), ArithRef.__rdiv__(), BitVecRef.__rdiv__(), ParamsRef.__repr__(), ParamDescrsRef.__repr__(), AstMap.__repr__(), Statistics.__repr__(), BitVecRef.__rlshift__(), ArithRef.__rmod__(), BitVecRef.__rmod__(), ArithRef.__rmul__(), BitVecRef.__rmul__(), BitVecRef.__ror__(), ArithRef.__rpow__(), BitVecRef.__rrshift__(), BitVecRef.__rshift__(), ArithRef.__rsub__(), BitVecRef.__rsub__(), BitVecRef.__rxor__(), AstVector.__setitem__(), AstMap.__setitem__(), ArithRef.__sub__(), BitVecRef.__sub__(), BitVecRef.__xor__(), DatatypeSortRef.accessor(), ExprRef.arg(), FuncEntry.arg_value(), FuncInterp.arity(), Goal.as_expr(), Solver.assert_and_track(), Goal.assert_exprs(), Solver.assert_exprs(), QuantifierRef.body(), Solver.check(), Goal.convert_model(), AstRef.ctx_ref(), ExprRef.decl(), ModelRef.decls(), ArrayRef.default(), RatNumRef.denominator(), Goal.depth(), Goal.dimacs(), FuncDeclRef.domain(), ArraySortRef.domain_n(), FuncInterp.else_value(), FuncInterp.entry(), AstMap.erase(), ModelRef.eval(), Goal.get(), ParamDescrsRef.get_documentation(), ModelRef.get_interp(), Statistics.get_key_value(), ParamDescrsRef.get_kind(), ParamDescrsRef.get_name(), ModelRef.get_sort(), ModelRef.get_universe(), Goal.inconsistent(), AstMap.keys(), Statistics.keys(), Solver.model(), SortRef.name(), QuantifierRef.no_pattern(), FuncEntry.num_args(), FuncInterp.num_entries(), Solver.num_scopes(), ModelRef.num_sorts(), FuncDeclRef.params(), QuantifierRef.pattern(), AlgebraicNumRef.poly(), Solver.pop(), Goal.prec(), ModelRef.project(), ModelRef.project_with_witness(), Solver.push(), AstVector.push(), QuantifierRef.qid(), FuncDeclRef.range(), ArraySortRef.range(), DatatypeSortRef.recognizer(), Context.ref(), AstMap.reset(), Solver.reset(), AstVector.resize(), Solver.set(), ParamsRef.set(), Goal.sexpr(), AstVector.sexpr(), ModelRef.sexpr(), ParamDescrsRef.size(), Goal.size(), QuantifierRef.skolem_id(), AstVector.translate(), AstRef.translate(), Goal.translate(), ModelRef.translate(), ExprRef.update(), DatatypeRef.update_field(), ParamsRef.validate(), FuncEntry.value(), QuantifierRef.var_name(), and QuantifierRef.var_sort().

◆ probe

probe

Definition at line 8859 of file z3py.py.