idp_engine.Expression

This module contains the ASTNode classes for expressions.

(Many methods are monkey-patched by other modules)

class ASTNode[source]

Bases: object

superclass of all AST nodes

check(condition, msg)[source]

raises an exception if condition is not True

Parameters
  • condition (Bool) – condition to be satisfied

  • msg (str) – error message

Raises

IDPZ3Error – when condition is not met

dedup_nodes(kwargs, arg_name)[source]

pops arg_name from kwargs as a list of named items and returns a mapping from name to items

Parameters
  • kwargs (dict[str, List[ASTNode]]) – dictionary mapping named arguments to list of ASTNodes

  • arg_name (str) – name of the kwargs argument, e.g. “interpretations”

Returns

mapping from name to AST nodes

Return type

dict[str, ASTNode]

Raises

AssertionError – in case of duplicate name

class Annotations(parent, annotations)[source]

Bases: idp_engine.Expression.ASTNode

Parameters

annotations (List[str]) –

__init__(parent, annotations)[source]
Parameters

annotations (List[str]) –

class Constructor(parent, name, args=None)[source]

Bases: idp_engine.Expression.ASTNode

Constructor declaration

Parameters
  • name (Union[UnappliedSymbol, str]) –

  • args (Optional[List[Accessor]]) –

name

name of the constructor

Type

string

sorts

types of the arguments of the constructor

Type

List[Symbol]

type

name of the type that contains this constructor

Type

string

arity

number of arguments of the constructor

Type

Int

tester

function to test if the constructor

Type

SymbolDeclaration

has been applied to some arguments
Type

e.g., is_rgb

symbol

only for Symbol constructors

Type

Symbol

range

the list of identifiers

__init__(parent, name, args=None)[source]
Parameters
  • name (Union[idp_engine.Expression.UnappliedSymbol, str]) –

  • args (Optional[List[idp_engine.Expression.Accessor]]) –

class Accessor(parent, type, accessor=None)[source]

Bases: idp_engine.Expression.ASTNode

represents an accessor and a type

Parameters
  • type (UnappliedSymbol) –

  • accessor (Optional[UnappliedSymbol]) –

accessor

name of accessor function

Type

UnappliedSymbol, Optional

type

name of the output type of the accessor

Type

string

decl

declaration of the accessor function

Type

SymbolDeclaration

__init__(parent, type, accessor=None)[source]
Parameters
  • type (idp_engine.Expression.UnappliedSymbol) –

  • accessor (Optional[idp_engine.Expression.UnappliedSymbol]) –

class Expression(parent=None)[source]

Bases: idp_engine.Expression.ASTNode

The abstract class of AST nodes representing (sub-)expressions.

code

Textual representation of the expression. Often used as a key.

It is generated from the sub-tree. Some tree transformations change it (e.g., interpret), others don’t.

Type

string

sub_exprs

The children of the AST node.

The list may be reduced by simplification.

Type

List[Expression]

type

The name of the type of the expression, e.g., bool.

Type

string

co_constraint

A constraint attached to the node.

For example, the co_constraint of square(length(top())) is square(length(top())) = length(top())*length(top())., assuming square is appropriately defined.

The co_constraint of a defined symbol applied to arguments is the instantiation of the definition for those arguments. This is useful for definitions over infinite domains, as well as to compute relevant questions.

Type

Expression, optional

annotations

The set of annotations given by the expert in the IDP-Z3 program.

annotations['reading'] is the annotation giving the intended meaning of the expression (in English).

Type

dict[str, str]

original

The original expression, before propagation and simplification.

Type

Expression

variables

The set of names of the variables in the expression, before interpretation.

Type

Set(string)

is_type_constraint_for

name of the symbol for which the expression is a type constraint

Type

string

__init__(parent=None)[source]
collect(questions, all_=True, co_constraints=True)[source]

collects the questions in self.

questions is an OrderedSet of Expression Questions are the terms and the simplest sub-formula that can be evaluated.

all_=False : ignore expanded formulas and AppliedSymbol interpreted in a structure

co_constraints=False : ignore co_constraints

default implementation for UnappliedSymbol, AIfExpr, AUnary, Variable, Number_constant, Brackets

Parameters
  • questions (idp_engine.utils.OrderedSet) –

  • all_ (bool) –

  • co_constraints (bool) –

collect_symbols(symbols=None, co_constraints=True)[source]

returns the list of symbol declarations in self, ignoring type constraints

Parameters
  • symbols (Optional[dict[str, SymbolDeclaration]]) –

  • co_constraints (bool) –

Return type

dict[str, SymbolDeclaration]

collect_nested_symbols(symbols, is_nested)

returns the set of symbol declarations that occur (in)directly under an aggregate or some nested term, where is_nested is flipped to True the moment we reach such an expression

returns {SymbolDeclaration}

