Copyright | (c) Michael Szvetits 2020 |
---|---|
License | BSD3 (see the file LICENSE) |
Maintainer | typedbyte@qualified.name |
Stability | stable |
Portability | portable |
Safe Haskell | Safe |
Language | Haskell2010 |
This module exports the types and functions needed to create cells, manipulate their data and wire them up for data propagation.
Synopsis
- data Cell s a
- cell :: a -> (a -> a -> Change a) -> ST s (Cell s a)
- readCell :: Cell s a -> ST s a
- writeCell :: a -> Cell s a -> ST s (Propagation s)
- connect :: Cell s a -> Cell s b -> (a -> ST s b) -> ST s ()
- sync :: Cell s a -> Cell s a -> ST s ()
- syncWith :: (a -> b) -> (b -> a) -> Cell s a -> Cell s b -> ST s ()
- data Propagation s
- undo :: Propagation s -> ST s ()
- succeeded :: Propagation s -> Bool
- propagate :: Cell s a -> ST s (Propagation s)
- propagateMany :: [Cell s a] -> ST s (Propagation s)
- label :: (a -> [b]) -> (b -> a) -> [Cell s a] -> ST s [[b]]
Cell Creation and Inspection
The type of a cell holding a value of type a
. The type parameter s
serves to keep the internal states of different cell networks separate from
each other (see ST
for details).
:: a | The initial value of the cell. |
-> (a -> a -> Change a) | A function that describes how to join an existing cell value with a new one that the cell has received via propagation. |
-> ST s (Cell s a) | The newly constructed cell. |
Constructs a new cell with a given initial value and a function which defines how to react if a new value is about to be written to the cell.
writeCell :: a -> Cell s a -> ST s (Propagation s) Source #
Writes a new value to a specific cell and starts to propagate potential changes through the network of connected cells.
Cell Connection
:: Cell s a | The source cell. |
-> Cell s b | The target cell. |
-> (a -> ST s b) | A function that describes how the value for the target cell is constructed, based on the value of the source cell. |
-> ST s () | Note that no propagation takes place (i.e., no
|
Connects a source cell to a target cell in order to propagate changes from the source to the target.
Note that newly connected cells do not start to propagate changes
immediately after wiring up. Use propagate
or propagateMany
to do this.
sync :: Cell s a -> Cell s a -> ST s () Source #
Connects and synchronizes two cells, i.e. new values are propagated from
the source to the target cell, and vice versa. Short form of syncWith
id
id
.
Note that newly connected cells do not start to propagate changes
immediately after wiring up. Use propagate
or propagateMany
to do this.
syncWith :: (a -> b) -> (b -> a) -> Cell s a -> Cell s b -> ST s () Source #
Connects and synchronizes two cells using two translation functions f
and g
, i.e. new values are propagated from the source to the target cell
using f
, and vice versa using g
.
Note that newly connected cells do not start to propagate changes
immediately after wiring up. Use propagate
or propagateMany
to do this.
Value Propagation
data Propagation s Source #
The result of a propagation which allows to rollback changes and inspect its success.
undo :: Propagation s -> ST s () Source #
An action that reverts all cell changes of a propagation (both direct and transitive ones).
succeeded :: Propagation s -> Bool Source #
True
if the propagation was successful (i.e., it did not lead to a
cell change that is Incompatible
), otherwise False
.
Note that unsuccessful propagations are not automatically reverted. Use
undo
to do this.
propagate :: Cell s a -> ST s (Propagation s) Source #
Propagates the value of a specific cell to its connected cells in a
transitive manner. The propagation ends if no more cell changes occur or if
an Incompatible
cell value change is encountered.
propagateMany :: [Cell s a] -> ST s (Propagation s) Source #
Propagates the values of specific cells to their connected cells in a
transitive manner. The propagation ends if no more cell changes occur or if
an Incompatible
cell value change is encountered.
:: (a -> [b]) | A function which extracts testable values from a cell content. |
-> (b -> a) | A function which translates a testable value into a value which can be written back to the cell. |
-> [Cell s a] | The set of cells for which the values are enumerated. |
-> ST s [[b]] | Returns all valid assignments for the given cells. |
If the content of a Cell s a
is an accumulation of multiple values [b]
,
and every value b
itself can be used as content a
for the cell, then we
can write every value b
one after another to the cell and check if the
network converges to a successful state.
As a result, we can enumerate all possible combinations of valid values for a given set of cells. This is often used in constraint solving algorithms.