Stateful machine: Difference between revisions

From psychoengineering
Jump to navigation Jump to search
Content added Content deleted
(Test graph)
(Basic graph)
Line 1: Line 1:
A '''stateful machine''' is a [[machine]] that uses past output to create novel output.
A '''stateful machine''' is a [[machine]] that uses past output to create novel output.


{{#mermaid:sequenceDiagram
{{#mermaid:flowchart LR
sourcePoint[ ] -->|source data| inputPoint
participant Alice
inputPoint[input] --> machine
participant Bob
machine --> outputPoint[output]
Alice->John: Hello John, how are you?
outputPoint -->|feedback| inputPoint
loop Healthcheck
outputPoint -->|behavior| behaviorPoint[ ]
John->John: Fight against hypochondria

end
style sourcePoint fill:none,stroke:none;
Note right of John: Rational thoughts <br/>prevail...
style behaviorPoint fill:none,stroke:none;
John-->Alice: Great!
John->Bob: How about you?
Bob-->John: Jolly good!
}}
}}

Revision as of 19:16, 15 August 2023

A stateful machine is a machine that uses past output to create novel output.