-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathall.cflp.sh
1616 lines (1015 loc) · 57.6 KB
/
all.cflp.sh
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
readonly TMOUT=-1
export TMOUT
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p1 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p1 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p1 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p2 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p2 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p2 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p3 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p3 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p3 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p4 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p4 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p4 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p5 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p5 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p5 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p6 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p6 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p6 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p7 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p7 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p7 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p8 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p8 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p8 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p9 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p9 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p9 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p10 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p10 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p10 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p11 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p11 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p11 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p12 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p12 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p12 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p13 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p13 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p13 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p14 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p14 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p14 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p15 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p15 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p15 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p16 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p16 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p16 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p17 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p17 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p17 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p18 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p18 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p18 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p19 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p19 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p19 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p20 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p20 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p20 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p21 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p21 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p21 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p22 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p22 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p22 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p23 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p23 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p23 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p24 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p24 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p24 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p25 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p25 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p25 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p26 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p26 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p26 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p27 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p27 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p27 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p28 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p28 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p28 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p29 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p29 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p29 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p30 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p30 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p30 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p31 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p31 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p31 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p32 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p32 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p32 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p33 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p33 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p33 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p34 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p34 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p34 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p35 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p35 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p35 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p36 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p36 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p36 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p37 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p37 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p37 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p38 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p38 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p38 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p39 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p39 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p39 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p40 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p40 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p40 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p41 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p41 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p41 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p42 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p42 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p42 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p43 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p43 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p43 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p44 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p44 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p44 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p45 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p45 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p45 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p46 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p46 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p46 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p47 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p47 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p47 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p48 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p48 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p48 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p49 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p49 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p49 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p50 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p50 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p50 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p51 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p51 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p51 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p52 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p52 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p52 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p53 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p53 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p53 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p54 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p54 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p54 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p55 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p55 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p55 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p56 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p56 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p56 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p57 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p57 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p57 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p58 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p58 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p58 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p59 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p59 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p59 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p60 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p60 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p60 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p61 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p61 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p61 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p62 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p62 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p62 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p63 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p63 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p63 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p64 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p64 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p64 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p65 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p65 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p65 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p66 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p66 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p66 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p67 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p67 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p67 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p68 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p68 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p68 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p69 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p69 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p69 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p70 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p70 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p70 600
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p71 120
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p71 300
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p71 600
echo Successfully finished HOLMBERG et al!
python3 cflp.py beasley cap/Istanze/cap61 120
python3 cflp.py beasley cap/Istanze/cap61 300
python3 cflp.py beasley cap/Istanze/cap61 600
python3 cflp.py beasley cap/Istanze/cap62 120
python3 cflp.py beasley cap/Istanze/cap62 300
python3 cflp.py beasley cap/Istanze/cap62 600
python3 cflp.py beasley cap/Istanze/cap63 120
python3 cflp.py beasley cap/Istanze/cap63 300
python3 cflp.py beasley cap/Istanze/cap63 600
python3 cflp.py beasley cap/Istanze/cap64 120
python3 cflp.py beasley cap/Istanze/cap64 300
python3 cflp.py beasley cap/Istanze/cap64 600
python3 cflp.py beasley cap/Istanze/cap71 120
python3 cflp.py beasley cap/Istanze/cap71 300
python3 cflp.py beasley cap/Istanze/cap71 600
python3 cflp.py beasley cap/Istanze/cap72 120
python3 cflp.py beasley cap/Istanze/cap72 300
python3 cflp.py beasley cap/Istanze/cap72 600
python3 cflp.py beasley cap/Istanze/cap73 120
python3 cflp.py beasley cap/Istanze/cap73 300
python3 cflp.py beasley cap/Istanze/cap73 600
python3 cflp.py beasley cap/Istanze/cap74 120
python3 cflp.py beasley cap/Istanze/cap74 300
python3 cflp.py beasley cap/Istanze/cap74 600
python3 cflp.py beasley cap/Istanze/cap91 120
python3 cflp.py beasley cap/Istanze/cap91 300
python3 cflp.py beasley cap/Istanze/cap91 600
python3 cflp.py beasley cap/Istanze/cap92 120
python3 cflp.py beasley cap/Istanze/cap92 300
python3 cflp.py beasley cap/Istanze/cap92 600
python3 cflp.py beasley cap/Istanze/cap93 120
python3 cflp.py beasley cap/Istanze/cap93 300
python3 cflp.py beasley cap/Istanze/cap93 600
python3 cflp.py beasley cap/Istanze/cap94 120
python3 cflp.py beasley cap/Istanze/cap94 300
python3 cflp.py beasley cap/Istanze/cap94 600
python3 cflp.py beasley cap/Istanze/cap101 120
python3 cflp.py beasley cap/Istanze/cap101 300
python3 cflp.py beasley cap/Istanze/cap101 600
python3 cflp.py beasley cap/Istanze/cap102 120
python3 cflp.py beasley cap/Istanze/cap102 300
python3 cflp.py beasley cap/Istanze/cap102 600
python3 cflp.py beasley cap/Istanze/cap103 120
python3 cflp.py beasley cap/Istanze/cap103 300
python3 cflp.py beasley cap/Istanze/cap103 600
python3 cflp.py beasley cap/Istanze/cap104 120
python3 cflp.py beasley cap/Istanze/cap104 300
python3 cflp.py beasley cap/Istanze/cap104 600
python3 cflp.py beasley cap/Istanze/cap121 120
python3 cflp.py beasley cap/Istanze/cap121 300
python3 cflp.py beasley cap/Istanze/cap121 600
python3 cflp.py beasley cap/Istanze/cap122 120
python3 cflp.py beasley cap/Istanze/cap122 300
python3 cflp.py beasley cap/Istanze/cap122 600
python3 cflp.py beasley cap/Istanze/cap123 120
python3 cflp.py beasley cap/Istanze/cap123 300
python3 cflp.py beasley cap/Istanze/cap123 600
python3 cflp.py beasley cap/Istanze/cap124 120
python3 cflp.py beasley cap/Istanze/cap124 300
python3 cflp.py beasley cap/Istanze/cap124 600
python3 cflp.py beasley cap/Istanze/cap131 120
python3 cflp.py beasley cap/Istanze/cap131 300
python3 cflp.py beasley cap/Istanze/cap131 600
python3 cflp.py beasley cap/Istanze/cap132 120
python3 cflp.py beasley cap/Istanze/cap132 300
python3 cflp.py beasley cap/Istanze/cap132 600
python3 cflp.py beasley cap/Istanze/cap133 120
python3 cflp.py beasley cap/Istanze/cap133 300
python3 cflp.py beasley cap/Istanze/cap133 600
python3 cflp.py beasley cap/Istanze/cap134 120
python3 cflp.py beasley cap/Istanze/cap134 300
python3 cflp.py beasley cap/Istanze/cap134 600
python3 cflp.py beasley cap/Istanze/capa1 120
python3 cflp.py beasley cap/Istanze/capa1 300
python3 cflp.py beasley cap/Istanze/capa1 600
python3 cflp.py beasley cap/Istanze/capa2 120
python3 cflp.py beasley cap/Istanze/capa2 300
python3 cflp.py beasley cap/Istanze/capa2 600
python3 cflp.py beasley cap/Istanze/capa3 120
python3 cflp.py beasley cap/Istanze/capa3 300
python3 cflp.py beasley cap/Istanze/capa3 600
python3 cflp.py beasley cap/Istanze/capa4 120
python3 cflp.py beasley cap/Istanze/capa4 300
python3 cflp.py beasley cap/Istanze/capa4 600
python3 cflp.py beasley cap/Istanze/capb1 120
python3 cflp.py beasley cap/Istanze/capb1 300
python3 cflp.py beasley cap/Istanze/capb1 600
python3 cflp.py beasley cap/Istanze/capb2 120
python3 cflp.py beasley cap/Istanze/capb2 300
python3 cflp.py beasley cap/Istanze/capb2 600
python3 cflp.py beasley cap/Istanze/capb3 120
python3 cflp.py beasley cap/Istanze/capb3 300
python3 cflp.py beasley cap/Istanze/capb3 600
python3 cflp.py beasley cap/Istanze/capb4 120
python3 cflp.py beasley cap/Istanze/capb4 300
python3 cflp.py beasley cap/Istanze/capb4 600
python3 cflp.py beasley cap/Istanze/capc1 120
python3 cflp.py beasley cap/Istanze/capc1 300
python3 cflp.py beasley cap/Istanze/capc1 600
python3 cflp.py beasley cap/Istanze/capc2 120
python3 cflp.py beasley cap/Istanze/capc2 300
python3 cflp.py beasley cap/Istanze/capc2 600
python3 cflp.py beasley cap/Istanze/capc3 120
python3 cflp.py beasley cap/Istanze/capc3 300
python3 cflp.py beasley cap/Istanze/capc3 600
python3 cflp.py beasley cap/Istanze/capc4 120
python3 cflp.py beasley cap/Istanze/capc4 300
python3 cflp.py beasley cap/Istanze/capc4 600
echo Successfully finished BEASLEY!
mv res ms_res
mkdir res
python3 cflp.py sobolev cap/10/1Cap10.txt 120
python3 cflp.py sobolev cap/10/1Cap10.txt 300
python3 cflp.py sobolev cap/10/1Cap10.txt 600
python3 cflp.py sobolev cap/10/2Cap10.txt 120
python3 cflp.py sobolev cap/10/2Cap10.txt 300
python3 cflp.py sobolev cap/10/2Cap10.txt 600
python3 cflp.py sobolev cap/10/3Cap10.txt 120
python3 cflp.py sobolev cap/10/3Cap10.txt 300
python3 cflp.py sobolev cap/10/3Cap10.txt 600
python3 cflp.py sobolev cap/10/4Cap10.txt 120
python3 cflp.py sobolev cap/10/4Cap10.txt 300
python3 cflp.py sobolev cap/10/4Cap10.txt 600
python3 cflp.py sobolev cap/10/5Cap10.txt 120
python3 cflp.py sobolev cap/10/5Cap10.txt 300
python3 cflp.py sobolev cap/10/5Cap10.txt 600
python3 cflp.py sobolev cap/10/6Cap10.txt 120
python3 cflp.py sobolev cap/10/6Cap10.txt 300
python3 cflp.py sobolev cap/10/6Cap10.txt 600
python3 cflp.py sobolev cap/10/7Cap10.txt 120
python3 cflp.py sobolev cap/10/7Cap10.txt 300
python3 cflp.py sobolev cap/10/7Cap10.txt 600
python3 cflp.py sobolev cap/10/8Cap10.txt 120
python3 cflp.py sobolev cap/10/8Cap10.txt 300
python3 cflp.py sobolev cap/10/8Cap10.txt 600
python3 cflp.py sobolev cap/10/9Cap10.txt 120
python3 cflp.py sobolev cap/10/9Cap10.txt 300
python3 cflp.py sobolev cap/10/9Cap10.txt 600
python3 cflp.py sobolev cap/10/10Cap10.txt 120
python3 cflp.py sobolev cap/10/10Cap10.txt 300
python3 cflp.py sobolev cap/10/10Cap10.txt 600
python3 cflp.py sobolev cap/10/11Cap10.txt 120
python3 cflp.py sobolev cap/10/11Cap10.txt 300
python3 cflp.py sobolev cap/10/11Cap10.txt 600
python3 cflp.py sobolev cap/10/12Cap10.txt 120
python3 cflp.py sobolev cap/10/12Cap10.txt 300
python3 cflp.py sobolev cap/10/12Cap10.txt 600
python3 cflp.py sobolev cap/10/13Cap10.txt 120
python3 cflp.py sobolev cap/10/13Cap10.txt 300
python3 cflp.py sobolev cap/10/13Cap10.txt 600
python3 cflp.py sobolev cap/10/14Cap10.txt 120
python3 cflp.py sobolev cap/10/14Cap10.txt 300
python3 cflp.py sobolev cap/10/14Cap10.txt 600
python3 cflp.py sobolev cap/10/15Cap10.txt 120
python3 cflp.py sobolev cap/10/15Cap10.txt 300
python3 cflp.py sobolev cap/10/15Cap10.txt 600
python3 cflp.py sobolev cap/10/16Cap10.txt 120
python3 cflp.py sobolev cap/10/16Cap10.txt 300
python3 cflp.py sobolev cap/10/16Cap10.txt 600
python3 cflp.py sobolev cap/10/17Cap10.txt 120
python3 cflp.py sobolev cap/10/17Cap10.txt 300
python3 cflp.py sobolev cap/10/17Cap10.txt 600
python3 cflp.py sobolev cap/10/18Cap10.txt 120
python3 cflp.py sobolev cap/10/18Cap10.txt 300
python3 cflp.py sobolev cap/10/18Cap10.txt 600
python3 cflp.py sobolev cap/10/19Cap10.txt 120
python3 cflp.py sobolev cap/10/19Cap10.txt 300
python3 cflp.py sobolev cap/10/19Cap10.txt 600
python3 cflp.py sobolev cap/10/20Cap10.txt 120
python3 cflp.py sobolev cap/10/20Cap10.txt 300
python3 cflp.py sobolev cap/10/20Cap10.txt 600
python3 cflp.py sobolev cap/20/1Cap20.txt 120
python3 cflp.py sobolev cap/20/1Cap20.txt 300
python3 cflp.py sobolev cap/20/1Cap20.txt 600
python3 cflp.py sobolev cap/20/2Cap20.txt 120
python3 cflp.py sobolev cap/20/2Cap20.txt 300
python3 cflp.py sobolev cap/20/2Cap20.txt 600
python3 cflp.py sobolev cap/20/3Cap20.txt 120
python3 cflp.py sobolev cap/20/3Cap20.txt 300
python3 cflp.py sobolev cap/20/3Cap20.txt 600
python3 cflp.py sobolev cap/20/4Cap20.txt 120
python3 cflp.py sobolev cap/20/4Cap20.txt 300
python3 cflp.py sobolev cap/20/4Cap20.txt 600
python3 cflp.py sobolev cap/20/5Cap20.txt 120
python3 cflp.py sobolev cap/20/5Cap20.txt 300
python3 cflp.py sobolev cap/20/5Cap20.txt 600
python3 cflp.py sobolev cap/20/6Cap20.txt 120
python3 cflp.py sobolev cap/20/6Cap20.txt 300
python3 cflp.py sobolev cap/20/6Cap20.txt 600
python3 cflp.py sobolev cap/20/7Cap20.txt 120
python3 cflp.py sobolev cap/20/7Cap20.txt 300
python3 cflp.py sobolev cap/20/7Cap20.txt 600
python3 cflp.py sobolev cap/20/8Cap20.txt 120
python3 cflp.py sobolev cap/20/8Cap20.txt 300
python3 cflp.py sobolev cap/20/8Cap20.txt 600
python3 cflp.py sobolev cap/20/9Cap20.txt 120
python3 cflp.py sobolev cap/20/9Cap20.txt 300
python3 cflp.py sobolev cap/20/9Cap20.txt 600
python3 cflp.py sobolev cap/20/10Cap20.txt 120
python3 cflp.py sobolev cap/20/10Cap20.txt 300
python3 cflp.py sobolev cap/20/10Cap20.txt 600
python3 cflp.py sobolev cap/20/11Cap20.txt 120
python3 cflp.py sobolev cap/20/11Cap20.txt 300
python3 cflp.py sobolev cap/20/11Cap20.txt 600
python3 cflp.py sobolev cap/20/12Cap20.txt 120
python3 cflp.py sobolev cap/20/12Cap20.txt 300
python3 cflp.py sobolev cap/20/12Cap20.txt 600
python3 cflp.py sobolev cap/20/13Cap20.txt 120
python3 cflp.py sobolev cap/20/13Cap20.txt 300
python3 cflp.py sobolev cap/20/13Cap20.txt 600
python3 cflp.py sobolev cap/20/14Cap20.txt 120
python3 cflp.py sobolev cap/20/14Cap20.txt 300
python3 cflp.py sobolev cap/20/14Cap20.txt 600
python3 cflp.py sobolev cap/20/15Cap20.txt 120
python3 cflp.py sobolev cap/20/15Cap20.txt 300
python3 cflp.py sobolev cap/20/15Cap20.txt 600
python3 cflp.py sobolev cap/20/16Cap20.txt 120
python3 cflp.py sobolev cap/20/16Cap20.txt 300
python3 cflp.py sobolev cap/20/16Cap20.txt 600
python3 cflp.py sobolev cap/20/17Cap20.txt 120
python3 cflp.py sobolev cap/20/17Cap20.txt 300
python3 cflp.py sobolev cap/20/17Cap20.txt 600
python3 cflp.py sobolev cap/20/18Cap20.txt 120
python3 cflp.py sobolev cap/20/18Cap20.txt 300
python3 cflp.py sobolev cap/20/18Cap20.txt 600
python3 cflp.py sobolev cap/20/19Cap20.txt 120
python3 cflp.py sobolev cap/20/19Cap20.txt 300
python3 cflp.py sobolev cap/20/19Cap20.txt 600
python3 cflp.py sobolev cap/20/20Cap20.txt 120
python3 cflp.py sobolev cap/20/20Cap20.txt 300
python3 cflp.py sobolev cap/20/20Cap20.txt 600
python3 cflp.py sobolev cap/30/1Cap30.txt 120
python3 cflp.py sobolev cap/30/1Cap30.txt 300
python3 cflp.py sobolev cap/30/1Cap30.txt 600
python3 cflp.py sobolev cap/30/2Cap30.txt 120
python3 cflp.py sobolev cap/30/2Cap30.txt 300
python3 cflp.py sobolev cap/30/2Cap30.txt 600
python3 cflp.py sobolev cap/30/3Cap30.txt 120
python3 cflp.py sobolev cap/30/3Cap30.txt 300
python3 cflp.py sobolev cap/30/3Cap30.txt 600
python3 cflp.py sobolev cap/30/4Cap30.txt 120
python3 cflp.py sobolev cap/30/4Cap30.txt 300
python3 cflp.py sobolev cap/30/4Cap30.txt 600
python3 cflp.py sobolev cap/30/5Cap30.txt 120
python3 cflp.py sobolev cap/30/5Cap30.txt 300
python3 cflp.py sobolev cap/30/5Cap30.txt 600
python3 cflp.py sobolev cap/30/6Cap30.txt 120
python3 cflp.py sobolev cap/30/6Cap30.txt 300
python3 cflp.py sobolev cap/30/6Cap30.txt 600
python3 cflp.py sobolev cap/30/7Cap30.txt 120
python3 cflp.py sobolev cap/30/7Cap30.txt 300
python3 cflp.py sobolev cap/30/7Cap30.txt 600
python3 cflp.py sobolev cap/30/8Cap30.txt 120
python3 cflp.py sobolev cap/30/8Cap30.txt 300
python3 cflp.py sobolev cap/30/8Cap30.txt 600
python3 cflp.py sobolev cap/30/9Cap30.txt 120
python3 cflp.py sobolev cap/30/9Cap30.txt 300
python3 cflp.py sobolev cap/30/9Cap30.txt 600
python3 cflp.py sobolev cap/30/10Cap30.txt 120
python3 cflp.py sobolev cap/30/10Cap30.txt 300
python3 cflp.py sobolev cap/30/10Cap30.txt 600
python3 cflp.py sobolev cap/30/11Cap30.txt 120
python3 cflp.py sobolev cap/30/11Cap30.txt 300
python3 cflp.py sobolev cap/30/11Cap30.txt 600
python3 cflp.py sobolev cap/30/12Cap30.txt 120
python3 cflp.py sobolev cap/30/12Cap30.txt 300
python3 cflp.py sobolev cap/30/12Cap30.txt 600
python3 cflp.py sobolev cap/30/13Cap30.txt 120
python3 cflp.py sobolev cap/30/13Cap30.txt 300
python3 cflp.py sobolev cap/30/13Cap30.txt 600
python3 cflp.py sobolev cap/30/14Cap30.txt 120
python3 cflp.py sobolev cap/30/14Cap30.txt 300
python3 cflp.py sobolev cap/30/14Cap30.txt 600
python3 cflp.py sobolev cap/30/15Cap30.txt 120
python3 cflp.py sobolev cap/30/15Cap30.txt 300
python3 cflp.py sobolev cap/30/15Cap30.txt 600
python3 cflp.py sobolev cap/30/16Cap30.txt 120
python3 cflp.py sobolev cap/30/16Cap30.txt 300
python3 cflp.py sobolev cap/30/16Cap30.txt 600
python3 cflp.py sobolev cap/30/17Cap30.txt 120
python3 cflp.py sobolev cap/30/17Cap30.txt 300
python3 cflp.py sobolev cap/30/17Cap30.txt 600
python3 cflp.py sobolev cap/30/18Cap30.txt 120
python3 cflp.py sobolev cap/30/18Cap30.txt 300
python3 cflp.py sobolev cap/30/18Cap30.txt 600
python3 cflp.py sobolev cap/30/19Cap30.txt 120
python3 cflp.py sobolev cap/30/19Cap30.txt 300
python3 cflp.py sobolev cap/30/19Cap30.txt 600
python3 cflp.py sobolev cap/30/20Cap30.txt 120
python3 cflp.py sobolev cap/30/20Cap30.txt 300
python3 cflp.py sobolev cap/30/20Cap30.txt 600
python3 cflp.py sobolev cap/40/1Cap40.txt 120
python3 cflp.py sobolev cap/40/1Cap40.txt 300
python3 cflp.py sobolev cap/40/1Cap40.txt 600
python3 cflp.py sobolev cap/40/2Cap40.txt 120
python3 cflp.py sobolev cap/40/2Cap40.txt 300
python3 cflp.py sobolev cap/40/2Cap40.txt 600
python3 cflp.py sobolev cap/40/3Cap40.txt 120
python3 cflp.py sobolev cap/40/3Cap40.txt 300
python3 cflp.py sobolev cap/40/3Cap40.txt 600
python3 cflp.py sobolev cap/40/4Cap40.txt 120
python3 cflp.py sobolev cap/40/4Cap40.txt 300
python3 cflp.py sobolev cap/40/4Cap40.txt 600
python3 cflp.py sobolev cap/40/5Cap40.txt 120
python3 cflp.py sobolev cap/40/5Cap40.txt 300
python3 cflp.py sobolev cap/40/5Cap40.txt 600
python3 cflp.py sobolev cap/40/6Cap40.txt 120
python3 cflp.py sobolev cap/40/6Cap40.txt 300
python3 cflp.py sobolev cap/40/6Cap40.txt 600
python3 cflp.py sobolev cap/40/7Cap40.txt 120
python3 cflp.py sobolev cap/40/7Cap40.txt 300
python3 cflp.py sobolev cap/40/7Cap40.txt 600
python3 cflp.py sobolev cap/40/8Cap40.txt 120
python3 cflp.py sobolev cap/40/8Cap40.txt 300
python3 cflp.py sobolev cap/40/8Cap40.txt 600
python3 cflp.py sobolev cap/40/9Cap40.txt 120
python3 cflp.py sobolev cap/40/9Cap40.txt 300
python3 cflp.py sobolev cap/40/9Cap40.txt 600
python3 cflp.py sobolev cap/40/10Cap40.txt 120
python3 cflp.py sobolev cap/40/10Cap40.txt 300
python3 cflp.py sobolev cap/40/10Cap40.txt 600
python3 cflp.py sobolev cap/40/11Cap40.txt 120
python3 cflp.py sobolev cap/40/11Cap40.txt 300
python3 cflp.py sobolev cap/40/11Cap40.txt 600
python3 cflp.py sobolev cap/40/12Cap40.txt 120
python3 cflp.py sobolev cap/40/12Cap40.txt 300
python3 cflp.py sobolev cap/40/12Cap40.txt 600
python3 cflp.py sobolev cap/40/13Cap40.txt 120
python3 cflp.py sobolev cap/40/13Cap40.txt 300
python3 cflp.py sobolev cap/40/13Cap40.txt 600
python3 cflp.py sobolev cap/40/14Cap40.txt 120
python3 cflp.py sobolev cap/40/14Cap40.txt 300
python3 cflp.py sobolev cap/40/14Cap40.txt 600
python3 cflp.py sobolev cap/40/15Cap40.txt 120
python3 cflp.py sobolev cap/40/15Cap40.txt 300
python3 cflp.py sobolev cap/40/15Cap40.txt 600
python3 cflp.py sobolev cap/40/16Cap40.txt 120
python3 cflp.py sobolev cap/40/16Cap40.txt 300
python3 cflp.py sobolev cap/40/16Cap40.txt 600
python3 cflp.py sobolev cap/40/17Cap40.txt 120
python3 cflp.py sobolev cap/40/17Cap40.txt 300
python3 cflp.py sobolev cap/40/17Cap40.txt 600
python3 cflp.py sobolev cap/40/18Cap40.txt 120
python3 cflp.py sobolev cap/40/18Cap40.txt 300
python3 cflp.py sobolev cap/40/18Cap40.txt 600
python3 cflp.py sobolev cap/40/19Cap40.txt 120
python3 cflp.py sobolev cap/40/19Cap40.txt 300
python3 cflp.py sobolev cap/40/19Cap40.txt 600
python3 cflp.py sobolev cap/40/20Cap40.txt 120
python3 cflp.py sobolev cap/40/20Cap40.txt 300
python3 cflp.py sobolev cap/40/20Cap40.txt 600
python3 cflp.py sobolev cap/50/1Cap50.txt 120
python3 cflp.py sobolev cap/50/1Cap50.txt 300
python3 cflp.py sobolev cap/50/1Cap50.txt 600
python3 cflp.py sobolev cap/50/2Cap50.txt 120
python3 cflp.py sobolev cap/50/2Cap50.txt 300
python3 cflp.py sobolev cap/50/2Cap50.txt 600
python3 cflp.py sobolev cap/50/3Cap50.txt 120
python3 cflp.py sobolev cap/50/3Cap50.txt 300
python3 cflp.py sobolev cap/50/3Cap50.txt 600
python3 cflp.py sobolev cap/50/4Cap50.txt 120
python3 cflp.py sobolev cap/50/4Cap50.txt 300
python3 cflp.py sobolev cap/50/4Cap50.txt 600
python3 cflp.py sobolev cap/50/5Cap50.txt 120
python3 cflp.py sobolev cap/50/5Cap50.txt 300
python3 cflp.py sobolev cap/50/5Cap50.txt 600
python3 cflp.py sobolev cap/50/6Cap50.txt 120
python3 cflp.py sobolev cap/50/6Cap50.txt 300
python3 cflp.py sobolev cap/50/6Cap50.txt 600
python3 cflp.py sobolev cap/50/7Cap50.txt 120
python3 cflp.py sobolev cap/50/7Cap50.txt 300
python3 cflp.py sobolev cap/50/7Cap50.txt 600
python3 cflp.py sobolev cap/50/8Cap50.txt 120
python3 cflp.py sobolev cap/50/8Cap50.txt 300
python3 cflp.py sobolev cap/50/8Cap50.txt 600
python3 cflp.py sobolev cap/50/9Cap50.txt 120
python3 cflp.py sobolev cap/50/9Cap50.txt 300
python3 cflp.py sobolev cap/50/9Cap50.txt 600
python3 cflp.py sobolev cap/50/10Cap50.txt 120
python3 cflp.py sobolev cap/50/10Cap50.txt 300
python3 cflp.py sobolev cap/50/10Cap50.txt 600
python3 cflp.py sobolev cap/50/11Cap50.txt 120
python3 cflp.py sobolev cap/50/11Cap50.txt 300
python3 cflp.py sobolev cap/50/11Cap50.txt 600
python3 cflp.py sobolev cap/50/12Cap50.txt 120
python3 cflp.py sobolev cap/50/12Cap50.txt 300
python3 cflp.py sobolev cap/50/12Cap50.txt 600
python3 cflp.py sobolev cap/50/13Cap50.txt 120
python3 cflp.py sobolev cap/50/13Cap50.txt 300
python3 cflp.py sobolev cap/50/13Cap50.txt 600
python3 cflp.py sobolev cap/50/14Cap50.txt 120
python3 cflp.py sobolev cap/50/14Cap50.txt 300
python3 cflp.py sobolev cap/50/14Cap50.txt 600
python3 cflp.py sobolev cap/50/15Cap50.txt 120
python3 cflp.py sobolev cap/50/15Cap50.txt 300
python3 cflp.py sobolev cap/50/15Cap50.txt 600
python3 cflp.py sobolev cap/50/16Cap50.txt 120
python3 cflp.py sobolev cap/50/16Cap50.txt 300
python3 cflp.py sobolev cap/50/16Cap50.txt 600
python3 cflp.py sobolev cap/50/17Cap50.txt 120
python3 cflp.py sobolev cap/50/17Cap50.txt 300
python3 cflp.py sobolev cap/50/17Cap50.txt 600
python3 cflp.py sobolev cap/50/18Cap50.txt 120
python3 cflp.py sobolev cap/50/18Cap50.txt 300
python3 cflp.py sobolev cap/50/18Cap50.txt 600
python3 cflp.py sobolev cap/50/19Cap50.txt 120
python3 cflp.py sobolev cap/50/19Cap50.txt 300
python3 cflp.py sobolev cap/50/19Cap50.txt 600
python3 cflp.py sobolev cap/50/20Cap50.txt 120
python3 cflp.py sobolev cap/50/20Cap50.txt 300
python3 cflp.py sobolev cap/50/20Cap50.txt 600
echo Successfully finished SOBOLEV!
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p1 120 s
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p1 300 s
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p1 600 s
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p2 120 s
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p2 300 s
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p2 600 s
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p3 120 s
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p3 300 s
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p3 600 s
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p4 120 s
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p4 300 s
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p4 600 s
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p5 120 s
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p5 300 s
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p5 600 s
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p6 120 s
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p6 300 s
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p6 600 s
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p7 120 s
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p7 300 s
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p7 600 s
python3 cflp.py holmberg cap/tesi/CapWarehouse/Instances/p8 120 s