Maintainer | bastiaan.heeren@ou.nl |
---|---|
Stability | provisional |
Portability | portable (depends on ghc) |
Safe Haskell | None |
Language | Haskell98 |
A collection of strategy combinators: all lifted to work on different data types
- (<*>) :: (IsStrategy f, IsStrategy g) => f a -> g a -> Strategy a
- (<|>) :: (IsStrategy f, IsStrategy g) => f a -> g a -> Strategy a
- (<%>) :: (IsStrategy f, IsStrategy g) => f a -> g a -> Strategy a
- (<@>) :: (IsStrategy f, IsStrategy g) => f a -> g a -> Strategy a
- succeed :: Strategy a
- fail :: Strategy a
- atomic :: IsStrategy f => f a -> Strategy a
- sequence :: IsStrategy f => [f a] -> Strategy a
- alternatives :: IsStrategy f => [f a] -> Strategy a
- interleave :: IsStrategy f => [f a] -> Strategy a
- permute :: IsStrategy f => [f a] -> Strategy a
- many :: IsStrategy f => f a -> Strategy a
- many1 :: IsStrategy f => f a -> Strategy a
- replicate :: IsStrategy f => Int -> f a -> Strategy a
- option :: IsStrategy f => f a -> Strategy a
- check :: (a -> Bool) -> Strategy a
- not :: IsStrategy f => f a -> Strategy a
- repeat :: IsStrategy f => f a -> Strategy a
- repeat1 :: IsStrategy f => f a -> Strategy a
- try :: IsStrategy f => f a -> Strategy a
- (>|>) :: (IsStrategy f, IsStrategy g) => f a -> g a -> Strategy a
- (|>) :: (IsStrategy f, IsStrategy g) => f a -> g a -> Strategy a
- while :: IsStrategy f => (a -> Bool) -> f a -> Strategy a
- until :: IsStrategy f => (a -> Bool) -> f a -> Strategy a
- multi :: (IsId l, IsStrategy f) => l -> f a -> Strategy a
- exhaustive :: IsStrategy f => [f a] -> Strategy a
- fix :: (Strategy a -> Strategy a) -> Strategy a
- remove :: IsStrategy f => f a -> Strategy a
- collapse :: IsStrategy f => f a -> Strategy a
- hide :: IsStrategy f => f a -> Strategy a
- type DependencyGraph node key = (Graph, Vertex -> (node, key, [key]), key -> Maybe Vertex)
- dependencyGraph :: IsStrategy f => DependencyGraph (f a) key -> Strategy a
Documentation
(<*>) :: (IsStrategy f, IsStrategy g) => f a -> g a -> Strategy a infixr 5 Source
Put two strategies in sequence (first do this, then do that)
(<|>) :: (IsStrategy f, IsStrategy g) => f a -> g a -> Strategy a infixr 3 Source
Choose between the two strategies (either do this or do that)
(<%>) :: (IsStrategy f, IsStrategy g) => f a -> g a -> Strategy a infixr 2 Source
Interleave two strategies
(<@>) :: (IsStrategy f, IsStrategy g) => f a -> g a -> Strategy a infixr 2 Source
Alternate two strategies
atomic :: IsStrategy f => f a -> Strategy a Source
Makes a strategy atomic (w.r.t. parallel composition)
sequence :: IsStrategy f => [f a] -> Strategy a Source
Puts a list of strategies into a sequence
alternatives :: IsStrategy f => [f a] -> Strategy a Source
Combines a list of alternative strategies
interleave :: IsStrategy f => [f a] -> Strategy a Source
Merges a list of strategies (in parallel)
permute :: IsStrategy f => [f a] -> Strategy a Source
Allows all permutations of the list
many :: IsStrategy f => f a -> Strategy a Source
Repeat a strategy zero or more times (non-greedy)
many1 :: IsStrategy f => f a -> Strategy a Source
Apply a certain strategy at least once (non-greedy)
replicate :: IsStrategy f => Int -> f a -> Strategy a Source
Apply a strategy a certain number of times
option :: IsStrategy f => f a -> Strategy a Source
Apply a certain strategy or do nothing (non-greedy)
check :: (a -> Bool) -> Strategy a Source
Checks whether a predicate holds for the current term. The check is considered to be a minor step.
not :: IsStrategy f => f a -> Strategy a Source
Check whether or not the argument strategy cannot be applied: the result strategy only succeeds if this is not the case (otherwise it fails).
repeat :: IsStrategy f => f a -> Strategy a Source
Repeat a strategy zero or more times (greedy version of many
)
repeat1 :: IsStrategy f => f a -> Strategy a Source
Apply a certain strategy at least once (greedy version of many1
)
try :: IsStrategy f => f a -> Strategy a Source
Apply a certain strategy if this is possible (greedy version of option
)
(>|>) :: (IsStrategy f, IsStrategy g) => f a -> g a -> Strategy a infixr 4 Source
Choose between the two strategies, with a preference for steps from the left hand-side strategy.
(|>) :: (IsStrategy f, IsStrategy g) => f a -> g a -> Strategy a infixr 4 Source
Left-biased choice: if the left-operand strategy can be applied, do so. Otherwise, try the right-operand strategy
while :: IsStrategy f => (a -> Bool) -> f a -> Strategy a Source
Repeat the strategy as long as the predicate holds
until :: IsStrategy f => (a -> Bool) -> f a -> Strategy a Source
Repeat the strategy until the predicate holds
multi :: (IsId l, IsStrategy f) => l -> f a -> Strategy a Source
Apply a strategy at least once, but collapse into a single step
exhaustive :: IsStrategy f => [f a] -> Strategy a Source
Apply the strategies from the list exhaustively (until this is no longer possible)
fix :: (Strategy a -> Strategy a) -> Strategy a Source
A fix-point combinator on strategies (to model recursion). Powerful (but dangerous) combinator
remove :: IsStrategy f => f a -> Strategy a Source
collapse :: IsStrategy f => f a -> Strategy a Source
hide :: IsStrategy f => f a -> Strategy a Source
dependencyGraph :: IsStrategy f => DependencyGraph (f a) key -> Strategy a Source
Create a strategy from a dependency graph with strategies as nodes Does not check for cycles