Z3
Public Member Functions | Data Fields
Goal Class Reference
+ Inheritance diagram for Goal:

Public Member Functions

def __init__
 
def __del__ (self)
 
def depth (self)
 
def inconsistent (self)
 
def prec (self)
 
def precision (self)
 
def size (self)
 
def __len__ (self)
 
def get (self, i)
 
def __getitem__ (self, arg)
 
def assert_exprs (self, args)
 
def append (self, args)
 
def insert (self, args)
 
def add (self, args)
 
def convert_model (self, model)
 
def __repr__ (self)
 
def sexpr (self)
 
def dimacs
 
def translate (self, target)
 
def __copy__ (self)
 
def __deepcopy__
 
def simplify (self, arguments, keywords)
 
def as_expr (self)
 
- Public Member Functions inherited from Z3PPObject
def use_pp (self)
 

Data Fields

 ctx
 
 goal
 

Detailed Description

Goal is a collection of constraints we want to find a solution or show to be unsatisfiable (infeasible).

Goals are processed using Tactics. A Tactic transforms a goal into a set of subgoals.
A goal has a solution if one of its subgoals has a solution.
A goal is unsatisfiable if all subgoals are unsatisfiable.

Definition at line 5776 of file z3py.py.

Constructor & Destructor Documentation

def __init__ (   self,
  models = True,
  unsat_cores = False,
  proofs = False,
  ctx = None,
  goal = None 
)

Definition at line 5784 of file z3py.py.

5784  def __init__(self, models=True, unsat_cores=False, proofs=False, ctx=None, goal=None):
5785  if z3_debug():
5786  _z3_assert(goal is None or ctx is not None,
5787  "If goal is different from None, then ctx must be also different from None")
5788  self.ctx = _get_ctx(ctx)
5789  self.goal = goal
5790  if self.goal is None:
5791  self.goal = Z3_mk_goal(self.ctx.ref(), models, unsat_cores, proofs)
5792  Z3_goal_inc_ref(self.ctx.ref(), self.goal)
5793 
Z3_goal Z3_API Z3_mk_goal(Z3_context c, bool models, bool unsat_cores, bool proofs)
Create a goal (aka problem). A goal is essentially a set of formulas, that can be solved and/or trans...
def z3_debug()
Definition: z3py.py:70
void Z3_API Z3_goal_inc_ref(Z3_context c, Z3_goal g)
Increment the reference counter of the given goal.
def __init__
Definition: z3py.py:5784
def __del__ (   self)

Definition at line 5794 of file z3py.py.

5794  def __del__(self):
5795  if self.goal is not None and self.ctx.ref() is not None and Z3_goal_dec_ref is not None:
5796  Z3_goal_dec_ref(self.ctx.ref(), self.goal)
5797 
def __del__(self)
Definition: z3py.py:5794
void Z3_API Z3_goal_dec_ref(Z3_context c, Z3_goal g)
Decrement the reference counter of the given goal.

Member Function Documentation

def __copy__ (   self)

Definition at line 6031 of file z3py.py.

6031  def __copy__(self):
6032  return self.translate(self.ctx)
6033 
def translate(self, target)
Definition: z3py.py:6008
def __copy__(self)
Definition: z3py.py:6031
def __deepcopy__ (   self,
  memo = {} 
)

Definition at line 6034 of file z3py.py.

6034  def __deepcopy__(self, memo={}):
6035  return self.translate(self.ctx)
6036 
def translate(self, target)
Definition: z3py.py:6008
def __deepcopy__
Definition: z3py.py:6034
def __getitem__ (   self,
  arg 
)
Return a constraint in the goal `self`.

>>> g = Goal()
>>> x, y = Ints('x y')
>>> g.add(x == 0, y > x)
>>> g[0]
x == 0
>>> g[1]
y > x

Definition at line 5903 of file z3py.py.

5903  def __getitem__(self, arg):
5904  """Return a constraint in the goal `self`.
5905 
5906  >>> g = Goal()
5907  >>> x, y = Ints('x y')
5908  >>> g.add(x == 0, y > x)
5909  >>> g[0]
5910  x == 0
5911  >>> g[1]
5912  y > x
5913  """
5914  if arg < 0:
5915  arg += len(self)
5916  if arg < 0 or arg >= len(self):
5917  raise IndexError
5918  return self.get(arg)
5919 
def get(self, i)
Definition: z3py.py:5890
def __getitem__(self, arg)
Definition: z3py.py:5903
def __len__ (   self)
Return the number of constraints in the goal `self`.