Parameters
  • symbols (Set[idp_engine.Parse.SymbolDeclaration]) –

  • is_nested (bool) –

Return type

Set[idp_engine.Parse.SymbolDeclaration]

generate_constructors(constructors)[source]

fills the list constructors with all constructors belonging to open types.

Parameters

constructors (dict[str, List[Constructor]]) –

collect_co_constraints(co_constraints, recursive=True)[source]

collects the constraints attached to AST nodes, e.g. instantiated definitions

Parameters
  • recursive – if True, collect co_constraints of co_constraints too

  • co_constraints (idp_engine.utils.OrderedSet) –

is_value()[source]

True for numerals, date, identifiers, and constructors applied to values.

Synomym: “is ground”, “is rigid”

Returns

True if self represents a value.

Return type

bool

is_reified()[source]

False for values and for symbols applied to values.

Returns

True if self has to be reified to obtain its value in a Z3 model.

Return type

bool

is_assignment()[source]
Returns

True if self assigns a rigid term to a rigid function application

Return type

bool

update_exprs(new_exprs)

change sub_exprs and simplify, while keeping relevant info.

Parameters
  • self (idp_engine.Expression.Expression) –

  • new_exprs (Generator[idp_engine.Expression.Expression, None, None]) –

Return type

idp_engine.Expression.Expression

interpret(problem, subs)

expand quantifiers and replace symbols interpreted in the structure by their interpretation

Parameters
  • self (Expression) – the expression to be interpreted

  • problem (Optional[Theory]) – the theory to be applied

  • subs (dict[str, Expression]) – a dictionary mapping variable names to their value

Returns

the interpreted expression

Return type

Expression

simplify_with(assignments, co_constraints_too=True)

simplify the expression using the assignments

Parameters
  • self (idp_engine.Expression.Expression) –

  • assignments (idp_engine.Assignments.Assignments) –

Return type

idp_engine.Expression.Expression

symbolic_propagate(assignments, tag, truth=true)

updates assignments with the consequences of self=truth.

The consequences are obtained by symbolic processing (no calls to Z3).

Parameters
  • assignments (Assignments) – The set of assignments to update.

  • truth (Expression, optional) – The truth value of the expression self. Defaults to TRUE.

  • tag (idp_engine.Assignments.Status) –

propagate1(assignments, tag, truth)

returns the list of symbolic_propagate of self, ignoring value and simpler

translate(problem, vars={})

Converts the syntax tree to a Z3 expression, with lookup in problem.z3

Parameters
  • problem (Theory) – holds the context for the translation (e.g. a cache of translations).

  • vars (dict[id, ExprRef], optional) – mapping from Variable’s id to Z3 translation. Filled in by AQuantifier. Defaults to {}.

Returns

Z3 expression

Return type

ExprRef

as_set_condition()[source]

Returns an equivalent expression of the type “x in y”, or None

Returns

meaning “expr is (not) in enumeration”

Return type

Tuple[Optional[AppliedSymbol], Optional[bool], Optional[Enumeration]]

split_equivalences()[source]

Returns an equivalent expression where equivalences are replaced by implications

Returns

Expression

Return type

idp_engine.Expression.Expression

add_level_mapping(level_symbols, head, pos_justification, polarity, mode)
Returns an expression where level mapping atoms (e.g., lvl_p > lvl_q)

are added to atoms containing recursive symbols.

Parameters
  • level_symbols (-) – the level mapping symbols as well as their corresponding recursive symbols

  • head (-) – head of the rule we are adding level mapping symbols to.

  • pos_justification (-) – whether we are adding symbols to the direct positive justification (e.g., head => body) or direct negative justification (e.g., body => head) part of the rule.

  • polarity (-) – whether the current expression occurs under negation.

  • mode (Semantics) –

Return type

Expression

annotate(voc, q_vars)

annotate tree after parsing

Resolve names and determine type as well as variables in the expression

Parameters
  • voc (Vocabulary) – the vocabulary

  • q_vars (dict[str, Variable]) – the quantifier variables that may appear in the expression

Returns

an equivalent AST node, with updated type, .variables

Return type

Expression

annotate1()

annotations that are common to __init__ and make()

class Symbol(parent, name)[source]

Bases: idp_engine.Expression.Expression

Represents a Symbol. Handles synonyms.

Parameters

name (str) –

name

name of the symbol

Type

string

__init__(parent, name)[source]
Parameters

name (str) –

is_value()[source]

True for numerals, date, identifiers, and constructors applied to values.

Synomym: “is ground”, “is rigid”

Returns

True if self represents a value.

Return type

bool

has_element(term, interpretations, extensions)[source]

Returns an expression that says whether term is in the type/predicate denoted by self.

Parameters
  • term (Expression) – the argument to be checked

  • interpretations (dict[str, SymbolInterpretation]) –

  • extensions (dict[str, Extension]) –

