Z3
Public Member Functions | Data Fields
Probe Class Reference

Public Member Functions

def __init__ (self, probe, ctx=None)
 
def __deepcopy__ (self, memo={})
 
def __del__ (self)
 
def __lt__ (self, other)
 
def __gt__ (self, other)
 
def __le__ (self, other)
 
def __ge__ (self, other)
 
def __eq__ (self, other)
 
def __ne__ (self, other)
 
def __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 8362 of file z3py.py.

Constructor & Destructor Documentation

◆ __init__()

def __init__ (   self,
  probe,
  ctx = None 
)

Definition at line 8367 of file z3py.py.

8367  def __init__(self, probe, ctx=None):
8368  self.ctx = _get_ctx(ctx)
8369  self.probe = None
8370  if isinstance(probe, ProbeObj):
8371  self.probe = probe
8372  elif isinstance(probe, float):
8373  self.probe = Z3_probe_const(self.ctx.ref(), probe)
8374  elif _is_int(probe):
8375  self.probe = Z3_probe_const(self.ctx.ref(), float(probe))
8376  elif isinstance(probe, bool):
8377  if probe:
8378  self.probe = Z3_probe_const(self.ctx.ref(), 1.0)
8379  else:
8380  self.probe = Z3_probe_const(self.ctx.ref(), 0.0)
8381  else:
8382  if z3_debug():
8383  _z3_assert(isinstance(probe, str), "probe name expected")
8384  try:
8385  self.probe = Z3_mk_probe(self.ctx.ref(), probe)
8386  except Z3Exception:
8387  raise Z3Exception("unknown probe '%s'" % probe)
8388  Z3_probe_inc_ref(self.ctx.ref(), self.probe)
8389 

◆ __del__()

def __del__ (   self)

Definition at line 8393 of file z3py.py.

8393  def __del__(self):
8394  if self.probe is not None and self.ctx.ref() is not None:
8395  Z3_probe_dec_ref(self.ctx.ref(), self.probe)
8396 

Member Function Documentation

◆ __call__()

def __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 8482 of file z3py.py.

8482  def __call__(self, goal):
8483  """Evaluate the probe `self` in the given goal.
8484 
8485  >>> p = Probe('size')
8486  >>> x = Int('x')
8487  >>> g = Goal()
8488  >>> g.add(x > 0)
8489  >>> g.add(x < 10)
8490  >>> p(g)
8491  2.0
8492  >>> g.add(x < 20)
8493  >>> p(g)
8494  3.0
8495  >>> p = Probe('num-consts')
8496  >>> p(g)
8497  1.0
8498  >>> p = Probe('is-propositional')
8499  >>> p(g)
8500  0.0
8501  >>> p = Probe('is-qflia')
8502  >>> p(g)
8503  1.0
8504  """
8505  if z3_debug():
8506  _z3_assert(isinstance(goal, (Goal, BoolRef)), "Z3 Goal or Boolean expression expected")
8507  goal = _to_goal(goal)
8508  return Z3_probe_apply(self.ctx.ref(), self.probe, goal.goal)
8509 
8510 

◆ __deepcopy__()

def __deepcopy__ (   self,
  memo = {} 
)

Definition at line 8390 of file z3py.py.

8390  def __deepcopy__(self, memo={}):
8391  return Probe(self.probe, self.ctx)
8392 

◆ __eq__()

def __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 8453 of file z3py.py.

8453  def __eq__(self, other):
8454  """Return a probe that evaluates to "true" when the value returned by `self`
8455  is equal to the value returned by `other`.
8456 
8457  >>> p = Probe('size') == 2
8458  >>> x = Int('x')
8459  >>> g = Goal()
8460  >>> g.add(x > 0)
8461  >>> g.add(x < 10)
8462  >>> p(g)
8463  1.0
8464  """
8465  return Probe(Z3_probe_eq(self.ctx.ref(), self.probe, _to_probe(other, self.ctx).probe), self.ctx)
8466 

Referenced by Probe.__ne__().

◆ __ge__()

def __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 8439 of file z3py.py.

