-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmsg.txt
1052 lines (1052 loc) · 50.5 KB
/
msg.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Randy/numCols = 4, Randy%numCols = 8
Randy/numCols = 3, Randy%numCols = 5
Randy/numCols = 5, Randy%numCols = 4
Randy/numCols = 5, Randy%numCols = 5
Randy/numCols = 8, Randy%numCols = 8
Randy/numCols = 7, Randy%numCols = 2
Randy/numCols = 2, Randy%numCols = 7
Randy/numCols = 1, Randy%numCols = 1
Randy/numCols = 1, Randy%numCols = 2
Randy/numCols = 4, Randy%numCols = 6
Randy/numCols = 7, Randy%numCols = 9
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (3, 5) has ev_type MOVE at time 0.644097
Macro #2 at (5, 4) has ev_type MOVE at time 0.516413
Bac #0 at (5,5) has ev_type MOVE at time 1.685902
Bac #1 at (8,8) has ev_type DIVIDE at time 1.123691
Bac #2 at (7,2) has ev_type MOVE at time 0.907630
Bac #3 at (2,7) has ev_type MOVE at time 0.866549
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (1,2) has ev_type MOVE at time 0.450970
Bac #6 at (4,6) has ev_type MOVE at time 0.521230
Bac #7 at (7,9) has ev_type MOVE at time 0.688358
Evt Owner Type: BACTERIUM
So the next event is a(n) MOVE by BACTERIUM #5 at cell (1,2) and time 0.450970
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (3, 5) has ev_type MOVE at time 0.644097
Macro #2 at (5, 4) has ev_type MOVE at time 0.516413
Bac #0 at (5,5) has ev_type MOVE at time 1.685902
Bac #1 at (8,8) has ev_type DIVIDE at time 1.123691
Bac #2 at (7,2) has ev_type MOVE at time 0.907630
Bac #3 at (2,7) has ev_type MOVE at time 0.866549
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type DIVIDE at time 0.606262
Bac #6 at (4,6) has ev_type MOVE at time 0.521230
Bac #7 at (7,9) has ev_type MOVE at time 0.688358
So the next event is a(n) MOVE by MACROPHAGE #2 at cell (5,4) and time 0.516413
AgentGUI: t=0.52, lastUpdateTime = 0
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (3, 5) has ev_type MOVE at time 0.644097
Macro #2 at (5, 5) has ev_type EAT at time 0.516413
Bac #0 at (5,5) has ev_type MOVE at time 1.685902
Bac #1 at (8,8) has ev_type DIVIDE at time 1.123691
Bac #2 at (7,2) has ev_type MOVE at time 0.907630
Bac #3 at (2,7) has ev_type MOVE at time 0.866549
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type DIVIDE at time 0.606262
Bac #6 at (4,6) has ev_type MOVE at time 0.521230
Bac #7 at (7,9) has ev_type MOVE at time 0.688358
So the next event is a(n) EAT by MACROPHAGE #2 at cell (5,5) and time 0.516413
AgentGUI: t=0.52, lastUpdateTime = 0
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (3, 5) has ev_type MOVE at time 0.644097
Macro #2 at (5, 5) has ev_type MOVE at time 0.750457
Bac #1 at (8,8) has ev_type DIVIDE at time 1.123691
Bac #2 at (7,2) has ev_type MOVE at time 0.907630
Bac #3 at (2,7) has ev_type MOVE at time 0.866549
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type DIVIDE at time 0.606262
Bac #6 at (4,6) has ev_type MOVE at time 0.521230
Bac #7 at (7,9) has ev_type MOVE at time 0.688358
So the next event is a(n) MOVE by BACTERIUM #6 at cell (4,6) and time 0.521230
AgentGUI: t=0.52, lastUpdateTime = 0
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (3, 5) has ev_type MOVE at time 0.644097
Macro #2 at (5, 5) has ev_type MOVE at time 0.750457
Bac #1 at (8,8) has ev_type DIVIDE at time 1.123691
Bac #2 at (7,2) has ev_type MOVE at time 0.907630
Bac #3 at (2,7) has ev_type MOVE at time 0.866549
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type DIVIDE at time 0.606262
Bac #6 at (4,5) has ev_type MOVE at time 0.728578
Bac #7 at (7,9) has ev_type MOVE at time 0.688358
So the next event is a(n) DIVIDE by BACTERIUM #5 at cell (0,2) and time 0.606262
AgentGUI: t=0.61, lastUpdateTime = 0
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (3, 5) has ev_type MOVE at time 0.644097
Macro #2 at (5, 5) has ev_type MOVE at time 0.750457
Bac #1 at (8,8) has ev_type DIVIDE at time 1.123691
Bac #2 at (7,2) has ev_type MOVE at time 0.907630
Bac #3 at (2,7) has ev_type MOVE at time 0.866549
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #6 at (4,5) has ev_type MOVE at time 0.728578
Bac #7 at (7,9) has ev_type MOVE at time 0.688358
Bac #8 at (9,2) has ev_type MOVE at time 0.689466
So the next event is a(n) MOVE by MACROPHAGE #1 at cell (3,5) and time 0.644097
AgentGUI: t=0.64, lastUpdateTime = 0
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (4, 6) has ev_type EAT at time 0.644097
Macro #2 at (5, 5) has ev_type MOVE at time 0.750457
Bac #1 at (8,8) has ev_type DIVIDE at time 1.123691
Bac #2 at (7,2) has ev_type MOVE at time 0.907630
Bac #3 at (2,7) has ev_type MOVE at time 0.866549
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #6 at (4,5) has ev_type MOVE at time 0.728578
Bac #7 at (7,9) has ev_type MOVE at time 0.688358
Bac #8 at (9,2) has ev_type MOVE at time 0.689466
So the next event is a(n) EAT by MACROPHAGE #1 at cell (4,6) and time 0.644097
AgentGUI: t=0.64, lastUpdateTime = 0
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (4, 6) has ev_type MOVE at time 0.977628
Macro #2 at (5, 5) has ev_type MOVE at time 0.750457
Bac #1 at (8,8) has ev_type DIVIDE at time 1.123691
Bac #2 at (7,2) has ev_type MOVE at time 0.907630
Bac #3 at (2,7) has ev_type MOVE at time 0.866549
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (7,9) has ev_type MOVE at time 0.688358
Bac #8 at (9,2) has ev_type MOVE at time 0.689466
So the next event is a(n) MOVE by BACTERIUM #7 at cell (7,9) and time 0.688358
AgentGUI: t=0.69, lastUpdateTime = 0
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (4, 6) has ev_type MOVE at time 0.977628
Macro #2 at (5, 5) has ev_type MOVE at time 0.750457
Bac #1 at (8,8) has ev_type DIVIDE at time 1.123691
Bac #2 at (7,2) has ev_type MOVE at time 0.907630
Bac #3 at (2,7) has ev_type MOVE at time 0.866549
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (8,9) has ev_type DIVIDE at time 1.430468
Bac #8 at (9,2) has ev_type MOVE at time 0.689466
So the next event is a(n) MOVE by BACTERIUM #8 at cell (9,2) and time 0.689466
AgentGUI: t=0.69, lastUpdateTime = 0
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (4, 6) has ev_type MOVE at time 0.977628
Macro #2 at (5, 5) has ev_type MOVE at time 0.750457
Bac #1 at (8,8) has ev_type DIVIDE at time 1.123691
Bac #2 at (7,2) has ev_type MOVE at time 0.907630
Bac #3 at (2,7) has ev_type MOVE at time 0.866549
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (8,9) has ev_type DIVIDE at time 1.430468
Bac #8 at (8,3) has ev_type DIVIDE at time 1.829974
So the next event is a(n) MOVE by MACROPHAGE #2 at cell (5,5) and time 0.750457
AgentGUI: t=0.75, lastUpdateTime = 0
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (4, 6) has ev_type MOVE at time 0.977628
Macro #2 at (4, 5) has ev_type EAT at time 0.750457
Bac #1 at (8,8) has ev_type DIVIDE at time 1.123691
Bac #2 at (7,2) has ev_type MOVE at time 0.907630
Bac #3 at (2,7) has ev_type MOVE at time 0.866549
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (8,9) has ev_type DIVIDE at time 1.430468
Bac #8 at (8,3) has ev_type DIVIDE at time 1.829974
So the next event is a(n) EAT by MACROPHAGE #2 at cell (4,5) and time 0.750457
AgentGUI: t=0.75, lastUpdateTime = 0
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (4, 6) has ev_type MOVE at time 0.977628
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (8,8) has ev_type DIVIDE at time 1.123691
Bac #2 at (7,2) has ev_type MOVE at time 0.907630
Bac #3 at (2,7) has ev_type MOVE at time 0.866549
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (8,9) has ev_type DIVIDE at time 1.430468
Bac #8 at (8,3) has ev_type DIVIDE at time 1.829974
So the next event is a(n) MOVE by BACTERIUM #3 at cell (2,7) and time 0.866549
AgentGUI: t=0.87, lastUpdateTime = 0
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (4, 6) has ev_type MOVE at time 0.977628
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (8,8) has ev_type DIVIDE at time 1.123691
Bac #2 at (7,2) has ev_type MOVE at time 0.907630
Bac #3 at (1,6) has ev_type MOVE at time 1.648077
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (8,9) has ev_type DIVIDE at time 1.430468
Bac #8 at (8,3) has ev_type DIVIDE at time 1.829974
So the next event is a(n) MOVE by BACTERIUM #2 at cell (7,2) and time 0.907630
AgentGUI: t=0.91, lastUpdateTime = 0
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (4, 6) has ev_type MOVE at time 0.977628
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (8,8) has ev_type DIVIDE at time 1.123691
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (1,6) has ev_type MOVE at time 1.648077
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (8,9) has ev_type DIVIDE at time 1.430468
Bac #8 at (8,3) has ev_type DIVIDE at time 1.829974
So the next event is a(n) MOVE by MACROPHAGE #1 at cell (4,6) and time 0.977628
AgentGUI: t=0.98, lastUpdateTime = 0
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (4, 7) has ev_type MOVE at time 2.057270
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (8,8) has ev_type DIVIDE at time 1.123691
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (1,6) has ev_type MOVE at time 1.648077
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (8,9) has ev_type DIVIDE at time 1.430468
Bac #8 at (8,3) has ev_type DIVIDE at time 1.829974
So the next event is a(n) DIVIDE by BACTERIUM #1 at cell (8,8) and time 1.123691
AgentGUI: t=1.12, lastUpdateTime = 0
AgentGUI: ololol updating the dialoglog
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (4, 7) has ev_type MOVE at time 2.057270
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (8,8) has ev_type MOVE at time 1.339966
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (1,6) has ev_type MOVE at time 1.648077
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (8,9) has ev_type DIVIDE at time 1.430468
Bac #8 at (8,3) has ev_type DIVIDE at time 1.829974
Bac #9 at (9,7) has ev_type MOVE at time 2.593194
So the next event is a(n) MOVE by BACTERIUM #1 at cell (8,8) and time 1.339966
AgentGUI: t=1.34, lastUpdateTime = 1
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (4, 7) has ev_type MOVE at time 2.057270
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (7,8) has ev_type MOVE at time 2.180065
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (1,6) has ev_type MOVE at time 1.648077
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (8,9) has ev_type DIVIDE at time 1.430468
Bac #8 at (8,3) has ev_type DIVIDE at time 1.829974
Bac #9 at (9,7) has ev_type MOVE at time 2.593194
So the next event is a(n) DIVIDE by BACTERIUM #7 at cell (8,9) and time 1.430468
AgentGUI: t=1.43, lastUpdateTime = 1
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (4, 7) has ev_type MOVE at time 2.057270
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (7,8) has ev_type MOVE at time 2.180065
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (1,6) has ev_type MOVE at time 1.648077
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (8,9) has ev_type MOVE at time 1.786090
Bac #8 at (8,3) has ev_type DIVIDE at time 1.829974
Bac #9 at (9,7) has ev_type MOVE at time 2.593194
Bac #10 at (9,9) has ev_type MOVE at time 1.558291
So the next event is a(n) MOVE by BACTERIUM #10 at cell (9,9) and time 1.558291
AgentGUI: t=1.56, lastUpdateTime = 1
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (4, 7) has ev_type MOVE at time 2.057270
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (7,8) has ev_type MOVE at time 2.180065
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (1,6) has ev_type MOVE at time 1.648077
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (8,9) has ev_type MOVE at time 1.786090
Bac #8 at (8,3) has ev_type DIVIDE at time 1.829974
Bac #9 at (9,7) has ev_type MOVE at time 2.593194
Bac #10 at (9,0) has ev_type MOVE at time 1.670587
So the next event is a(n) MOVE by BACTERIUM #3 at cell (1,6) and time 1.648077
AgentGUI: t=1.65, lastUpdateTime = 1
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (4, 7) has ev_type MOVE at time 2.057270
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (7,8) has ev_type MOVE at time 2.180065
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (0,6) has ev_type MOVE at time 3.263183
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (8,9) has ev_type MOVE at time 1.786090
Bac #8 at (8,3) has ev_type DIVIDE at time 1.829974
Bac #9 at (9,7) has ev_type MOVE at time 2.593194
Bac #10 at (9,0) has ev_type MOVE at time 1.670587
So the next event is a(n) MOVE by BACTERIUM #10 at cell (9,0) and time 1.670587
AgentGUI: t=1.67, lastUpdateTime = 1
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (4, 7) has ev_type MOVE at time 2.057270
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (7,8) has ev_type MOVE at time 2.180065
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (0,6) has ev_type MOVE at time 3.263183
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (8,9) has ev_type MOVE at time 1.786090
Bac #8 at (8,3) has ev_type DIVIDE at time 1.829974
Bac #9 at (9,7) has ev_type MOVE at time 2.593194
Bac #10 at (0,0) has ev_type DIVIDE at time 2.593436
So the next event is a(n) MOVE by BACTERIUM #7 at cell (8,9) and time 1.786090
AgentGUI: t=1.79, lastUpdateTime = 1
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (4, 7) has ev_type MOVE at time 2.057270
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (7,8) has ev_type MOVE at time 2.180065
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (0,6) has ev_type MOVE at time 3.263183
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (8,0) has ev_type MOVE at time 1.816780
Bac #8 at (8,3) has ev_type DIVIDE at time 1.829974
Bac #9 at (9,7) has ev_type MOVE at time 2.593194
Bac #10 at (0,0) has ev_type DIVIDE at time 2.593436
So the next event is a(n) MOVE by BACTERIUM #7 at cell (8,0) and time 1.816780
AgentGUI: t=1.82, lastUpdateTime = 1
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (4, 7) has ev_type MOVE at time 2.057270
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (7,8) has ev_type MOVE at time 2.180065
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (0,6) has ev_type MOVE at time 3.263183
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (9,1) has ev_type MOVE at time 1.983152
Bac #8 at (8,3) has ev_type DIVIDE at time 1.829974
Bac #9 at (9,7) has ev_type MOVE at time 2.593194
Bac #10 at (0,0) has ev_type DIVIDE at time 2.593436
So the next event is a(n) DIVIDE by BACTERIUM #8 at cell (8,3) and time 1.829974
AgentGUI: t=1.83, lastUpdateTime = 1
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (4, 7) has ev_type MOVE at time 2.057270
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (7,8) has ev_type MOVE at time 2.180065
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (0,6) has ev_type MOVE at time 3.263183
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (9,1) has ev_type MOVE at time 1.983152
Bac #8 at (8,3) has ev_type MOVE at time 2.476219
Bac #9 at (9,7) has ev_type MOVE at time 2.593194
Bac #10 at (0,0) has ev_type DIVIDE at time 2.593436
Bac #11 at (9,3) has ev_type MOVE at time 1.987804
So the next event is a(n) MOVE by BACTERIUM #7 at cell (9,1) and time 1.983152
AgentGUI: t=1.98, lastUpdateTime = 1
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (4, 7) has ev_type MOVE at time 2.057270
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (7,8) has ev_type MOVE at time 2.180065
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (0,6) has ev_type MOVE at time 3.263183
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (8,1) has ev_type MOVE at time 2.401162
Bac #8 at (8,3) has ev_type MOVE at time 2.476219
Bac #9 at (9,7) has ev_type MOVE at time 2.593194
Bac #10 at (0,0) has ev_type DIVIDE at time 2.593436
Bac #11 at (9,3) has ev_type MOVE at time 1.987804
So the next event is a(n) MOVE by BACTERIUM #11 at cell (9,3) and time 1.987804
AgentGUI: t=1.99, lastUpdateTime = 1
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (4, 7) has ev_type MOVE at time 2.057270
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (7,8) has ev_type MOVE at time 2.180065
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (0,6) has ev_type MOVE at time 3.263183
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (8,1) has ev_type MOVE at time 2.401162
Bac #8 at (8,3) has ev_type MOVE at time 2.476219
Bac #9 at (9,7) has ev_type MOVE at time 2.593194
Bac #10 at (0,0) has ev_type DIVIDE at time 2.593436
Bac #11 at (0,4) has ev_type MOVE at time 2.891451
So the next event is a(n) MOVE by MACROPHAGE #1 at cell (4,7) and time 2.057270
AgentGUI: t=2.06, lastUpdateTime = 1
AgentGUI: ololol updating the dialoglog
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (3, 7) has ev_type MOVE at time 2.738355
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (7,8) has ev_type MOVE at time 2.180065
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (0,6) has ev_type MOVE at time 3.263183
Bac #4 at (1,1) has ev_type MOVE at time 2.160102
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (8,1) has ev_type MOVE at time 2.401162
Bac #8 at (8,3) has ev_type MOVE at time 2.476219
Bac #9 at (9,7) has ev_type MOVE at time 2.593194
Bac #10 at (0,0) has ev_type DIVIDE at time 2.593436
Bac #11 at (0,4) has ev_type MOVE at time 2.891451
So the next event is a(n) MOVE by BACTERIUM #4 at cell (1,1) and time 2.160102
AgentGUI: t=2.16, lastUpdateTime = 2
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (3, 7) has ev_type MOVE at time 2.738355
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (7,8) has ev_type MOVE at time 2.180065
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (0,6) has ev_type MOVE at time 3.263183
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (8,1) has ev_type MOVE at time 2.401162
Bac #8 at (8,3) has ev_type MOVE at time 2.476219
Bac #9 at (9,7) has ev_type MOVE at time 2.593194
Bac #10 at (0,0) has ev_type DIVIDE at time 2.593436
Bac #11 at (0,4) has ev_type MOVE at time 2.891451
So the next event is a(n) MOVE by BACTERIUM #1 at cell (7,8) and time 2.180065
AgentGUI: t=2.18, lastUpdateTime = 2
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (3, 7) has ev_type MOVE at time 2.738355
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (6,7) has ev_type MOVE at time 2.334524
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (0,6) has ev_type MOVE at time 3.263183
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (8,1) has ev_type MOVE at time 2.401162
Bac #8 at (8,3) has ev_type MOVE at time 2.476219
Bac #9 at (9,7) has ev_type MOVE at time 2.593194
Bac #10 at (0,0) has ev_type DIVIDE at time 2.593436
Bac #11 at (0,4) has ev_type MOVE at time 2.891451
So the next event is a(n) MOVE by BACTERIUM #1 at cell (6,7) and time 2.334524
AgentGUI: t=2.33, lastUpdateTime = 2
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (3, 7) has ev_type MOVE at time 2.738355
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (7,6) has ev_type MOVE at time 2.384545
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (0,6) has ev_type MOVE at time 3.263183
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (8,1) has ev_type MOVE at time 2.401162
Bac #8 at (8,3) has ev_type MOVE at time 2.476219
Bac #9 at (9,7) has ev_type MOVE at time 2.593194
Bac #10 at (0,0) has ev_type DIVIDE at time 2.593436
Bac #11 at (0,4) has ev_type MOVE at time 2.891451
So the next event is a(n) MOVE by BACTERIUM #1 at cell (7,6) and time 2.384545
AgentGUI: t=2.38, lastUpdateTime = 2
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (3, 7) has ev_type MOVE at time 2.738355
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (8,6) has ev_type MOVE at time 2.916157
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (0,6) has ev_type MOVE at time 3.263183
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (8,1) has ev_type MOVE at time 2.401162
Bac #8 at (8,3) has ev_type MOVE at time 2.476219
Bac #9 at (9,7) has ev_type MOVE at time 2.593194
Bac #10 at (0,0) has ev_type DIVIDE at time 2.593436
Bac #11 at (0,4) has ev_type MOVE at time 2.891451
So the next event is a(n) MOVE by BACTERIUM #7 at cell (8,1) and time 2.401162
AgentGUI: t=2.40, lastUpdateTime = 2
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (4, 8) has ev_type MOVE at time 2.432260
Macro #1 at (3, 7) has ev_type MOVE at time 2.738355
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (8,6) has ev_type MOVE at time 2.916157
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (0,6) has ev_type MOVE at time 3.263183
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (7,1) has ev_type MOVE at time 2.584879
Bac #8 at (8,3) has ev_type MOVE at time 2.476219
Bac #9 at (9,7) has ev_type MOVE at time 2.593194
Bac #10 at (0,0) has ev_type DIVIDE at time 2.593436
Bac #11 at (0,4) has ev_type MOVE at time 2.891451
So the next event is a(n) MOVE by MACROPHAGE #0 at cell (4,8) and time 2.432260
AgentGUI: t=2.43, lastUpdateTime = 2
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (3, 7) has ev_type MOVE at time 2.738355
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (8,6) has ev_type MOVE at time 2.916157
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (0,6) has ev_type MOVE at time 3.263183
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (7,1) has ev_type MOVE at time 2.584879
Bac #8 at (8,3) has ev_type MOVE at time 2.476219
Bac #9 at (9,7) has ev_type MOVE at time 2.593194
Bac #10 at (0,0) has ev_type DIVIDE at time 2.593436
Bac #11 at (0,4) has ev_type MOVE at time 2.891451
So the next event is a(n) MOVE by BACTERIUM #8 at cell (8,3) and time 2.476219
AgentGUI: t=2.48, lastUpdateTime = 2
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (3, 7) has ev_type MOVE at time 2.738355
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (8,6) has ev_type MOVE at time 2.916157
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (0,6) has ev_type MOVE at time 3.263183
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (7,1) has ev_type MOVE at time 2.584879
Bac #8 at (8,2) has ev_type MOVE at time 3.016227
Bac #9 at (9,7) has ev_type MOVE at time 2.593194
Bac #10 at (0,0) has ev_type DIVIDE at time 2.593436
Bac #11 at (0,4) has ev_type MOVE at time 2.891451
So the next event is a(n) MOVE by BACTERIUM #7 at cell (7,1) and time 2.584879
AgentGUI: t=2.58, lastUpdateTime = 2
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (3, 7) has ev_type MOVE at time 2.738355
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (8,6) has ev_type MOVE at time 2.916157
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (0,6) has ev_type MOVE at time 3.263183
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (7,0) has ev_type MOVE at time 2.965063
Bac #8 at (8,2) has ev_type MOVE at time 3.016227
Bac #9 at (9,7) has ev_type MOVE at time 2.593194
Bac #10 at (0,0) has ev_type DIVIDE at time 2.593436
Bac #11 at (0,4) has ev_type MOVE at time 2.891451
So the next event is a(n) MOVE by BACTERIUM #9 at cell (9,7) and time 2.593194
AgentGUI: t=2.59, lastUpdateTime = 2
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (3, 7) has ev_type MOVE at time 2.738355
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (8,6) has ev_type MOVE at time 2.916157
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (0,6) has ev_type MOVE at time 3.263183
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (7,0) has ev_type MOVE at time 2.965063
Bac #8 at (8,2) has ev_type MOVE at time 3.016227
Bac #9 at (9,8) has ev_type MOVE at time 2.697091
Bac #10 at (0,0) has ev_type DIVIDE at time 2.593436
Bac #11 at (0,4) has ev_type MOVE at time 2.891451
So the next event is a(n) DIVIDE by BACTERIUM #10 at cell (0,0) and time 2.593436
AgentGUI: t=2.59, lastUpdateTime = 2
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (3, 7) has ev_type MOVE at time 2.738355
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (8,6) has ev_type MOVE at time 2.916157
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (0,6) has ev_type MOVE at time 3.263183
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (7,0) has ev_type MOVE at time 2.965063
Bac #8 at (8,2) has ev_type MOVE at time 3.016227
Bac #9 at (9,8) has ev_type MOVE at time 2.697091
Bac #10 at (0,0) has ev_type MOVE at time 3.344463
Bac #11 at (0,4) has ev_type MOVE at time 2.891451
Bac #12 at (0,1) has ev_type MOVE at time 4.131587
So the next event is a(n) MOVE by BACTERIUM #9 at cell (9,8) and time 2.697091
AgentGUI: t=2.70, lastUpdateTime = 2
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (3, 7) has ev_type MOVE at time 2.738355
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (8,6) has ev_type MOVE at time 2.916157
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (0,6) has ev_type MOVE at time 3.263183
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,2) has ev_type MOVE at time 2.707861
Bac #7 at (7,0) has ev_type MOVE at time 2.965063
Bac #8 at (8,2) has ev_type MOVE at time 3.016227
Bac #9 at (0,8) has ev_type MOVE at time 4.692792
Bac #10 at (0,0) has ev_type MOVE at time 3.344463
Bac #11 at (0,4) has ev_type MOVE at time 2.891451
Bac #12 at (0,1) has ev_type MOVE at time 4.131587
So the next event is a(n) MOVE by BACTERIUM #5 at cell (0,2) and time 2.707861
AgentGUI: t=2.71, lastUpdateTime = 2
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (3, 7) has ev_type MOVE at time 2.738355
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (8,6) has ev_type MOVE at time 2.916157
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (0,6) has ev_type MOVE at time 3.263183
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,3) has ev_type MOVE at time 3.812153
Bac #7 at (7,0) has ev_type MOVE at time 2.965063
Bac #8 at (8,2) has ev_type MOVE at time 3.016227
Bac #9 at (0,8) has ev_type MOVE at time 4.692792
Bac #10 at (0,0) has ev_type MOVE at time 3.344463
Bac #11 at (0,4) has ev_type MOVE at time 2.891451
Bac #12 at (0,1) has ev_type MOVE at time 4.131587
So the next event is a(n) MOVE by MACROPHAGE #1 at cell (3,7) and time 2.738355
AgentGUI: t=2.74, lastUpdateTime = 2
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (2, 7) has ev_type EAT at time 2.738355
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (8,6) has ev_type MOVE at time 2.916157
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #3 at (0,6) has ev_type MOVE at time 3.263183
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,3) has ev_type MOVE at time 3.812153
Bac #7 at (7,0) has ev_type MOVE at time 2.965063
Bac #8 at (8,2) has ev_type MOVE at time 3.016227
Bac #9 at (0,8) has ev_type MOVE at time 4.692792
Bac #10 at (0,0) has ev_type MOVE at time 3.344463
Bac #11 at (0,4) has ev_type MOVE at time 2.891451
Bac #12 at (0,1) has ev_type MOVE at time 4.131587
So the next event is a(n) EAT by MACROPHAGE #1 at cell (2,7) and time 2.738355
AgentGUI: t=2.74, lastUpdateTime = 2
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (2, 7) has ev_type MOVE at time 3.820548
Macro #2 at (4, 5) has ev_type MOVE at time 2.885324
Bac #1 at (8,6) has ev_type MOVE at time 2.916157
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,3) has ev_type MOVE at time 3.812153
Bac #7 at (7,0) has ev_type MOVE at time 2.965063
Bac #8 at (8,2) has ev_type MOVE at time 3.016227
Bac #9 at (0,8) has ev_type MOVE at time 4.692792
Bac #10 at (0,0) has ev_type MOVE at time 3.344463
Bac #11 at (0,4) has ev_type MOVE at time 2.891451
Bac #12 at (0,1) has ev_type MOVE at time 4.131587
So the next event is a(n) MOVE by MACROPHAGE #2 at cell (4,5) and time 2.885324
AgentGUI: t=2.89, lastUpdateTime = 2
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (2, 7) has ev_type MOVE at time 3.820548
Macro #2 at (3, 6) has ev_type MOVE at time 3.185441
Bac #1 at (8,6) has ev_type MOVE at time 2.916157
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,3) has ev_type MOVE at time 3.812153
Bac #7 at (7,0) has ev_type MOVE at time 2.965063
Bac #8 at (8,2) has ev_type MOVE at time 3.016227
Bac #9 at (0,8) has ev_type MOVE at time 4.692792
Bac #10 at (0,0) has ev_type MOVE at time 3.344463
Bac #11 at (0,4) has ev_type MOVE at time 2.891451
Bac #12 at (0,1) has ev_type MOVE at time 4.131587
So the next event is a(n) MOVE by BACTERIUM #11 at cell (0,4) and time 2.891451
AgentGUI: t=2.89, lastUpdateTime = 2
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (2, 7) has ev_type MOVE at time 3.820548
Macro #2 at (3, 6) has ev_type MOVE at time 3.185441
Bac #1 at (8,6) has ev_type MOVE at time 2.916157
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,3) has ev_type MOVE at time 3.812153
Bac #7 at (7,0) has ev_type MOVE at time 2.965063
Bac #8 at (8,2) has ev_type MOVE at time 3.016227
Bac #9 at (0,8) has ev_type MOVE at time 4.692792
Bac #10 at (0,0) has ev_type MOVE at time 3.344463
Bac #11 at (1,3) has ev_type MOVE at time 3.025584
Bac #12 at (0,1) has ev_type MOVE at time 4.131587
So the next event is a(n) MOVE by BACTERIUM #1 at cell (8,6) and time 2.916157
AgentGUI: t=2.92, lastUpdateTime = 2
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (2, 7) has ev_type MOVE at time 3.820548
Macro #2 at (3, 6) has ev_type MOVE at time 3.185441
Bac #1 at (7,5) has ev_type MOVE at time 2.984149
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,3) has ev_type MOVE at time 3.812153
Bac #7 at (7,0) has ev_type MOVE at time 2.965063
Bac #8 at (8,2) has ev_type MOVE at time 3.016227
Bac #9 at (0,8) has ev_type MOVE at time 4.692792
Bac #10 at (0,0) has ev_type MOVE at time 3.344463
Bac #11 at (1,3) has ev_type MOVE at time 3.025584
Bac #12 at (0,1) has ev_type MOVE at time 4.131587
So the next event is a(n) MOVE by BACTERIUM #7 at cell (7,0) and time 2.965063
AgentGUI: t=2.97, lastUpdateTime = 2
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (2, 7) has ev_type MOVE at time 3.820548
Macro #2 at (3, 6) has ev_type MOVE at time 3.185441
Bac #1 at (7,5) has ev_type MOVE at time 2.984149
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,3) has ev_type MOVE at time 3.812153
Bac #7 at (6,1) has ev_type MOVE at time 3.070073
Bac #8 at (8,2) has ev_type MOVE at time 3.016227
Bac #9 at (0,8) has ev_type MOVE at time 4.692792
Bac #10 at (0,0) has ev_type MOVE at time 3.344463
Bac #11 at (1,3) has ev_type MOVE at time 3.025584
Bac #12 at (0,1) has ev_type MOVE at time 4.131587
So the next event is a(n) MOVE by BACTERIUM #1 at cell (7,5) and time 2.984149
AgentGUI: t=2.98, lastUpdateTime = 2
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (2, 7) has ev_type MOVE at time 3.820548
Macro #2 at (3, 6) has ev_type MOVE at time 3.185441
Bac #1 at (6,6) has ev_type MOVE at time 3.074123
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,3) has ev_type MOVE at time 3.812153
Bac #7 at (6,1) has ev_type MOVE at time 3.070073
Bac #8 at (8,2) has ev_type MOVE at time 3.016227
Bac #9 at (0,8) has ev_type MOVE at time 4.692792
Bac #10 at (0,0) has ev_type MOVE at time 3.344463
Bac #11 at (1,3) has ev_type MOVE at time 3.025584
Bac #12 at (0,1) has ev_type MOVE at time 4.131587
So the next event is a(n) MOVE by BACTERIUM #8 at cell (8,2) and time 3.016227
AgentGUI: t=3.02, lastUpdateTime = 2
AgentGUI: ololol updating the dialoglog
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (2, 7) has ev_type MOVE at time 3.820548
Macro #2 at (3, 6) has ev_type MOVE at time 3.185441
Bac #1 at (6,6) has ev_type MOVE at time 3.074123
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,3) has ev_type MOVE at time 3.812153
Bac #7 at (6,1) has ev_type MOVE at time 3.070073
Bac #8 at (7,3) has ev_type DIVIDE at time 3.384310
Bac #9 at (0,8) has ev_type MOVE at time 4.692792
Bac #10 at (0,0) has ev_type MOVE at time 3.344463
Bac #11 at (1,3) has ev_type MOVE at time 3.025584
Bac #12 at (0,1) has ev_type MOVE at time 4.131587
So the next event is a(n) MOVE by BACTERIUM #11 at cell (1,3) and time 3.025584
AgentGUI: t=3.03, lastUpdateTime = 3
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (2, 7) has ev_type MOVE at time 3.820548
Macro #2 at (3, 6) has ev_type MOVE at time 3.185441
Bac #1 at (6,6) has ev_type MOVE at time 3.074123
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,3) has ev_type MOVE at time 3.812153
Bac #7 at (6,1) has ev_type MOVE at time 3.070073
Bac #8 at (7,3) has ev_type DIVIDE at time 3.384310
Bac #9 at (0,8) has ev_type MOVE at time 4.692792
Bac #10 at (0,0) has ev_type MOVE at time 3.344463
Bac #11 at (1,4) has ev_type MOVE at time 3.420748
Bac #12 at (0,1) has ev_type MOVE at time 4.131587
So the next event is a(n) MOVE by BACTERIUM #7 at cell (6,1) and time 3.070073
AgentGUI: t=3.07, lastUpdateTime = 3
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (2, 7) has ev_type MOVE at time 3.820548
Macro #2 at (3, 6) has ev_type MOVE at time 3.185441
Bac #1 at (6,6) has ev_type MOVE at time 3.074123
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,3) has ev_type MOVE at time 3.812153
Bac #7 at (6,0) has ev_type MOVE at time 3.352482
Bac #8 at (7,3) has ev_type DIVIDE at time 3.384310
Bac #9 at (0,8) has ev_type MOVE at time 4.692792
Bac #10 at (0,0) has ev_type MOVE at time 3.344463
Bac #11 at (1,4) has ev_type MOVE at time 3.420748
Bac #12 at (0,1) has ev_type MOVE at time 4.131587
So the next event is a(n) MOVE by BACTERIUM #1 at cell (6,6) and time 3.074123
AgentGUI: t=3.07, lastUpdateTime = 3
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (2, 7) has ev_type MOVE at time 3.820548
Macro #2 at (3, 6) has ev_type MOVE at time 3.185441
Bac #1 at (5,7) has ev_type MOVE at time 4.066832
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,3) has ev_type MOVE at time 3.812153
Bac #7 at (6,0) has ev_type MOVE at time 3.352482
Bac #8 at (7,3) has ev_type DIVIDE at time 3.384310
Bac #9 at (0,8) has ev_type MOVE at time 4.692792
Bac #10 at (0,0) has ev_type MOVE at time 3.344463
Bac #11 at (1,4) has ev_type MOVE at time 3.420748
Bac #12 at (0,1) has ev_type MOVE at time 4.131587
So the next event is a(n) MOVE by MACROPHAGE #2 at cell (3,6) and time 3.185441
AgentGUI: t=3.19, lastUpdateTime = 3
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (2, 7) has ev_type MOVE at time 3.820548
Macro #2 at (2, 5) has ev_type MOVE at time 3.607207
Bac #1 at (5,7) has ev_type MOVE at time 4.066832
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,3) has ev_type MOVE at time 3.812153
Bac #7 at (6,0) has ev_type MOVE at time 3.352482
Bac #8 at (7,3) has ev_type DIVIDE at time 3.384310
Bac #9 at (0,8) has ev_type MOVE at time 4.692792
Bac #10 at (0,0) has ev_type MOVE at time 3.344463
Bac #11 at (1,4) has ev_type MOVE at time 3.420748
Bac #12 at (0,1) has ev_type MOVE at time 4.131587
So the next event is a(n) MOVE by BACTERIUM #10 at cell (0,0) and time 3.344463
AgentGUI: t=3.34, lastUpdateTime = 3
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (2, 7) has ev_type MOVE at time 3.820548
Macro #2 at (2, 5) has ev_type MOVE at time 3.607207
Bac #1 at (5,7) has ev_type MOVE at time 4.066832
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,3) has ev_type MOVE at time 3.812153
Bac #7 at (6,0) has ev_type MOVE at time 3.352482
Bac #8 at (7,3) has ev_type DIVIDE at time 3.384310
Bac #9 at (0,8) has ev_type MOVE at time 4.692792
Bac #10 at (1,0) has ev_type MOVE at time 4.603789
Bac #11 at (1,4) has ev_type MOVE at time 3.420748
Bac #12 at (0,1) has ev_type MOVE at time 4.131587
So the next event is a(n) MOVE by BACTERIUM #7 at cell (6,0) and time 3.352482
AgentGUI: t=3.35, lastUpdateTime = 3
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (2, 7) has ev_type MOVE at time 3.820548
Macro #2 at (2, 5) has ev_type MOVE at time 3.607207
Bac #1 at (5,7) has ev_type MOVE at time 4.066832
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,3) has ev_type MOVE at time 3.812153
Bac #7 at (5,9) has ev_type MOVE at time 3.446198
Bac #8 at (7,3) has ev_type DIVIDE at time 3.384310
Bac #9 at (0,8) has ev_type MOVE at time 4.692792
Bac #10 at (1,0) has ev_type MOVE at time 4.603789
Bac #11 at (1,4) has ev_type MOVE at time 3.420748
Bac #12 at (0,1) has ev_type MOVE at time 4.131587
So the next event is a(n) DIVIDE by BACTERIUM #8 at cell (7,3) and time 3.384310
AgentGUI: t=3.38, lastUpdateTime = 3
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (2, 7) has ev_type MOVE at time 3.820548
Macro #2 at (2, 5) has ev_type MOVE at time 3.607207
Bac #1 at (5,7) has ev_type MOVE at time 4.066832
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,3) has ev_type MOVE at time 3.812153
Bac #7 at (5,9) has ev_type MOVE at time 3.446198
Bac #8 at (7,3) has ev_type MOVE at time 3.567789
Bac #9 at (0,8) has ev_type MOVE at time 4.692792
Bac #10 at (1,0) has ev_type MOVE at time 4.603789
Bac #11 at (1,4) has ev_type MOVE at time 3.420748
Bac #12 at (0,1) has ev_type MOVE at time 4.131587
Bac #13 at (7,4) has ev_type MOVE at time 3.387486
So the next event is a(n) MOVE by BACTERIUM #13 at cell (7,4) and time 3.387486
AgentGUI: t=3.39, lastUpdateTime = 3
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (2, 7) has ev_type MOVE at time 3.820548
Macro #2 at (2, 5) has ev_type MOVE at time 3.607207
Bac #1 at (5,7) has ev_type MOVE at time 4.066832
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,3) has ev_type MOVE at time 3.812153
Bac #7 at (5,9) has ev_type MOVE at time 3.446198
Bac #8 at (7,3) has ev_type MOVE at time 3.567789
Bac #9 at (0,8) has ev_type MOVE at time 4.692792
Bac #10 at (1,0) has ev_type MOVE at time 4.603789
Bac #11 at (1,4) has ev_type MOVE at time 3.420748
Bac #12 at (0,1) has ev_type MOVE at time 4.131587
Bac #13 at (6,5) has ev_type MOVE at time 3.588830
So the next event is a(n) MOVE by BACTERIUM #11 at cell (1,4) and time 3.420748
AgentGUI: t=3.42, lastUpdateTime = 3
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (2, 7) has ev_type MOVE at time 3.820548
Macro #2 at (2, 5) has ev_type MOVE at time 3.607207
Bac #1 at (5,7) has ev_type MOVE at time 4.066832
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,3) has ev_type MOVE at time 3.812153
Bac #7 at (5,9) has ev_type MOVE at time 3.446198
Bac #8 at (7,3) has ev_type MOVE at time 3.567789
Bac #9 at (0,8) has ev_type MOVE at time 4.692792
Bac #10 at (1,0) has ev_type MOVE at time 4.603789
Bac #11 at (1,5) has ev_type MOVE at time 3.961689
Bac #12 at (0,1) has ev_type MOVE at time 4.131587
Bac #13 at (6,5) has ev_type MOVE at time 3.588830
So the next event is a(n) MOVE by BACTERIUM #7 at cell (5,9) and time 3.446198
AgentGUI: t=3.45, lastUpdateTime = 3
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (2, 7) has ev_type MOVE at time 3.820548
Macro #2 at (2, 5) has ev_type MOVE at time 3.607207
Bac #1 at (5,7) has ev_type MOVE at time 4.066832
Bac #2 at (6,2) has ev_type DIVIDE at time 3.515505
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,3) has ev_type MOVE at time 3.812153
Bac #7 at (6,8) has ev_type MOVE at time 5.927462
Bac #8 at (7,3) has ev_type MOVE at time 3.567789
Bac #9 at (0,8) has ev_type MOVE at time 4.692792
Bac #10 at (1,0) has ev_type MOVE at time 4.603789
Bac #11 at (1,5) has ev_type MOVE at time 3.961689
Bac #12 at (0,1) has ev_type MOVE at time 4.131587
Bac #13 at (6,5) has ev_type MOVE at time 3.588830
So the next event is a(n) DIVIDE by BACTERIUM #2 at cell (6,2) and time 3.515505
AgentGUI: t=3.52, lastUpdateTime = 3
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (2, 7) has ev_type MOVE at time 3.820548
Macro #2 at (2, 5) has ev_type MOVE at time 3.607207
Bac #1 at (5,7) has ev_type MOVE at time 4.066832
Bac #2 at (6,2) has ev_type MOVE at time 4.271248
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,3) has ev_type MOVE at time 3.812153
Bac #7 at (6,8) has ev_type MOVE at time 5.927462
Bac #8 at (7,3) has ev_type MOVE at time 3.567789
Bac #9 at (0,8) has ev_type MOVE at time 4.692792
Bac #10 at (1,0) has ev_type MOVE at time 4.603789
Bac #11 at (1,5) has ev_type MOVE at time 3.961689
Bac #12 at (0,1) has ev_type MOVE at time 4.131587
Bac #13 at (6,5) has ev_type MOVE at time 3.588830
Bac #14 at (6,3) has ev_type MOVE at time 3.516640
So the next event is a(n) MOVE by BACTERIUM #14 at cell (6,3) and time 3.516640
AgentGUI: t=3.52, lastUpdateTime = 3
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 8) has ev_type MOVE at time 3.528473
Macro #1 at (2, 7) has ev_type MOVE at time 3.820548
Macro #2 at (2, 5) has ev_type MOVE at time 3.607207
Bac #1 at (5,7) has ev_type MOVE at time 4.066832
Bac #2 at (6,2) has ev_type MOVE at time 4.271248
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,3) has ev_type MOVE at time 3.812153
Bac #7 at (6,8) has ev_type MOVE at time 5.927462
Bac #8 at (7,3) has ev_type MOVE at time 3.567789
Bac #9 at (0,8) has ev_type MOVE at time 4.692792
Bac #10 at (1,0) has ev_type MOVE at time 4.603789
Bac #11 at (1,5) has ev_type MOVE at time 3.961689
Bac #12 at (0,1) has ev_type MOVE at time 4.131587
Bac #13 at (6,5) has ev_type MOVE at time 3.588830
Bac #14 at (6,4) has ev_type DIVIDE at time 3.643761
So the next event is a(n) MOVE by MACROPHAGE #0 at cell (5,8) and time 3.528473
AgentGUI: t=3.53, lastUpdateTime = 3
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 9) has ev_type EAT at time 3.528473
Macro #1 at (2, 7) has ev_type MOVE at time 3.820548
Macro #2 at (2, 5) has ev_type MOVE at time 3.607207
Bac #1 at (5,7) has ev_type MOVE at time 4.066832
Bac #2 at (6,2) has ev_type MOVE at time 4.271248
Bac #4 at (2,0) has ev_type DIVIDE at time 5.681732
Bac #5 at (0,3) has ev_type MOVE at time 3.812153
Bac #7 at (6,8) has ev_type MOVE at time 5.927462
Bac #8 at (7,3) has ev_type MOVE at time 3.567789
Bac #9 at (0,8) has ev_type MOVE at time 4.692792
Bac #10 at (1,0) has ev_type MOVE at time 4.603789
Bac #11 at (1,5) has ev_type MOVE at time 3.961689
Bac #12 at (0,1) has ev_type MOVE at time 4.131587
Bac #13 at (6,5) has ev_type MOVE at time 3.588830
Bac #14 at (6,4) has ev_type DIVIDE at time 3.643761
So the next event is a(n) EAT by MACROPHAGE #0 at cell (5,9) and time 3.528473
AgentGUI: t=3.53, lastUpdateTime = 3
Simulation: I'm updating the GUI!
Let's see what's next
Macro #0 at (5, 9) has ev_type MOVE at time 5.050456
Macro #1 at (2, 7) has ev_type MOVE at time 3.820548
Macro #2 at (2, 5) has ev_type MOVE at time 3.607207