>>> g = Goal()
>>> len(g)
0
>>> x, y = Ints('x y')
>>> g.add(x == 0, y > x)
>>> len(g)
2

Definition at line 5877 of file z3py.py.

Referenced by AstVector.__getitem__(), and AstVector.__setitem__().

5877  def __len__(self):
5878  """Return the number of constraints in the goal `self`.
5879 
5880  >>> g = Goal()
5881  >>> len(g)
5882  0
5883  >>> x, y = Ints('x y')
5884  >>> g.add(x == 0, y > x)
5885  >>> len(g)
5886  2
5887  """
5888  return self.size()
5889 
def size(self)
Definition: z3py.py:5864
def __len__(self)
Definition: z3py.py:5877
def __repr__ (   self)

Definition at line 5997 of file z3py.py.

5997  def __repr__(self):
5998  return obj_to_string(self)
5999 
def __repr__(self)
Definition: z3py.py:5997
def add (   self,
  args 
)
Add constraints.

>>> x = Int('x')
>>> g = Goal()
>>> g.add(x > 0, x < 2)
>>> g
[x > 0, x < 2]

Definition at line 5957 of file z3py.py.

Referenced by Fixedpoint.__iadd__(), and Optimize.__iadd__().

5957  def add(self, *args):
5958  """Add constraints.
5959 
5960  >>> x = Int('x')
5961  >>> g = Goal()
5962  >>> g.add(x > 0, x < 2)
5963  >>> g
5964  [x > 0, x < 2]
5965  """
5966  self.assert_exprs(*args)
5967 
def add(self, args)
Definition: z3py.py:5957
def assert_exprs(self, args)
Definition: z3py.py:5920
def append (   self,
  args 
)
Add constraints.

>>> x = Int('x')
>>> g = Goal()
>>> g.append(x > 0, x < 2)
>>> g
[x > 0, x < 2]

Definition at line 5935 of file z3py.py.

5935  def append(self, *args):
5936  """Add constraints.
5937 
5938  >>> x = Int('x')
5939  >>> g = Goal()
5940  >>> g.append(x > 0, x < 2)
5941  >>> g
5942  [x > 0, x < 2]
5943  """
5944  self.assert_exprs(*args)
5945 
def append(self, args)
Definition: z3py.py:5935
def assert_exprs(self, args)
Definition: z3py.py:5920
def as_expr (   self)
Return goal `self` as a single Z3 expression.

>>> x = Int('x')
>>> g = Goal()
>>> g.as_expr()
True
>>> g.add(x > 1)
>>> g.as_expr()
x > 1
>>> g.add(x < 10)
>>> g.as_expr()
And(x > 1, x < 10)

Definition at line 6057 of file z3py.py.

6057  def as_expr(self):
6058  """Return goal `self` as a single Z3 expression.
6059 
6060  >>> x = Int('x')
6061  >>> g = Goal()
6062  >>> g.as_expr()
6063  True
6064  >>> g.add(x > 1)
6065  >>> g.as_expr()
6066  x > 1
6067  >>> g.add(x < 10)
6068  >>> g.as_expr()
6069  And(x > 1, x < 10)
6070  """
6071  sz = len(self)
6072  if sz == 0:
6073  return BoolVal(True, self.ctx)
6074  elif sz == 1:
6075  return self.get(0)
6076  else:
6077  return And([self.get(i) for i in range(len(self))], self.ctx)
6078 
def BoolVal
Definition: z3py.py:1842
expr range(expr const &lo, expr const &hi)
Definition: z3++.h:4343
def And(args)
Definition: z3py.py:1982
def get(self, i)
Definition: z3py.py:5890
def as_expr(self)
Definition: z3py.py:6057
def assert_exprs (   self,
  args 
)
Assert constraints into the goal.

>>> x = Int('x')
>>> g = Goal()
>>> g.assert_exprs(x > 0, x < 2)
>>> g
[x > 0, x < 2]

Definition at line 5920 of file z3py.py.

Referenced by Goal.add(), Fixedpoint.add(), Optimize.add(), Goal.append(), Fixedpoint.append(), and Fixedpoint.insert().

