-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex_definition_A.html
1364 lines (1356 loc) · 116 KB
/
index_definition_A.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="coqdoc.css" rel="stylesheet" type="text/css" />
<title>mathcomp.ssreflect.tuple</title>
</head>
<body>
<div id="page">
<div id="header">
</div>
<div id="main">
<table>
<tr>
<td>Global Index</td>
<td><a href="index_global_A.html">A</a></td>
<td><a href="index_global_B.html">B</a></td>
<td><a href="index_global_C.html">C</a></td>
<td><a href="index_global_D.html">D</a></td>
<td><a href="index_global_E.html">E</a></td>
<td><a href="index_global_F.html">F</a></td>
<td><a href="index_global_G.html">G</a></td>
<td><a href="index_global_H.html">H</a></td>
<td><a href="index_global_I.html">I</a></td>
<td><a href="index_global_J.html">J</a></td>
<td><a href="index_global_K.html">K</a></td>
<td><a href="index_global_L.html">L</a></td>
<td><a href="index_global_M.html">M</a></td>
<td><a href="index_global_N.html">N</a></td>
<td><a href="index_global_O.html">O</a></td>
<td><a href="index_global_P.html">P</a></td>
<td><a href="index_global_Q.html">Q</a></td>
<td><a href="index_global_R.html">R</a></td>
<td><a href="index_global_S.html">S</a></td>
<td><a href="index_global_T.html">T</a></td>
<td><a href="index_global_U.html">U</a></td>
<td><a href="index_global_V.html">V</a></td>
<td><a href="index_global_W.html">W</a></td>
<td><a href="index_global_X.html">X</a></td>
<td>Y</td>
<td><a href="index_global_Z.html">Z</a></td>
<td>_</td>
<td><a href="index_global_*.html">other</a></td>
<td>(54001 entries)</td>
</tr>
<tr>
<td>Notation Index</td>
<td><a href="index_notation_A.html">A</a></td>
<td><a href="index_notation_B.html">B</a></td>
<td><a href="index_notation_C.html">C</a></td>
<td><a href="index_notation_D.html">D</a></td>
<td><a href="index_notation_E.html">E</a></td>
<td><a href="index_notation_F.html">F</a></td>
<td><a href="index_notation_G.html">G</a></td>
<td><a href="index_notation_H.html">H</a></td>
<td><a href="index_notation_I.html">I</a></td>
<td>J</td>
<td><a href="index_notation_K.html">K</a></td>
<td><a href="index_notation_L.html">L</a></td>
<td><a href="index_notation_M.html">M</a></td>
<td><a href="index_notation_N.html">N</a></td>
<td><a href="index_notation_O.html">O</a></td>
<td><a href="index_notation_P.html">P</a></td>
<td><a href="index_notation_Q.html">Q</a></td>
<td><a href="index_notation_R.html">R</a></td>
<td><a href="index_notation_S.html">S</a></td>
<td>T</td>
<td><a href="index_notation_U.html">U</a></td>
<td><a href="index_notation_V.html">V</a></td>
<td>W</td>
<td>X</td>
<td>Y</td>
<td><a href="index_notation_Z.html">Z</a></td>
<td>_</td>
<td><a href="index_notation_*.html">other</a></td>
<td>(1931 entries)</td>
</tr>
<tr>
<td>Module Index</td>
<td><a href="index_module_A.html">A</a></td>
<td><a href="index_module_B.html">B</a></td>
<td><a href="index_module_C.html">C</a></td>
<td><a href="index_module_D.html">D</a></td>
<td><a href="index_module_E.html">E</a></td>
<td><a href="index_module_F.html">F</a></td>
<td><a href="index_module_G.html">G</a></td>
<td><a href="index_module_H.html">H</a></td>
<td><a href="index_module_I.html">I</a></td>
<td>J</td>
<td>K</td>
<td><a href="index_module_L.html">L</a></td>
<td><a href="index_module_M.html">M</a></td>
<td><a href="index_module_N.html">N</a></td>
<td><a href="index_module_O.html">O</a></td>
<td><a href="index_module_P.html">P</a></td>
<td><a href="index_module_Q.html">Q</a></td>
<td><a href="index_module_R.html">R</a></td>
<td><a href="index_module_S.html">S</a></td>
<td><a href="index_module_T.html">T</a></td>
<td><a href="index_module_U.html">U</a></td>
<td><a href="index_module_V.html">V</a></td>
<td>W</td>
<td>X</td>
<td>Y</td>
<td><a href="index_module_Z.html">Z</a></td>
<td>_</td>
<td>other</td>
<td>(1658 entries)</td>
</tr>
<tr>
<td>Variable Index</td>
<td><a href="index_variable_A.html">A</a></td>
<td><a href="index_variable_B.html">B</a></td>
<td><a href="index_variable_C.html">C</a></td>
<td><a href="index_variable_D.html">D</a></td>
<td><a href="index_variable_E.html">E</a></td>
<td><a href="index_variable_F.html">F</a></td>
<td><a href="index_variable_G.html">G</a></td>
<td><a href="index_variable_H.html">H</a></td>
<td><a href="index_variable_I.html">I</a></td>
<td>J</td>
<td><a href="index_variable_K.html">K</a></td>
<td><a href="index_variable_L.html">L</a></td>
<td><a href="index_variable_M.html">M</a></td>
<td><a href="index_variable_N.html">N</a></td>
<td><a href="index_variable_O.html">O</a></td>
<td><a href="index_variable_P.html">P</a></td>
<td><a href="index_variable_Q.html">Q</a></td>
<td><a href="index_variable_R.html">R</a></td>
<td><a href="index_variable_S.html">S</a></td>
<td><a href="index_variable_T.html">T</a></td>
<td><a href="index_variable_U.html">U</a></td>
<td><a href="index_variable_V.html">V</a></td>
<td>W</td>
<td>X</td>
<td>Y</td>
<td><a href="index_variable_Z.html">Z</a></td>
<td>_</td>
<td>other</td>
<td>(7199 entries)</td>
</tr>
<tr>
<td>Library Index</td>
<td><a href="index_library_A.html">A</a></td>
<td><a href="index_library_B.html">B</a></td>
<td><a href="index_library_C.html">C</a></td>
<td><a href="index_library_D.html">D</a></td>
<td><a href="index_library_E.html">E</a></td>
<td><a href="index_library_F.html">F</a></td>
<td><a href="index_library_G.html">G</a></td>
<td><a href="index_library_H.html">H</a></td>
<td><a href="index_library_I.html">I</a></td>
<td><a href="index_library_J.html">J</a></td>
<td>K</td>
<td>L</td>
<td><a href="index_library_M.html">M</a></td>
<td><a href="index_library_N.html">N</a></td>
<td><a href="index_library_O.html">O</a></td>
<td><a href="index_library_P.html">P</a></td>
<td><a href="index_library_Q.html">Q</a></td>
<td><a href="index_library_R.html">R</a></td>
<td><a href="index_library_S.html">S</a></td>
<td><a href="index_library_T.html">T</a></td>
<td>U</td>
<td><a href="index_library_V.html">V</a></td>
<td>W</td>
<td>X</td>
<td>Y</td>
<td><a href="index_library_Z.html">Z</a></td>
<td>_</td>
<td>other</td>
<td>(97 entries)</td>
</tr>
<tr>
<td>Lemma Index</td>
<td><a href="index_lemma_A.html">A</a></td>
<td><a href="index_lemma_B.html">B</a></td>
<td><a href="index_lemma_C.html">C</a></td>
<td><a href="index_lemma_D.html">D</a></td>
<td><a href="index_lemma_E.html">E</a></td>
<td><a href="index_lemma_F.html">F</a></td>
<td><a href="index_lemma_G.html">G</a></td>
<td><a href="index_lemma_H.html">H</a></td>
<td><a href="index_lemma_I.html">I</a></td>
<td><a href="index_lemma_J.html">J</a></td>
<td><a href="index_lemma_K.html">K</a></td>
<td><a href="index_lemma_L.html">L</a></td>
<td><a href="index_lemma_M.html">M</a></td>
<td><a href="index_lemma_N.html">N</a></td>
<td><a href="index_lemma_O.html">O</a></td>
<td><a href="index_lemma_P.html">P</a></td>
<td><a href="index_lemma_Q.html">Q</a></td>
<td><a href="index_lemma_R.html">R</a></td>
<td><a href="index_lemma_S.html">S</a></td>
<td><a href="index_lemma_T.html">T</a></td>
<td><a href="index_lemma_U.html">U</a></td>
<td><a href="index_lemma_V.html">V</a></td>
<td><a href="index_lemma_W.html">W</a></td>
<td><a href="index_lemma_X.html">X</a></td>
<td>Y</td>
<td><a href="index_lemma_Z.html">Z</a></td>
<td>_</td>
<td>other</td>
<td>(15214 entries)</td>
</tr>
<tr>
<td>Axiom Index</td>
<td><a href="index_axiom_A.html">A</a></td>
<td><a href="index_axiom_B.html">B</a></td>
<td><a href="index_axiom_C.html">C</a></td>
<td><a href="index_axiom_D.html">D</a></td>
<td><a href="index_axiom_E.html">E</a></td>
<td><a href="index_axiom_F.html">F</a></td>
<td><a href="index_axiom_G.html">G</a></td>
<td>H</td>
<td><a href="index_axiom_I.html">I</a></td>
<td>J</td>
<td>K</td>
<td>L</td>
<td><a href="index_axiom_M.html">M</a></td>
<td>N</td>
<td>O</td>
<td><a href="index_axiom_P.html">P</a></td>
<td><a href="index_axiom_Q.html">Q</a></td>
<td><a href="index_axiom_R.html">R</a></td>
<td><a href="index_axiom_S.html">S</a></td>
<td>T</td>
<td>U</td>
<td>V</td>
<td>W</td>
<td>X</td>
<td>Y</td>
<td>Z</td>
<td>_</td>
<td>other</td>
<td>(75 entries)</td>
</tr>
<tr>
<td>Constructor Index</td>
<td><a href="index_constructor_A.html">A</a></td>
<td><a href="index_constructor_B.html">B</a></td>
<td><a href="index_constructor_C.html">C</a></td>
<td><a href="index_constructor_D.html">D</a></td>
<td><a href="index_constructor_E.html">E</a></td>
<td><a href="index_constructor_F.html">F</a></td>
<td><a href="index_constructor_G.html">G</a></td>
<td><a href="index_constructor_H.html">H</a></td>
<td><a href="index_constructor_I.html">I</a></td>
<td>J</td>
<td>K</td>
<td><a href="index_constructor_L.html">L</a></td>
<td><a href="index_constructor_M.html">M</a></td>
<td><a href="index_constructor_N.html">N</a></td>
<td><a href="index_constructor_O.html">O</a></td>
<td><a href="index_constructor_P.html">P</a></td>
<td><a href="index_constructor_Q.html">Q</a></td>
<td><a href="index_constructor_R.html">R</a></td>
<td><a href="index_constructor_S.html">S</a></td>
<td><a href="index_constructor_T.html">T</a></td>
<td><a href="index_constructor_U.html">U</a></td>
<td><a href="index_constructor_V.html">V</a></td>
<td>W</td>
<td><a href="index_constructor_X.html">X</a></td>
<td>Y</td>
<td><a href="index_constructor_Z.html">Z</a></td>
<td>_</td>
<td>other</td>
<td>(224 entries)</td>
</tr>
<tr>
<td>Inductive Index</td>
<td><a href="index_inductive_A.html">A</a></td>
<td><a href="index_inductive_B.html">B</a></td>
<td><a href="index_inductive_C.html">C</a></td>
<td><a href="index_inductive_D.html">D</a></td>
<td><a href="index_inductive_E.html">E</a></td>
<td><a href="index_inductive_F.html">F</a></td>
<td><a href="index_inductive_G.html">G</a></td>
<td><a href="index_inductive_H.html">H</a></td>
<td><a href="index_inductive_I.html">I</a></td>
<td>J</td>
<td>K</td>
<td><a href="index_inductive_L.html">L</a></td>
<td><a href="index_inductive_M.html">M</a></td>
<td><a href="index_inductive_N.html">N</a></td>
<td><a href="index_inductive_O.html">O</a></td>
<td><a href="index_inductive_P.html">P</a></td>
<td>Q</td>
<td><a href="index_inductive_R.html">R</a></td>
<td><a href="index_inductive_S.html">S</a></td>
<td><a href="index_inductive_T.html">T</a></td>
<td><a href="index_inductive_U.html">U</a></td>
<td><a href="index_inductive_V.html">V</a></td>
<td>W</td>
<td><a href="index_inductive_X.html">X</a></td>
<td>Y</td>
<td>Z</td>
<td>_</td>
<td>other</td>
<td>(132 entries)</td>
</tr>
<tr>
<td>Projection Index</td>
<td><a href="index_projection_A.html">A</a></td>
<td><a href="index_projection_B.html">B</a></td>
<td><a href="index_projection_C.html">C</a></td>
<td><a href="index_projection_D.html">D</a></td>
<td><a href="index_projection_E.html">E</a></td>
<td><a href="index_projection_F.html">F</a></td>
<td><a href="index_projection_G.html">G</a></td>
<td><a href="index_projection_H.html">H</a></td>
<td><a href="index_projection_I.html">I</a></td>
<td>J</td>
<td>K</td>
<td><a href="index_projection_L.html">L</a></td>
<td><a href="index_projection_M.html">M</a></td>
<td><a href="index_projection_N.html">N</a></td>
<td><a href="index_projection_O.html">O</a></td>
<td><a href="index_projection_P.html">P</a></td>
<td><a href="index_projection_Q.html">Q</a></td>
<td><a href="index_projection_R.html">R</a></td>
<td><a href="index_projection_S.html">S</a></td>
<td><a href="index_projection_T.html">T</a></td>
<td><a href="index_projection_U.html">U</a></td>
<td><a href="index_projection_V.html">V</a></td>
<td>W</td>
<td>X</td>
<td>Y</td>
<td><a href="index_projection_Z.html">Z</a></td>
<td>_</td>
<td>other</td>
<td>(2371 entries)</td>
</tr>
<tr>
<td>Section Index</td>
<td><a href="index_section_A.html">A</a></td>
<td><a href="index_section_B.html">B</a></td>
<td><a href="index_section_C.html">C</a></td>
<td><a href="index_section_D.html">D</a></td>
<td><a href="index_section_E.html">E</a></td>
<td><a href="index_section_F.html">F</a></td>
<td><a href="index_section_G.html">G</a></td>
<td><a href="index_section_H.html">H</a></td>
<td><a href="index_section_I.html">I</a></td>
<td>J</td>
<td><a href="index_section_K.html">K</a></td>
<td><a href="index_section_L.html">L</a></td>
<td><a href="index_section_M.html">M</a></td>
<td><a href="index_section_N.html">N</a></td>
<td><a href="index_section_O.html">O</a></td>
<td><a href="index_section_P.html">P</a></td>
<td><a href="index_section_Q.html">Q</a></td>
<td><a href="index_section_R.html">R</a></td>
<td><a href="index_section_S.html">S</a></td>
<td><a href="index_section_T.html">T</a></td>
<td><a href="index_section_U.html">U</a></td>
<td><a href="index_section_V.html">V</a></td>
<td>W</td>
<td>X</td>
<td>Y</td>
<td><a href="index_section_Z.html">Z</a></td>
<td>_</td>
<td>other</td>
<td>(2266 entries)</td>
</tr>
<tr>
<td>Abbreviation Index</td>
<td><a href="index_abbreviation_A.html">A</a></td>
<td><a href="index_abbreviation_B.html">B</a></td>
<td><a href="index_abbreviation_C.html">C</a></td>
<td><a href="index_abbreviation_D.html">D</a></td>
<td><a href="index_abbreviation_E.html">E</a></td>
<td><a href="index_abbreviation_F.html">F</a></td>
<td><a href="index_abbreviation_G.html">G</a></td>
<td><a href="index_abbreviation_H.html">H</a></td>
<td><a href="index_abbreviation_I.html">I</a></td>
<td><a href="index_abbreviation_J.html">J</a></td>
<td><a href="index_abbreviation_K.html">K</a></td>
<td><a href="index_abbreviation_L.html">L</a></td>
<td><a href="index_abbreviation_M.html">M</a></td>
<td><a href="index_abbreviation_N.html">N</a></td>
<td><a href="index_abbreviation_O.html">O</a></td>
<td><a href="index_abbreviation_P.html">P</a></td>
<td><a href="index_abbreviation_Q.html">Q</a></td>
<td><a href="index_abbreviation_R.html">R</a></td>
<td><a href="index_abbreviation_S.html">S</a></td>
<td><a href="index_abbreviation_T.html">T</a></td>
<td><a href="index_abbreviation_U.html">U</a></td>
<td><a href="index_abbreviation_V.html">V</a></td>
<td><a href="index_abbreviation_W.html">W</a></td>
<td><a href="index_abbreviation_X.html">X</a></td>
<td>Y</td>
<td><a href="index_abbreviation_Z.html">Z</a></td>
<td>_</td>
<td>other</td>
<td>(732 entries)</td>
</tr>
<tr>
<td>Definition Index</td>
<td><a href="index_definition_A.html">A</a></td>
<td><a href="index_definition_B.html">B</a></td>
<td><a href="index_definition_C.html">C</a></td>
<td><a href="index_definition_D.html">D</a></td>
<td><a href="index_definition_E.html">E</a></td>
<td><a href="index_definition_F.html">F</a></td>
<td><a href="index_definition_G.html">G</a></td>
<td><a href="index_definition_H.html">H</a></td>
<td><a href="index_definition_I.html">I</a></td>
<td><a href="index_definition_J.html">J</a></td>
<td><a href="index_definition_K.html">K</a></td>
<td><a href="index_definition_L.html">L</a></td>
<td><a href="index_definition_M.html">M</a></td>
<td><a href="index_definition_N.html">N</a></td>
<td><a href="index_definition_O.html">O</a></td>
<td><a href="index_definition_P.html">P</a></td>
<td><a href="index_definition_Q.html">Q</a></td>
<td><a href="index_definition_R.html">R</a></td>
<td><a href="index_definition_S.html">S</a></td>
<td><a href="index_definition_T.html">T</a></td>
<td><a href="index_definition_U.html">U</a></td>
<td><a href="index_definition_V.html">V</a></td>
<td><a href="index_definition_W.html">W</a></td>
<td><a href="index_definition_X.html">X</a></td>
<td>Y</td>
<td><a href="index_definition_Z.html">Z</a></td>
<td>_</td>
<td>other</td>
<td>(21455 entries)</td>
</tr>
<tr>
<td>Record Index</td>
<td><a href="index_record_A.html">A</a></td>
<td><a href="index_record_B.html">B</a></td>
<td><a href="index_record_C.html">C</a></td>
<td><a href="index_record_D.html">D</a></td>
<td><a href="index_record_E.html">E</a></td>
<td><a href="index_record_F.html">F</a></td>
<td><a href="index_record_G.html">G</a></td>
<td><a href="index_record_H.html">H</a></td>
<td><a href="index_record_I.html">I</a></td>
<td>J</td>
<td>K</td>
<td><a href="index_record_L.html">L</a></td>
<td><a href="index_record_M.html">M</a></td>
<td><a href="index_record_N.html">N</a></td>
<td><a href="index_record_O.html">O</a></td>
<td><a href="index_record_P.html">P</a></td>
<td><a href="index_record_Q.html">Q</a></td>
<td><a href="index_record_R.html">R</a></td>
<td><a href="index_record_S.html">S</a></td>
<td><a href="index_record_T.html">T</a></td>
<td><a href="index_record_U.html">U</a></td>
<td><a href="index_record_V.html">V</a></td>
<td>W</td>
<td>X</td>
<td>Y</td>
<td><a href="index_record_Z.html">Z</a></td>
<td>_</td>
<td>other</td>
<td>(647 entries)</td>
</tr>
</table>
<hr/><a id="definition_A"></a><h2>A (definition)</h2>
<a href="mathcomp.solvable.abelian.html#abelem">abelem</a> [in <a href="mathcomp.solvable.abelian.html">mathcomp.solvable.abelian</a>]<br/>
<a href="mathcomp.character.mxabelem.html#abelem_repr">abelem_repr</a> [in <a href="mathcomp.character.mxabelem.html">mathcomp.character.mxabelem</a>]<br/>
<a href="mathcomp.character.mxabelem.html#abelem_mx">abelem_mx</a> [in <a href="mathcomp.character.mxabelem.html">mathcomp.character.mxabelem</a>]<br/>
<a href="mathcomp.character.mxabelem.html#abelem_mx_fun">abelem_mx_fun</a> [in <a href="mathcomp.character.mxabelem.html">mathcomp.character.mxabelem</a>]<br/>
<a href="mathcomp.character.mxabelem.html#abelem_rV_morphism">abelem_rV_morphism</a> [in <a href="mathcomp.character.mxabelem.html">mathcomp.character.mxabelem</a>]<br/>
<a href="mathcomp.character.mxabelem.html#abelem_rV">abelem_rV</a> [in <a href="mathcomp.character.mxabelem.html">mathcomp.character.mxabelem</a>]<br/>
<a href="mathcomp.character.mxabelem.html#abelem_dim'">abelem_dim'</a> [in <a href="mathcomp.character.mxabelem.html">mathcomp.character.mxabelem</a>]<br/>
<a href="mathcomp.fingroup.fingroup.html#abelian">abelian</a> [in <a href="mathcomp.fingroup.fingroup.html">mathcomp.fingroup.fingroup</a>]<br/>
<a href="mathcomp.solvable.abelian.html#abelian_type">abelian_type</a> [in <a href="mathcomp.solvable.abelian.html">mathcomp.solvable.abelian</a>]<br/>
<a href="mathcomp.solvable.abelian.html#abelian_type_rec">abelian_type_rec</a> [in <a href="mathcomp.solvable.abelian.html">mathcomp.solvable.abelian</a>]<br/>
<a href="mathcomp.algebra.ssrint.html#absz">absz</a> [in <a href="mathcomp.algebra.ssrint.html">mathcomp.algebra.ssrint</a>]<br/>
<a href="mathcomp.ssreflect.ssrnat.html#acc_nat_sind">acc_nat_sind</a> [in <a href="mathcomp.ssreflect.ssrnat.html">mathcomp.ssreflect.ssrnat</a>]<br/>
<a href="mathcomp.ssreflect.ssrnat.html#acc_nat_ind">acc_nat_ind</a> [in <a href="mathcomp.ssreflect.ssrnat.html">mathcomp.ssreflect.ssrnat</a>]<br/>
<a href="mathcomp.solvable.jordanholder.html#acomps">acomps</a> [in <a href="mathcomp.solvable.jordanholder.html">mathcomp.solvable.jordanholder</a>]<br/>
<a href="mathcomp.fingroup.action.html#actby">actby</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.fingroup.action.html#actby_groupAction">actby_groupAction</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.fingroup.action.html#actby_cond_group">actby_cond_group</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.fingroup.action.html#actby_cond">actby_cond</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.fingroup.action.html#action_by">action_by</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.fingroup.action.html#actm">actm</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.fingroup.action.html#actperm">actperm</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.fingroup.action.html#actperm_morphism">actperm_morphism</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.fingroup.action.html#acts_irreducibly">acts_irreducibly</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.fingroup.action.html#acts_on_group">acts_on_group</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.fingroup.action.html#acts_on">acts_on</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.fingroup.action.html#act_morphism">act_morphism</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.fingroup.action.html#act_dom">act_dom</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.fingroup.action.html#act_morph">act_morph</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.solvable.burnside_app.html#act_g">act_g</a> [in <a href="mathcomp.solvable.burnside_app.html">mathcomp.solvable.burnside_app</a>]<br/>
<a href="mathcomp.solvable.burnside_app.html#act_f">act_f</a> [in <a href="mathcomp.solvable.burnside_app.html">mathcomp.solvable.burnside_app</a>]<br/>
<a href="mathcomp.ssreflect.ssrAC.html#AC.BinNums_positive__canonical__eqtype_Equality">AC.BinNums_positive__canonical__eqtype_Equality</a> [in <a href="mathcomp.ssreflect.ssrAC.html">mathcomp.ssreflect.ssrAC</a>]<br/>
<a href="mathcomp.ssreflect.ssrAC.html#AC.cforall">AC.cforall</a> [in <a href="mathcomp.ssreflect.ssrAC.html">mathcomp.ssreflect.ssrAC</a>]<br/>
<a href="mathcomp.ssreflect.ssrAC.html#AC.content">AC.content</a> [in <a href="mathcomp.ssreflect.ssrAC.html">mathcomp.ssreflect.ssrAC</a>]<br/>
<a href="mathcomp.ssreflect.ssrAC.html#AC.direct">AC.direct</a> [in <a href="mathcomp.ssreflect.ssrAC.html">mathcomp.ssreflect.ssrAC</a>]<br/>
<a href="mathcomp.ssreflect.ssrAC.html#AC.env_sind">AC.env_sind</a> [in <a href="mathcomp.ssreflect.ssrAC.html">mathcomp.ssreflect.ssrAC</a>]<br/>
<a href="mathcomp.ssreflect.ssrAC.html#AC.env_rec">AC.env_rec</a> [in <a href="mathcomp.ssreflect.ssrAC.html">mathcomp.ssreflect.ssrAC</a>]<br/>
<a href="mathcomp.ssreflect.ssrAC.html#AC.env_ind">AC.env_ind</a> [in <a href="mathcomp.ssreflect.ssrAC.html">mathcomp.ssreflect.ssrAC</a>]<br/>
<a href="mathcomp.ssreflect.ssrAC.html#AC.env_rect">AC.env_rect</a> [in <a href="mathcomp.ssreflect.ssrAC.html">mathcomp.ssreflect.ssrAC</a>]<br/>
<a href="mathcomp.ssreflect.ssrAC.html#AC.eval">AC.eval</a> [in <a href="mathcomp.ssreflect.ssrAC.html">mathcomp.ssreflect.ssrAC</a>]<br/>
<a href="mathcomp.ssreflect.ssrAC.html#AC.HB_unnamed_factory_1">AC.HB_unnamed_factory_1</a> [in <a href="mathcomp.ssreflect.ssrAC.html">mathcomp.ssreflect.ssrAC</a>]<br/>
<a href="mathcomp.ssreflect.ssrAC.html#AC.Leaf_of_nat">AC.Leaf_of_nat</a> [in <a href="mathcomp.ssreflect.ssrAC.html">mathcomp.ssreflect.ssrAC</a>]<br/>
<a href="mathcomp.ssreflect.ssrAC.html#AC.pattern">AC.pattern</a> [in <a href="mathcomp.ssreflect.ssrAC.html">mathcomp.ssreflect.ssrAC</a>]<br/>
<a href="mathcomp.ssreflect.ssrAC.html#AC.pos">AC.pos</a> [in <a href="mathcomp.ssreflect.ssrAC.html">mathcomp.ssreflect.ssrAC</a>]<br/>
<a href="mathcomp.ssreflect.ssrAC.html#AC.serial">AC.serial</a> [in <a href="mathcomp.ssreflect.ssrAC.html">mathcomp.ssreflect.ssrAC</a>]<br/>
<a href="mathcomp.ssreflect.ssrAC.html#AC.set_pos_trec">AC.set_pos_trec</a> [in <a href="mathcomp.ssreflect.ssrAC.html">mathcomp.ssreflect.ssrAC</a>]<br/>
<a href="mathcomp.ssreflect.ssrAC.html#AC.set_pos">AC.set_pos</a> [in <a href="mathcomp.ssreflect.ssrAC.html">mathcomp.ssreflect.ssrAC</a>]<br/>
<a href="mathcomp.ssreflect.ssrAC.html#AC.syntax_sind">AC.syntax_sind</a> [in <a href="mathcomp.ssreflect.ssrAC.html">mathcomp.ssreflect.ssrAC</a>]<br/>
<a href="mathcomp.ssreflect.ssrAC.html#AC.syntax_rec">AC.syntax_rec</a> [in <a href="mathcomp.ssreflect.ssrAC.html">mathcomp.ssreflect.ssrAC</a>]<br/>
<a href="mathcomp.ssreflect.ssrAC.html#AC.syntax_ind">AC.syntax_ind</a> [in <a href="mathcomp.ssreflect.ssrAC.html">mathcomp.ssreflect.ssrAC</a>]<br/>
<a href="mathcomp.ssreflect.ssrAC.html#AC.syntax_rect">AC.syntax_rect</a> [in <a href="mathcomp.ssreflect.ssrAC.html">mathcomp.ssreflect.ssrAC</a>]<br/>
<a href="mathcomp.ssreflect.ssrAC.html#AC.unzip">AC.unzip</a> [in <a href="mathcomp.ssreflect.ssrAC.html">mathcomp.ssreflect.ssrAC</a>]<br/>
<a href="mathcomp.algebra.sesquilinear.html#additivel_subproof">additivel_subproof</a> [in <a href="mathcomp.algebra.sesquilinear.html">mathcomp.algebra.sesquilinear</a>]<br/>
<a href="mathcomp.algebra.sesquilinear.html#additiver_subproof">additiver_subproof</a> [in <a href="mathcomp.algebra.sesquilinear.html">mathcomp.algebra.sesquilinear</a>]<br/>
<a href="mathcomp.algebra.matrix.html#addmx">addmx</a> [in <a href="mathcomp.algebra.matrix.html">mathcomp.algebra.matrix</a>]<br/>
<a href="mathcomp.algebra.matrix.html#addmxA">addmxA</a> [in <a href="mathcomp.algebra.matrix.html">mathcomp.algebra.matrix</a>]<br/>
<a href="mathcomp.algebra.matrix.html#addmxC">addmxC</a> [in <a href="mathcomp.algebra.matrix.html">mathcomp.algebra.matrix</a>]<br/>
<a href="mathcomp.ssreflect.ssrnat.html#addn">addn</a> [in <a href="mathcomp.ssreflect.ssrnat.html">mathcomp.ssreflect.ssrnat</a>]<br/>
<a href="mathcomp.ssreflect.ssrnat.html#addn_rec">addn_rec</a> [in <a href="mathcomp.ssreflect.ssrnat.html">mathcomp.ssreflect.ssrnat</a>]<br/>
<a href="mathcomp.algebra.rat.html#addq">addq</a> [in <a href="mathcomp.algebra.rat.html">mathcomp.algebra.rat</a>]<br/>
<a href="mathcomp.algebra.rat.html#addq_subdef">addq_subdef</a> [in <a href="mathcomp.algebra.rat.html">mathcomp.algebra.rat</a>]<br/>
<a href="mathcomp.algebra.mxalgebra.html#addsmx_body__canonical__Monoid_ComLaw">addsmx_body__canonical__Monoid_ComLaw</a> [in <a href="mathcomp.algebra.mxalgebra.html">mathcomp.algebra.mxalgebra</a>]<br/>
<a href="mathcomp.algebra.mxalgebra.html#addsmx_body__canonical__Monoid_Law">addsmx_body__canonical__Monoid_Law</a> [in <a href="mathcomp.algebra.mxalgebra.html">mathcomp.algebra.mxalgebra</a>]<br/>
<a href="mathcomp.algebra.mxalgebra.html#addsmx_body__canonical__SemiGroup_ComLaw">addsmx_body__canonical__SemiGroup_ComLaw</a> [in <a href="mathcomp.algebra.mxalgebra.html">mathcomp.algebra.mxalgebra</a>]<br/>
<a href="mathcomp.algebra.mxalgebra.html#addsmx_body__canonical__SemiGroup_Law">addsmx_body__canonical__SemiGroup_Law</a> [in <a href="mathcomp.algebra.mxalgebra.html">mathcomp.algebra.mxalgebra</a>]<br/>
<a href="mathcomp.algebra.mxalgebra.html#addsmx_unlockable">addsmx_unlockable</a> [in <a href="mathcomp.algebra.mxalgebra.html">mathcomp.algebra.mxalgebra</a>]<br/>
<a href="mathcomp.algebra.mxalgebra.html#addsmx_unlock_subterm">addsmx_unlock_subterm</a> [in <a href="mathcomp.algebra.mxalgebra.html">mathcomp.algebra.mxalgebra</a>]<br/>
<a href="mathcomp.algebra.mxalgebra.html#addsmx_nop">addsmx_nop</a> [in <a href="mathcomp.algebra.mxalgebra.html">mathcomp.algebra.mxalgebra</a>]<br/>
<a href="mathcomp.algebra.mxalgebra.html#addsmx.body">addsmx.body</a> [in <a href="mathcomp.algebra.mxalgebra.html">mathcomp.algebra.mxalgebra</a>]<br/>
<a href="mathcomp.algebra.mxalgebra.html#addsmx.unlock">addsmx.unlock</a> [in <a href="mathcomp.algebra.mxalgebra.html">mathcomp.algebra.mxalgebra</a>]<br/>
<a href="mathcomp.algebra.vector.html#addv">addv</a> [in <a href="mathcomp.algebra.vector.html">mathcomp.algebra.vector</a>]<br/>
<a href="mathcomp.algebra.vector.html#addv_pi2">addv_pi2</a> [in <a href="mathcomp.algebra.vector.html">mathcomp.algebra.vector</a>]<br/>
<a href="mathcomp.algebra.vector.html#addv_pi1">addv_pi1</a> [in <a href="mathcomp.algebra.vector.html">mathcomp.algebra.vector</a>]<br/>
<a href="mathcomp.algebra.ssralg.html#add_pair">add_pair</a> [in <a href="mathcomp.algebra.ssralg.html">mathcomp.algebra.ssralg</a>]<br/>
<a href="mathcomp.algebra.vector.html#add_lfun">add_lfun</a> [in <a href="mathcomp.algebra.vector.html">mathcomp.algebra.vector</a>]<br/>
<a href="mathcomp.algebra.poly.html#add_poly_unlockable">add_poly_unlockable</a> [in <a href="mathcomp.algebra.poly.html">mathcomp.algebra.poly</a>]<br/>
<a href="mathcomp.algebra.poly.html#add_poly">add_poly</a> [in <a href="mathcomp.algebra.poly.html">mathcomp.algebra.poly</a>]<br/>
<a href="mathcomp.algebra.poly.html#add_poly_def">add_poly_def</a> [in <a href="mathcomp.algebra.poly.html">mathcomp.algebra.poly</a>]<br/>
<a href="mathcomp.algebra.matrix.html#add0mx">add0mx</a> [in <a href="mathcomp.algebra.matrix.html">mathcomp.algebra.matrix</a>]<br/>
<a href="mathcomp.ssreflect.fintype.html#adhoc_seq_sub_finType">adhoc_seq_sub_finType</a> [in <a href="mathcomp.ssreflect.fintype.html">mathcomp.ssreflect.fintype</a>]<br/>
<a href="mathcomp.ssreflect.fintype.html#adhoc_seq_sub_countType">adhoc_seq_sub_countType</a> [in <a href="mathcomp.ssreflect.fintype.html">mathcomp.ssreflect.fintype</a>]<br/>
<a href="mathcomp.ssreflect.fintype.html#adhoc_seq_sub_choiceType">adhoc_seq_sub_choiceType</a> [in <a href="mathcomp.ssreflect.fintype.html">mathcomp.ssreflect.fintype</a>]<br/>
<a href="mathcomp.field.fieldext.html#adjoin_degree">adjoin_degree</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.algebra.matrix.html#adjugate">adjugate</a> [in <a href="mathcomp.algebra.matrix.html">mathcomp.algebra.matrix</a>]<br/>
<a href="mathcomp.field.galois.html#AEnd_FinGroup.kAEndf_group">AEnd_FinGroup.kAEndf_group</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#AEnd_FinGroup.kAEnd_group">AEnd_FinGroup.kAEnd_group</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#AEnd_FinGroup.kAEndf">AEnd_FinGroup.kAEndf</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#AEnd_FinGroup.kAEnd">AEnd_FinGroup.kAEnd</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#AEnd_FinGroup.falgebra_ahom__canonical__fingroup_FinGroup">AEnd_FinGroup.falgebra_ahom__canonical__fingroup_FinGroup</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#AEnd_FinGroup.HB_unnamed_mixin_46">AEnd_FinGroup.HB_unnamed_mixin_46</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#AEnd_FinGroup.falgebra_ahom__canonical__fingroup_BaseFinGroup">AEnd_FinGroup.falgebra_ahom__canonical__fingroup_BaseFinGroup</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#AEnd_FinGroup.HB_unnamed_mixin_45">AEnd_FinGroup.HB_unnamed_mixin_45</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#AEnd_FinGroup.fingroup_isMulGroup__to__fingroup_isMulBaseGroup">AEnd_FinGroup.fingroup_isMulGroup__to__fingroup_isMulBaseGroup</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#AEnd_FinGroup.fingroup_isMulGroup__to__fingroup_BaseFinGroup_isGroup">AEnd_FinGroup.fingroup_isMulGroup__to__fingroup_BaseFinGroup_isGroup</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#AEnd_FinGroup.HB_unnamed_factory_42">AEnd_FinGroup.HB_unnamed_factory_42</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#AEnd_FinGroup.comp_AEnd">AEnd_FinGroup.comp_AEnd</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#AEnd_FinGroup.falgebra_ahom__canonical__fintype_SubFinite">AEnd_FinGroup.falgebra_ahom__canonical__fintype_SubFinite</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#AEnd_FinGroup.falgebra_ahom__canonical__fintype_Finite">AEnd_FinGroup.falgebra_ahom__canonical__fintype_Finite</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#AEnd_FinGroup.HB_unnamed_factory_40">AEnd_FinGroup.HB_unnamed_factory_40</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#AEnd_FinGroup.falgebra_ahom__canonical__choice_SubCountable">AEnd_FinGroup.falgebra_ahom__canonical__choice_SubCountable</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#AEnd_FinGroup.falgebra_ahom__canonical__choice_Countable">AEnd_FinGroup.falgebra_ahom__canonical__choice_Countable</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#AEnd_FinGroup.HB_unnamed_mixin_39">AEnd_FinGroup.HB_unnamed_mixin_39</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#AEnd_FinGroup.choice_Countable__to__choice_Choice_isCountable">AEnd_FinGroup.choice_Countable__to__choice_Choice_isCountable</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#AEnd_FinGroup.choice_Countable__to__eqtype_hasDecEq">AEnd_FinGroup.choice_Countable__to__eqtype_hasDecEq</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#AEnd_FinGroup.choice_Countable__to__choice_hasChoice">AEnd_FinGroup.choice_Countable__to__choice_hasChoice</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#AEnd_FinGroup.HB_unnamed_factory_35">AEnd_FinGroup.HB_unnamed_factory_35</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.field.galois.html#AEnd_FinGroup.inAEnd">AEnd_FinGroup.inAEnd</a> [in <a href="mathcomp.field.galois.html">mathcomp.field.galois</a>]<br/>
<a href="mathcomp.fingroup.action.html#afix">afix</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.field.falgebra.html#agenv">agenv</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#agenv_aspace">agenv_aspace</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#ahom_in">ahom_in</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.fieldext.html#aimg_aspace">aimg_aspace</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.algnum.html#Aint">Aint</a> [in <a href="mathcomp.field.algnum.html">mathcomp.field.algnum</a>]<br/>
<a href="mathcomp.field.cyclotomic.html#algC_intr_inj">algC_intr_inj</a> [in <a href="mathcomp.field.cyclotomic.html">mathcomp.field.cyclotomic</a>]<br/>
<a href="mathcomp.field.algC.html#algC_algC_invaut__canonical__GRing_RMorphism">algC_algC_invaut__canonical__GRing_RMorphism</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#algC_algC_invaut__canonical__GRing_Additive">algC_algC_invaut__canonical__GRing_Additive</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#algC_invaut">algC_invaut</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#algC_algebraic">algC_algebraic</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.algebra.mxpoly.html#algebraicOver">algebraicOver</a> [in <a href="mathcomp.algebra.mxpoly.html">mathcomp.algebra.mxpoly</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.choice_Countable__to__choice_Choice_isCountable">Algebraics.choice_Countable__to__choice_Choice_isCountable</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.divisor">Algebraics.divisor</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Exports.CdivE">Algebraics.Exports.CdivE</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Exports.Crat">Algebraics.Exports.Crat</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Exports.dvdC">Algebraics.Exports.dvdC</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Exports.eqCmod">Algebraics.Exports.eqCmod</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Exports.getCrat">Algebraics.Exports.getCrat</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Exports.minCpoly">Algebraics.Exports.minCpoly</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.HB_unnamed_mixin_136">Algebraics.HB_unnamed_mixin_136</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.HB_unnamed_factory_132">Algebraics.HB_unnamed_factory_132</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.HB_unnamed_mixin_131">Algebraics.HB_unnamed_mixin_131</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.HB_unnamed_factory_129">Algebraics.HB_unnamed_factory_129</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.HB_unnamed_mixin_128">Algebraics.HB_unnamed_mixin_128</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.HB_unnamed_mixin_127">Algebraics.HB_unnamed_mixin_127</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.HB_unnamed_mixin_126">Algebraics.HB_unnamed_mixin_126</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.HB_unnamed_mixin_125">Algebraics.HB_unnamed_mixin_125</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.HB_unnamed_mixin_124">Algebraics.HB_unnamed_mixin_124</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.HB_unnamed_mixin_123">Algebraics.HB_unnamed_mixin_123</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.HB_unnamed_mixin_122">Algebraics.HB_unnamed_mixin_122</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.HB_unnamed_mixin_121">Algebraics.HB_unnamed_mixin_121</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.HB_unnamed_mixin_120">Algebraics.HB_unnamed_mixin_120</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.HB_unnamed_mixin_119">Algebraics.HB_unnamed_mixin_119</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.HB_unnamed_mixin_118">Algebraics.HB_unnamed_mixin_118</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.HB_unnamed_mixin_117">Algebraics.HB_unnamed_mixin_117</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.HB_unnamed_mixin_116">Algebraics.HB_unnamed_mixin_116</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.HB_unnamed_mixin_115">Algebraics.HB_unnamed_mixin_115</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.HB_unnamed_mixin_114">Algebraics.HB_unnamed_mixin_114</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.HB_unnamed_factory_98">Algebraics.HB_unnamed_factory_98</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__CountRing_ClosedField">Algebraics.Implementation_type__canonical__CountRing_ClosedField</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__CountRing_DecidableField">Algebraics.Implementation_type__canonical__CountRing_DecidableField</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__CountRing_Field">Algebraics.Implementation_type__canonical__CountRing_Field</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__CountRing_IntegralDomain">Algebraics.Implementation_type__canonical__CountRing_IntegralDomain</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__CountRing_ComUnitRing">Algebraics.Implementation_type__canonical__CountRing_ComUnitRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__CountRing_ComRing">Algebraics.Implementation_type__canonical__CountRing_ComRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__CountRing_UnitRing">Algebraics.Implementation_type__canonical__CountRing_UnitRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__CountRing_Ring">Algebraics.Implementation_type__canonical__CountRing_Ring</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__CountRing_Zmodule">Algebraics.Implementation_type__canonical__CountRing_Zmodule</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__CountRing_ComSemiRing">Algebraics.Implementation_type__canonical__CountRing_ComSemiRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__CountRing_SemiRing">Algebraics.Implementation_type__canonical__CountRing_SemiRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__CountRing_Nmodule">Algebraics.Implementation_type__canonical__CountRing_Nmodule</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__choice_Countable">Algebraics.Implementation_type__canonical__choice_Countable</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__Num_ArchiClosedField">Algebraics.Implementation_type__canonical__Num_ArchiClosedField</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__Num_ArchiNumField">Algebraics.Implementation_type__canonical__Num_ArchiNumField</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__Num_ArchiNumDomain">Algebraics.Implementation_type__canonical__Num_ArchiNumDomain</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__Num_ClosedField">Algebraics.Implementation_type__canonical__Num_ClosedField</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__Num_NumField">Algebraics.Implementation_type__canonical__Num_NumField</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__Num_NumDomain">Algebraics.Implementation_type__canonical__Num_NumDomain</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__Num_NormedZmodule">Algebraics.Implementation_type__canonical__Num_NormedZmodule</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__GRing_ClosedField">Algebraics.Implementation_type__canonical__GRing_ClosedField</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__GRing_DecidableField">Algebraics.Implementation_type__canonical__GRing_DecidableField</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__GRing_Field">Algebraics.Implementation_type__canonical__GRing_Field</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__GRing_IntegralDomain">Algebraics.Implementation_type__canonical__GRing_IntegralDomain</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__GRing_ComUnitRing">Algebraics.Implementation_type__canonical__GRing_ComUnitRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__GRing_UnitRing">Algebraics.Implementation_type__canonical__GRing_UnitRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__GRing_ComRing">Algebraics.Implementation_type__canonical__GRing_ComRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__GRing_Ring">Algebraics.Implementation_type__canonical__GRing_Ring</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__Num_POrderedZmodule">Algebraics.Implementation_type__canonical__Num_POrderedZmodule</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__GRing_Zmodule">Algebraics.Implementation_type__canonical__GRing_Zmodule</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__GRing_ComSemiRing">Algebraics.Implementation_type__canonical__GRing_ComSemiRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__GRing_SemiRing">Algebraics.Implementation_type__canonical__GRing_SemiRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__Order_POrder">Algebraics.Implementation_type__canonical__Order_POrder</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__GRing_Nmodule">Algebraics.Implementation_type__canonical__GRing_Nmodule</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__choice_Choice">Algebraics.Implementation_type__canonical__choice_Choice</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation_type__canonical__eqtype_Equality">Algebraics.Implementation_type__canonical__eqtype_Equality</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.add">Algebraics.Implementation.add</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.algC_isComplex__to__Num_Zmodule_isNormed__93">Algebraics.Implementation.algC_isComplex__to__Num_Zmodule_isNormed__93</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.algC_isComplex__to__Num_isNumRing__91">Algebraics.Implementation.algC_isComplex__to__Num_isNumRing__91</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.algC_isComplex__to__Order_isDuallyPOrder__89">Algebraics.Implementation.algC_isComplex__to__Order_isDuallyPOrder__89</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.algC_isComplex__to__Num_NumField_isImaginary__87">Algebraics.Implementation.algC_isComplex__to__Num_NumField_isImaginary__87</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.algC_isComplex__to__Num_Zmodule_isNormed">Algebraics.Implementation.algC_isComplex__to__Num_Zmodule_isNormed</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.algC_isComplex__to__Num_isNumRing">Algebraics.Implementation.algC_isComplex__to__Num_isNumRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.algC_isComplex__to__Order_isDuallyPOrder">Algebraics.Implementation.algC_isComplex__to__Order_isDuallyPOrder</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.algC_isComplex__to__Num_NumField_isImaginary">Algebraics.Implementation.algC_isComplex__to__Num_NumField_isImaginary</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.choice_isCountable__to__choice_Choice_isCountable">Algebraics.Implementation.choice_isCountable__to__choice_Choice_isCountable</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.choice_Choice__to__choice_hasChoice">Algebraics.Implementation.choice_Choice__to__choice_hasChoice</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.closed_field_Field_isAlgClosed__to__GRing_Field_isDecField">Algebraics.Implementation.closed_field_Field_isAlgClosed__to__GRing_Field_isDecField</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.closed_field_Field_isAlgClosed__to__GRing_DecField_isAlgClosed">Algebraics.Implementation.closed_field_Field_isAlgClosed__to__GRing_DecField_isAlgClosed</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.conj">Algebraics.Implementation.conj</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.conjL">Algebraics.Implementation.conjL</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.conjMixin">Algebraics.Implementation.conjMixin</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.CtoL">Algebraics.Implementation.CtoL</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.eq_root_equiv">Algebraics.Implementation.eq_root_equiv</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.eq_root">Algebraics.Implementation.eq_root</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.generic_quotient_EqQuotient__to__generic_quotient_isEqQuotient">Algebraics.Implementation.generic_quotient_EqQuotient__to__generic_quotient_isEqQuotient</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.generic_quotient_EqQuotient__to__eqtype_hasDecEq">Algebraics.Implementation.generic_quotient_EqQuotient__to__eqtype_hasDecEq</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.generic_quotient_EqQuotient__to__generic_quotient_isQuotient">Algebraics.Implementation.generic_quotient_EqQuotient__to__generic_quotient_isQuotient</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.GRing_ComRing_isField__to__GRing_Ring_hasMulInverse">Algebraics.Implementation.GRing_ComRing_isField__to__GRing_Ring_hasMulInverse</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.GRing_ComRing_isField__to__GRing_UnitRing_isField">Algebraics.Implementation.GRing_ComRing_isField__to__GRing_UnitRing_isField</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.GRing_ComRing_isField__to__GRing_ComUnitRing_isIntegral">Algebraics.Implementation.GRing_ComRing_isField__to__GRing_ComUnitRing_isIntegral</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.GRing_Zmodule_isComRing__to__GRing_Nmodule_isSemiRing">Algebraics.Implementation.GRing_Zmodule_isComRing__to__GRing_Nmodule_isSemiRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.GRing_Zmodule_isComRing__to__GRing_SemiRing_hasCommutativeMul">Algebraics.Implementation.GRing_Zmodule_isComRing__to__GRing_SemiRing_hasCommutativeMul</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.GRing_isAdditive__to__GRing_isSemiAdditive">Algebraics.Implementation.GRing_isAdditive__to__GRing_isSemiAdditive</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.GRing_isZmodule__to__GRing_isNmodule">Algebraics.Implementation.GRing_isZmodule__to__GRing_isNmodule</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.GRing_isZmodule__to__GRing_Nmodule_isZmodule">Algebraics.Implementation.GRing_isZmodule__to__GRing_Nmodule_isZmodule</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.GRing_ClosedField__to__GRing_DecField_isAlgClosed">Algebraics.Implementation.GRing_ClosedField__to__GRing_DecField_isAlgClosed</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.GRing_ClosedField__to__GRing_UnitRing_isField">Algebraics.Implementation.GRing_ClosedField__to__GRing_UnitRing_isField</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.GRing_ClosedField__to__GRing_ComUnitRing_isIntegral">Algebraics.Implementation.GRing_ClosedField__to__GRing_ComUnitRing_isIntegral</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.GRing_ClosedField__to__GRing_Field_isDecField">Algebraics.Implementation.GRing_ClosedField__to__GRing_Field_isDecField</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.GRing_ClosedField__to__GRing_Ring_hasMulInverse">Algebraics.Implementation.GRing_ClosedField__to__GRing_Ring_hasMulInverse</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.GRing_ClosedField__to__GRing_Nmodule_isZmodule">Algebraics.Implementation.GRing_ClosedField__to__GRing_Nmodule_isZmodule</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.GRing_ClosedField__to__GRing_SemiRing_hasCommutativeMul">Algebraics.Implementation.GRing_ClosedField__to__GRing_SemiRing_hasCommutativeMul</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.GRing_ClosedField__to__GRing_Nmodule_isSemiRing">Algebraics.Implementation.GRing_ClosedField__to__GRing_Nmodule_isSemiRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.GRing_ClosedField__to__eqtype_hasDecEq">Algebraics.Implementation.GRing_ClosedField__to__eqtype_hasDecEq</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.GRing_ClosedField__to__choice_hasChoice">Algebraics.Implementation.GRing_ClosedField__to__choice_hasChoice</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.GRing_ClosedField__to__GRing_isNmodule">Algebraics.Implementation.GRing_ClosedField__to__GRing_isNmodule</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_97">Algebraics.Implementation.HB_unnamed_mixin_97</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_96">Algebraics.Implementation.HB_unnamed_mixin_96</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_95">Algebraics.Implementation.HB_unnamed_mixin_95</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_94">Algebraics.Implementation.HB_unnamed_mixin_94</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_factory_85">Algebraics.Implementation.HB_unnamed_factory_85</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_84">Algebraics.Implementation.HB_unnamed_mixin_84</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_83">Algebraics.Implementation.HB_unnamed_mixin_83</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_factory_80">Algebraics.Implementation.HB_unnamed_factory_80</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_79">Algebraics.Implementation.HB_unnamed_mixin_79</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_78">Algebraics.Implementation.HB_unnamed_mixin_78</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_77">Algebraics.Implementation.HB_unnamed_mixin_77</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_factory_73">Algebraics.Implementation.HB_unnamed_factory_73</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_factory_71">Algebraics.Implementation.HB_unnamed_factory_71</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_70">Algebraics.Implementation.HB_unnamed_mixin_70</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_69">Algebraics.Implementation.HB_unnamed_mixin_69</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_factory_66">Algebraics.Implementation.HB_unnamed_factory_66</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_65">Algebraics.Implementation.HB_unnamed_mixin_65</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_factory_63">Algebraics.Implementation.HB_unnamed_factory_63</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_62">Algebraics.Implementation.HB_unnamed_mixin_62</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_61">Algebraics.Implementation.HB_unnamed_mixin_61</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_factory_58">Algebraics.Implementation.HB_unnamed_factory_58</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_57">Algebraics.Implementation.HB_unnamed_mixin_57</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_factory_53">Algebraics.Implementation.HB_unnamed_factory_53</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_52">Algebraics.Implementation.HB_unnamed_mixin_52</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_factory_49">Algebraics.Implementation.HB_unnamed_factory_49</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_48">Algebraics.Implementation.HB_unnamed_mixin_48</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_47">Algebraics.Implementation.HB_unnamed_mixin_47</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_46">Algebraics.Implementation.HB_unnamed_mixin_46</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_factory_42">Algebraics.Implementation.HB_unnamed_factory_42</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_41">Algebraics.Implementation.HB_unnamed_mixin_41</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_40">Algebraics.Implementation.HB_unnamed_mixin_40</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_39">Algebraics.Implementation.HB_unnamed_mixin_39</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_38">Algebraics.Implementation.HB_unnamed_mixin_38</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_factory_33">Algebraics.Implementation.HB_unnamed_factory_33</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_32">Algebraics.Implementation.HB_unnamed_mixin_32</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_31">Algebraics.Implementation.HB_unnamed_mixin_31</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_30">Algebraics.Implementation.HB_unnamed_mixin_30</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_29">Algebraics.Implementation.HB_unnamed_mixin_29</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_28">Algebraics.Implementation.HB_unnamed_mixin_28</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_27">Algebraics.Implementation.HB_unnamed_mixin_27</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_26">Algebraics.Implementation.HB_unnamed_mixin_26</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_25">Algebraics.Implementation.HB_unnamed_mixin_25</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_24">Algebraics.Implementation.HB_unnamed_mixin_24</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_23">Algebraics.Implementation.HB_unnamed_mixin_23</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_mixin_22">Algebraics.Implementation.HB_unnamed_mixin_22</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.HB_unnamed_factory_10">Algebraics.Implementation.HB_unnamed_factory_10</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__Num_ClosedField">Algebraics.Implementation.Implementation_type__canonical__Num_ClosedField</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__Num_NumField">Algebraics.Implementation.Implementation_type__canonical__Num_NumField</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__Num_NumDomain">Algebraics.Implementation.Implementation_type__canonical__Num_NumDomain</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__Num_NormedZmodule">Algebraics.Implementation.Implementation_type__canonical__Num_NormedZmodule</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__Num_POrderedZmodule">Algebraics.Implementation.Implementation_type__canonical__Num_POrderedZmodule</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__Order_POrder">Algebraics.Implementation.Implementation_type__canonical__Order_POrder</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__CountRing_ClosedField">Algebraics.Implementation.Implementation_type__canonical__CountRing_ClosedField</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__GRing_ClosedField">Algebraics.Implementation.Implementation_type__canonical__GRing_ClosedField</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__CountRing_DecidableField">Algebraics.Implementation.Implementation_type__canonical__CountRing_DecidableField</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__GRing_DecidableField">Algebraics.Implementation.Implementation_type__canonical__GRing_DecidableField</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__CountRing_Field">Algebraics.Implementation.Implementation_type__canonical__CountRing_Field</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__GRing_Field">Algebraics.Implementation.Implementation_type__canonical__GRing_Field</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__CountRing_IntegralDomain">Algebraics.Implementation.Implementation_type__canonical__CountRing_IntegralDomain</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__GRing_IntegralDomain">Algebraics.Implementation.Implementation_type__canonical__GRing_IntegralDomain</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__CountRing_ComUnitRing">Algebraics.Implementation.Implementation_type__canonical__CountRing_ComUnitRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__GRing_ComUnitRing">Algebraics.Implementation.Implementation_type__canonical__GRing_ComUnitRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__CountRing_UnitRing">Algebraics.Implementation.Implementation_type__canonical__CountRing_UnitRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__GRing_UnitRing">Algebraics.Implementation.Implementation_type__canonical__GRing_UnitRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_CtoL__canonical__GRing_RMorphism">Algebraics.Implementation.Implementation_CtoL__canonical__GRing_RMorphism</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__CountRing_ComRing">Algebraics.Implementation.Implementation_type__canonical__CountRing_ComRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__GRing_ComRing">Algebraics.Implementation.Implementation_type__canonical__GRing_ComRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__CountRing_ComSemiRing">Algebraics.Implementation.Implementation_type__canonical__CountRing_ComSemiRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__GRing_ComSemiRing">Algebraics.Implementation.Implementation_type__canonical__GRing_ComSemiRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__CountRing_Ring">Algebraics.Implementation.Implementation_type__canonical__CountRing_Ring</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__GRing_Ring">Algebraics.Implementation.Implementation_type__canonical__GRing_Ring</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__CountRing_SemiRing">Algebraics.Implementation.Implementation_type__canonical__CountRing_SemiRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__GRing_SemiRing">Algebraics.Implementation.Implementation_type__canonical__GRing_SemiRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_CtoL__canonical__GRing_Additive">Algebraics.Implementation.Implementation_CtoL__canonical__GRing_Additive</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__CountRing_Zmodule">Algebraics.Implementation.Implementation_type__canonical__CountRing_Zmodule</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__GRing_Zmodule">Algebraics.Implementation.Implementation_type__canonical__GRing_Zmodule</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__CountRing_Nmodule">Algebraics.Implementation.Implementation_type__canonical__CountRing_Nmodule</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__GRing_Nmodule">Algebraics.Implementation.Implementation_type__canonical__GRing_Nmodule</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__choice_Countable">Algebraics.Implementation.Implementation_type__canonical__choice_Countable</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__choice_Choice">Algebraics.Implementation.Implementation_type__canonical__choice_Choice</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__generic_quotient_EqQuotient">Algebraics.Implementation.Implementation_type__canonical__generic_quotient_EqQuotient</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__eqtype_Equality">Algebraics.Implementation.Implementation_type__canonical__eqtype_Equality</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_type__canonical__generic_quotient_Quotient">Algebraics.Implementation.Implementation_type__canonical__generic_quotient_Quotient</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_L'__canonical__Num_ClosedField">Algebraics.Implementation.Implementation_L'__canonical__Num_ClosedField</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_L'__canonical__Num_NumField">Algebraics.Implementation.Implementation_L'__canonical__Num_NumField</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_L'__canonical__Num_NumDomain">Algebraics.Implementation.Implementation_L'__canonical__Num_NumDomain</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_L'__canonical__Num_NormedZmodule">Algebraics.Implementation.Implementation_L'__canonical__Num_NormedZmodule</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_L'__canonical__Num_POrderedZmodule">Algebraics.Implementation.Implementation_L'__canonical__Num_POrderedZmodule</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_L'__canonical__Order_POrder">Algebraics.Implementation.Implementation_L'__canonical__Order_POrder</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_L'__canonical__GRing_ClosedField">Algebraics.Implementation.Implementation_L'__canonical__GRing_ClosedField</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_L'__canonical__GRing_DecidableField">Algebraics.Implementation.Implementation_L'__canonical__GRing_DecidableField</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_L'__canonical__GRing_Field">Algebraics.Implementation.Implementation_L'__canonical__GRing_Field</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_L'__canonical__GRing_IntegralDomain">Algebraics.Implementation.Implementation_L'__canonical__GRing_IntegralDomain</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_L'__canonical__GRing_ComUnitRing">Algebraics.Implementation.Implementation_L'__canonical__GRing_ComUnitRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_L'__canonical__GRing_UnitRing">Algebraics.Implementation.Implementation_L'__canonical__GRing_UnitRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_L'__canonical__GRing_ComRing">Algebraics.Implementation.Implementation_L'__canonical__GRing_ComRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_L'__canonical__GRing_Ring">Algebraics.Implementation.Implementation_L'__canonical__GRing_Ring</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_L'__canonical__GRing_Zmodule">Algebraics.Implementation.Implementation_L'__canonical__GRing_Zmodule</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_L'__canonical__GRing_ComSemiRing">Algebraics.Implementation.Implementation_L'__canonical__GRing_ComSemiRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_L'__canonical__GRing_SemiRing">Algebraics.Implementation.Implementation_L'__canonical__GRing_SemiRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_L'__canonical__GRing_Nmodule">Algebraics.Implementation.Implementation_L'__canonical__GRing_Nmodule</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_L'__canonical__choice_Choice">Algebraics.Implementation.Implementation_L'__canonical__choice_Choice</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.Implementation_L'__canonical__eqtype_Equality">Algebraics.Implementation.Implementation_L'__canonical__eqtype_Equality</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.inv">Algebraics.Implementation.inv</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.isCountable">Algebraics.Implementation.isCountable</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.L">Algebraics.Implementation.L</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.LtoC">Algebraics.Implementation.LtoC</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.L'">Algebraics.Implementation.L'</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.mul">Algebraics.Implementation.mul</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.one">Algebraics.Implementation.one</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.opp">Algebraics.Implementation.opp</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.QtoL">Algebraics.Implementation.QtoL</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.rootQtoL">Algebraics.Implementation.rootQtoL</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.type">Algebraics.Implementation.type</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Implementation.zero">Algebraics.Implementation.zero</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Internals.algC_divisor">Algebraics.Internals.algC_divisor</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Internals.int_divisor">Algebraics.Internals.int_divisor</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Internals.nat_divisor">Algebraics.Internals.nat_divisor</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Num_NumDomain_bounded_isArchimedean__to__Num_NumDomain_isArchimedean">Algebraics.Num_NumDomain_bounded_isArchimedean__to__Num_NumDomain_isArchimedean</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Num_ClosedField__to__Num_NumField_isImaginary">Algebraics.Num_ClosedField__to__Num_NumField_isImaginary</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Num_ClosedField__to__Num_isNumRing">Algebraics.Num_ClosedField__to__Num_isNumRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Num_ClosedField__to__Num_Zmodule_isNormed">Algebraics.Num_ClosedField__to__Num_Zmodule_isNormed</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Num_ClosedField__to__GRing_DecField_isAlgClosed">Algebraics.Num_ClosedField__to__GRing_DecField_isAlgClosed</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Num_ClosedField__to__GRing_ComUnitRing_isIntegral">Algebraics.Num_ClosedField__to__GRing_ComUnitRing_isIntegral</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Num_ClosedField__to__GRing_UnitRing_isField">Algebraics.Num_ClosedField__to__GRing_UnitRing_isField</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Num_ClosedField__to__GRing_Field_isDecField">Algebraics.Num_ClosedField__to__GRing_Field_isDecField</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Num_ClosedField__to__GRing_Ring_hasMulInverse">Algebraics.Num_ClosedField__to__GRing_Ring_hasMulInverse</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Num_ClosedField__to__GRing_Nmodule_isZmodule">Algebraics.Num_ClosedField__to__GRing_Nmodule_isZmodule</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Num_ClosedField__to__GRing_SemiRing_hasCommutativeMul">Algebraics.Num_ClosedField__to__GRing_SemiRing_hasCommutativeMul</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Num_ClosedField__to__GRing_Nmodule_isSemiRing">Algebraics.Num_ClosedField__to__GRing_Nmodule_isSemiRing</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Num_ClosedField__to__Order_isDuallyPOrder">Algebraics.Num_ClosedField__to__Order_isDuallyPOrder</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Num_ClosedField__to__eqtype_hasDecEq">Algebraics.Num_ClosedField__to__eqtype_hasDecEq</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Num_ClosedField__to__choice_hasChoice">Algebraics.Num_ClosedField__to__choice_hasChoice</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.algC.html#Algebraics.Num_ClosedField__to__GRing_isNmodule">Algebraics.Num_ClosedField__to__GRing_isNmodule</a> [in <a href="mathcomp.field.algC.html">mathcomp.field.algC</a>]<br/>
<a href="mathcomp.field.falgebra.html#Algebra_isFalgebra.phant_axioms">Algebra_isFalgebra.phant_axioms</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Algebra_isFalgebra.phant_Build">Algebra_isFalgebra.phant_Build</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Algebra_isFalgebra.Algebra_isFalgebra_A__canonical__GRing_Algebra">Algebra_isFalgebra.Algebra_isFalgebra_A__canonical__GRing_Algebra</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Algebra_isFalgebra.Algebra_isFalgebra_A__canonical__GRing_Lalgebra">Algebra_isFalgebra.Algebra_isFalgebra_A__canonical__GRing_Lalgebra</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Algebra_isFalgebra.Algebra_isFalgebra_A__canonical__vector_Vector">Algebra_isFalgebra.Algebra_isFalgebra_A__canonical__vector_Vector</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Algebra_isFalgebra.Algebra_isFalgebra_A__canonical__GRing_Lmodule">Algebra_isFalgebra.Algebra_isFalgebra_A__canonical__GRing_Lmodule</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Algebra_isFalgebra.Algebra_isFalgebra_A__canonical__GRing_Ring">Algebra_isFalgebra.Algebra_isFalgebra_A__canonical__GRing_Ring</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Algebra_isFalgebra.Algebra_isFalgebra_A__canonical__GRing_Zmodule">Algebra_isFalgebra.Algebra_isFalgebra_A__canonical__GRing_Zmodule</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Algebra_isFalgebra.Algebra_isFalgebra_A__canonical__GRing_SemiRing">Algebra_isFalgebra.Algebra_isFalgebra_A__canonical__GRing_SemiRing</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Algebra_isFalgebra.Algebra_isFalgebra_A__canonical__GRing_Nmodule">Algebra_isFalgebra.Algebra_isFalgebra_A__canonical__GRing_Nmodule</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Algebra_isFalgebra.Algebra_isFalgebra_A__canonical__choice_Choice">Algebra_isFalgebra.Algebra_isFalgebra_A__canonical__choice_Choice</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#Algebra_isFalgebra.Algebra_isFalgebra_A__canonical__eqtype_Equality">Algebra_isFalgebra.Algebra_isFalgebra_A__canonical__eqtype_Equality</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#algid">algid</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.algnum.html#algnum_dvdA__canonical__GRing_ZmodClosed">algnum_dvdA__canonical__GRing_ZmodClosed</a> [in <a href="mathcomp.field.algnum.html">mathcomp.field.algnum</a>]<br/>
<a href="mathcomp.field.algnum.html#algnum_dvdA__canonical__GRing_OppClosed">algnum_dvdA__canonical__GRing_OppClosed</a> [in <a href="mathcomp.field.algnum.html">mathcomp.field.algnum</a>]<br/>
<a href="mathcomp.field.algnum.html#algnum_dvdA__canonical__GRing_AddClosed">algnum_dvdA__canonical__GRing_AddClosed</a> [in <a href="mathcomp.field.algnum.html">mathcomp.field.algnum</a>]<br/>
<a href="mathcomp.field.algnum.html#algnum_Aint__canonical__GRing_SubringClosed">algnum_Aint__canonical__GRing_SubringClosed</a> [in <a href="mathcomp.field.algnum.html">mathcomp.field.algnum</a>]<br/>
<a href="mathcomp.field.algnum.html#algnum_Aint__canonical__GRing_ZmodClosed">algnum_Aint__canonical__GRing_ZmodClosed</a> [in <a href="mathcomp.field.algnum.html">mathcomp.field.algnum</a>]<br/>
<a href="mathcomp.field.algnum.html#algnum_Aint__canonical__GRing_SemiringClosed">algnum_Aint__canonical__GRing_SemiringClosed</a> [in <a href="mathcomp.field.algnum.html">mathcomp.field.algnum</a>]<br/>
<a href="mathcomp.field.algnum.html#algnum_Aint__canonical__GRing_Semiring2Closed">algnum_Aint__canonical__GRing_Semiring2Closed</a> [in <a href="mathcomp.field.algnum.html">mathcomp.field.algnum</a>]<br/>
<a href="mathcomp.field.algnum.html#algnum_Aint__canonical__GRing_AddClosed">algnum_Aint__canonical__GRing_AddClosed</a> [in <a href="mathcomp.field.algnum.html">mathcomp.field.algnum</a>]<br/>
<a href="mathcomp.field.algnum.html#algnum_Aint__canonical__GRing_SmulClosed">algnum_Aint__canonical__GRing_SmulClosed</a> [in <a href="mathcomp.field.algnum.html">mathcomp.field.algnum</a>]<br/>
<a href="mathcomp.field.algnum.html#algnum_Aint__canonical__GRing_OppClosed">algnum_Aint__canonical__GRing_OppClosed</a> [in <a href="mathcomp.field.algnum.html">mathcomp.field.algnum</a>]<br/>
<a href="mathcomp.field.algnum.html#algnum_Aint__canonical__GRing_MulClosed">algnum_Aint__canonical__GRing_MulClosed</a> [in <a href="mathcomp.field.algnum.html">mathcomp.field.algnum</a>]<br/>
<a href="mathcomp.field.algnum.html#algnum_Aint__canonical__GRing_Mul2Closed">algnum_Aint__canonical__GRing_Mul2Closed</a> [in <a href="mathcomp.field.algnum.html">mathcomp.field.algnum</a>]<br/>
<a href="mathcomp.field.algnum.html#algnum_Cint_span__canonical__GRing_ZmodClosed">algnum_Cint_span__canonical__GRing_ZmodClosed</a> [in <a href="mathcomp.field.algnum.html">mathcomp.field.algnum</a>]<br/>
<a href="mathcomp.field.algnum.html#algnum_Cint_span__canonical__GRing_OppClosed">algnum_Cint_span__canonical__GRing_OppClosed</a> [in <a href="mathcomp.field.algnum.html">mathcomp.field.algnum</a>]<br/>
<a href="mathcomp.field.algnum.html#algnum_Cint_span__canonical__GRing_AddClosed">algnum_Cint_span__canonical__GRing_AddClosed</a> [in <a href="mathcomp.field.algnum.html">mathcomp.field.algnum</a>]<br/>
<a href="mathcomp.field.algnum.html#algnum_Crat_span__canonical__GRing_ZmodClosed">algnum_Crat_span__canonical__GRing_ZmodClosed</a> [in <a href="mathcomp.field.algnum.html">mathcomp.field.algnum</a>]<br/>
<a href="mathcomp.field.algnum.html#algnum_Crat_span__canonical__GRing_OppClosed">algnum_Crat_span__canonical__GRing_OppClosed</a> [in <a href="mathcomp.field.algnum.html">mathcomp.field.algnum</a>]<br/>
<a href="mathcomp.field.algnum.html#algnum_Crat_span__canonical__GRing_AddClosed">algnum_Crat_span__canonical__GRing_AddClosed</a> [in <a href="mathcomp.field.algnum.html">mathcomp.field.algnum</a>]<br/>
<a href="mathcomp.ssreflect.seq.html#all">all</a> [in <a href="mathcomp.ssreflect.seq.html">mathcomp.ssreflect.seq</a>]<br/>
<a href="mathcomp.ssreflect.seq.html#allpairs">allpairs</a> [in <a href="mathcomp.ssreflect.seq.html">mathcomp.ssreflect.seq</a>]<br/>
<a href="mathcomp.ssreflect.tuple.html#allpairs_bseq">allpairs_bseq</a> [in <a href="mathcomp.ssreflect.tuple.html">mathcomp.ssreflect.tuple</a>]<br/>
<a href="mathcomp.ssreflect.tuple.html#allpairs_tuple">allpairs_tuple</a> [in <a href="mathcomp.ssreflect.tuple.html">mathcomp.ssreflect.tuple</a>]<br/>
<a href="mathcomp.ssreflect.seq.html#allpairs_dep">allpairs_dep</a> [in <a href="mathcomp.ssreflect.seq.html">mathcomp.ssreflect.seq</a>]<br/>
<a href="mathcomp.ssreflect.seq.html#allrel">allrel</a> [in <a href="mathcomp.ssreflect.seq.html">mathcomp.ssreflect.seq</a>]<br/>
<a href="mathcomp.ssreflect.seq.html#all_iff">all_iff</a> [in <a href="mathcomp.ssreflect.seq.html">mathcomp.ssreflect.seq</a>]<br/>
<a href="mathcomp.ssreflect.seq.html#all_iff_and_sind">all_iff_and_sind</a> [in <a href="mathcomp.ssreflect.seq.html">mathcomp.ssreflect.seq</a>]<br/>
<a href="mathcomp.ssreflect.seq.html#all_iff_and_rec">all_iff_and_rec</a> [in <a href="mathcomp.ssreflect.seq.html">mathcomp.ssreflect.seq</a>]<br/>
<a href="mathcomp.ssreflect.seq.html#all_iff_and_ind">all_iff_and_ind</a> [in <a href="mathcomp.ssreflect.seq.html">mathcomp.ssreflect.seq</a>]<br/>
<a href="mathcomp.ssreflect.seq.html#all_iff_and_rect">all_iff_and_rect</a> [in <a href="mathcomp.ssreflect.seq.html">mathcomp.ssreflect.seq</a>]<br/>
<a href="mathcomp.ssreflect.seq.html#all2">all2</a> [in <a href="mathcomp.ssreflect.seq.html">mathcomp.ssreflect.seq</a>]<br/>
<a href="mathcomp.solvable.alt.html#Alt">Alt</a> [in <a href="mathcomp.solvable.alt.html">mathcomp.solvable.alt</a>]<br/>
<a href="mathcomp.solvable.alt.html#Alt_group">Alt_group</a> [in <a href="mathcomp.solvable.alt.html">mathcomp.solvable.alt</a>]<br/>
<a href="mathcomp.fingroup.action.html#amove">amove</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.field.falgebra.html#amull">amull</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#amulr">amulr</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.character.mxrepresentation.html#annihilator_mx">annihilator_mx</a> [in <a href="mathcomp.character.mxrepresentation.html">mathcomp.character.mxrepresentation</a>]<br/>
<a href="mathcomp.fingroup.perm.html#aperm">aperm</a> [in <a href="mathcomp.fingroup.perm.html">mathcomp.fingroup.perm</a>]<br/>
<a href="mathcomp.ssreflect.bigop.html#applybig">applybig</a> [in <a href="mathcomp.ssreflect.bigop.html">mathcomp.ssreflect.bigop</a>]<br/>
<a href="mathcomp.algebra.sesquilinear.html#applyr_head">applyr_head</a> [in <a href="mathcomp.algebra.sesquilinear.html">mathcomp.algebra.sesquilinear</a>]<br/>
<a href="mathcomp.ssreflect.eqtype.html#app_fdelta">app_fdelta</a> [in <a href="mathcomp.ssreflect.eqtype.html">mathcomp.ssreflect.eqtype</a>]<br/>
<a href="mathcomp.ssreflect.path.html#arc">arc</a> [in <a href="mathcomp.ssreflect.path.html">mathcomp.ssreflect.path</a>]<br/>
<a href="mathcomp.ssreflect.fintype.html#arg_max">arg_max</a> [in <a href="mathcomp.ssreflect.fintype.html">mathcomp.ssreflect.fintype</a>]<br/>
<a href="mathcomp.ssreflect.fintype.html#arg_min">arg_min</a> [in <a href="mathcomp.ssreflect.fintype.html">mathcomp.ssreflect.fintype</a>]<br/>
<a href="mathcomp.solvable.jordanholder.html#asimple">asimple</a> [in <a href="mathcomp.solvable.jordanholder.html">mathcomp.solvable.jordanholder</a>]<br/>
<a href="mathcomp.field.falgebra.html#aspacef">aspacef</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.fieldext.html#aspaceOver">aspaceOver</a> [in <a href="mathcomp.field.fieldext.html">mathcomp.field.fieldext</a>]<br/>
<a href="mathcomp.field.falgebra.html#aspace_cap">aspace_cap</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.field.falgebra.html#aspace1">aspace1</a> [in <a href="mathcomp.field.falgebra.html">mathcomp.field.falgebra</a>]<br/>
<a href="mathcomp.fingroup.action.html#astab">astab</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.fingroup.action.html#astabs">astabs</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.fingroup.action.html#astabs_group">astabs_group</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.fingroup.action.html#astab_group">astab_group</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.fingroup.action.html#atrans">atrans</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.fingroup.automorphism.html#aut">aut</a> [in <a href="mathcomp.fingroup.automorphism.html">mathcomp.fingroup.automorphism</a>]<br/>
<a href="mathcomp.fingroup.automorphism.html#Aut">Aut</a> [in <a href="mathcomp.fingroup.automorphism.html">mathcomp.fingroup.automorphism</a>]<br/>
<a href="mathcomp.fingroup.action.html#autact">autact</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.fingroup.automorphism.html#autm">autm</a> [in <a href="mathcomp.fingroup.automorphism.html">mathcomp.fingroup.automorphism</a>]<br/>
<a href="mathcomp.fingroup.automorphism.html#autm_morphism">autm_morphism</a> [in <a href="mathcomp.fingroup.automorphism.html">mathcomp.fingroup.automorphism</a>]<br/>
<a href="mathcomp.fingroup.automorphism.html#Aut_isom_morphism">Aut_isom_morphism</a> [in <a href="mathcomp.fingroup.automorphism.html">mathcomp.fingroup.automorphism</a>]<br/>
<a href="mathcomp.fingroup.automorphism.html#Aut_isom">Aut_isom</a> [in <a href="mathcomp.fingroup.automorphism.html">mathcomp.fingroup.automorphism</a>]<br/>
<a href="mathcomp.fingroup.automorphism.html#Aut_group">Aut_group</a> [in <a href="mathcomp.fingroup.automorphism.html">mathcomp.fingroup.automorphism</a>]<br/>
<a href="mathcomp.fingroup.action.html#aut_groupAction">aut_groupAction</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.fingroup.action.html#aut_action">aut_action</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.fingroup.action.html#Aut_in">Aut_in</a> [in <a href="mathcomp.fingroup.action.html">mathcomp.fingroup.action</a>]<br/>
<a href="mathcomp.character.character.html#aut_Iirr">aut_Iirr</a> [in <a href="mathcomp.character.character.html">mathcomp.character.character</a>]<br/>
<br/><br/><hr/><table>
<tr>
<td>Global Index</td>
<td><a href="index_global_A.html">A</a></td>
<td><a href="index_global_B.html">B</a></td>
<td><a href="index_global_C.html">C</a></td>
<td><a href="index_global_D.html">D</a></td>
<td><a href="index_global_E.html">E</a></td>
<td><a href="index_global_F.html">F</a></td>
<td><a href="index_global_G.html">G</a></td>
<td><a href="index_global_H.html">H</a></td>
<td><a href="index_global_I.html">I</a></td>
<td><a href="index_global_J.html">J</a></td>
<td><a href="index_global_K.html">K</a></td>
<td><a href="index_global_L.html">L</a></td>
<td><a href="index_global_M.html">M</a></td>
<td><a href="index_global_N.html">N</a></td>
<td><a href="index_global_O.html">O</a></td>
<td><a href="index_global_P.html">P</a></td>
<td><a href="index_global_Q.html">Q</a></td>
<td><a href="index_global_R.html">R</a></td>
<td><a href="index_global_S.html">S</a></td>
<td><a href="index_global_T.html">T</a></td>
<td><a href="index_global_U.html">U</a></td>
<td><a href="index_global_V.html">V</a></td>
<td><a href="index_global_W.html">W</a></td>
<td><a href="index_global_X.html">X</a></td>
<td>Y</td>
<td><a href="index_global_Z.html">Z</a></td>
<td>_</td>
<td><a href="index_global_*.html">other</a></td>
<td>(54001 entries)</td>
</tr>
<tr>
<td>Notation Index</td>
<td><a href="index_notation_A.html">A</a></td>
<td><a href="index_notation_B.html">B</a></td>
<td><a href="index_notation_C.html">C</a></td>
<td><a href="index_notation_D.html">D</a></td>
<td><a href="index_notation_E.html">E</a></td>
<td><a href="index_notation_F.html">F</a></td>
<td><a href="index_notation_G.html">G</a></td>
<td><a href="index_notation_H.html">H</a></td>
<td><a href="index_notation_I.html">I</a></td>
<td>J</td>
<td><a href="index_notation_K.html">K</a></td>
<td><a href="index_notation_L.html">L</a></td>
<td><a href="index_notation_M.html">M</a></td>
<td><a href="index_notation_N.html">N</a></td>
<td><a href="index_notation_O.html">O</a></td>
<td><a href="index_notation_P.html">P</a></td>
<td><a href="index_notation_Q.html">Q</a></td>
<td><a href="index_notation_R.html">R</a></td>
<td><a href="index_notation_S.html">S</a></td>
<td>T</td>
<td><a href="index_notation_U.html">U</a></td>
<td><a href="index_notation_V.html">V</a></td>
<td>W</td>
<td>X</td>
<td>Y</td>
<td><a href="index_notation_Z.html">Z</a></td>
<td>_</td>
<td><a href="index_notation_*.html">other</a></td>
<td>(1931 entries)</td>
</tr>
<tr>
<td>Module Index</td>
<td><a href="index_module_A.html">A</a></td>
<td><a href="index_module_B.html">B</a></td>
<td><a href="index_module_C.html">C</a></td>
<td><a href="index_module_D.html">D</a></td>
<td><a href="index_module_E.html">E</a></td>
<td><a href="index_module_F.html">F</a></td>
<td><a href="index_module_G.html">G</a></td>
<td><a href="index_module_H.html">H</a></td>
<td><a href="index_module_I.html">I</a></td>
<td>J</td>
<td>K</td>
<td><a href="index_module_L.html">L</a></td>
<td><a href="index_module_M.html">M</a></td>
<td><a href="index_module_N.html">N</a></td>
<td><a href="index_module_O.html">O</a></td>
<td><a href="index_module_P.html">P</a></td>
<td><a href="index_module_Q.html">Q</a></td>
<td><a href="index_module_R.html">R</a></td>
<td><a href="index_module_S.html">S</a></td>
<td><a href="index_module_T.html">T</a></td>
<td><a href="index_module_U.html">U</a></td>
<td><a href="index_module_V.html">V</a></td>
<td>W</td>
<td>X</td>
<td>Y</td>
<td><a href="index_module_Z.html">Z</a></td>
<td>_</td>
<td>other</td>
<td>(1658 entries)</td>