Z3
Public Member Functions | Data Fields
Tactic Class Reference

Public Member Functions

def __init__ (self, tactic, ctx=None)
 
def __deepcopy__ (self, memo={})
 
def __del__ (self)
 
def solver (self)
 
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 7184 of file z3py.py.

Constructor & Destructor Documentation

◆ __init__()

def __init__ (   self,
  tactic,
  ctx = None 
)

Definition at line 7189 of file z3py.py.

7189  def __init__(self, tactic, ctx=None):
7190  self.ctx = _get_ctx(ctx)
7191  self.tactic = None
7192  if isinstance(tactic, TacticObj):
7193  self.tactic = tactic
7194  else:
7195  if __debug__:
7196  _z3_assert(isinstance(tactic, str), "tactic name expected")
7197  try:
7198  self.tactic = Z3_mk_tactic(self.ctx.ref(), str(tactic))
7199  except Z3Exception:
7200  raise Z3Exception("unknown tactic '%s'" % tactic)
7201  Z3_tactic_inc_ref(self.ctx.ref(), self.tactic)
7202 
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...

◆ __del__()

def __del__ (   self)

Definition at line 7206 of file z3py.py.

7206  def __del__(self):
7207  if self.tactic is not None and self.ctx.ref() is not None:
7208  Z3_tactic_dec_ref(self.ctx.ref(), self.tactic)
7209 
void Z3_API Z3_tactic_dec_ref(Z3_context c, Z3_tactic g)
Decrement the reference counter of the given tactic.

Member Function Documentation

◆ __call__()

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

7244  def __call__(self, goal, *arguments, **keywords):
7245  """Apply tactic `self` to the given goal or Z3 Boolean expression using the given options.
7246 
7247  >>> x, y = Ints('x y')
7248  >>> t = Tactic('solve-eqs')
7249  >>> t(And(x == 0, y >= x + 1))
7250  [[y >= 1]]
7251  """
7252  return self.apply(goal, *arguments, **keywords)
7253 

◆ __deepcopy__()

def __deepcopy__ (   self,
  memo = {} 
)

Definition at line 7203 of file z3py.py.

7203  def __deepcopy__(self, memo={}):
7204  return Tactic(self.tactic, self.ctx)
7205 

◆ apply()

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

Referenced by Tactic.__call__().

7227  def apply(self, goal, *arguments, **keywords):
7228  """Apply tactic `self` to the given goal or Z3 Boolean expression using the given options.
7229 
7230  >>> x, y = Ints('x y')
7231  >>> t = Tactic('solve-eqs')
7232  >>> t.apply(And(x == 0, y >= x + 1))
7233  [[y >= 1]]
7234  """
7235  if __debug__:
7236  _z3_assert(isinstance(goal, Goal) or isinstance(goal, BoolRef), "Z3 Goal or Boolean expressions expected")
7237  goal = _to_goal(goal)
7238  if len(arguments) > 0 or len(keywords) > 0:
7239  p = args2params(arguments, keywords, self.ctx)
7240  return ApplyResult(Z3_tactic_apply_ex(self.ctx.ref(), self.tactic, goal.goal, p.params), self.ctx)
7241  else:
7242  return ApplyResult(Z3_tactic_apply(self.ctx.ref(), self.tactic, goal.goal), self.ctx)
7243 
def args2params(arguments, keywords, ctx=None)
Definition: z3py.py:4744
Z3_apply_result Z3_API Z3_tactic_apply(Z3_context c, Z3_tactic t, Z3_goal g)
Apply tactic t to the goal g.
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.

◆ help()

def help (   self)
Display a string containing a description of the available options for the `self` tactic.

Definition at line 7254 of file z3py.py.

7254  def help(self):
7255  """Display a string containing a description of the available options for the `self` tactic."""
7256  print(Z3_tactic_get_help(self.ctx.ref(), self.tactic))
7257 
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.

◆ param_descrs()

def param_descrs (   self)
Return the parameter description set.

Definition at line 7258 of file z3py.py.

7258  def param_descrs(self):
7259  """Return the parameter description set."""
7260  return ParamDescrsRef(Z3_tactic_get_param_descrs(self.ctx.ref(), self.tactic), self.ctx)
7261 
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.

◆ solver()

def solver (   self)
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 7210 of file z3py.py.

7210  def solver(self):
7211  """Create a solver using the tactic `self`.
7212 
7213  The solver supports the methods `push()` and `pop()`, but it
7214  will always solve each `check()` from scratch.
7215 
7216  >>> t = Then('simplify', 'nlsat')
7217  >>> s = t.solver()
7218  >>> x = Real('x')
7219  >>> s.add(x**2 == 2, x > 0)
7220  >>> s.check()
7221  sat
7222  >>> s.model()
7223  [x = 1.4142135623?]
7224  """
7225  return Solver(Z3_mk_solver_from_tactic(self.ctx.ref(), self.tactic), self.ctx)
7226 
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

ctx

◆ tactic

tactic