8439  def __ge__(self, other):
8440  """Return a probe that evaluates to "true" when the value returned by `self`
8441  is greater than or equal to the value returned by `other`.
8442 
8443  >>> p = Probe('size') >= 2
8444  >>> x = Int('x')
8445  >>> g = Goal()
8446  >>> g.add(x > 0)
8447  >>> g.add(x < 10)
8448  >>> p(g)
8449  1.0
8450  """
8451  return Probe(Z3_probe_ge(self.ctx.ref(), self.probe, _to_probe(other, self.ctx).probe), self.ctx)
8452 

◆ __gt__()

def __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 8411 of file z3py.py.

8411  def __gt__(self, other):
8412  """Return a probe that evaluates to "true" when the value returned by `self`
8413  is greater than the value returned by `other`.
8414 
8415  >>> p = Probe('size') > 10
8416  >>> x = Int('x')
8417  >>> g = Goal()
8418  >>> g.add(x > 0)
8419  >>> g.add(x < 10)
8420  >>> p(g)
8421  0.0
8422  """
8423  return Probe(Z3_probe_gt(self.ctx.ref(), self.probe, _to_probe(other, self.ctx).probe), self.ctx)
8424 

◆ __le__()

def __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 8425 of file z3py.py.

8425  def __le__(self, other):
8426  """Return a probe that evaluates to "true" when the value returned by `self`
8427  is less than or equal to the value returned by `other`.
8428 
8429  >>> p = Probe('size') <= 2
8430  >>> x = Int('x')
8431  >>> g = Goal()
8432  >>> g.add(x > 0)
8433  >>> g.add(x < 10)
8434  >>> p(g)
8435  1.0
8436  """
8437  return Probe(Z3_probe_le(self.ctx.ref(), self.probe, _to_probe(other, self.ctx).probe), self.ctx)
8438 

◆ __lt__()

def __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 8397 of file z3py.py.

8397  def __lt__(self, other):
8398  """Return a probe that evaluates to "true" when the value returned by `self`
8399  is less than the value returned by `other`.
8400 
8401  >>> p = Probe('size') < 10
8402  >>> x = Int('x')
8403  >>> g = Goal()
8404  >>> g.add(x > 0)
8405  >>> g.add(x < 10)
8406  >>> p(g)
8407  1.0
8408  """
8409  return Probe(Z3_probe_lt(self.ctx.ref(), self.probe, _to_probe(other, self.ctx).probe), self.ctx)
8410 

◆ __ne__()

def __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 8467 of file z3py.py.

8467  def __ne__(self, other):
8468  """Return a probe that evaluates to "true" when the value returned by `self`
8469  is not equal to the value returned by `other`.
8470 
8471  >>> p = Probe('size') != 2
8472  >>> x = Int('x')
8473  >>> g = Goal()
8474  >>> g.add(x > 0)
8475  >>> g.add(x < 10)
8476  >>> p(g)
8477  0.0
8478  """
8479  p = self.__eq__(other)
8480  return Probe(Z3_probe_not(self.ctx.ref(), p.probe), self.ctx)
8481 

Field Documentation

◆ ctx

ctx

◆ probe

probe
z3py.UserPropagateBase.__init__
def __init__(self, s, ctx=None)
Definition: z3py.py:11177
Z3_probe_dec_ref
void Z3_API Z3_probe_dec_ref(Z3_context c, Z3_probe p)
Decrement the reference counter of the given probe.
Z3_probe_le
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...
Z3_probe_const
Z3_probe Z3_API Z3_probe_const(Z3_context x, double val)
Return a probe that always evaluates to val.
z3py.UserPropagateBase.__del__
def __del__(self)
Definition: z3py.py:11202
Z3_probe_inc_ref
void Z3_API Z3_probe_inc_ref(Z3_context c, Z3_probe p)
Increment the reference counter of the given probe.
z3py.z3_debug
def z3_debug()
Definition: z3py.py:64
Z3_probe_ge
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...
Z3_probe_eq
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 ...
Z3_probe_apply
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....
Z3_probe_lt
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...
Z3_mk_probe
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 ...
Z3_probe_not
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.
Z3_probe_gt
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...