5920  def assert_exprs(self, *args):
5921  """Assert constraints into the goal.
5922 
5923  >>> x = Int('x')
5924  >>> g = Goal()
5925  >>> g.assert_exprs(x > 0, x < 2)
5926  >>> g
5927  [x > 0, x < 2]
5928  """
5929  args = _get_args(args)
5930  s = BoolSort(self.ctx)
5931  for arg in args:
5932  arg = s.cast(arg)
5933  Z3_goal_assert(self.ctx.ref(), self.goal, arg.as_ast())
5934 
def BoolSort
Definition: z3py.py:1824
def assert_exprs(self, args)
Definition: z3py.py:5920
void Z3_API Z3_goal_assert(Z3_context c, Z3_goal g, Z3_ast a)
Add a new formula a to the given goal. The formula is split according to the following procedure that...
def convert_model (   self,
  model 
)
Retrieve model from a satisfiable goal
>>> a, b = Ints('a b')
>>> g = Goal()
>>> g.add(Or(a == 0, a == 1), Or(b == 0, b == 1), a > b)
>>> t = Then(Tactic('split-clause'), Tactic('solve-eqs'))
>>> r = t(g)
>>> r[0]
[Or(b == 0, b == 1), Not(0 <= b)]
>>> r[1]
[Or(b == 0, b == 1), Not(1 <= b)]
>>> # Remark: the subgoal r[0] is unsatisfiable
>>> # Creating a solver for solving the second subgoal
>>> s = Solver()
>>> s.add(r[1])
>>> s.check()
sat
>>> s.model()
[b = 0]
>>> # Model s.model() does not assign a value to `a`
>>> # It is a model for subgoal `r[1]`, but not for goal `g`
>>> # The method convert_model creates a model for `g` from a model for `r[1]`.
>>> r[1].convert_model(s.model())
[b = 0, a = 1]

Definition at line 5968 of file z3py.py.

5968  def convert_model(self, model):
5969  """Retrieve model from a satisfiable goal
5970  >>> a, b = Ints('a b')
5971  >>> g = Goal()
5972  >>> g.add(Or(a == 0, a == 1), Or(b == 0, b == 1), a > b)
5973  >>> t = Then(Tactic('split-clause'), Tactic('solve-eqs'))
5974  >>> r = t(g)
5975  >>> r[0]
5976  [Or(b == 0, b == 1), Not(0 <= b)]
5977  >>> r[1]
5978  [Or(b == 0, b == 1), Not(1 <= b)]
5979  >>> # Remark: the subgoal r[0] is unsatisfiable
5980  >>> # Creating a solver for solving the second subgoal
5981  >>> s = Solver()
5982  >>> s.add(r[1])
5983  >>> s.check()
5984  sat
5985  >>> s.model()
5986  [b = 0]
5987  >>> # Model s.model() does not assign a value to `a`
5988  >>> # It is a model for subgoal `r[1]`, but not for goal `g`
5989  >>> # The method convert_model creates a model for `g` from a model for `r[1]`.
5990  >>> r[1].convert_model(s.model())
5991  [b = 0, a = 1]
5992  """
5993  if z3_debug():
5994  _z3_assert(isinstance(model, ModelRef), "Z3 Model expected")
5995  return ModelRef(Z3_goal_convert_model(self.ctx.ref(), self.goal, model.model), self.ctx)
5996 
Z3_model Z3_API Z3_goal_convert_model(Z3_context c, Z3_goal g, Z3_model m)
Convert a model of the formulas of a goal to a model of an original goal. The model may be null...
def convert_model(self, model)
Definition: z3py.py:5968
def z3_debug()
Definition: z3py.py:70
def depth (   self)
Return the depth of the goal `self`.
The depth corresponds to the number of tactics applied to `self`.

>>> x, y = Ints('x y')
>>> g = Goal()
>>> g.add(x == 0, y >= x + 1)
>>> g.depth()
0
>>> r = Then('simplify', 'solve-eqs')(g)
>>> # r has 1 subgoal
>>> len(r)
1
>>> r[0].depth()
2

Definition at line 5798 of file z3py.py.

