Scene Programming in MonkeyLogic2
Motivation Writing a ML2 task with relatively complex timing dependency.
https://monkeylogic.nimh.nih.gov/docs_CreatingTask.html#RuntimeVersion2
Adapter Chain child = Adapter1(tracker); parent = Adapter2(child); topmost = Adapter3(parent); scene = create_scene(topmost); run_scene(scene); This programming paradigm is really similar to that used in Tensorflow. The Adapters are like operator function on variables. But nothing really happen to the scene until run_scene
Oct 13, 2020