3.1.9.5. dg/Strategies¶
This section describes two interfaces for the derivation graph strategies; the basic API and an embedded language which is built on the basic API. Usually the embedded strategy language is easiest and sufficient for constructing strategies.
The semantics of the individual strategies are described in Derivation Graph Strategies.
Note that a DGStrat is a representation of a strategy and must be given to a derivation graph to be evaluated.
3.1.9.5.1. The Embedded Strategy Language¶
The strategy language is really a collection of proxy classes with a lot of operator overloading, thus the normal syntax and semantics of Python applies.
The following is the grammar for the strategies.
strat ::= strats
strat ">>" strat
rule
"addSubset(" graphs ")"
"addUniverse(" graphs ")"
"execute(" executeFunc ")"
"filterSubset(" filterPred ")"
"filterUniverse(" filterPred ")"
"leftPredicate[" derivationPred "](" strat ")"
"rightPredicate[" derivationPred "](" strat ")"
"repeat" [ "[" int "]" ] "(" strat ")"
"revive(" strat ")"
A strats must be an iterable of strat, e.g., an iterable of Rule.
A graphs can either be a single Graph, an iterable of graphs,
or a function taking no arguments and returning a list of graphs.
The functions in the language have the following signatures.
-
mod.addSubset(g, *gs, graphPolicy=IsomorphismPolicy.Check)¶ -
mod.addUniverse(g, *gs, graphPolicy=IsomorphismPolicy.Check)¶ Depending on
git calls eitherDGStrat.makeAddStatic()orDGStrat.makeAddDynamic().- Parameters
g (Graph or Iterable[Graph] or Callable[[], Iterable[Graph]]) – graph(s) to add, or a callback to compute them.
gs (Graph or Iterable[Graph]) – a variable amount of additional arguments with graphs, unless
gis a callback, then no additional arguments may be given.graphPolicy (IsomorphismPolicy) – the policy to use when adding the graphs. When
IsomorphismPolicy.Checkis given, and a graph is added which is isomorphic to an existing graph in the internal database of theDGthe strategy is executed on, then aLogicErroris thrown.
-
mod.execute(f)¶ - Returns
the result of
DGStrat.makeExecute().
-
mod.filterSubset(p)¶ -
mod.filterUniverse(p)¶ - Returns
the result of the corresponding
DGStrat.makeFilter().
-
mod.leftPredicate¶ -
mod.rightPredicate¶ Objects of unspecified type which can be used as
obj[pred](strat). This will call respectivelyDGStrat.makeLeftPredicate()orDGStrat.makeRightPredicate().
-
mod.repeat¶ An object of unspecified type which can be used either as
repeat(strat)orrepeat[limit](strat). This will callDGStrat.makeRepeat().
-
mod.revive(strat)¶ - Returns
the result of
DGStrat.makeRevive().
3.1.9.5.2. The Basic API¶
3.1.9.5.2.1. Class DGStratGraphState¶
3.1.9.5.2.2. Class DGStrat¶
-
class
mod.DGStrat¶ -
static
makeAddStatic(onlyUniverse, graphs, graphPolicy)¶ - Parameters
onlyUniverse (bool) – if the strategy is Add Universe or Add Subset.
graphs (list[Graph]) – the graphs to be added by the strategy.
graphPolicy (IsomorphismPolicy) – refers to the checking of each added graph against the internal graph database.
- Returns
an Add Universe strategy if
onlyUniverseisTrue, otherwise an Add Subset strategy.- Return type
- Raises
LogicErrorif there is aNoneingraphs.
-
static
makeAddDynamic(onlyUniverse, graphsFunc, graphPolicy)¶ - Parameters
onlyUniverse (bool) – if the strategy is Add Universe or Add Subset.
graphsFunc (Callable[[], list[Graph]]) – a function returning the graphs to be added by the strategy.
graphPolicy (IsomorphismPolicy) – refers to the checking of each added graph against the internal graph database.
- Returns
an Add Universe strategy if
onlyUniverseisTrue, otherwise an Add Subset strategy.- Return type
-
static
makeSequence(strats)¶ - Parameters
strats (list[DGStrat]) – the strategies to evaluate in sequence.
- Retunrs
a Sequence strategy.
- Return type
- Raises
LogicErrorif the given list of strategies is empty.- Raises
LogicErrorif there is aNoneinstrats.
-
static
makeParallel(strats)¶ - Parameters
- Returns
a Parallel strategy.
- Return type
- Raises
LogicErrorif strats is empty.- Raises
LogicErrorif there is aNoneinstrats.
-
static
makeFilter(alsoUniverse, p)¶ - Parameters
alsoUniverse (bool) – if the strategy is Filter Universe or Filter Subset.
p (Callable[[Graph, DGStratGraphState, bool], bool]) – the filtering predicate being called for each graph in either the subset or the universe. The predicate is called with the graph and the graph state as arguments, and a bool stating whether or not the call is the first in the filtering process.
- Returns
a Filter Universe strategy if
onlyUniverseisTrue, otherwise a Filter Subset strategy.- Return type
-
static
makeExecute(func)¶ - Parameters
func (Callable[[DGStratGraphState], None]) – A function being executed when the strategy is evaluated.
- Returns
an Execute strategy.
- Return type
-
static
makeRule(r)¶ - Parameters
r (Rule) – the rule to make into a strategy.
- Returns
a Rule strategy.
- Return type
- Raises
LogicErrorisrisNone.
-
static
makeLeftPredicate(p, strat)¶ - Parameters
p (Callable[[Derivation], bool]) – the predicate to be called on each candidate derivation. Even though the predicate is called with a
Derivationobject, only the left side and the rule of the object is valid.strat (DGStrat) – the sub-strategy to be evaluated under the constraints of the left predicate.
- Returns
a Derivation Predicates strategy.
- Return type
- Raises
LogicErrorifstratisNone.
-
static
makeRightPredicate(p, strat)¶ - Parameters
p (Callable[[Derivation], bool]) – the predicate to be called on each candidate derivation.
strat (DGStrat) – the sub-strategy to be evaluated under the constraints of the right predicate.
- Returns
a Derivation Predicates strategy.
- Return type
- Raises
LogicErrorifstratisNone.
-
static
makeRevive(strat)¶ - Parameters
strat (DGStrat) – the strategy to encapsulate.
- Returns
a Revive strategy.
- Return type
- Raises
LogicErrorifstratisNone.
-
static
makeRepeat(limit, strat)¶ - Parameters
- Returns
a Repeat strategy.
- Return type
- Raises
LogicErroriflimitis not positive.- Raises
LogicErrorifstratisNone.
-
static