5798  def depth(self):
5799  """Return the depth of the goal `self`.
5800  The depth corresponds to the number of tactics applied to `self`.
5801 
5802  >>> x, y = Ints('x y')
5803  >>> g = Goal()
5804  >>> g.add(x == 0, y >= x + 1)
5805  >>> g.depth()
5806  0
5807  >>> r = Then('simplify', 'solve-eqs')(g)
5808  >>> # r has 1 subgoal
5809  >>> len(r)
5810  1
5811  >>> r[0].depth()
5812  2
5813  """
5814  return int(Z3_goal_depth(self.ctx.ref(), self.goal))
5815 
unsigned Z3_API Z3_goal_depth(Z3_context c, Z3_goal g)
Return the depth of the given goal. It tracks how many transformations were applied to it...
def depth(self)
Definition: z3py.py:5798
def dimacs (   self,
  include_names = True 
)
Return a textual representation of the goal in DIMACS format.

Definition at line 6004 of file z3py.py.

6004  def dimacs(self, include_names=True):
6005  """Return a textual representation of the goal in DIMACS format."""
6006  return Z3_goal_to_dimacs_string(self.ctx.ref(), self.goal, include_names)
6007 
Z3_string Z3_API Z3_goal_to_dimacs_string(Z3_context c, Z3_goal g, bool include_names)
Convert a goal into a DIMACS formatted string. The goal must be in CNF. You can convert a goal to CNF...
def dimacs
Definition: z3py.py:6004
def get (   self,
  i 
)
Return a constraint in the goal `self`.

>>> g = Goal()
>>> x, y = Ints('x y')
>>> g.add(x == 0, y > x)
>>> g.get(0)
x == 0
>>> g.get(1)
y > x

Definition at line 5890 of file z3py.py.

Referenced by Goal.__getitem__(), and Goal.as_expr().

5890  def get(self, i):
5891  """Return a constraint in the goal `self`.
5892 
5893  >>> g = Goal()
5894  >>> x, y = Ints('x y')
5895  >>> g.add(x == 0, y > x)
5896  >>> g.get(0)
5897  x == 0
5898  >>> g.get(1)
5899  y > x
5900  """
5901  return _to_expr_ref(Z3_goal_formula(self.ctx.ref(), self.goal, i), self.ctx)
5902 
def get(self, i)
Definition: z3py.py:5890
Z3_ast Z3_API Z3_goal_formula(Z3_context c, Z3_goal g, unsigned idx)
Return a formula from the given goal.
def inconsistent (   self)
Return `True` if `self` contains the `False` constraints.

>>> x, y = Ints('x y')
>>> g = Goal()
>>> g.inconsistent()
False
>>> g.add(x == 0, x == 1)
>>> g
[x == 0, x == 1]
>>> g.inconsistent()
False
>>> g2 = Tactic('propagate-values')(g)[0]
>>> g2.inconsistent()
True

Definition at line 5816 of file z3py.py.

5816  def inconsistent(self):
5817  """Return `True` if `self` contains the `False` constraints.
5818 
5819  >>> x, y = Ints('x y')
5820  >>> g = Goal()
5821  >>> g.inconsistent()
5822  False
5823  >>> g.add(x == 0, x == 1)
5824  >>> g
5825  [x == 0, x == 1]
5826  >>> g.inconsistent()
5827  False
5828  >>> g2 = Tactic('propagate-values')(g)[0]
5829  >>> g2.inconsistent()
5830  True
5831  """
5832  return Z3_goal_inconsistent(self.ctx.ref(), self.goal)
5833 
bool Z3_API Z3_goal_inconsistent(Z3_context c, Z3_goal g)
Return true if the given goal contains the formula false.
def inconsistent(self)
Definition: z3py.py:5816
def insert (   self,
  args 
)
Add constraints.

>>> x = Int('x')
>>> g = Goal()
>>> g.insert(x > 0, x < 2)
>>> g
[x > 0, x < 2]

Definition at line 5946 of file z3py.py.

5946  def insert(self, *args):
5947  """Add constraints.
5948 
5949  >>> x = Int('x')
5950  >>> g = Goal()
5951  >>> g.insert(x > 0, x < 2)
5952  >>> g
5953  [x > 0, x < 2]
5954  """
5955  self.assert_exprs(*args)
5956 
def insert(self, args)
Definition: z3py.py:5946
def assert_exprs(self, args)
Definition: z3py.py:5920
def prec (   self)
Return the precision (under-approximation, over-approximation, or precise) of the goal `self`.

