View Source Retex.Node.PNode (retex v0.1.10)

Production node. This is like a production node in Rete algorithm. It is activated if all the conditions in a rule are matching and contains the action that can be executed as consequence.

Link to this section Summary

Link to this section Types

@type t() :: %Retex.Node.PNode{
  action: term(),
  bindings: term(),
  filters: term(),
  id: term(),
  raw_action: term()
}

Link to this section Functions

Link to this function

new(action, filters \\ [])

View Source