MaxWorgan/RBN
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
Simple RBN impelmentation for supercollider
a = RBN.new; //create a new network
a.init(32,2.9, 0.5); // init with number of nodes, number of inputs and probability of boolean function
100.do({a.step;a.postln}); // step through the results (step returns a array for further use)
the magic values for k are 2 < k < 3