-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtesting record same pyquil 4q.txt
2912 lines (2912 loc) · 71.3 KB
/
testing record same pyquil 4q.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
Generating Same Program at number1
Executing Simulator0
now we are at round: 0
Executing Simulator2
K-S Diff: 0.0322265625
now we are at round: 0
Executing Simulator3
K-S Diff: 0.03593750000000001
now we are at round: 0
Executing Simulator4
K-S Diff: 0.03385416666666666
now we are at round: 0
Executing Simulator5
K-S Diff: 0.0355747767857143
now we are at round: 0
Executing Simulator6
K-S Diff: 0.0382080078125
now we are at round: 0
Executing Simulator7
K-S Diff: 0.038736979166666685
now we are at round: 0
Executing Simulator8
K-S Diff: 0.03935546874999998
now we are at round: 0
Executing Simulator9
K-S Diff: 0.043590198863636354
now we are at round: 0
Executing Simulator10
K-S Diff: 0.05167643229166666
now we are at round: 0
Executing Simulator11
K-S Diff: 0.05085637019230771
Generating Same Program at number12
Executing Simulator1
now we are at round: 1
Executing Simulator13
K-S Diff: 0.03271484375
now we are at round: 1
Executing Simulator14
K-S Diff: 0.04427083333333334
now we are at round: 1
Executing Simulator15
K-S Diff: 0.042236328125
now we are at round: 1
Executing Simulator16
K-S Diff: 0.04355468750000002
now we are at round: 1
Executing Simulator17
K-S Diff: 0.04524739583333334
now we are at round: 1
Executing Simulator18
K-S Diff: 0.04966517857142855
now we are at round: 1
Executing Simulator19
K-S Diff: 0.0565185546875
now we are at round: 1
Executing Simulator20
K-S Diff: 0.058810763888888895
now we are at round: 1
Executing Simulator21
K-S Diff: 0.05507812499999998
now we are at round: 1
Executing Simulator22
K-S Diff: 0.059925426136363646
Generating Same Program at number23
Executing Simulator2
now we are at round: 2
Executing Simulator24
K-S Diff: 0.015625
now we are at round: 2
Executing Simulator25
K-S Diff: 0.03580729166666666
now we are at round: 2
Executing Simulator26
K-S Diff: 0.037109375
now we are at round: 2
Executing Simulator27
K-S Diff: 0.03789062499999998
now we are at round: 2
Executing Simulator28
K-S Diff: 0.038899739583333315
now we are at round: 2
Executing Simulator29
K-S Diff: 0.039620535714285726
now we are at round: 2
Executing Simulator30
K-S Diff: 0.0377197265625
now we are at round: 2
Executing Simulator31
K-S Diff: 0.036783854166666685
now we are at round: 2
Executing Simulator32
K-S Diff: 0.036718749999999994
now we are at round: 2
Executing Simulator33
K-S Diff: 0.06258877840909091
Generating Same Program at number34
Executing Simulator3
now we are at round: 3
Executing Simulator35
K-S Diff: 0.0126953125
now we are at round: 3
Executing Simulator36
K-S Diff: 0.027994791666666657
now we are at round: 3
Executing Simulator37
K-S Diff: 0.0322265625
now we are at round: 3
Executing Simulator38
K-S Diff: 0.031249999999999972
now we are at round: 3
Executing Simulator39
K-S Diff: 0.044921875
now we are at round: 3
Executing Simulator40
K-S Diff: 0.041852678571428575
now we are at round: 3
Executing Simulator41
K-S Diff: 0.04443359375
now we are at round: 3
Executing Simulator42
K-S Diff: 0.04427083333333334
now we are at round: 3
Executing Simulator43
K-S Diff: 0.04326171874999998
now we are at round: 3
Executing Simulator44
K-S Diff: 0.04474431818181818
Generating Same Program at number45
Executing Simulator6
now we are at round: 4
Executing Simulator46
K-S Diff: 0.01806640625
now we are at round: 4
Executing Simulator47
K-S Diff: 0.025716145833333315
now we are at round: 4
Executing Simulator48
K-S Diff: 0.046875
now we are at round: 4
Executing Simulator49
K-S Diff: 0.04863281249999998
now we are at round: 4
Executing Simulator50
K-S Diff: 0.04524739583333334
now we are at round: 4
Executing Simulator51
K-S Diff: 0.04324776785714285
now we are at round: 4
Executing Simulator52
K-S Diff: 0.0537109375
now we are at round: 4
Executing Simulator53
K-S Diff: 0.058268229166666685
now we are at round: 4
Executing Simulator54
K-S Diff: 0.05830078124999999
now we are at round: 4
Executing Simulator55
K-S Diff: 0.061434659090909116
Generating Same Program at number56
Executing Simulator7
now we are at round: 5
Executing Simulator57
K-S Diff: 0.02587890625
now we are at round: 5
Executing Simulator58
K-S Diff: 0.045247395833333315
now we are at round: 5
Executing Simulator59
K-S Diff: 0.044677734375
now we are at round: 5
Executing Simulator60
K-S Diff: 0.051171875000000006
now we are at round: 5
Executing Simulator61
K-S Diff: 0.049153645833333315
now we are at round: 5
Executing Simulator62
K-S Diff: 0.05064174107142855
now we are at round: 5
Executing Simulator63
K-S Diff: 0.0574951171875
now we are at round: 5
Executing Simulator64
K-S Diff: 0.0625
now we are at round: 5
Executing Simulator65
K-S Diff: 0.05976562499999999
now we are at round: 5
Executing Simulator66
K-S Diff: 0.058860085227272735
Generating Same Program at number67
Executing Simulator8
now we are at round: 6
Executing Simulator68
K-S Diff: 0.02734375
now we are at round: 6
Executing Simulator69
K-S Diff: 0.032877604166666685
now we are at round: 6
Executing Simulator70
K-S Diff: 0.035888671875
now we are at round: 6
Executing Simulator71
K-S Diff: 0.03984375000000001
now we are at round: 6
Executing Simulator72
K-S Diff: 0.0390625
now we are at round: 6
Executing Simulator73
K-S Diff: 0.04087611607142855
now we are at round: 6
Executing Simulator74
K-S Diff: 0.0399169921875
now we are at round: 6
Executing Simulator75
K-S Diff: 0.03982204861111113
now we are at round: 6
Executing Simulator76
K-S Diff: 0.03984375000000001
now we are at round: 6
Executing Simulator77
K-S Diff: 0.04794034090909091
Generating Same Program at number78
Executing Simulator9
now we are at round: 7
Executing Simulator79
K-S Diff: 0.0078125
now we are at round: 7
Executing Simulator80
K-S Diff: 0.013020833333333343
now we are at round: 7
Executing Simulator81
K-S Diff: 0.01708984375
now we are at round: 7
Executing Simulator82
K-S Diff: 0.019140625000000022
now we are at round: 7
Executing Simulator83
K-S Diff: 0.030598958333333315
now we are at round: 7
Executing Simulator84
K-S Diff: 0.03738839285714285
now we are at round: 7
Executing Simulator85
K-S Diff: 0.0361328125
now we are at round: 7
Executing Simulator86
K-S Diff: 0.03385416666666663
now we are at round: 7
Executing Simulator87
K-S Diff: 0.03476562500000002
now we are at round: 7
Executing Simulator88
K-S Diff: 0.05610795454545453
Generating Same Program at number89
Executing Simulator10
now we are at round: 8
Executing Simulator90
K-S Diff: 0.01025390625
now we are at round: 8
Executing Simulator91
K-S Diff: 0.03157552083333337
now we are at round: 8
Executing Simulator92
K-S Diff: 0.03515625
now we are at round: 8
Executing Simulator93
K-S Diff: 0.037695312499999994
now we are at round: 8
Executing Simulator94
K-S Diff: 0.0400390625
now we are at round: 8
Executing Simulator95
K-S Diff: 0.03934151785714285
now we are at round: 8
Executing Simulator96
K-S Diff: 0.03564453125
now we are at round: 8
Executing Simulator97
K-S Diff: 0.03515625
now we are at round: 8
Executing Simulator98
K-S Diff: 0.036523437500000006
now we are at round: 8
Executing Simulator99
K-S Diff: 0.03915127840909091
Generating Same Program at number100
Executing Simulator12
now we are at round: 9
Executing Simulator101
K-S Diff: 0.0185546875
now we are at round: 9
Executing Simulator102
K-S Diff: 0.034505208333333315
now we are at round: 9
Executing Simulator103
K-S Diff: 0.044189453125
now we are at round: 9
Executing Simulator104
K-S Diff: 0.04863281250000001
now we are at round: 9
Executing Simulator105
K-S Diff: 0.050455729166666685
now we are at round: 9
Executing Simulator106
K-S Diff: 0.04813058035714288
now we are at round: 9
Executing Simulator107
K-S Diff: 0.056640625
now we are at round: 9
Executing Simulator108
K-S Diff: 0.05826822916666666
now we are at round: 9
Executing Simulator109
K-S Diff: 0.05761718749999997
now we are at round: 9
Executing Simulator110
K-S Diff: 0.06036931818181818
Generating Same Program at number111
Executing Simulator19
now we are at round: 10
Executing Simulator112
K-S Diff: 0.02734375
now we are at round: 10
Executing Simulator113
K-S Diff: 0.036783854166666685
now we are at round: 10
Executing Simulator114
K-S Diff: 0.038330078125
now we are at round: 10
Executing Simulator115
K-S Diff: 0.03242187500000002
now we are at round: 10
Executing Simulator116
K-S Diff: 0.03125
now we are at round: 10
Executing Simulator117
K-S Diff: 0.0390625
now we are at round: 10
Executing Simulator118
K-S Diff: 0.037353515625
now we are at round: 10
Executing Simulator119
K-S Diff: 0.03776041666666666
now we are at round: 10
Executing Simulator120
K-S Diff: 0.03740234375000001
now we are at round: 10
Executing Simulator121
K-S Diff: 0.05779474431818182
Generating Same Program at number122
Executing Simulator20
now we are at round: 11
Executing Simulator123
K-S Diff: 0.005859375
now we are at round: 11
Executing Simulator124
K-S Diff: 0.010091145833333315
now we are at round: 11
Executing Simulator125
K-S Diff: 0.012451171875
now we are at round: 11
Executing Simulator126
K-S Diff: 0.03496093750000001
now we are at round: 11
Executing Simulator127
K-S Diff: 0.0380859375
now we are at round: 11
Executing Simulator128
K-S Diff: 0.0398995535714286
now we are at round: 11
Executing Simulator129
K-S Diff: 0.0545654296875
now we are at round: 11
Executing Simulator130
K-S Diff: 0.05121527777777776
now we are at round: 11
Executing Simulator131
K-S Diff: 0.0498046875
now we are at round: 11
Executing Simulator132
K-S Diff: 0.058948863636363646
Generating Same Program at number133
Executing Simulator22
now we are at round: 12
Executing Simulator134
K-S Diff: 0.0361328125
now we are at round: 12
Executing Simulator135
K-S Diff: 0.0419921875
now we are at round: 12
Executing Simulator136
K-S Diff: 0.041015625
now we are at round: 12
Executing Simulator137
K-S Diff: 0.0458984375
now we are at round: 12
Executing Simulator138
K-S Diff: 0.04866536458333334
now we are at round: 12
Executing Simulator139
K-S Diff: 0.05008370535714282
now we are at round: 12
Executing Simulator140
K-S Diff: 0.049072265625
now we are at round: 12
Executing Simulator141
K-S Diff: 0.05121527777777776
now we are at round: 12
Executing Simulator142
K-S Diff: 0.05537109374999999
now we are at round: 12
Executing Simulator143
K-S Diff: 0.057883522727272735
Generating Same Program at number144
Executing Simulator23
now we are at round: 13
Executing Simulator145
K-S Diff: 0.021484375
now we are at round: 13
Executing Simulator146
K-S Diff: 0.038411458333333315
now we are at round: 13
Executing Simulator147
K-S Diff: 0.042236328125
now we are at round: 13
Executing Simulator148
K-S Diff: 0.0498046875
now we are at round: 13
Executing Simulator149
K-S Diff: 0.04931640625
now we are at round: 13
Executing Simulator150
K-S Diff: 0.051339285714285726
now we are at round: 13
Executing Simulator151
K-S Diff: 0.0528564453125
now we are at round: 13
Executing Simulator152
K-S Diff: 0.052951388888888895
now we are at round: 13
Executing Simulator153
K-S Diff: 0.05400390625000001
now we are at round: 13
Executing Simulator154
K-S Diff: 0.05610795454545453
Generating Same Program at number155
Executing Simulator33
now we are at round: 14
Executing Simulator156
K-S Diff: 0.03857421875
now we are at round: 14
Executing Simulator157
K-S Diff: 0.04394531249999997
now we are at round: 14
Executing Simulator158
K-S Diff: 0.054443359375
now we are at round: 14
Executing Simulator159
K-S Diff: 0.04746093750000002
now we are at round: 14
Executing Simulator160
K-S Diff: 0.04785156250000003
now we are at round: 14
Executing Simulator161
K-S Diff: 0.05398995535714285
now we are at round: 14
Executing Simulator162
K-S Diff: 0.0557861328125
now we are at round: 14
Executing Simulator163
K-S Diff: 0.05045572916666663
now we are at round: 14
Executing Simulator164
K-S Diff: 0.04814453125000001
now we are at round: 14
Executing Simulator165
K-S Diff: 0.04980468749999997
Generating Same Program at number166
Executing Simulator34
now we are at round: 15
Executing Simulator167
K-S Diff: 0.046875
now we are at round: 15
Executing Simulator168
K-S Diff: 0.04882812499999997
now we are at round: 15
Executing Simulator169
K-S Diff: 0.052734375
now we are at round: 15
Executing Simulator170
K-S Diff: 0.05117187500000003
now we are at round: 15
Executing Simulator171
K-S Diff: 0.04833984374999997
now we are at round: 15
Executing Simulator172
K-S Diff: 0.04854910714285715
now we are at round: 15
Executing Simulator173
K-S Diff: 0.05078125
now we are at round: 15
Executing Simulator174
K-S Diff: 0.047634548611111105
now we are at round: 15
Executing Simulator175
K-S Diff: 0.05058593750000001
now we are at round: 15
Executing Simulator176
K-S Diff: 0.04829545454545456
Generating Same Program at number177
Executing Simulator45
now we are at round: 16
Executing Simulator178
K-S Diff: 0.021484375
now we are at round: 16
Executing Simulator179
K-S Diff: 0.03450520833333334
now we are at round: 16
Executing Simulator180
K-S Diff: 0.03369140625
now we are at round: 16
Executing Simulator181
K-S Diff: 0.03593750000000001
now we are at round: 16
Executing Simulator182
K-S Diff: 0.03222656250000003
now we are at round: 16
Executing Simulator183
K-S Diff: 0.031808035714285726
now we are at round: 16
Executing Simulator184
K-S Diff: 0.06103515625
now we are at round: 16
Executing Simulator185
K-S Diff: 0.06163194444444445
now we are at round: 16
Executing Simulator186
K-S Diff: 0.06582031249999998
now we are at round: 16
Executing Simulator187
K-S Diff: 0.06551846590909094
Generating Same Program at number188
Executing Simulator56
now we are at round: 17
Executing Simulator189
K-S Diff: 0.0205078125
now we are at round: 17
Executing Simulator190
K-S Diff: 0.03841145833333334
now we are at round: 17
Executing Simulator191
K-S Diff: 0.037841796875
now we are at round: 17
Executing Simulator192
K-S Diff: 0.03984375000000001
now we are at round: 17
Executing Simulator193
K-S Diff: 0.04215494791666666
now we are at round: 17
Executing Simulator194
K-S Diff: 0.04268973214285712
now we are at round: 17
Executing Simulator195
K-S Diff: 0.0428466796875
now we are at round: 17
Executing Simulator196
K-S Diff: 0.0646701388888889
now we are at round: 17
Executing Simulator197
K-S Diff: 0.06630859375
now we are at round: 17
Executing Simulator198
K-S Diff: 0.0672052556818182
Generating Same Program at number199
Executing Simulator67
now we are at round: 18
Executing Simulator200
K-S Diff: 0.04150390625
now we are at round: 18
Executing Simulator201
K-S Diff: 0.04492187500000003
now we are at round: 18
Executing Simulator202
K-S Diff: 0.04541015625
now we are at round: 18
Executing Simulator203
K-S Diff: 0.049218750000000006
now we are at round: 18
Executing Simulator204
K-S Diff: 0.04752604166666666
now we are at round: 18
Executing Simulator205
K-S Diff: 0.049386160714285726
now we are at round: 18
Executing Simulator206
K-S Diff: 0.0704345703125
now we are at round: 18
Executing Simulator207
K-S Diff: 0.07378472222222221
now we are at round: 18
Executing Simulator208
K-S Diff: 0.07255859375000001
now we are at round: 18
Executing Simulator209
K-S Diff: 0.07395241477272729
Generating Same Program at number210
Executing Simulator78
now we are at round: 19
Executing Simulator211
K-S Diff: 0.01806640625
now we are at round: 19
Executing Simulator212
K-S Diff: 0.032552083333333315
now we are at round: 19
Executing Simulator213
K-S Diff: 0.0380859375
now we are at round: 19
Executing Simulator214
K-S Diff: 0.03515625000000003
now we are at round: 19
Executing Simulator215
K-S Diff: 0.03629557291666666
now we are at round: 19
Executing Simulator216
K-S Diff: 0.04506138392857145
now we are at round: 19
Executing Simulator217
K-S Diff: 0.0447998046875
now we are at round: 19
Executing Simulator218
K-S Diff: 0.04752604166666663
now we are at round: 19
Executing Simulator219
K-S Diff: 0.048828125
now we are at round: 19
Executing Simulator220
K-S Diff: 0.04598721590909094
Generating Same Program at number221
Executing Simulator89
now we are at round: 20
Executing Simulator222
K-S Diff: 0.02099609375
now we are at round: 20
Executing Simulator223
K-S Diff: 0.03287760416666666
now we are at round: 20
Executing Simulator224
K-S Diff: 0.033203125
now we are at round: 20
Executing Simulator225
K-S Diff: 0.033593750000000006
now we are at round: 20
Executing Simulator226
K-S Diff: 0.03824869791666666
now we are at round: 20
Executing Simulator227
K-S Diff: 0.0562220982142857
now we are at round: 20
Executing Simulator228
K-S Diff: 0.056640625
now we are at round: 20
Executing Simulator229
K-S Diff: 0.06087239583333334
now we are at round: 20
Executing Simulator230
K-S Diff: 0.06337890624999998
now we are at round: 20
Executing Simulator231
K-S Diff: 0.060901988636363646
Generating Same Program at number232
Executing Simulator100
now we are at round: 21
Executing Simulator233
K-S Diff: 0.00927734375
now we are at round: 21
Executing Simulator234
K-S Diff: 0.029622395833333343
now we are at round: 21
Executing Simulator235
K-S Diff: 0.029296875
now we are at round: 21
Executing Simulator236
K-S Diff: 0.03183593750000002
now we are at round: 21
Executing Simulator237
K-S Diff: 0.030761718750000028
now we are at round: 21
Executing Simulator238
K-S Diff: 0.027901785714285726
now we are at round: 21
Executing Simulator239
K-S Diff: 0.0374755859375
now we are at round: 21
Executing Simulator240
K-S Diff: 0.03526475694444445
now we are at round: 21
Executing Simulator241
K-S Diff: 0.03935546874999998
now we are at round: 21
Executing Simulator242
K-S Diff: 0.039683948863636354
Generating Same Program at number243
Executing Simulator111
now we are at round: 22
Executing Simulator244
K-S Diff: 0.009765625
now we are at round: 22
Executing Simulator245
K-S Diff: 0.040364583333333315
now we are at round: 22
Executing Simulator246
K-S Diff: 0.049072265625
now we are at round: 22
Executing Simulator247
K-S Diff: 0.04667968749999998
now we are at round: 22
Executing Simulator248
K-S Diff: 0.05436197916666666
now we are at round: 22
Executing Simulator249
K-S Diff: 0.0611049107142857
now we are at round: 22
Executing Simulator250
K-S Diff: 0.063720703125
now we are at round: 22
Executing Simulator251
K-S Diff: 0.06586371527777776
now we are at round: 22
Executing Simulator252
K-S Diff: 0.06640625
now we are at round: 22
Executing Simulator253
K-S Diff: 0.06756036931818182
Generating Same Program at number254
Executing Simulator122
now we are at round: 23
Executing Simulator255
K-S Diff: 0.01953125
now we are at round: 23
Executing Simulator256
K-S Diff: 0.03125
now we are at round: 23
Executing Simulator257
K-S Diff: 0.03173828125
now we are at round: 23
Executing Simulator258
K-S Diff: 0.03457031249999998
now we are at round: 23
Executing Simulator259
K-S Diff: 0.03515625
now we are at round: 23
Executing Simulator260
K-S Diff: 0.03627232142857145
now we are at round: 23
Executing Simulator261
K-S Diff: 0.038330078125
now we are at round: 23
Executing Simulator262
K-S Diff: 0.037326388888888895
now we are at round: 23
Executing Simulator263
K-S Diff: 0.03925781249999999
now we are at round: 23
Executing Simulator264
K-S Diff: 0.03932883522727271
Generating Same Program at number265
Executing Simulator133
now we are at round: 24
Executing Simulator266
K-S Diff: 0.0087890625
now we are at round: 24
Executing Simulator267
K-S Diff: 0.025390624999999972
now we are at round: 24
Executing Simulator268
K-S Diff: 0.028564453125
now we are at round: 24
Executing Simulator269
K-S Diff: 0.03574218750000002
now we are at round: 24
Executing Simulator270
K-S Diff: 0.042805989583333315
now we are at round: 24
Executing Simulator271
K-S Diff: 0.043805803571428575
now we are at round: 24
Executing Simulator272
K-S Diff: 0.044677734375
now we are at round: 24
Executing Simulator273
K-S Diff: 0.0400390625
now we are at round: 24
Executing Simulator274
K-S Diff: 0.04335937499999998
now we are at round: 24
Executing Simulator275
K-S Diff: 0.04545454545454547
Generating Same Program at number276
Executing Simulator144
now we are at round: 25
Executing Simulator277
K-S Diff: 0.02880859375
now we are at round: 25
Executing Simulator278
K-S Diff: 0.03580729166666666
now we are at round: 25
Executing Simulator279
K-S Diff: 0.048828125
now we are at round: 25
Executing Simulator280
K-S Diff: 0.05156250000000001
now we are at round: 25
Executing Simulator281
K-S Diff: 0.0498046875
now we are at round: 25
Executing Simulator282
K-S Diff: 0.05301339285714282
now we are at round: 25
Executing Simulator283
K-S Diff: 0.04833984375
now we are at round: 25
Executing Simulator284
K-S Diff: 0.05067274305555555
now we are at round: 25
Executing Simulator285
K-S Diff: 0.05273437500000003
now we are at round: 25
Executing Simulator286
K-S Diff: 0.05220170454545453
Generating Same Program at number287
Executing Simulator155
now we are at round: 26
Executing Simulator288
K-S Diff: 0.0205078125
now we are at round: 26
Executing Simulator289
K-S Diff: 0.03450520833333334
now we are at round: 26
Executing Simulator290
K-S Diff: 0.03955078125
now we are at round: 26
Executing Simulator291
K-S Diff: 0.03964843750000002
now we are at round: 26
Executing Simulator292
K-S Diff: 0.03466796874999997
now we are at round: 26
Executing Simulator293
K-S Diff: 0.03613281249999997
now we are at round: 26
Executing Simulator294
K-S Diff: 0.0382080078125
now we are at round: 26
Executing Simulator295
K-S Diff: 0.04448784722222221
now we are at round: 26
Executing Simulator296
K-S Diff: 0.04267578124999999
now we are at round: 26
Executing Simulator297
K-S Diff: 0.04208096590909091
Generating Same Program at number298
Executing Simulator166
now we are at round: 27
Executing Simulator299
K-S Diff: 0.017578125
now we are at round: 27
Executing Simulator300
K-S Diff: 0.025716145833333343
now we are at round: 27
Executing Simulator301
K-S Diff: 0.02587890625
now we are at round: 27
Executing Simulator302
K-S Diff: 0.027343749999999972
now we are at round: 27
Executing Simulator303
K-S Diff: 0.03401692708333334
now we are at round: 27
Executing Simulator304
K-S Diff: 0.0425502232142857
now we are at round: 27
Executing Simulator305
K-S Diff: 0.044677734375
now we are at round: 27
Executing Simulator306
K-S Diff: 0.04296875000000003
now we are at round: 27
Executing Simulator307
K-S Diff: 0.0517578125
now we are at round: 27
Executing Simulator308
K-S Diff: 0.05442116477272729
Generating Same Program at number309
Executing Simulator177
now we are at round: 28
Executing Simulator310
K-S Diff: 0.03759765625
now we are at round: 28
Executing Simulator311
K-S Diff: 0.04687499999999997
now we are at round: 28
Executing Simulator312
K-S Diff: 0.03857421875
now we are at round: 28
Executing Simulator313
K-S Diff: 0.04511718749999999
now we are at round: 28
Executing Simulator314
K-S Diff: 0.04069010416666666
now we are at round: 28
Executing Simulator315
K-S Diff: 0.04478236607142855
now we are at round: 28
Executing Simulator316
K-S Diff: 0.04296875
now we are at round: 28
Executing Simulator317
K-S Diff: 0.060329861111111105
now we are at round: 28
Executing Simulator318
K-S Diff: 0.06298828125
now we are at round: 28
Executing Simulator319
K-S Diff: 0.06267755681818182
Generating Same Program at number320
Executing Simulator186
now we are at round: 29
Executing Simulator321
K-S Diff: 0.0146484375
now we are at round: 29
Executing Simulator322
K-S Diff: 0.02734375
now we are at round: 29
Executing Simulator323
K-S Diff: 0.05029296875
now we are at round: 29
Executing Simulator324
K-S Diff: 0.04941406249999997
now we are at round: 29
Executing Simulator325
K-S Diff: 0.05419921875
now we are at round: 29
Executing Simulator326
K-S Diff: 0.0577566964285714
now we are at round: 29
Executing Simulator327
K-S Diff: 0.05859375
now we are at round: 29
Executing Simulator328
K-S Diff: 0.05913628472222224
now we are at round: 29
Executing Simulator329
K-S Diff: 0.05478515625000002
now we are at round: 29
Executing Simulator330
K-S Diff: 0.05353338068181823
Generating Same Program at number331
Executing Simulator188
now we are at round: 30
Executing Simulator332
K-S Diff: 0.01513671875
now we are at round: 30
Executing Simulator333
K-S Diff: 0.04589843749999997
now we are at round: 30
Executing Simulator334
K-S Diff: 0.0576171875
now we are at round: 30
Executing Simulator335
K-S Diff: 0.06230468750000001
now we are at round: 30
Executing Simulator336
K-S Diff: 0.06282552083333334
now we are at round: 30
Executing Simulator337
K-S Diff: 0.06305803571428573
now we are at round: 30
Executing Simulator338
K-S Diff: 0.0626220703125
now we are at round: 30
Executing Simulator339
K-S Diff: 0.0705295138888889
now we are at round: 30
Executing Simulator340
K-S Diff: 0.0677734375
now we are at round: 30
Executing Simulator341
K-S Diff: 0.06915838068181815
Generating Same Program at number342
Executing Simulator197
now we are at round: 31
Executing Simulator343
K-S Diff: 0.0146484375
now we are at round: 31
Executing Simulator344
K-S Diff: 0.03287760416666666