Returns

whether term is in the type denoted by self.

Return type

Expression

annotate(voc, q_vars)

annotate tree after parsing

Resolve names and determine type as well as variables in the expression

Parameters
  • voc (Vocabulary) – the vocabulary

  • q_vars (dict[str, Variable]) – the quantifier variables that may appear in the expression

Returns

an equivalent AST node, with updated type, .variables

Return type

Expression

translate(*args, **kwargs)

Converts the syntax tree to a Z3 expression, with lookup in problem.z3

Parameters
  • problem (Theory) – holds the context for the translation (e.g. a cache of translations).

  • vars (dict[id, ExprRef], optional) – mapping from Variable’s id to Z3 translation. Filled in by AQuantifier. Defaults to {}.

Returns

Z3 expression

Return type

ExprRef

class Type(parent, name, ins=None, out=None)[source]

Bases: idp_engine.Expression.Symbol

ASTNode representing aType or Concept[aSignature], e.g., Concept[T*T->Bool]

Inherits from Symbol

Parameters
  • name (Symbol) – name of the concept

  • ins (List[Symbol], Optional) – domain of the Concept signature, e.g., [T, T]

  • out (Symbol, Optional) – range of the Concept signature, e.g., Bool

__init__(parent, name, ins=None, out=None)[source]
Parameters
  • name (str) –

  • ins (Optional[List[idp_engine.Expression.Type]]) –

  • out (Optional[idp_engine.Expression.Type]) –

has_element(term, interpretations, extensions)[source]

Returns an Expression that says whether term is in the type/predicate denoted by self.

Parameters
  • term (Expression) – the argument to be checked

  • interpretations (dict[str, SymbolInterpretation]) –

  • extensions (dict[str, Extension]) –

Returns

whether term term is in the type denoted by self.

Return type

Expression

annotate(voc, q_vars)

annotate tree after parsing

Resolve names and determine type as well as variables in the expression

Parameters
  • voc (Vocabulary) – the vocabulary

  • q_vars (dict[str, Variable]) – the quantifier variables that may appear in the expression

Returns

an equivalent AST node, with updated type, .variables

Return type

Expression

class AIfExpr(parent, if_f, then_f, else_f)[source]

Bases: idp_engine.Expression.Expression

Parameters
  • if_f (Expression) –

  • then_f (Expression) –

  • else_f (Expression) –

__init__(parent, if_f, then_f, else_f)[source]
Parameters
  • if_f (idp_engine.Expression.Expression) –

  • then_f (idp_engine.Expression.Expression) –

  • else_f (idp_engine.Expression.Expression) –

annotate1()

annotations that are common to __init__ and make()

collect_nested_symbols(symbols, is_nested)

returns the set of symbol declarations that occur (in)directly under an aggregate or some nested term, where is_nested is flipped to True the moment we reach such an expression

returns {SymbolDeclaration}

update_exprs(new_exprs)

change sub_exprs and simplify, while keeping relevant info.

Parameters
  • self (idp_engine.Expression.AIfExpr) –

  • new_exprs (Generator[idp_engine.Expression.Expression, None, None]) –

Return type

idp_engine.Expression.Expression

class Quantee(parent, vars, subtype=None, sort=None)[source]

Bases: idp_engine.Expression.Expression

represents the description of quantification, e.g., x in T or (x,y) in P The Concept type may be qualified, e.g. Concept[Color->Bool]

Parameters
  • vars (Union[List[Variable], List[List[Variable]]]) –

  • subtype (Optional[Type]) –

  • sort (Optional[SymbolExpr]) –

vars

the (tuples of) variables being quantified

Type

List[List[Variable]]

subtype

a literal Type to quantify over, e.g., Color or Concept[Color->Bool].

Type

Type, Optional

sort

a dereferencing expression, e.g.,. $(i).

Type

SymbolExpr, Optional

sub_exprs

the (unqualified) type or predicate to quantify over,

Type

List[SymbolExpr], Optional

