Browse Source

added execution model notes

Zoadian 10 năm trước cách đây
mục cha
commit
0337ffedd0
1 tập tin đã thay đổi với 6 bổ sung0 xóa
  1. 6 0
      README.md

+ 6 - 0
README.md

@@ -79,6 +79,12 @@ A programming game based on RoboCom.
 | $Tasks               | The number of tasks in the current program, incl. sleeping or seized tasks                                         |
 
 
+# Execution Model
+Programs are evaluated oldest to newest. Order of the first program is random.
+Each cycle only one task is executed per program. 
+Tasks are organized in a ring like structure. 
+At the beginning of each cycle the next _non paused_ task is made the active one.
+