>>> g = Goal()
>>> g.prec() == Z3_GOAL_PRECISE
True
>>> x, y = Ints('x y')
>>> g.add(x == y + 1)
>>> g.prec() == Z3_GOAL_PRECISE
True
>>> t  = With(Tactic('add-bounds'), add_bound_lower=0, add_bound_upper=10)
>>> g2 = t(g)[0]
>>> g2
[x == y + 1, x <= 10, x >= 0, y <= 10, y >= 0]
>>> g2.prec() == Z3_GOAL_PRECISE
False
>>> g2.prec() == Z3_GOAL_UNDER
True

Definition at line 5834 of file z3py.py.

Referenced by Goal.precision().

5834  def prec(self):
5835  """Return the precision (under-approximation, over-approximation, or precise) of the goal `self`.
5836 
5837  >>> g = Goal()
5838  >>> g.prec() == Z3_GOAL_PRECISE
5839  True
5840  >>> x, y = Ints('x y')
5841  >>> g.add(x == y + 1)
5842  >>> g.prec() == Z3_GOAL_PRECISE
5843  True
5844  >>> t = With(Tactic('add-bounds'), add_bound_lower=0, add_bound_upper=10)
5845  >>> g2 = t(g)[0]
5846  >>> g2
5847  [x == y + 1, x <= 10, x >= 0, y <= 10, y >= 0]
5848  >>> g2.prec() == Z3_GOAL_PRECISE
5849  False
5850  >>> g2.prec() == Z3_GOAL_UNDER
5851  True
5852  """
5853  return Z3_goal_precision(self.ctx.ref(), self.goal)
5854 
def prec(self)
Definition: z3py.py:5834
Z3_goal_prec Z3_API Z3_goal_precision(Z3_context c, Z3_goal g)
Return the "precision" of the given goal. Goals can be transformed using over and under approximation...
def precision (   self)
Alias for `prec()`.

>>> g = Goal()
>>> g.precision() == Z3_GOAL_PRECISE
True

Definition at line 5855 of file z3py.py.

5855  def precision(self):
5856  """Alias for `prec()`.
5857 
5858  >>> g = Goal()
5859  >>> g.precision() == Z3_GOAL_PRECISE
5860  True
5861  """
5862  return self.prec()
5863 
def prec(self)
Definition: z3py.py:5834
def precision(self)
Definition: z3py.py:5855
def sexpr (   self)
Return a textual representation of the s-expression representing the goal.

Definition at line 6000 of file z3py.py.

Referenced by Fixedpoint.__repr__(), and Optimize.__repr__().

6000  def sexpr(self):
6001  """Return a textual representation of the s-expression representing the goal."""
6002  return Z3_goal_to_string(self.ctx.ref(), self.goal)
6003 
def sexpr(self)
Definition: z3py.py:6000
Z3_string Z3_API Z3_goal_to_string(Z3_context c, Z3_goal g)
Convert a goal into a string.
def simplify (   self,
  arguments,
  keywords 
)
Return a new simplified goal.

This method is essentially invoking the simplify tactic.

>>> g = Goal()
>>> x = Int('x')
>>> g.add(x + 1 >= 2)
>>> g
[x + 1 >= 2]
>>> g2 = g.simplify()
>>> g2
[x >= 1]
>>> # g was not modified
>>> g
[x + 1 >= 2]

Definition at line 6037 of file z3py.py.

6037  def simplify(self, *arguments, **keywords):
6038  """Return a new simplified goal.
6039 
6040  This method is essentially invoking the simplify tactic.
6041 
6042  >>> g = Goal()
6043  >>> x = Int('x')
6044  >>> g.add(x + 1 >= 2)
6045  >>> g
6046  [x + 1 >= 2]
6047  >>> g2 = g.simplify()
6048  >>> g2
6049  [x >= 1]
6050  >>> # g was not modified
6051  >>> g
6052  [x + 1 >= 2]
6053  """
6054  t = Tactic("simplify")
6055  return t.apply(self, *arguments, **keywords)[0]
6056 
def simplify(self, arguments, keywords)
Definition: z3py.py:6037
def size (   self)
Return the number of constraints in the goal `self`.

>>> g = Goal()
>>> g.size()
0
>>> x, y = Ints('x y')
>>> g.add(x == 0, y > x)
>>> g.size()
2

Definition at line 5864 of file z3py.py.

Referenced by Goal.__len__().

