Project

damsi

0.0
The project is in a healthy, maintained state
Turns DFG into a flow of events
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 0.3
~> 0.5
~> 3.0
~> 4.4
 Project Readme

DevOps By Rultor.com We recommend RubyMine

rake PDD status Hits-of-Code License

It's a simulator of a dataflow machine.

First, you define a dataflow graph and save it to test.dfg:

recv :start do
  send :sum, :a, 10
  send :sum, :b, 15
end
recv :sum do |a, b|
  send :mul, :x, (a+b)
end
recv :mul do |x|
  send :stop, :x, x
end

This is a Ruby dialect.