Z3
Public Member Functions | Data Fields
Tactic Class Reference

Public Member Functions

def __init__
 
def __deepcopy__
 
def __del__ (self)
 
def solver
 
def apply (self, goal, arguments, keywords)
 
def __call__ (self, goal, arguments, keywords)
 
def help (self)
 
def param_descrs (self)
 

Data Fields

 ctx
 
 tactic
 

Detailed Description

Tactics transform, solver and/or simplify sets of constraints (Goal).
A Tactic can be converted into a Solver using the method solver().

Several combinators are available for creating new tactics using the built-in ones:
Then(), OrElse(), FailIf(), Repeat(), When(), Cond().

Definition at line 8586 of file z3py.py.

Constructor & Destructor Documentation

def __init__ (   self,
  tactic,
  ctx = None 
)

Definition at line 8594 of file z3py.py.

8594  def __init__(self, tactic, ctx=None):
8595  self.ctx = _get_ctx(ctx)
8596  self.tactic = None
8597  if isinstance(tactic, TacticObj):
8598  self.tactic = tactic
8599  else:
8600  if z3_debug():
8601  _z3_assert(isinstance(tactic, str), "tactic name expected")
8602  try:
8603  self.tactic = Z3_mk_tactic(self.ctx.ref(), str(tactic))
8604  except Z3Exception:
8605  raise Z3Exception("unknown tactic '%s'" % tactic)
8606  Z3_tactic_inc_ref(self.ctx.ref(), self.tactic)
8607 
void Z3_API Z3_tactic_inc_ref(Z3_context c, Z3_tactic t)
Increment the reference counter of the given tactic.
Z3_tactic Z3_API Z3_mk_tactic(Z3_context c, Z3_string name)
Return a tactic associated with the given name. The complete list of tactics may be obtained using th...
def __init__
Definition: z3py.py:8594
def z3_debug()
Definition: z3py.py:70
def __del__ (   self)

Definition at line 8611 of file z3py.py.

8611  def __del__(self):
8612  if self.tactic is not None and self.ctx.ref() is not None and Z3_tactic_dec_ref is not None:
8613  Z3_tactic_dec_ref(self.ctx.ref(), self.tactic)
8614 
def __del__(self)
Definition: z3py.py:8611
void Z3_API Z3_tactic_dec_ref(Z3_context c, Z3_tactic g)
Decrement the reference counter of the given tactic.

Member Function Documentation

def __call__ (   self,
  goal,
  arguments,
  keywords 
)
Apply tactic `self` to the given goal or Z3 Boolean expression using the given options.

>>> x, y = Ints('x y')
>>> t = Tactic('solve-eqs')
>>> t(And(x == 0, y >= x + 1))
[[y >= 1]]

Definition at line 8649 of file z3py.py.

8649  def __call__(self, goal, *arguments, **keywords):
8650  """Apply tactic `self` to the given goal or Z3 Boolean expression using the given options.
8651 
8652  >>> x, y = Ints('x y')
8653  >>> t = Tactic('solve-eqs')
8654  >>> t(And(x == 0, y >= x + 1))
8655  [[y >= 1]]
8656  """
8657  return self.apply(goal, *arguments, **keywords)
8658 
def apply(self, goal, arguments, keywords)
Definition: z3py.py:8632
def __call__(self, goal, arguments, keywords)
Definition: z3py.py:8649
def __deepcopy__ (   self,
  memo = {} 
)

Definition at line 8608 of file z3py.py.

8608  def __deepcopy__(self, memo={}):
8609  return Tactic(self.tactic, self.ctx)
8610 
def __deepcopy__
Definition: z3py.py:8608
def apply (   self,
  goal,
  arguments,
  keywords 
)
Apply tactic `self` to the given goal or Z3 Boolean expression using the given options.

>>> x, y = Ints('x y')
>>> t = Tactic('solve-eqs')
>>> t.apply(And(x == 0, y >= x + 1))
[[y >= 1]]

Definition at line 8632 of file z3py.py.

