Z3
Loading...
Searching...
No Matches
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 = _get_ctx(ctx)
 probe = None

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 8891 of file z3py.py.

Constructor & Destructor Documentation

◆ __init__()

__init__ ( self,
probe,
ctx = None )

Definition at line 8896 of file z3py.py.

8896 def __init__(self, probe, ctx=None):
8897 self.ctx = _get_ctx(ctx)
8898 self.probe = None
8899 if isinstance(probe, ProbeObj):
8900 self.probe = probe
8901 elif isinstance(probe, float):
8902 self.probe = Z3_probe_const(self.ctx.ref(), probe)
8903 elif _is_int(probe):
8904 self.probe = Z3_probe_const(self.ctx.ref(), float(probe))
8905 elif isinstance(probe, bool):
8906 if probe:
8907 self.probe = Z3_probe_const(self.ctx.ref(), 1.0)
8908 else:
8909 self.probe = Z3_probe_const(self.ctx.ref(), 0.0)
8910 else:
8911 if z3_debug():
8912 _z3_assert(isinstance(probe, str), "probe name expected")
8913 try:
8914 self.probe = Z3_mk_probe(self.ctx.ref(), probe)
8915 except Z3Exception:
8916 raise Z3Exception("unknown probe '%s'" % probe)
8917 Z3_probe_inc_ref(self.ctx.ref(), self.probe)
8918
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 8922 of file z3py.py.

8922 def __del__(self):
8923 if self.probe is not None and self.ctx.ref() is not None and Z3_probe_dec_ref is not None:
8924 Z3_probe_dec_ref(self.ctx.ref(), self.probe)
8925
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 9011 of file z3py.py.

9011 def __call__(self, goal):
9012 """Evaluate the probe `self` in the given goal.
9013
9014 >>> p = Probe('size')
9015 >>> x = Int('x')
9016 >>> g = Goal()
9017 >>> g.add(x > 0)
9018 >>> g.add(x < 10)
9019 >>> p(g)
9020 2.0
9021 >>> g.add(x < 20)
9022 >>> p(g)
9023 3.0
9024 >>> p = Probe('num-consts')
9025 >>> p(g)
9026 1.0
9027 >>> p = Probe('is-propositional')
9028 >>> p(g)
9029 0.0
9030 >>> p = Probe('is-qflia')
9031 >>> p(g)
9032 1.0
9033 """
9034 if z3_debug():
9035 _z3_assert(isinstance(goal, (Goal, BoolRef)), "Z3 Goal or Boolean expression expected")
9036 goal = _to_goal(goal)
9037 return Z3_probe_apply(self.ctx.ref(), self.probe, goal.goal)
9038
9039
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 8919 of file z3py.py.

8919 def __deepcopy__(self, memo={}):
8920 return Probe(self.probe, self.ctx)
8921

◆ __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 8982 of file z3py.py.

8982 def __eq__(self, other):
8983 """Return a probe that evaluates to "true" when the value returned by `self`
8984 is equal to the value returned by `other`.
8985
8986 >>> p = Probe('size') == 2
8987 >>> x = Int('x')
8988 >>> g = Goal()
8989 >>> g.add(x > 0)
8990 >>> g.add(x < 10)
8991 >>> p(g)
8992 1.0
8993 """
8994 return Probe(Z3_probe_eq(self.ctx.ref(), self.probe, _to_probe(other, self.ctx).probe), self.ctx)
8995
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 ...

◆ __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 8968 of file z3py.py.

8968 def __ge__(self, other):
8969 """Return a probe that evaluates to "true" when the value returned by `self`
8970 is greater than or equal to the value returned by `other`.
8971
8972 >>> p = Probe('size') >= 2
8973 >>> x = Int('x')
8974 >>> g = Goal()
8975 >>> g.add(x > 0)
8976 >>> g.add(x < 10)
8977 >>> p(g)
8978 1.0
8979 """
8980 return Probe(Z3_probe_ge(self.ctx.ref(), self.probe, _to_probe(other, self.ctx).probe), self.ctx)
8981
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 8940 of file z3py.py.

8940 def __gt__(self, other):
8941 """Return a probe that evaluates to "true" when the value returned by `self`
8942 is greater than the value returned by `other`.
8943
8944 >>> p = Probe('size') > 10
8945 >>> x = Int('x')
8946 >>> g = Goal()
8947 >>> g.add(x > 0)
8948 >>> g.add(x < 10)
8949 >>> p(g)
8950 0.0
8951 """
8952 return Probe(Z3_probe_gt(self.ctx.ref(), self.probe, _to_probe(other, self.ctx).probe), self.ctx)
8953
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 8954 of file z3py.py.

8954 def __le__(self, other):
8955 """Return a probe that evaluates to "true" when the value returned by `self`
8956 is less than or equal to the value returned by `other`.
8957
8958 >>> p = Probe('size') <= 2
8959 >>> x = Int('x')
8960 >>> g = Goal()
8961 >>> g.add(x > 0)
8962 >>> g.add(x < 10)
8963 >>> p(g)
8964 1.0
8965 """
8966 return Probe(Z3_probe_le(self.ctx.ref(), self.probe, _to_probe(other, self.ctx).probe), self.ctx)
8967
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 8926 of file z3py.py.

8926 def __lt__(self, other):
8927 """Return a probe that evaluates to "true" when the value returned by `self`
8928 is less than the value returned by `other`.
8929
8930 >>> p = Probe('size') < 10
8931 >>> x = Int('x')
8932 >>> g = Goal()
8933 >>> g.add(x > 0)
8934 >>> g.add(x < 10)
8935 >>> p(g)
8936 1.0
8937 """
8938 return Probe(Z3_probe_lt(self.ctx.ref(), self.probe, _to_probe(other, self.ctx).probe), self.ctx)
8939
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 8996 of file z3py.py.

8996 def __ne__(self, other):
8997 """Return a probe that evaluates to "true" when the value returned by `self`
8998 is not equal to the value returned by `other`.
8999
9000 >>> p = Probe('size') != 2
9001 >>> x = Int('x')
9002 >>> g = Goal()
9003 >>> g.add(x > 0)
9004 >>> g.add(x < 10)
9005 >>> p(g)
9006 0.0
9007 """
9008 p = self.__eq__(other)
9009 return Probe(Z3_probe_not(self.ctx.ref(), p.probe), self.ctx)
9010
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 = _get_ctx(ctx)

Definition at line 8897 of file z3py.py.

◆ probe

probe = None

Definition at line 8898 of file z3py.py.