5864  def size(self):
5865  """Return the number of constraints in the goal `self`.
5866 
5867  >>> g = Goal()
5868  >>> g.size()
5869  0
5870  >>> x, y = Ints('x y')
5871  >>> g.add(x == 0, y > x)
5872  >>> g.size()
5873  2
5874  """
5875  return int(Z3_goal_size(self.ctx.ref(), self.goal))
5876 
def size(self)
Definition: z3py.py:5864
unsigned Z3_API Z3_goal_size(Z3_context c, Z3_goal g)
Return the number of formulas in the given goal.
def translate (   self,
  target 
)
Copy goal `self` to context `target`.

>>> x = Int('x')
>>> g = Goal()
>>> g.add(x > 10)
>>> g
[x > 10]
>>> c2 = Context()
>>> g2 = g.translate(c2)
>>> g2
[x > 10]
>>> g.ctx == main_ctx()
True
>>> g2.ctx == c2
True
>>> g2.ctx == main_ctx()
False

Definition at line 6008 of file z3py.py.

Referenced by Goal.__copy__(), AstVector.__copy__(), FuncInterp.__copy__(), Goal.__deepcopy__(), AstVector.__deepcopy__(), and FuncInterp.__deepcopy__().

6008  def translate(self, target):
6009  """Copy goal `self` to context `target`.
6010 
6011  >>> x = Int('x')
6012  >>> g = Goal()
6013  >>> g.add(x > 10)
6014  >>> g
6015  [x > 10]
6016  >>> c2 = Context()
6017  >>> g2 = g.translate(c2)
6018  >>> g2
6019  [x > 10]
6020  >>> g.ctx == main_ctx()
6021  True
6022  >>> g2.ctx == c2
6023  True
6024  >>> g2.ctx == main_ctx()
6025  False
6026  """
6027  if z3_debug():
6028  _z3_assert(isinstance(target, Context), "target must be a context")
6029  return Goal(goal=Z3_goal_translate(self.ctx.ref(), self.goal, target.ref()), ctx=target)
6030 
def translate(self, target)
Definition: z3py.py:6008
Z3_goal Z3_API Z3_goal_translate(Z3_context source, Z3_goal g, Z3_context target)
Copy a goal g from the context source to the context target.
def z3_debug()
Definition: z3py.py:70

Field Documentation

ctx

Definition at line 5788 of file z3py.py.

Referenced by Goal.__copy__(), AstVector.__copy__(), FuncInterp.__copy__(), Goal.__deepcopy__(), AstVector.__deepcopy__(), AstMap.__deepcopy__(), FuncEntry.__deepcopy__(), FuncInterp.__deepcopy__(), Fixedpoint.__deepcopy__(), Optimize.__deepcopy__(), ApplyResult.__deepcopy__(), Simplifier.__deepcopy__(), Tactic.__deepcopy__(), Probe.__deepcopy__(), Probe.__eq__(), Probe.__ge__(), AstVector.__getitem__(), AstMap.__getitem__(), ApplyResult.__getitem__(), Probe.__gt__(), Probe.__le__(), Probe.__lt__(), Probe.__ne__(), Simplifier.add(), Fixedpoint.add_rule(), Optimize.add_soft(), Tactic.apply(), FuncEntry.arg_value(), Goal.as_expr(), ApplyResult.as_expr(), Optimize.assert_and_track(), Goal.assert_exprs(), Fixedpoint.assert_exprs(), Optimize.assert_exprs(), Optimize.assertions(), Goal.convert_model(), FuncInterp.else_value(), FuncInterp.entry(), ParserContext.from_string(), Goal.get(), Fixedpoint.get_answer(), Fixedpoint.get_assertions(), Fixedpoint.get_cover_delta(), Fixedpoint.get_ground_sat_answer(), Fixedpoint.get_rule_names_along_trace(), Fixedpoint.get_rules(), Fixedpoint.get_rules_along_trace(), AstMap.keys(), Optimize.model(), Optimize.objectives(), Fixedpoint.param_descrs(), Optimize.param_descrs(), Simplifier.param_descrs(), Tactic.param_descrs(), Fixedpoint.parse_file(), Fixedpoint.parse_string(), Fixedpoint.query(), Fixedpoint.set(), Optimize.set(), Optimize.set_on_model(), Tactic.solver(), Fixedpoint.statistics(), Optimize.statistics(), Solver.to_smt2(), Optimize.unsat_core(), Fixedpoint.update_rule(), Simplifier.using_params(), and FuncEntry.value().

goal