e.g., `[Color], [Concept] or [$
Type

i

arity

the length of the tuple of variables

Type

int

decl

the (unqualified) Declaration to quantify over, after resolution of $(i).

Type

SymbolDeclaration, Optional

e.g., the declaration of `Color`
__init__(parent, vars, subtype=None, sort=None)[source]
Parameters
  • vars (Union[List[idp_engine.Expression.Variable], List[List[idp_engine.Expression.Variable]]]) –

  • subtype (Optional[idp_engine.Expression.Type]) –

  • sort (Optional[idp_engine.Expression.SymbolExpr]) –

annotate(voc, q_vars)

annotate tree after parsing

Resolve names and determine type as well as variables in the expression

Parameters
  • voc (Vocabulary) – the vocabulary

  • q_vars (dict[str, Variable]) – the quantifier variables that may appear in the expression

Returns

an equivalent AST node, with updated type, .variables

Return type

Expression

translate(*args, **kwargs)

Converts the syntax tree to a Z3 expression, with lookup in problem.z3

Parameters
  • problem (Theory) – holds the context for the translation (e.g. a cache of translations).

  • vars (dict[id, ExprRef], optional) – mapping from Variable’s id to Z3 translation. Filled in by AQuantifier. Defaults to {}.

Returns

Z3 expression

Return type

ExprRef

split_quantees(self)[source]

replaces an untyped quantee x,y,z into 3 quantees, so that each variable can have its own sort

Parameters

self – either a AQuantification, AAggregate or Rule

class AQuantification(parent, annotations, q, quantees, f)[source]

Bases: idp_engine.Expression.Expression

ASTNode representing a quantified formula

Parameters
  • annotations (dict[str, str]) –

    The set of annotations given by the expert in the IDP-Z3 program.

    annotations['reading'] is the annotation giving the intended meaning of the expression (in English).

  • q (str) – either ‘∀’ or ‘∃’

  • quantees (List[Quantee]) – list of variable declarations

  • f (Expression) – the formula being quantified

  • supersets – attributes used in interpret

  • new_quantees – attributes used in interpret

  • vars1 – attributes used in interpret

__init__(parent, annotations, q, quantees, f)[source]
classmethod make(q, quantees, f, annotations=None)[source]

make and annotate a quantified formula

Parameters
  • q (str) –

  • quantees (List[idp_engine.Expression.Quantee]) –

  • f (idp_engine.Expression.Expression) –

Return type

AQuantification

collect(questions, all_=True, co_constraints=True)[source]

collects the questions in self.

questions is an OrderedSet of Expression Questions are the terms and the simplest sub-formula that can be evaluated.

all_=False : ignore expanded formulas and AppliedSymbol interpreted in a structure

co_constraints=False : ignore co_constraints

default implementation for UnappliedSymbol, AIfExpr, AUnary, Variable, Number_constant, Brackets

collect_symbols(symbols=None, co_constraints=True)[source]

returns the list of symbol declarations in self, ignoring type constraints

annotate(voc, q_vars)

annotate tree after parsing

Resolve names and determine type as well as variables in the expression

Parameters
  • voc (Vocabulary) – the vocabulary

  • q_vars (dict[str, Variable]) – the quantifier variables that may appear in the expression

Returns

an equivalent AST node, with updated type, .variables

Return type

Expression

annotate1()

annotations that are common to __init__ and make()

symbolic_propagate(assignments, tag, truth=true)

updates assignments with the consequences of self=truth.

The consequences are obtained by symbolic processing (no calls to Z3).

Parameters
  • assignments (Assignments) – The set of assignments to update.

  • truth (Expression, optional) – The truth value of the expression self. Defaults to TRUE.

update_exprs(new_exprs)

change sub_exprs and simplify, while keeping relevant info.

Parameters
  • self (idp_engine.Expression.AQuantification) –

  • new_exprs (Generator[idp_engine.Expression.Expression, None, None]) –

Return type

idp_engine.Expression.Expression

class Operator(parent, operator, sub_exprs, annotations=None)[source]

Bases: idp_engine.Expression.Expression

__init__(parent, operator, sub_exprs, annotations=None)[source]
classmethod make(ops, operands, annotations=None, parent=None)[source]

creates a BinaryOp beware: cls must be specific for ops !

Parameters
  • ops (Union[str, List[str]]) –

  • operands (List[idp_engine.Expression.Expression]) –

Return type

idp_engine.Expression.Expression

collect(questions, all_=True, co_constraints=True)[source]

collects the questions in self.

questions is an OrderedSet of Expression Questions are the terms and the simplest sub-formula that can be evaluated.

all_=False : ignore expanded formulas and AppliedSymbol interpreted in a structure

co_constraints=False : ignore co_constraints

default implementation for UnappliedSymbol, AIfExpr, AUnary, Variable, Number_constant, Brackets

annotate(voc, q_vars)

annotate tree after parsing

Resolve names and determine type as well as variables in the expression

Parameters
  • voc (Vocabulary) – the vocabulary

  • q_vars (dict[str, Variable]) – the quantifier variables that may appear in the expression

Returns

an equivalent AST node, with updated type, .variables

Return type

Expression

annotate1()

annotations that are common to __init__ and make()

collect_nested_symbols(symbols, is_nested)

returns the set of symbol declarations that occur (in)directly under an aggregate or some nested term, where is_nested is flipped to True the moment we reach such an expression

returns {SymbolDeclaration}

class AImplication(parent, operator, sub_exprs, annotations=None)[source]

Bases: idp_engine.Expression.Operator

add_level_mapping(level_symbols, head, pos_justification, polarity, mode)
Returns an expression where level mapping atoms (e.g., lvl_p > lvl_q)

are added to atoms containing recursive symbols.

Parameters
  • level_symbols (-) – the level mapping symbols as well as their corresponding recursive symbols

  • head (-) – head of the rule we are adding level mapping symbols to.

  • pos_justification (-) – whether we are adding symbols to the direct positive justification (e.g., head => body) or direct negative justification (e.g., body => head) part of the rule.

  • polarity (-) – whether the current expression occurs under negation.

annotate1()

annotations that are common to __init__ and make()

update_exprs(new_exprs)

change sub_exprs and simplify, while keeping relevant info.

Parameters
  • self (idp_engine.Expression.AImplication) –

  • new_exprs (Generator[idp_engine.Expression.Expression, None, None]) –

Return type

idp_engine.Expression.Expression

class AEquivalence(parent, operator, sub_exprs, annotations=None)[source]

Bases: idp_engine.Expression.Operator

split_equivalences()[source]

Returns an equivalent expression where equivalences are replaced by implications

Returns

Expression

annotate1()

annotations that are common to __init__ and make()

update_exprs(new_exprs)

change sub_exprs and simplify, while keeping relevant info.

Parameters
  • self (idp_engine.Expression.AEquivalence) –

  • new_exprs (Generator[idp_engine.Expression.Expression, None, None]) –

Return type

idp_engine.Expression.Expression

class ARImplication(parent, operator, sub_exprs, annotations=None)[source]

Bases: idp_engine.Expression.Operator

add_level_mapping(level_symbols, head, pos_justification, polarity, mode)
Returns an expression where level mapping atoms (e.g., lvl_p > lvl_q)

are added to atoms containing recursive symbols.

Parameters
  • level_symbols (-) – the level mapping symbols as well as their corresponding recursive symbols

  • head (-) – head of the rule we are adding level mapping symbols to.

  • pos_justification (-) – whether we are adding symbols to the direct positive justification (e.g., head => body) or direct negative justification (e.g., body => head) part of the rule.

  • polarity (-) – whether the current expression occurs under negation.

annotate(voc, q_vars)

annotate tree after parsing

Resolve names and determine type as well as variables in the expression

Parameters
  • voc (Vocabulary) – the vocabulary

  • q_vars (dict[str, Variable]) – the quantifier variables that may appear in the expression

Returns

an equivalent AST node, with updated type, .variables

Return type

Expression

class ADisjunction(parent, operator, sub_exprs, annotations=None)[source]

Bases: idp_engine.Expression.Operator

propagate1(assignments, tag, truth=true)

returns the list of symbolic_propagate of self, ignoring value and simpler

update_exprs(new_exprs, replace=True)

change sub_exprs and simplify, while keeping relevant info.

Parameters
  • self (idp_engine.Expression.Expression) –

  • new_exprs (Generator[idp_engine.Expression.Expression, None, None]) –

Return type

idp_engine.Expression.Expression

class AConjunction(parent, operator, sub_exprs, annotations=None)[source]

Bases: idp_engine.Expression.Operator

propagate1(assignments, tag, truth=true)

returns the list of symbolic_propagate of self, ignoring value and simpler

update_exprs(new_exprs, replace=True)

change sub_exprs and simplify, while keeping relevant info.

Parameters
  • self (idp_engine.Expression.Expression) –

  • new_exprs (Generator[idp_engine.Expression.Expression, None, None]) –

Return type

idp_engine.Expression.Expression

class AComparison(parent, operator, sub_exprs, annotations=None)[source]

Bases: idp_engine.Expression.Operator

is_assignment()[source]
Returns

True if self assigns a rigid term to a rigid function application

Return type

bool

annotate(voc, q_vars)

annotate tree after parsing

Resolve names and determine type as well as variables in the expression

Parameters
  • voc (Vocabulary) – the vocabulary

  • q_vars (dict[str, Variable]) – the quantifier variables that may appear in the expression

Returns

an equivalent AST node, with updated type, .variables

Return type

Expression

as_set_condition()

Returns an equivalent expression of the type “x in y”, or None

Returns

meaning “expr is (not) in enumeration”

Return type

Tuple[Optional[AppliedSymbol], Optional[bool], Optional[Enumeration]]

Parameters

self (idp_engine.Expression.AComparison) –

propagate1(assignments, tag, truth=true)

returns the list of symbolic_propagate of self, ignoring value and simpler

update_exprs(new_exprs)

change sub_exprs and simplify, while keeping relevant info.

Parameters
  • self (idp_engine.Expression.AComparison) –

  • new_exprs (Generator[idp_engine.Expression.Expression, None, None]) –

Return type

idp_engine.Expression.Expression

class ASumMinus(parent, operator, sub_exprs, annotations=None)[source]

Bases: idp_engine.Expression.Operator

update_exprs(new_exprs)

change sub_exprs and simplify, while keeping relevant info.

Parameters
  • self (idp_engine.Expression.ASumMinus) –

  • new_exprs (Generator[idp_engine.Expression.Expression, None, None]) –

Return type

idp_engine.Expression.Expression

class AMultDiv(parent, operator, sub_exprs, annotations=None)[source]

Bases: idp_engine.Expression.Operator

update_exprs(new_exprs)

change sub_exprs and simplify, while keeping relevant info.

Parameters
  • self (idp_engine.Expression.AMultDiv) –

  • new_exprs (Generator[idp_engine.Expression.Expression, None, None]) –

Return type

idp_engine.Expression.Expression

class APower(parent, operator, sub_exprs, annotations=None)[source]

Bases: idp_engine.Expression.Operator

update_exprs(new_exprs)

change sub_exprs and simplify, while keeping relevant info.

Parameters
  • self (idp_engine.Expression.APower) –

  • new_exprs (Generator[idp_engine.Expression.Expression, None, None]) –

Return type

idp_engine.Expression.Expression

class AUnary(parent, operators, f)[source]

Bases: idp_engine.Expression.Expression

Parameters
  • operators (List[str]) –

  • f (Expression) –

__init__(parent, operators, f)[source]
Parameters
  • operators (List[str]) –

  • f (idp_engine.Expression.Expression) –

add_level_mapping(level_symbols, head, pos_justification, polarity, mode)
Returns an expression where level mapping atoms (e.g., lvl_p > lvl_q)

are added to atoms containing recursive symbols.

Parameters
  • level_symbols (-) – the level mapping symbols as well as their corresponding recursive symbols

  • head (-) – head of the rule we are adding level mapping symbols to.

  • pos_justification (-) – whether we are adding symbols to the direct positive justification (e.g., head => body) or direct negative justification (e.g., body => head) part of the rule.

  • polarity (-) – whether the current expression occurs under negation.

annotate1()

annotations that are common to __init__ and make()

as_set_condition()

Returns an equivalent expression of the type “x in y”, or None

Returns

meaning “expr is (not) in enumeration”

Return type

Tuple[Optional[AppliedSymbol], Optional[bool], Optional[Enumeration]]

Parameters

self (idp_engine.Expression.AUnary) –

propagate1(assignments, tag, truth=true)

returns the list of symbolic_propagate of self, ignoring value and simpler

update_exprs(new_exprs)

change sub_exprs and simplify, while keeping relevant info.

Parameters
  • self (idp_engine.Expression.AUnary) –

  • new_exprs (Generator[idp_engine.Expression.Expression, None, None]) –

Return type

idp_engine.Expression.Expression

class AAggregate(parent, aggtype, quantees, lambda_=None, f=None, if_=None)[source]

Bases: idp_engine.Expression.Expression

Parameters
  • aggtype (str) –

  • quantees (List[Quantee]) –

  • lambda_ (Optional[str]) –

  • f (Optional[Expression]) –

  • if_ (Optional[Expression]) –

__init__(parent, aggtype, quantees, lambda_=None, f=None, if_=None)[source]
Parameters
  • aggtype (str) –

  • quantees (List[idp_engine.Expression.Quantee]) –

  • lambda_ (Optional[str]) –

  • f (Optional[idp_engine.Expression.Expression]) –

  • if_ (Optional[idp_engine.Expression.Expression]) –

collect(questions, all_=True, co_constraints=True)[source]

collects the questions in self.

questions is an OrderedSet of Expression Questions are the terms and the simplest sub-formula that can be evaluated.

all_=False : ignore expanded formulas and AppliedSymbol interpreted in a structure

co_constraints=False : ignore co_constraints

default implementation for UnappliedSymbol, AIfExpr, AUnary, Variable, Number_constant, Brackets

collect_symbols(symbols=None, co_constraints=True)[source]

returns the list of symbol declarations in self, ignoring type constraints

annotate(voc, q_vars)

annotate tree after parsing

Resolve names and determine type as well as variables in the expression

Parameters
  • voc (Vocabulary) – the vocabulary

  • q_vars (dict[str, Variable]) – the quantifier variables that may appear in the expression

Returns

an equivalent AST node, with updated type, .variables

Return type

Expression

annotate1()

annotations that are common to __init__ and make()

collect_nested_symbols(symbols, is_nested)

returns the set of symbol declarations that occur (in)directly under an aggregate or some nested term, where is_nested is flipped to True the moment we reach such an expression

returns {SymbolDeclaration}

update_exprs(new_exprs)

change sub_exprs and simplify, while keeping relevant info.

Parameters
  • self (idp_engine.Expression.AAggregate) –

  • new_exprs (Generator[idp_engine.Expression.Expression, None, None]) –

Return type

idp_engine.Expression.Expression

class AppliedSymbol(parent, symbol, sub_exprs, annotations=None, is_enumerated='', is_enumeration='', in_enumeration='')[source]

Bases: idp_engine.Expression.Expression

Represents a symbol applied to arguments

Parameters
  • symbol (SymbolExpr) – the symbol to be applied to arguments

  • is_enumerated (string) – ‘’ or ‘is enumerated’

  • is_enumeration (string) – ‘’ or ‘in’

  • in_enumeration (Enumeration) – the enumeration following ‘in’

  • as_disjunction (Optional[Expression]) – the translation of ‘is_enumerated’ and ‘in_enumeration’ as a disjunction

  • decl (Declaration) – the declaration of the symbol, if known

  • in_head (Bool) – True if the AppliedSymbol occurs in the head of a rule

__init__(parent, symbol, sub_exprs, annotations=None, is_enumerated='', is_enumeration='', in_enumeration='')[source]
collect(questions, all_=True, co_constraints=True)[source]

collects the questions in self.

questions is an OrderedSet of Expression Questions are the terms and the simplest sub-formula that can be evaluated.

all_=False : ignore expanded formulas and AppliedSymbol interpreted in a structure

co_constraints=False : ignore co_constraints

default implementation for UnappliedSymbol, AIfExpr, AUnary, Variable, Number_constant, Brackets

collect_symbols(symbols=None, co_constraints=True)[source]

returns the list of symbol declarations in self, ignoring type constraints

is_value()[source]

True for numerals, date, identifiers, and constructors applied to values.

Synomym: “is ground”, “is rigid”

Returns

True if self represents a value.

Return type

bool

is_reified()[source]

False for values and for symbols applied to values.

Returns

True if self has to be reified to obtain its value in a Z3 model.

Return type

bool

generate_constructors(constructors)[source]

fills the list constructors with all constructors belonging to open types.

Parameters

constructors (dict) –

add_level_mapping(level_symbols, head, pos_justification, polarity, mode)
Returns an expression where level mapping atoms (e.g., lvl_p > lvl_q)

are added to atoms containing recursive symbols.

Parameters
  • level_symbols (-) – the level mapping symbols as well as their corresponding recursive symbols

  • head (-) – head of the rule we are adding level mapping symbols to.

  • pos_justification (-) – whether we are adding symbols to the direct positive justification (e.g., head => body) or direct negative justification (e.g., body => head) part of the rule.

  • polarity (-) – whether the current expression occurs under negation.

annotate(voc, q_vars)

annotate tree after parsing

Resolve names and determine type as well as variables in the expression

Parameters
  • voc (Vocabulary) – the vocabulary

  • q_vars (dict[str, Variable]) – the quantifier variables that may appear in the expression

Returns

an equivalent AST node, with updated type, .variables

Return type

Expression

annotate1()

annotations that are common to __init__ and make()

as_set_condition()

Returns an equivalent expression of the type “x in y”, or None

Returns

meaning “expr is (not) in enumeration”

Return type

Tuple[Optional[AppliedSymbol], Optional[bool], Optional[Enumeration]]

Parameters

self (idp_engine.Expression.AppliedSymbol) –

collect_nested_symbols(symbols, is_nested)

returns the set of symbol declarations that occur (in)directly under an aggregate or some nested term, where is_nested is flipped to True the moment we reach such an expression

returns {SymbolDeclaration}

update_exprs(new_exprs)

change sub_exprs and simplify, while keeping relevant info.

Parameters
  • self (idp_engine.Expression.AppliedSymbol) –

  • new_exprs (Generator[idp_engine.Expression.Expression, None, None]) –

Return type

idp_engine.Expression.Expression

class SymbolExpr(parent, s, eval='')[source]

Bases: idp_engine.Expression.Expression

__init__(parent, s, eval='')[source]
annotate(voc, q_vars)

annotate tree after parsing

Resolve names and determine type as well as variables in the expression

Parameters
  • voc (Vocabulary) – the vocabulary

  • q_vars (dict[str, Variable]) – the quantifier variables that may appear in the expression

Returns

an equivalent AST node, with updated type, .variables

Return type

Expression

update_exprs(new_exprs)

change sub_exprs and simplify, while keeping relevant info.

Parameters
  • self (idp_engine.Expression.SymbolExpr) –

  • new_exprs (Generator[idp_engine.Expression.Expression, None, None]) –

Return type

idp_engine.Expression.Expression

class UnappliedSymbol(parent, s)[source]

Bases: idp_engine.Expression.Expression

The result of parsing a symbol not applied to arguments. Can be a constructor or a quantified variable.

Variables are converted to Variable() by annotate().

__init__(parent, s)[source]
classmethod construct(constructor)[source]

Create an UnappliedSymbol from a constructor

Parameters

constructor (idp_engine.Expression.Constructor) –

is_value()[source]

True for numerals, date, identifiers, and constructors applied to values.

Synomym: “is ground”, “is rigid”

Returns

True if self represents a value.

Return type

bool

is_reified()[source]

False for values and for symbols applied to values.

Returns

True if self has to be reified to obtain its value in a Z3 model.

Return type

bool

annotate(voc, q_vars)

annotate tree after parsing

Resolve names and determine type as well as variables in the expression

Parameters
  • voc (Vocabulary) – the vocabulary

  • q_vars (dict[str, Variable]) – the quantifier variables that may appear in the expression

Returns

an equivalent AST node, with updated type, .variables

Return type

Expression

class Variable(parent, name, sort=None)[source]

Bases: idp_engine.Expression.Expression

AST node for a variable in a quantification or aggregate

Parameters
  • name (str) – name of the variable

  • sort (Optional[Union[Type, Symbol]]) – sort of the variable, if known

__init__(parent, name, sort=None)[source]
Parameters
  • name (str) –

  • sort (Optional[Union[idp_engine.Expression.Type, idp_engine.Expression.Symbol]]) –

annotate1()[source]

annotations that are common to __init__ and make()

annotate(voc, q_vars)

annotate tree after parsing

Resolve names and determine type as well as variables in the expression

Parameters
  • voc (Vocabulary) – the vocabulary

  • q_vars (dict[str, Variable]) – the quantifier variables that may appear in the expression

Returns

an equivalent AST node, with updated type, .variables

Return type

Expression

translate(*args, **kwargs)

Converts the syntax tree to a Z3 expression, with lookup in problem.z3

Parameters
  • problem (Theory) – holds the context for the translation (e.g. a cache of translations).

  • vars (dict[id, ExprRef], optional) – mapping from Variable’s id to Z3 translation. Filled in by AQuantifier. Defaults to {}.

Returns

Z3 expression

Return type

ExprRef

class Number(**kwargs)[source]

Bases: idp_engine.Expression.Expression

__init__(**kwargs)[source]
real()[source]

converts the INT number to REAL

is_value()[source]

True for numerals, date, identifiers, and constructors applied to values.

Synomym: “is ground”, “is rigid”

Returns

True if self represents a value.

Return type

bool

is_reified()[source]

False for values and for symbols applied to values.

Returns

True if self has to be reified to obtain its value in a Z3 model.

Return type

bool

annotate(voc, q_vars)

annotate tree after parsing

Resolve names and determine type as well as variables in the expression

Parameters
  • voc (Vocabulary) – the vocabulary

  • q_vars (dict[str, Variable]) – the quantifier variables that may appear in the expression

Returns

an equivalent AST node, with updated type, .variables

Return type

Expression

translate(*args, **kwargs)

Converts the syntax tree to a Z3 expression, with lookup in problem.z3

Parameters
  • problem (Theory) – holds the context for the translation (e.g. a cache of translations).

  • vars (dict[id, ExprRef], optional) – mapping from Variable’s id to Z3 translation. Filled in by AQuantifier. Defaults to {}.

Returns

Z3 expression

Return type

ExprRef

class Date(**kwargs)[source]

Bases: idp_engine.Expression.Expression

__init__(**kwargs)[source]
is_value()[source]

True for numerals, date, identifiers, and constructors applied to values.

Synomym: “is ground”, “is rigid”

Returns

True if self represents a value.

Return type

bool

is_reified()[source]

False for values and for symbols applied to values.

Returns

True if self has to be reified to obtain its value in a Z3 model.

Return type

bool

translate(*args, **kwargs)

Converts the syntax tree to a Z3 expression, with lookup in problem.z3

Parameters
  • problem (Theory) – holds the context for the translation (e.g. a cache of translations).

  • vars (dict[id, ExprRef], optional) – mapping from Variable’s id to Z3 translation. Filled in by AQuantifier. Defaults to {}.

Returns

Z3 expression

Return type

ExprRef

class Brackets(**kwargs)[source]

Bases: idp_engine.Expression.Expression

__init__(**kwargs)[source]
annotate1()

annotations that are common to __init__ and make()

symbolic_propagate(assignments, tag, truth=true)

updates assignments with the consequences of self=truth.

The consequences are obtained by symbolic processing (no calls to Z3).

Parameters
  • assignments (Assignments) – The set of assignments to update.

  • truth (Expression, optional) – The truth value of the expression self. Defaults to TRUE.

update_exprs(new_exprs)

change sub_exprs and simplify, while keeping relevant info.

Parameters
  • self (idp_engine.Expression.Brackets) –

  • new_exprs (Generator[idp_engine.Expression.Expression, None, None]) –

Return type

idp_engine.Expression.Expression

class RecDef(parent, name, vars, expr)[source]

Bases: idp_engine.Expression.Expression

represents a recursive definition

__init__(parent, name, vars, expr)[source]