-
Notifications
You must be signed in to change notification settings - Fork 0
/
anemoi_p2_n31_l1_a3_mFCICO_o2.txt
1430 lines (1353 loc) · 49.9 KB
/
anemoi_p2_n31_l1_a3_mFCICO_o2.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
Model: FCICO. Use final LL: True.
====================================================================================================
ANEMOI GF(2^31), alpha = 3, QUAD = 3. With final LL. Model: FCICO
rmax = 10, tmax = 3600.
====================================================================================================
====================================================================================================
n_r: 1, n_v: 2, n_e: 2, mdeg: 3
degs = [3, 3]
Multivariate Polynomial Ring in Y0000, Y0100 over Finite Field in z31 of size 2^31
----------------------------------------------------------------------------------------------------
Starting GB computation... (r=1)
********************
FAUGERE F4 ALGORITHM
********************
Coefficient ring: GF(2^31)
Rank: 2
Order: Graded Reverse Lexicographical
NEW hash table
Matrix kind: Packed GF(2^k)
Datum size: 4
No queue sort
Initial length: 2
Inhomogeneous
Initial queue setup time: 0.000
Initial queue length: 1
*******
STEP 1
Basis length: 2, queue length: 1, step degree: 3, num pairs: 1
Basis total mons: 9, average length: 4.500
Number of pair polynomials: 1, at 5 column(s), 0.000
Average length for reductees: 5.00 [1], reductors: 4.00 [1]
Symbolic reduction time: 0.000, column sort time: 0.000
1 + 1 = 2 rows / 5 columns out of 10 (50.000%)
Density: 90% / 90% (4.5/r), total: 9 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [1]
After ech memory: 32.1MB (=max)
Num new polynomials: 1 (100.0%), min deg: 1 [1], av deg: 1.0
Degree counts: 1:1
Queue insertion time: 0.000
Number of linears: 1
New max step: 1, time: 0.000
Step 1 time: 0.000, [0.000], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 2
Basis length: 3, queue length: 1, step degree: 3, num pairs: 1
Basis total mons: 12, average length: 4.000
Number of pair polynomials: 1, at 6 column(s), 0.000
Average length for reductees: 3.00 [1], reductors: 3.33 [6]
Symbolic reduction time: 0.000, column sort time: 0.000
1 + 6 = 7 rows / 10 columns out of 10 (100.000%)
Density: 32.857% / 51.548% (3.2857/r), total: 23 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [1]
After ech memory: 32.1MB (=max)
Num new polynomials: 1 (100.0%), min deg: 3 [1], av deg: 3.0
Degree counts: 3:1
Queue insertion time: 0.000
Number of linears: 1
Step 2 time: 0.000, [0.000], mat/total: 0.000/0.000, mem: 32.1MB (=max)
Do extern interreduction (length 2)
INTERREDUCE 2 polynomial(s)
Symbolic reduction time: 0.000
Column sort time: 0.000
2 + 0 = 2 rows / 5 columns
Density: 70% / 90% (3.5/r), total: 7 (0.0MB)
Row sort time: 0.000
0.000 + 0.000 = 0.000 [2]
Total reduction time: 0.000
Reduction time: 0.000
Final extern interreduction time: 0.000
Final basis length: 2
Number of pairs: 2
Max step: 1, time: 0.000
Max num entries matrix: 7 by 10
Max num rows matrix: 7 by 10
Approx mat cost: 35.4286, sym red cost: 32
Total pair setup time: 0.000
Total symbolic reduction time: 0.000
Total column sort time: 0.000
Total row sort time: 0.000
Total matrix time: 0.000
Total new polys time: 0.000
Total queue update time: 0.000
Total Faugere F4 time: 0.000, real time: 0.001
Time: 0.000
dregs = [ 3, 3 ]
====================================================================================================
n_r: 2, n_v: 4, n_e: 4, mdeg: 3
degs = [3, 3, 3, 3]
Multivariate Polynomial Ring in X0100, Y0000, Y0100, Y0200 over Finite Field in z31 of size 2^31
----------------------------------------------------------------------------------------------------
Starting GB computation... (r=2)
********************
FAUGERE F4 ALGORITHM
********************
Coefficient ring: GF(2^31)
Rank: 4
Order: Graded Reverse Lexicographical
NEW hash table
Matrix kind: Packed GF(2^k)
Datum size: 4
No queue sort
Initial length: 4
Inhomogeneous
Initial queue setup time: 0.000
Initial queue length: 2
*******
STEP 1
Basis length: 4, queue length: 2, step degree: 3, num pairs: 2
Basis total mons: 38, average length: 9.500
Number of pair polynomials: 2, at 15 column(s), 0.000
Average length for reductees: 10.00 [2], reductors: 9.00 [2]
Symbolic reduction time: 0.000, column sort time: 0.000
2 + 2 = 4 rows / 15 columns out of 35 (42.857%)
Density: 63.333% / 65.595% (9.5/r), total: 38 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [2]
After ech memory: 32.1MB (=max)
Num new polynomials: 2 (100.0%), min deg: 1 [1], av deg: 2.0
Degree counts: 1:1 3:1
Queue insertion time: 0.000
Number of linears: 1
New max step: 1, time: 0.000
Step 1 time: 0.000, [0.000], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 2
Basis length: 6, queue length: 1, step degree: 3, num pairs: 1
Basis total mons: 49, average length: 8.167
Number of pair polynomials: 1, at 10 column(s), 0.000
Average length for reductees: 8.00 [1], reductors: 3.00 [10]
Symbolic reduction time: 0.000, column sort time: 0.000
1 + 10 = 11 rows / 20 columns out of 35 (57.143%)
Density: 17.273% / 32.316% (3.4545/r), total: 38 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [1]
After ech memory: 32.1MB (=max)
Num new polynomials: 1 (100.0%), min deg: 3 [1], av deg: 3.0
Degree counts: 3:1
Queue insertion time: 0.000
Number of linears: 1
Step 2 time: 0.000, [0.000], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 3
Basis length: 7, queue length: 1, step degree: 4, num pairs: 1
Basis total mons: 58, average length: 8.286
Number of pair polynomials: 1, at 17 column(s), 0.000
Average length for reductees: 9.00 [1], reductors: 4.25 [20]
Symbolic reduction time: 0.000, column sort time: 0.000
1 + 20 = 21 rows / 33 columns out of 70 (47.143%)
Density: 13.564% / 25.493% (4.4762/r), total: 94 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [1]
Number of unused reductors: 1
After ech memory: 32.1MB (=max)
Num new polynomials: 1 (100.0%), min deg: 4 [1], av deg: 4.0
Degree counts: 4:1
Queue insertion time: 0.000
Number of linears: 1
Step 3 time: 0.000, [0.001], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 4
Basis length: 8, queue length: 1, step degree: 5, num pairs: 1
Basis total mons: 71, average length: 8.875
Number of pair polynomials: 1, at 18 column(s), 0.000
Average length for reductees: 13.00 [1], reductors: 5.75 [16]
Symbolic reduction time: 0.000, column sort time: 0.000
1 + 16 = 17 rows / 32 columns out of 126 (25.397%)
Density: 19.301% / 32.995% (6.1765/r), total: 105 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [1]
Number of unused reductors: 2
After ech memory: 32.1MB (=max)
Num new polynomials: 1 (100.0%), min deg: 5 [1], av deg: 5.0
Degree counts: 5:1
Queue insertion time: 0.000
Number of linears: 1
Step 4 time: 0.000, [0.000], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 5
Basis length: 9, queue length: 1, step degree: 6, num pairs: 1
Basis total mons: 87, average length: 9.667
Number of pair polynomials: 1, at 23 column(s), 0.000
Average length for reductees: 16.00 [1], reductors: 5.87 [30]
Symbolic reduction time: 0.000, column sort time: 0.000
1 + 30 = 31 rows / 48 columns out of 210 (22.857%)
Density: 12.903% / 23.282% (6.1935/r), total: 192 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [0]
Number of unused reductors: 2
After ech memory: 32.1MB (=max)
No new polynomials
Queue insertion time: 0.000
Number of linears: 1
Step 5 time: 0.000, [0.000], mat/total: 0.000/0.000, mem: 32.1MB (=max)
Do extern interreduction (length 7)
INTERREDUCE 6 polynomial(s)
Symbolic reduction time: 0.000
Column sort time: 0.000
6 + 13 = 19 rows / 36 columns
Density: 14.62% / 27.51% (5.2632/r), total: 100 (0.0MB)
Row sort time: 0.000
0.000 + 0.000 = 0.000 [6]
Total reduction time: 0.000
Reduction time: 0.000
Final extern interreduction time: 0.000
Final basis length: 6
Number of pairs: 6
Max step: 1, time: 0.000
Max num entries matrix: 31 by 48
Max num rows matrix: 31 by 48
Approx mat cost: 776.445, sym red cost: 467
Total pair setup time: 0.000
Total symbolic reduction time: 0.000
Total column sort time: 0.000
Total row sort time: 0.000
Total matrix time: 0.000
Total new polys time: 0.000
Total queue update time: 0.000
Total Faugere F4 time: 0.000, real time: 0.001
Time: 0.010
dregs = [ 3, 3, 4, 5, 6 ]
====================================================================================================
n_r: 3, n_v: 6, n_e: 6, mdeg: 3
degs = [3, 3, 3, 3, 3, 3]
Multivariate Polynomial Ring in X0100, X0200, Y0000, Y0100, Y0200, Y0300 over Finite Field in z31 of size 2^31
----------------------------------------------------------------------------------------------------
Starting GB computation... (r=3)
********************
FAUGERE F4 ALGORITHM
********************
Coefficient ring: GF(2^31)
Rank: 6
Order: Graded Reverse Lexicographical
NEW hash table
Matrix kind: Packed GF(2^k)
Datum size: 4
No queue sort
Initial length: 6
Inhomogeneous
Initial queue setup time: 0.000
Initial queue length: 3
*******
STEP 1
Basis length: 6, queue length: 3, step degree: 3, num pairs: 3
Basis total mons: 71, average length: 11.833
Number of pair polynomials: 3, at 27 column(s), 0.000
Average length for reductees: 12.33 [3], reductors: 11.33 [3]
Symbolic reduction time: 0.000, column sort time: 0.000
3 + 3 = 6 rows / 27 columns out of 84 (32.143%)
Density: 43.827% / 45.217% (11.833/r), total: 71 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [3]
After ech memory: 32.1MB (=max)
Num new polynomials: 3 (100.0%), min deg: 1 [1], av deg: 2.3
Degree counts: 1:1 3:2
Queue insertion time: 0.000
Number of linears: 1
New max step: 1, time: 0.000
Step 1 time: 0.000, [0.000], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 2
Basis length: 9, queue length: 2, step degree: 3, num pairs: 1
Basis total mons: 92, average length: 10.222
Number of pair polynomials: 1, at 12 column(s), 0.000
Average length for reductees: 10.00 [1], reductors: 3.00 [14]
Symbolic reduction time: 0.000, column sort time: 0.000
1 + 14 = 15 rows / 29 columns out of 84 (34.524%)
Density: 11.954% / 24.241% (3.4667/r), total: 52 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [1]
After ech memory: 32.1MB (=max)
Num new polynomials: 1 (100.0%), min deg: 3 [1], av deg: 3.0
Degree counts: 3:1
Queue insertion time: 0.000
Number of linears: 1
Step 2 time: 0.000, [0.000], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 3
Basis length: 10, queue length: 2, step degree: 4, num pairs: 2
Basis total mons: 105, average length: 10.500
Number of pair polynomials: 2, at 40 column(s), 0.000
Average length for reductees: 10.50 [2], reductors: 5.39 [31]
Symbolic reduction time: 0.000, column sort time: 0.000
2 + 31 = 33 rows / 66 columns out of 210 (31.429%)
Density: 8.6318% / 17.176% (5.697/r), total: 188 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [2]
Number of unused reductors: 2
After ech memory: 32.1MB (=max)
Num new polynomials: 2 (100.0%), min deg: 4 [2], av deg: 4.0
Degree counts: 4:2
Queue insertion time: 0.000
Number of linears: 1
Step 3 time: 0.000, [0.001], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 4
Basis length: 12, queue length: 2, step degree: 5, num pairs: 2
Basis total mons: 134, average length: 11.167
Number of pair polynomials: 2, at 43 column(s), 0.000
Average length for reductees: 14.50 [2], reductors: 12.82 [11]
Symbolic reduction time: 0.000, column sort time: 0.000
2 + 11 = 13 rows / 55 columns out of 462 (11.905%)
Density: 23.776% / 29.584% (13.077/r), total: 170 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [2]
Number of unused reductors: 3
After ech memory: 32.1MB (=max)
Num new polynomials: 2 (100.0%), min deg: 5 [2], av deg: 5.0
Degree counts: 5:2
Queue insertion time: 0.000
Number of linears: 1
Step 4 time: 0.000, [0.000], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 5
Basis length: 14, queue length: 2, step degree: 6, num pairs: 2
Basis total mons: 171, average length: 12.214
Number of pair polynomials: 2, at 55 column(s), 0.000
Average length for reductees: 18.50 [2], reductors: 7.07 [59]
Symbolic reduction time: 0.000, column sort time: 0.000
2 + 59 = 61 rows / 113 columns out of 924 (12.229%)
Density: 6.5864% / 12.797% (7.4426/r), total: 454 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [0]
Number of unused reductors: 3
After ech memory: 32.1MB (=max)
No new polynomials
Queue insertion time: 0.000
Number of linears: 1
Step 5 time: 0.000, [0.001], mat/total: 0.000/0.000, mem: 32.1MB (=max)
Do extern interreduction (length 11)
INTERREDUCE 10 polynomial(s)
Symbolic reduction time: 0.000
Column sort time: 0.000
10 + 17 = 27 rows / 65 columns
Density: 10.142% / 19.734% (6.5926/r), total: 178 (0.0MB)
Row sort time: 0.000
0.000 + 0.000 = 0.000 [10]
Total reduction time: 0.000
Reduction time: 0.000
Final extern interreduction time: 0.000
Final basis length: 10
Number of pairs: 10
Max step: 1, time: 0.000
Max num entries matrix: 61 by 113
Max num rows matrix: 61 by 113
Approx mat cost: 2975.44, sym red cost: 935
Total pair setup time: 0.000
Total symbolic reduction time: 0.000
Total column sort time: 0.000
Total row sort time: 0.000
Total matrix time: 0.000
Total new polys time: 0.000
Total queue update time: 0.000
Total Faugere F4 time: 0.000, real time: 0.002
Time: 0.000
dregs = [ 3, 3, 4, 5, 6 ]
====================================================================================================
n_r: 4, n_v: 8, n_e: 8, mdeg: 3
degs = [3, 3, 3, 3, 3, 3, 3, 3]
Multivariate Polynomial Ring in X0100, X0200, X0300, Y0000, Y0100, Y0200, Y0300, Y0400 over Finite Field in z31 of size 2^31
----------------------------------------------------------------------------------------------------
Starting GB computation... (r=4)
********************
FAUGERE F4 ALGORITHM
********************
Coefficient ring: GF(2^31)
Rank: 8
Order: Graded Reverse Lexicographical
NEW hash table
Matrix kind: Packed GF(2^k)
Datum size: 4
No queue sort
Initial length: 8
Inhomogeneous
Initial queue setup time: 0.000
Initial queue length: 4
*******
STEP 1
Basis length: 8, queue length: 4, step degree: 3, num pairs: 4
Basis total mons: 104, average length: 13.000
Number of pair polynomials: 4, at 39 column(s), 0.000
Average length for reductees: 13.50 [4], reductors: 12.50 [4]
Symbolic reduction time: 0.000, column sort time: 0.000
4 + 4 = 8 rows / 39 columns out of 165 (23.636%)
Density: 33.333% / 34.448% (13/r), total: 104 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [4]
After ech memory: 32.1MB (=max)
Num new polynomials: 4 (100.0%), min deg: 1 [1], av deg: 2.5
Degree counts: 1:1 3:3
Queue insertion time: 0.000
Number of linears: 1
New max step: 1, time: 0.000
Step 1 time: 0.000, [0.000], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 2
Basis length: 12, queue length: 3, step degree: 3, num pairs: 1
Basis total mons: 135, average length: 11.250
Number of pair polynomials: 1, at 12 column(s), 0.000
Average length for reductees: 10.00 [1], reductors: 3.00 [14]
Symbolic reduction time: 0.000, column sort time: 0.000
1 + 14 = 15 rows / 29 columns out of 165 (17.576%)
Density: 11.954% / 24.241% (3.4667/r), total: 52 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [1]
After ech memory: 32.1MB (=max)
Num new polynomials: 1 (100.0%), min deg: 3 [1], av deg: 3.0
Degree counts: 3:1
Queue insertion time: 0.000
Number of linears: 1
Step 2 time: 0.000, [0.000], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 3
Basis length: 13, queue length: 3, step degree: 4, num pairs: 3
Basis total mons: 148, average length: 11.385
Number of pair polynomials: 3, at 61 column(s), 0.000
Average length for reductees: 10.33 [3], reductors: 6.11 [35]
Symbolic reduction time: 0.000, column sort time: 0.000
3 + 35 = 38 rows / 89 columns out of 495 (17.980%)
Density: 7.2442% / 14.497% (6.4474/r), total: 245 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [3]
Number of unused reductors: 3
After ech memory: 32.1MB (=max)
Num new polynomials: 3 (100.0%), min deg: 4 [3], av deg: 4.0
Degree counts: 4:3
Queue insertion time: 0.000
Number of linears: 1
Step 3 time: 0.000, [0.001], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 4
Basis length: 16, queue length: 3, step degree: 5, num pairs: 3
Basis total mons: 191, average length: 11.938
Number of pair polynomials: 3, at 64 column(s), 0.000
Average length for reductees: 14.33 [3], reductors: 12.87 [15]
Symbolic reduction time: 0.000, column sort time: 0.000
3 + 15 = 18 rows / 84 columns out of 1287 (6.527%)
Density: 15.608% / 19.35% (13.111/r), total: 236 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [3]
Number of unused reductors: 4
After ech memory: 32.1MB (=max)
Num new polynomials: 3 (100.0%), min deg: 5 [3], av deg: 5.0
Degree counts: 5:3
Queue insertion time: 0.000
Number of linears: 1
Step 4 time: 0.000, [0.000], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 5
Basis length: 19, queue length: 3, step degree: 6, num pairs: 3
Basis total mons: 247, average length: 13.000
Number of pair polynomials: 3, at 82 column(s), 0.000
Average length for reductees: 18.67 [3], reductors: 8.20 [69]
Symbolic reduction time: 0.000, column sort time: 0.000
3 + 69 = 72 rows / 157 columns out of 3003 (5.228%)
Density: 5.5025% / 10.553% (8.6389/r), total: 622 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [0]
Number of unused reductors: 4
After ech memory: 32.1MB (=max)
No new polynomials
Queue insertion time: 0.000
Number of linears: 1
Step 5 time: 0.000, [0.000], mat/total: 0.000/0.000, mem: 32.1MB (=max)
Do extern interreduction (length 15)
INTERREDUCE 14 polynomial(s)
Symbolic reduction time: 0.000
Column sort time: 0.000
14 + 17 = 31 rows / 90 columns
Density: 8.5305% / 16.669% (7.6774/r), total: 238 (0.0MB)
Row sort time: 0.000
0.000 + 0.000 = 0.000 [14]
Total reduction time: 0.000
Reduction time: 0.000
Final extern interreduction time: 0.000
Final basis length: 14
Number of pairs: 14
Max step: 1, time: 0.000
Max num entries matrix: 72 by 157
Max num rows matrix: 72 by 157
Approx mat cost: 5829.29, sym red cost: 1259
Total pair setup time: 0.000
Total symbolic reduction time: 0.000
Total column sort time: 0.000
Total row sort time: 0.000
Total matrix time: 0.000
Total new polys time: 0.000
Total queue update time: 0.000
Total Faugere F4 time: 0.000, real time: 0.002
Time: 0.000
dregs = [ 3, 3, 4, 5, 6 ]
====================================================================================================
n_r: 5, n_v: 10, n_e: 10, mdeg: 3
degs = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
Multivariate Polynomial Ring in X0100, X0200, X0300, X0400, Y0000, Y0100, Y0200, Y0300, Y0400, Y0500 over Finite Field in z31 of size 2^31
----------------------------------------------------------------------------------------------------
Starting GB computation... (r=5)
********************
FAUGERE F4 ALGORITHM
********************
Coefficient ring: GF(2^31)
Rank: 10
Order: Graded Reverse Lexicographical
NEW hash table
Matrix kind: Packed GF(2^k)
Datum size: 4
No queue sort
Initial length: 10
Inhomogeneous
Initial queue setup time: 0.000
Initial queue length: 5
*******
STEP 1
Basis length: 10, queue length: 5, step degree: 3, num pairs: 5
Basis total mons: 137, average length: 13.700
Number of pair polynomials: 5, at 51 column(s), 0.000
Average length for reductees: 14.20 [5], reductors: 13.20 [5]
Symbolic reduction time: 0.000, column sort time: 0.000
5 + 5 = 10 rows / 51 columns out of 286 (17.832%)
Density: 26.863% / 27.806% (13.7/r), total: 137 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [5]
After ech memory: 32.1MB (=max)
Num new polynomials: 5 (100.0%), min deg: 1 [1], av deg: 2.6
Degree counts: 1:1 3:4
Queue insertion time: 0.000
Number of linears: 1
New max step: 1, time: 0.000
Step 1 time: 0.000, [0.000], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 2
Basis length: 15, queue length: 4, step degree: 3, num pairs: 1
Basis total mons: 178, average length: 11.867
Number of pair polynomials: 1, at 12 column(s), 0.000
Average length for reductees: 10.00 [1], reductors: 3.00 [14]
Symbolic reduction time: 0.000, column sort time: 0.000
1 + 14 = 15 rows / 29 columns out of 286 (10.140%)
Density: 11.954% / 24.241% (3.4667/r), total: 52 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [1]
After ech memory: 32.1MB (=max)
Num new polynomials: 1 (100.0%), min deg: 3 [1], av deg: 3.0
Degree counts: 3:1
Queue insertion time: 0.000
Number of linears: 1
Step 2 time: 0.000, [0.000], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 3
Basis length: 16, queue length: 4, step degree: 4, num pairs: 4
Basis total mons: 191, average length: 11.938
Number of pair polynomials: 4, at 82 column(s), 0.000
Average length for reductees: 10.25 [4], reductors: 6.69 [39]
Symbolic reduction time: 0.000, column sort time: 0.000
4 + 39 = 43 rows / 112 columns out of 1001 (11.189%)
Density: 6.2708% / 12.553% (7.0233/r), total: 302 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [4]
Number of unused reductors: 4
After ech memory: 32.1MB (=max)
Num new polynomials: 4 (100.0%), min deg: 4 [4], av deg: 4.0
Degree counts: 4:4
Queue insertion time: 0.000
Number of linears: 1
Step 3 time: 0.000, [0.001], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 4
Basis length: 20, queue length: 4, step degree: 5, num pairs: 4
Basis total mons: 248, average length: 12.400
Number of pair polynomials: 4, at 85 column(s), 0.000
Average length for reductees: 14.25 [4], reductors: 12.89 [19]
Symbolic reduction time: 0.000, column sort time: 0.000
4 + 19 = 23 rows / 113 columns out of 3003 (3.763%)
Density: 11.62% / 14.318% (13.13/r), total: 302 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [4]
Number of unused reductors: 5
After ech memory: 32.1MB (=max)
Num new polynomials: 4 (100.0%), min deg: 5 [4], av deg: 5.0
Degree counts: 5:4
Queue insertion time: 0.000
Number of linears: 1
Step 4 time: 0.000, [0.000], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 5
Basis length: 24, queue length: 4, step degree: 6, num pairs: 4
Basis total mons: 323, average length: 13.458
Number of pair polynomials: 4, at 109 column(s), 0.000
Average length for reductees: 18.75 [4], reductors: 9.05 [79]
Symbolic reduction time: 0.000, column sort time: 0.000
4 + 79 = 83 rows / 201 columns out of 8008 (2.510%)
Density: 4.7354% / 8.9599% (9.5181/r), total: 790 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [0]
Number of unused reductors: 5
After ech memory: 32.1MB (=max)
No new polynomials
Queue insertion time: 0.000
Number of linears: 1
Step 5 time: 0.000, [0.001], mat/total: 0.000/0.000, mem: 32.1MB (=max)
Do extern interreduction (length 19)
INTERREDUCE 18 polynomial(s)
Symbolic reduction time: 0.000
Column sort time: 0.000
18 + 17 = 35 rows / 115 columns
Density: 7.4037% / 14.387% (8.5143/r), total: 298 (0.0MB)
Row sort time: 0.000
0.000 + 0.000 = 0.000 [18]
Total reduction time: 0.000
Reduction time: 0.000
Final extern interreduction time: 0.000
Final basis length: 18
Number of pairs: 18
Max step: 1, time: 0.000
Max num entries matrix: 83 by 201
Max num rows matrix: 83 by 201
Approx mat cost: 9566.76, sym red cost: 1583
Total pair setup time: 0.000
Total symbolic reduction time: 0.000
Total column sort time: 0.000
Total row sort time: 0.000
Total matrix time: 0.000
Total new polys time: 0.000
Total queue update time: 0.000
Total Faugere F4 time: 0.000, real time: 0.002
Time: 0.000
dregs = [ 3, 3, 4, 5, 6 ]
====================================================================================================
n_r: 6, n_v: 12, n_e: 12, mdeg: 3
degs = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
Multivariate Polynomial Ring in X0100, X0200, X0300, X0400, X0500, Y0000, Y0100, Y0200, Y0300, Y0400, Y0500, Y0600 over Finite Field in z31 of size 2^31
----------------------------------------------------------------------------------------------------
Starting GB computation... (r=6)
********************
FAUGERE F4 ALGORITHM
********************
Coefficient ring: GF(2^31)
Rank: 12
Order: Graded Reverse Lexicographical
NEW hash table
Matrix kind: Packed GF(2^k)
Datum size: 4
No queue sort
Initial length: 12
Inhomogeneous
Initial queue setup time: 0.000
Initial queue length: 6
*******
STEP 1
Basis length: 12, queue length: 6, step degree: 3, num pairs: 6
Basis total mons: 170, average length: 14.167
Number of pair polynomials: 6, at 63 column(s), 0.000
Average length for reductees: 14.67 [6], reductors: 13.67 [6]
Symbolic reduction time: 0.000, column sort time: 0.000
6 + 6 = 12 rows / 63 columns out of 455 (13.846%)
Density: 22.487% / 23.306% (14.167/r), total: 170 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [6]
After ech memory: 32.1MB (=max)
Num new polynomials: 6 (100.0%), min deg: 1 [1], av deg: 2.7
Degree counts: 1:1 3:5
Queue insertion time: 0.000
Number of linears: 1
New max step: 1, time: 0.000
Step 1 time: 0.000, [0.000], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 2
Basis length: 18, queue length: 5, step degree: 3, num pairs: 1
Basis total mons: 221, average length: 12.278
Number of pair polynomials: 1, at 12 column(s), 0.000
Average length for reductees: 10.00 [1], reductors: 3.00 [14]
Symbolic reduction time: 0.000, column sort time: 0.000
1 + 14 = 15 rows / 29 columns out of 455 (6.374%)
Density: 11.954% / 24.241% (3.4667/r), total: 52 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [1]
After ech memory: 32.1MB (=max)
Num new polynomials: 1 (100.0%), min deg: 3 [1], av deg: 3.0
Degree counts: 3:1
Queue insertion time: 0.000
Number of linears: 1
Step 2 time: 0.000, [0.000], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 3
Basis length: 19, queue length: 5, step degree: 4, num pairs: 5
Basis total mons: 234, average length: 12.316
Number of pair polynomials: 5, at 103 column(s), 0.000
Average length for reductees: 10.20 [5], reductors: 7.16 [43]
Symbolic reduction time: 0.000, column sort time: 0.000
5 + 43 = 48 rows / 135 columns out of 1820 (7.418%)
Density: 5.5401% / 11.069% (7.4792/r), total: 359 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [5]
Number of unused reductors: 5
After ech memory: 32.1MB (=max)
Num new polynomials: 5 (100.0%), min deg: 4 [5], av deg: 4.0
Degree counts: 4:5
Queue insertion time: 0.000
Number of linears: 1
Step 3 time: 0.000, [0.000], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 4
Basis length: 24, queue length: 5, step degree: 5, num pairs: 5
Basis total mons: 305, average length: 12.708
Number of pair polynomials: 5, at 106 column(s), 0.000
Average length for reductees: 14.20 [5], reductors: 12.91 [23]
Symbolic reduction time: 0.000, column sort time: 0.000
5 + 23 = 28 rows / 142 columns out of 6188 (2.295%)
Density: 9.2555% / 11.34% (13.143/r), total: 368 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [5]
Number of unused reductors: 6
After ech memory: 32.1MB (=max)
Num new polynomials: 5 (100.0%), min deg: 5 [5], av deg: 5.0
Degree counts: 5:5
Queue insertion time: 0.000
Number of linears: 1
Step 4 time: 0.000, [0.000], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 5
Basis length: 29, queue length: 5, step degree: 6, num pairs: 5
Basis total mons: 399, average length: 13.759
Number of pair polynomials: 5, at 136 column(s), 0.000
Average length for reductees: 18.80 [5], reductors: 9.71 [89]
Symbolic reduction time: 0.000, column sort time: 0.000
5 + 89 = 94 rows / 245 columns out of 18564 (1.320%)
Density: 4.1598% / 7.7748% (10.191/r), total: 958 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [0]
Number of unused reductors: 6
After ech memory: 32.1MB (=max)
No new polynomials
Queue insertion time: 0.000
Number of linears: 1
Step 5 time: 0.000, [0.001], mat/total: 0.000/0.000, mem: 32.1MB (=max)
Do extern interreduction (length 23)
INTERREDUCE 22 polynomial(s)
Symbolic reduction time: 0.000
Column sort time: 0.000
22 + 17 = 39 rows / 140 columns
Density: 6.5568% / 12.637% (9.1795/r), total: 358 (0.0MB)
Row sort time: 0.000
0.000 + 0.000 = 0.000 [22]
Total reduction time: 0.000
Reduction time: 0.000
Final extern interreduction time: 0.000
Final basis length: 22
Number of pairs: 22
Max step: 1, time: 0.000
Max num entries matrix: 94 by 245
Max num rows matrix: 94 by 245
Approx mat cost: 14168.1, sym red cost: 1907
Total pair setup time: 0.000
Total symbolic reduction time: 0.000
Total column sort time: 0.000
Total row sort time: 0.000
Total matrix time: 0.000
Total new polys time: 0.000
Total queue update time: 0.000
Total Faugere F4 time: 0.000, real time: 0.003
Time: 0.000
dregs = [ 3, 3, 4, 5, 6 ]
====================================================================================================
n_r: 7, n_v: 14, n_e: 14, mdeg: 3
degs = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
Multivariate Polynomial Ring in X0100, X0200, X0300, X0400, X0500, X0600, Y0000, Y0100, Y0200, Y0300, Y0400, Y0500, Y0600, Y0700 over Finite Field in z31 of size 2^31
----------------------------------------------------------------------------------------------------
Starting GB computation... (r=7)
********************
FAUGERE F4 ALGORITHM
********************
Coefficient ring: GF(2^31)
Rank: 14
Order: Graded Reverse Lexicographical
NEW hash table
Matrix kind: Packed GF(2^k)
Datum size: 4
No queue sort
Initial length: 14
Inhomogeneous
Initial queue setup time: 0.000
Initial queue length: 7
*******
STEP 1
Basis length: 14, queue length: 7, step degree: 3, num pairs: 7
Basis total mons: 203, average length: 14.500
Number of pair polynomials: 7, at 75 column(s), 0.000
Average length for reductees: 15.00 [7], reductors: 14.00 [7]
Symbolic reduction time: 0.000, column sort time: 0.000
7 + 7 = 14 rows / 75 columns out of 680 (11.029%)
Density: 19.333% / 20.057% (14.5/r), total: 203 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [7]
After ech memory: 32.1MB (=max)
Num new polynomials: 7 (100.0%), min deg: 1 [1], av deg: 2.7
Degree counts: 1:1 3:6
Queue insertion time: 0.000
Number of linears: 1
New max step: 1, time: 0.000
Step 1 time: 0.000, [0.001], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 2
Basis length: 21, queue length: 6, step degree: 3, num pairs: 1
Basis total mons: 264, average length: 12.571
Number of pair polynomials: 1, at 12 column(s), 0.000
Average length for reductees: 10.00 [1], reductors: 3.00 [14]
Symbolic reduction time: 0.000, column sort time: 0.000
1 + 14 = 15 rows / 29 columns out of 680 (4.265%)
Density: 11.954% / 24.241% (3.4667/r), total: 52 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [1]
After ech memory: 32.1MB (=max)
Num new polynomials: 1 (100.0%), min deg: 3 [1], av deg: 3.0
Degree counts: 3:1
Queue insertion time: 0.000
Number of linears: 1
Step 2 time: 0.000, [0.000], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 3
Basis length: 22, queue length: 6, step degree: 4, num pairs: 6
Basis total mons: 277, average length: 12.591
Number of pair polynomials: 6, at 124 column(s), 0.000
Average length for reductees: 10.17 [6], reductors: 7.55 [47]
Symbolic reduction time: 0.000, column sort time: 0.000
6 + 47 = 53 rows / 158 columns out of 3060 (5.163%)
Density: 4.9678% / 9.8985% (7.8491/r), total: 416 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [6]
Number of unused reductors: 6
After ech memory: 32.1MB (=max)
Num new polynomials: 6 (100.0%), min deg: 4 [6], av deg: 4.0
Degree counts: 4:6
Queue insertion time: 0.000
Number of linears: 1
Step 3 time: 0.000, [0.000], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 4
Basis length: 28, queue length: 6, step degree: 5, num pairs: 6
Basis total mons: 362, average length: 12.929
Number of pair polynomials: 6, at 127 column(s), 0.000
Average length for reductees: 14.17 [6], reductors: 12.93 [27]
Symbolic reduction time: 0.000, column sort time: 0.000
6 + 27 = 33 rows / 171 columns out of 11628 (1.471%)
Density: 7.6909% / 9.378% (13.152/r), total: 434 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [6]
Number of unused reductors: 7
After ech memory: 32.1MB (=max)
Num new polynomials: 6 (100.0%), min deg: 5 [6], av deg: 5.0
Degree counts: 5:6
Queue insertion time: 0.000
Number of linears: 1
Step 4 time: 0.000, [0.001], mat/total: 0.000/0.000, mem: 32.1MB (=max)
*******
STEP 5
Basis length: 34, queue length: 6, step degree: 6, num pairs: 6
Basis total mons: 475, average length: 13.971
Number of pair polynomials: 6, at 163 column(s), 0.000
Average length for reductees: 18.83 [6], reductors: 10.23 [99]
Symbolic reduction time: 0.000, column sort time: 0.000
6 + 99 = 105 rows / 289 columns out of 38760 (0.746%)
Density: 3.7107% / 6.8614% (10.724/r), total: 1126 (0.0MB)
Before ech memory: 32.1MB (=max)
Row sort time: 0.000
0.000 + 0.000 + 0.000 = 0.000 [0]
Number of unused reductors: 7
After ech memory: 32.1MB (=max)
No new polynomials
Queue insertion time: 0.000
Number of linears: 1
Step 5 time: 0.000, [0.001], mat/total: 0.000/0.000, mem: 32.1MB (=max)
Do extern interreduction (length 27)
INTERREDUCE 26 polynomial(s)
Symbolic reduction time: 0.000
Column sort time: 0.000
26 + 17 = 43 rows / 165 columns
Density: 5.8915% / 11.258% (9.7209/r), total: 418 (0.0MB)
Row sort time: 0.000
0.000 + 0.000 = 0.000 [26]
Total reduction time: 0.000
Reduction time: 0.000
Final extern interreduction time: 0.000
Final basis length: 26
Number of pairs: 26
Max step: 1, time: 0.000
Max num entries matrix: 105 by 289
Max num rows matrix: 105 by 289
Approx mat cost: 19622.5, sym red cost: 2231
Total pair setup time: 0.000
Total symbolic reduction time: 0.000
Total column sort time: 0.000
Total row sort time: 0.000
Total matrix time: 0.000
Total new polys time: 0.000
Total queue update time: 0.000
Total Faugere F4 time: 0.000, real time: 0.003
Time: 0.000
dregs = [ 3, 3, 4, 5, 6 ]
====================================================================================================
n_r: 8, n_v: 16, n_e: 16, mdeg: 3
degs = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
Multivariate Polynomial Ring in X0100, X0200, X0300, X0400, X0500, X0600, X0700, Y0000, Y0100, Y0200, Y0300, Y0400, Y0500, Y0600, Y0700, Y0800 over Finite Field in z31 of size 2^31
----------------------------------------------------------------------------------------------------
Starting GB computation... (r=8)
********************
FAUGERE F4 ALGORITHM
********************
Coefficient ring: GF(2^31)
Rank: 16
Order: Graded Reverse Lexicographical
NEW hash table
Matrix kind: Packed GF(2^k)
Datum size: 4
No queue sort
Initial length: 16
Inhomogeneous