Referenced by Tactic.__call__().

8632  def apply(self, goal, *arguments, **keywords):
8633  """Apply tactic `self` to the given goal or Z3 Boolean expression using the given options.
8634 
8635  >>> x, y = Ints('x y')
8636  >>> t = Tactic('solve-eqs')
8637  >>> t.apply(And(x == 0, y >= x + 1))
8638  [[y >= 1]]
8639  """
8640  if z3_debug():
8641  _z3_assert(isinstance(goal, (Goal, BoolRef)), "Z3 Goal or Boolean expressions expected")
8642  goal = _to_goal(goal)
8643  if len(arguments) > 0 or len(keywords) > 0:
8644  p = args2params(arguments, keywords, self.ctx)
8645  return ApplyResult(Z3_tactic_apply_ex(self.ctx.ref(), self.tactic, goal.goal, p.params), self.ctx)
8646  else:
8647  return ApplyResult(Z3_tactic_apply(self.ctx.ref(), self.tactic, goal.goal), self.ctx)
8648 
Z3_apply_result Z3_API Z3_tactic_apply(Z3_context c, Z3_tactic t, Z3_goal g)
Apply tactic t to the goal g.
def args2params
Definition: z3py.py:5695
Z3_apply_result Z3_API Z3_tactic_apply_ex(Z3_context c, Z3_tactic t, Z3_goal g, Z3_params p)
Apply tactic t to the goal g using the parameter set p.
def apply(self, goal, arguments, keywords)
Definition: z3py.py:8632
def z3_debug()
Definition: z3py.py:70
def help (   self)
Display a string containing a description of the available options for the `self` tactic.

Definition at line 8659 of file z3py.py.

8659  def help(self):
8660  """Display a string containing a description of the available options for the `self` tactic."""
8661  print(Z3_tactic_get_help(self.ctx.ref(), self.tactic))
8662 
def help(self)
Definition: z3py.py:8659
Z3_string Z3_API Z3_tactic_get_help(Z3_context c, Z3_tactic t)
Return a string containing a description of parameters accepted by the given tactic.
def param_descrs (   self)
Return the parameter description set.

Definition at line 8663 of file z3py.py.

8663  def param_descrs(self):
8664  """Return the parameter description set."""
8665  return ParamDescrsRef(Z3_tactic_get_param_descrs(self.ctx.ref(), self.tactic), self.ctx)
8666 
8667 
Z3_param_descrs Z3_API Z3_tactic_get_param_descrs(Z3_context c, Z3_tactic t)
Return the parameter description set for the given tactic object.
def param_descrs(self)
Definition: z3py.py:8663
def solver (   self,
  logFile = None 
)
Create a solver using the tactic `self`.

The solver supports the methods `push()` and `pop()`, but it
will always solve each `check()` from scratch.

>>> t = Then('simplify', 'nlsat')
>>> s = t.solver()
>>> x = Real('x')
>>> s.add(x**2 == 2, x > 0)
>>> s.check()
sat
>>> s.model()
[x = 1.4142135623?]

Definition at line 8615 of file z3py.py.

8615  def solver(self, logFile=None):
8616  """Create a solver using the tactic `self`.
8617 
8618  The solver supports the methods `push()` and `pop()`, but it
8619  will always solve each `check()` from scratch.
8620 
8621  >>> t = Then('simplify', 'nlsat')
8622  >>> s = t.solver()
8623  >>> x = Real('x')
8624  >>> s.add(x**2 == 2, x > 0)
8625  >>> s.check()
8626  sat
8627  >>> s.model()
8628  [x = 1.4142135623?]
8629  """
8630  return Solver(Z3_mk_solver_from_tactic(self.ctx.ref(), self.tactic), self.ctx, logFile)
8631 
def solver
Definition: z3py.py:8615
Z3_solver Z3_API Z3_mk_solver_from_tactic(Z3_context c, Z3_tactic t)
Create a new solver that is implemented using the given tactic. The solver supports the commands Z3_s...

Field Documentation

ctx
tactic