Skip to content

Instantly share code, notes, and snippets.

@channgo2203
Created July 11, 2016 19:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save channgo2203/c4b008f5f80966d72b0f08a0d1476032 to your computer and use it in GitHub Desktop.
Save channgo2203/c4b008f5f80966d72b0f08a0d1476032 to your computer and use it in GitHub Desktop.
Reactive Sytem Implementation Schemes
InitializeMemory();
foreach input_event do
ComputeOutput();
UpdateMemory();
end
InitializeMemory();
foreach period do
ReadInputs();
ComputeOutput();
UpdateMemory();
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment