-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathexports.jl
1721 lines (1721 loc) · 43.1 KB
/
exports.jl
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
# Entries are sorted with uppercase before lowercase. To resort it,
# execute: LC_COLLATE=C sort < src/exports.jl > dummy ; mv dummy src/exports.jl
export *
export @check
export @free_group
export @pbw_relations
export @perm
export @permutation_group
export @register_serialization_type
export @tropical
export ANTIC
export AbsAffineAlgebraicSet
export AbsAffineCurve
export AbsAffineRationalPoint
export AbsAffineScheme
export AbsAffineSchemeMor
export AbsAffineVariety
export AbsAlgebraicCycle
export AbsCoveredCurve
export AbsCoveredScheme
export AbsCoveredSchemeMorphism
export AbsCoveredVariety
export AbsGluing
export AbsLocalizedIdeal
export AbsLocalizedRing
export AbsLocalizedRingElem
export AbsLocalizedRingHom
export AbsMultSet
export AbsPreSheaf
export AbsProjectiveAlgebraicSet
export AbsProjectiveCurve
export AbsProjectiveScheme
export AbsProjectiveSchemeMorphism
export AbsProjectiveVariety
export AbsRationalMap
export AbstractAlgebra
export AffineAlgebraicSet
export AffineHalfspace
export AffineHyperplane
export AffineNormalToricVariety
export AffinePlaneCurve
export AffineScheme
export AffineSchemeOpenSubscheme
export AffineSchemeOpenSubschemeMor
export AffineSchemeOpenSubschemeRing
export AffineSchemeOpenSubschemeRingElem
export AffineVariety
export AlgebraicCycle
export AutomorphismGroup
export AutomorphismGroupElem
export BettiTable
export BlowupMorphism
export BorcherdsCtx
export CartierDivisor
export ClosedEmbedding
export ClosedSubvarietyOfToricVariety
export CohomologyClass
export Composition
export Cone
export CoveredScheme
export CoveredSchemeMorphism
export Covering
export CoveringMorphism
export CyclicQuotientSingularity
export DirectProductGroup
export DirectSumSheaf
export Directed
export DualRootSpaceElem
export Edge
export EffectiveCartierDivisor
export EllipticSurface
export EmptyScheme
export FPGroup
export FPGroupElem
export FreeMod
export FreeModElem
export FreeModElem_dec
export FreeMod_dec
export FreeModuleHom
export FreeModuleHom_dec
export FreeResolution
export GAP
export GAPGroupConjClass
export GAPGroupElem
export GAPGroupHomomorphism
export GL
export GO
export GSet
export GU
export GapObj
export Gluing
export Graph
export GroupConjClass
export GroupCoset
export GroupDoubleCoset
export Halfspace
export Hecke
export HilbertData
export Hyperplane
export IdealSheaf
export IncidenceMatrix
export InfiniteDimensionError
export K3Chamber
export K3_surface_automorphism_group
export LazyPoly
export LazyPolyRing
export LinearHalfspace
export LinearHyperplane
export LinearProgram, linear_program
export LinearSystem
export MPolyDecRing
export MPolyDecRingElem
export MPolyIdeal
export MPolyQuoIdeal
export MPolyQuoRing
export MPolyQuoRingElem
export MPolyRingElem
export MatrixGroup
export MatrixGroupElem
export Matroid
export MixedIntegerLinearProgram, mixed_integer_linear_program
export ModuleFP
export ModuleFPElem
export ModuleFPHom
export ModuleOrdering
export MonomialOrdering
export Nemo
export NormalToricVariety
export OO
export PBWAlgElem
export PBWAlgQuo
export PBWAlgQuoElem
export PBWAlgRing
export Partition
export PcGroup
export PcGroupElem
export PermGroup
export PermGroupElem
export PointVector
export PolyhedralComplex, polyhedral_complex
export PolyhedralFan, polyhedral_fan
export Polyhedron
export Polymake
export PreSheafOnScheme
export PrincipalOpenSubset
export ProjectiveAlgebraicSet
export ProjectiveCurve
export ProjectivePlaneCurve
export ProjectiveScheme
export ProjectiveSchemeMor
export ProjectiveVariety
export PullbackSheaf
export PushforwardSheaf
export QQ
export R10_matroid
export RationalEquivalenceClass
export RayVector
export RootSpaceElem
export RootSystem
export SIM_body_polytope
export SL
export SLPoly
export SLPolyRing
export SO
export SU
export Scheme
export SchemeMor
export SemidirectProductGroup
export SesquilinearForm
export SimpleGluing
export SimplicialComplex
export Singular
export Sp
export StructureSheafOfRings
export SubFPGroup
export SubFPGroupElem
export SubObjectIterator
export SubPcGroup
export SubPcGroupElem
export SubQuoHom
export SubdivisionOfPoints, subdivision_of_points
export SubquoModule
export SubquoModuleElem
export ToricDivisor
export ToricDivisorClass
export ToricLineBundle
export ToricMorphism
export ToricVanishingSet
export TropicalCurve, tropical_curve
export TropicalHypersurface, tropical_hypersurface
export TropicalLinearSpace, tropical_linear_space
export TropicalSemiring, TropicalSemiringElem, tropical_semiring
export TropicalSemiringMap, tropical_semiring_map
export TropicalVariety
export Undirected
export VarietyFunctionField
export VarietyFunctionFieldElem
export WeakComposition
export WeightLattice, WeightLatticeElem
export WeilDivisor
export WeylGroup, WeylGroupElem
export WreathProductGroup
export YoungTableau
export ZZ
export abelian_group
export abelian_invariants
export abelian_invariants_schur_multiplier
export absolute_primary_decomposition
export acting_group
export acting_subgroup
export action
export action_function
export action_homomorphism
export add_edge!
export add_gluing!
export add_vertex!
export add_vertices!
export adjacency_matrix
export adjacency_tree
export adjacent_chamber
export adjoint_ideal
export adjunction_process
export affine_algebra
export affine_charts
export affine_cone
export affine_equation_matrix
export affine_geometry
export affine_halfspace
export affine_hull
export affine_hyperplane
export affine_inequality_matrix
export affine_normal_toric_variety
export affine_open_covering
export affine_patch
export affine_patches
export affine_scheme
export affine_scheme_open_subscheme_ring_type
export affine_space
export alexander_dual
export algebraic_cycle
export algebraic_ideal
export algebraic_lattice
export algebraic_matrix
export algebraic_matroid
export algebraic_pluecker_vector
export algebraic_polynomial
export algebraic_set
export all_atlas_group_infos
export all_blocks
export all_character_table_names
export all_cohomologies
export all_groups_with_class_number
export all_neighbors
export all_perfect_groups
export all_primitive_groups
export all_small_groups
export all_subsets_matroid
export all_table_of_marks_names
export all_transitive_groups
export all_triangulations
export allow_unicode
export alternating_form
export alternating_group
export ambient_coordinate_ring
export ambient_coordinates
export ambient_dim
export ambient_embedding
export ambient_free_module
export ambient_module
export ambient_representative
export ambient_representatives_generators
export ambient_scheme
export ambient_space
export ambient_type
export annihilator
export anti_symmetric_parts
export anticanonical_bundle
export anticanonical_divisor
export anticanonical_divisor_class
export approximate_class_fusion
export archimedean_solid
export arithmetic_genus
export arrangement_polynomial
export as_dictionary
export as_gset
export ascending_compositions
export associahedron
export associated_points
export associated_primes
export atlas_description
export atlas_group
export atlas_irrationality
export atlas_program
export atlas_subgroup
export augmented_chow_ring
export aut
export automorphism_group
export barycentric_subdivision
export base_ring
export base_scheme
export bases
export basis_of_global_sections
export basis_of_global_sections_via_homogeneous_component
export basis_of_global_sections_via_rational_functions
export basis_of_h4
export bell
export betti
export betti_number
export betti_numbers
export betti_table
export billera_lee_polytope
export binary_markov_graph_polytope
export binomial_exponents_to_ideal
export binomial_primary_decomposition
export bipyramid
export birkhoff_polytope
export block_distribution
export blocks
export bond_matroid
export borcherds_method
export boundary_lattice_points
export build_ctx
export build_doc
export bump!
export canonical_bundle
export canonical_divisor
export canonical_divisor_class
export canonical_isomorphism
export canonical_matrix
export cartan_bilinear_form
export cartan_matrix
export cartan_symmetrizer
export cartan_type
export cartan_type_with_ordering
export cartesian_power
export cartier_divisor
export catalan_solid
export cauchy_ideal
export cellular_associated_primes
export cellular_decomposition
export cellular_decomposition_macaulay
export cellular_hull
export cellular_minimal_associated_primes
export cellular_primary_decomposition
export center, has_center, set_center
export centralizer
export chain_complex
export chain_range
export chamber
export character_field
export character_lattice
export character_parameters
export character_table
export character_to_rational_function
export characteristic_subgroups, has_characteristic_subgroups, set_characteristic_subgroups
export charpoly
export chern_class
export chern_classes
export chief_series, has_chief_series, set_chief_series
export chow_ring
export circuits
export class_group
export class_lengths
export class_multiplication_coefficient
export class_names
export class_parameters
export class_positions_of_center
export class_positions_of_derived_subgroup
export class_positions_of_kernel
export class_positions_of_normal_subgroups
export class_positions_of_pcore
export class_positions_of_solvable_residuum
export closed_subvariety_of_toric_variety
export closure
export cm_regularity
export cobases
export cochain_complex
export cocircuits
export cocycle_matroid
export codim
export codomain
export codomain_covering
export coefficient_field
export coefficient_ring
export coefficient_ring_type
export coefficients
export coefficients_and_exponents
export cohomology
export cohomology_class
export cohomology_indices
export cohomology_ring
export cohyperplanes
export cokernel
export collector
export coloops
export column
export combinatorial_symmetries
export comm
export comm!
export common_components
export common_refinement
export complement
export complement_classes
export complement_equation
export complement_equations
export complement_ideal
export complement_of_point_ideal
export complement_of_prime_ideal
export complement_scheme
export complement_system, has_complement_system, set_complement_system
export complements
export complete_bipartite_graph
export complete_graph
export complex_projective_plane
export components
export components
export compose
export composition
export composition_series, has_composition_series, set_composition_series
export compositions
export cone
export cone_from_equations
export cone_from_inequalities
export cones
export conjugacy_class
export conjugacy_classes
export conjugacy_classes_subgroups
export conjugate
export conjugate_dominant_weight, conjugate_dominant_weight!
export conjugate_dominant_weight_with_elem, conjugate_dominant_weight_with_elem!
export conjugate_group
export conjugate_transpose
export connected_components
export connected_sum
export connectivity
export connectivity_function
export contains
export continued_fraction_hirzebruch_jung
export continued_fraction_hirzebruch_jung_to_rational
export contraction
export contributing_denominators
export convention
export convert
export convex_hull
export coordinate_names
export coordinate_names_of_torus
export coordinate_ring
export coordinate_ring_of_torus
export coordinates
export cophenetic_matrix
export corank
export core
export coroot
export coroots
export corresponding_bilinear_form
export corresponding_quadratic_form
export cotangent_sheaf
export covered_projection_to_base
export covered_scheme
export covered_scheme_morphism
export covering_morphism
export coverings
export cox_ring
export cox_variety
export cperm
export cross_polytope
export cube
export cycle_length
export cycle_matroid
export cycle_structure
export cycle_structures
export cyclic_caratheodory_polytope
export cyclic_flats
export cyclic_generator
export cyclic_group
export cyclic_polytope
export cyclic_quotient_singularity
export data
export de_rham_complex
export decide_du_val_singularity
export decomposition_matrix
export decorate
export decoration
export default_covering
export default_ordering
export defines_automorphism
export defining_equation
export defining_ideal
export deginvlex
export deglex
export degree
export degrees_of_generators
export degrevlex
export dehomogenization_map
export dehomogenizer
export del_pezzo_polytope
export del_pezzo_surface
export deletion
export demazure_character
export denest
export denominator
export denominators
export depth
export derived_length, has_derived_length, set_derived_length
export derived_series, has_derived_series, set_derived_series
export derived_subgroup, has_derived_subgroup, set_derived_subgroup
export describe
export desimulate_valuation
export det
export diameter
export dihedral_group
export dim
export dim_of_torusfactor
export direct_product
export direct_sum
export direct_sum_components
export disjoint_union
export div_left
export div_left!
export div_right
export div_right!
export divexact
export divides
export divisor_class
export divisor_of_character
export divisor_sigma
export divrem
export dodecahedron
export domain
export domain_covering
export dominates
export double_coset
export double_cosets
export double_dual
export dst
export dual
export dual_continued_fraction_hirzebruch_jung
export dual_graph
export dual_matroid
export dual_subdivision
export dwarfed_cube
export dwarfed_product_polygons
export edges
export effective_cartier_divisor
export ehrhart_polynomial
export element_to_homomorphism
export elementary_abelian_group
export elementary_symmetric
export elements
export eliminate
export elliptic_parameter
export elliptic_surface
export embedding
export embedding_orthogonal_group
export epimorphism_from_free_group
export equidimensional_decomposition_radical
export equidimensional_decomposition_weak
export equidimensional_hull
export equidimensional_hull_radical
export euler_characteristic
export euler_phi
export exceptional_divisor
export expand
export explicit_zonotope
export exponent, has_exponent, set_exponent
export exponents
export ext
export ext_of_degree
export extend!
export extension_field
export exterior_derivative
export exterior_power
export f_vector
export face_fan
export faces
export facet_degrees
export facet_indices
export facet_sizes
export facets
export factor_of_direct_product
export factorizations
export fano_matroid
export fano_simplex
export fat_ideal
export fat_scheme
export feasible_region
export fglm
export fiber_components
export fiber_product
export fibonacci
export fibration_type
export filtrate
export find_morphism
export find_morphisms
export fits
export fitting_ideal
export fitting_subgroup
export fitting_subgroup, has_fitting_subgroup, set_fitting_subgroup
export fixed_field
export flag_pluecker_ideal
export flats
export forget_decoration
export forget_grading
export forget_toric_structure
export fp_group
export fraction
export fraction_field
export fractional_cut_polytope
export fractional_ideal
export fractional_knapsack_polytope
export fractional_matching_polytope
export frattini_subgroup, has_frattini_subgroup, set_frattini_subgroup
export free_abelian_group
export free_extension
export free_group
export free_module
export free_module_dec
export free_resolution
export free_resolution_via_kernels
export full_group
export function_field
export fundamental_circuit
export fundamental_cocircuit
export fundamental_group
export fundamental_invariants
export fundamental_weight
export fundamental_weights
export g_vector
export galois_group
export galois_ideal
export galois_orbit_sum
export galois_quotient
export gelfand_tsetlin_polytope
export gen
export general_linear_group
export generalized_jordan_block
export generalized_jordan_form
export generating_system
export generator_matrix
export generic_fiber
export generic_fraction
export generic_fractions
export generic_section
export gens, has_gens
export gens_of_rational_equivalence_classes
export geometric_genus
export geometric_irreducible_components
export get_conjugate
export get_power
export get_relative_order
export get_relative_orders
export getindex_safe
export girth
export gkz_vector
export gluing_domains
export gluing_graph
export gluing_morphisms
export gluings
export goldfarb_cube
export goldfarb_sit_cube
export gomory_chvatal_closure
export gorenstein_index
export grade
export graded_cokernel
export graded_free_module
export graded_image
export graded_map
export graded_polynomial_ring
export grading_group
export graph
export graph_from_adjacency_matrix
export graph_from_edges
export grassmann_pluecker_ideal
export grid_morphism
export groebner_basis
export groebner_basis_f4
export groebner_basis_hilbert_driven
export groebner_basis_modular
export groebner_basis_with_transformation_matrix
export groebner_fan
export group
export group_with_class_number
export gset
export h_star_polynomial
export h_vector
export halfspace
export halfspace_matrix_pair
export hall_subgroup
export hall_subgroup_classes
export hall_subgroups
export hall_system, has_hall_system, set_hall_system
export has_edge
export has_groups_with_class_number
export has_nonempty_intersection
export has_perfect_groups
export has_preimage_with_preimage
export has_primitive_groups
export has_small_groups
export has_torusfactor
export has_transitive_groups
export has_vertex
export height
export hermitian_form
export hessian
export hessian_matrix
export hilbert_basis
export hilbert_function
export hilbert_polynomial
export hilbert_series
export hilbert_series_expanded
export hilbert_series_reduced
export hirzebruch_surface
export hom
export hom_product
export hom_tensor
export hom_without_reversing_direction
export homogeneity_space
export homogeneity_vector
export homogeneous_component
export homogeneous_components
export homogeneous_coordinate_ring
export homogeneous_coordinates
export homogenization_map
export homogenize
export homogenizer
export homology
export homomorphism_of_semidirect_product
export homomorphism_of_wreath_product
export homomorphism_to_element
export hook_length
export hook_lengths
export hyperplane
export hyperplanes
export hypersimplex
export hypersurface_complement
export hypertruncated_cube
export icosahedron
export id_hom
export ideal
export ideal_as_module
export ideal_membership
export ideal_of_linear_relations
export ideal_sheaf
export identifier
export identity_map
export image
export image_ideal
export image_in_Oq
export images
export img_gens
export immaculate_line_bundles
export incidence_matrix
export inclusion_morphism
export independent_sets
export index
export index_of_gen
export index_of_leading_term
export indicator
export induce
export induce_shift
export induced_automorphism
export induced_cyclic
export induced_map_on_exterior_power
export induced_ring_ordering
export initial
export inneighbors
export inner_automorphism
export inner_automorphism_group
export inner_cartesian_power
export inner_direct_product
export inradical
export integer_hull
export integral_basis
export integrate
export interior_lattice_points
export interreduce!
export intersect
export intersection_form
export intersection_multiplicity
export intersections
export inv
export inv!
export invariant_alternating_forms
export invariant_bilinear_forms
export invariant_hermitian_forms
export invariant_quadratic_forms
export invariant_ring
export invariant_sesquilinear_forms
export invariant_symmetric_forms
export inverse
export inverse_on_image
export invert
export invert_birational_map
export inverted_set
export invlex
export irreducible_components
export irreducible_decomposition
export irreducible_secondary_invariants
export irreducibles
export irrelevant_ideal
export is_abelian, has_is_abelian, set_is_abelian
export is_admissible_ordering
export is_affine
export is_algebraically_independent
export is_algebraically_independent_with_relations
export is_almost_simple, has_is_almost_simple, set_is_almost_simple
export is_alternating
export is_ample
export is_archimedean_solid
export is_atlas_character_table
export is_ball
export is_basepoint_free
export is_bicoset
export is_bijective
export is_binary
export is_binomial
export is_bounded
export is_canonically_isomorphic
export is_canonically_isomorphic_with_map
export is_cartan_matrix
export is_cartan_type
export is_cartier
export is_cellular
export is_character_table_name
export is_characteristic_subgroup
export is_closed_embedding
export is_clutter
export is_cohen_macaulay
export is_coloopless
export is_complete
export is_congruent
export is_conjugate
export is_conjugate_subgroup
export is_conjugate_subgroup_with_data
export is_conjugate_with_data
export is_connected
export is_coroot
export is_coroot_with_index
export is_cyclic, has_is_cyclic, set_is_cyclic
export is_degenerate
export is_dense
export is_dihedral_group, has_is_dihedral_group, set_is_dihedral_group
export is_dominant
export is_du_val_singularity
export is_duplicate_table
export is_effective
export is_elementary_abelian, has_is_elementary_abelian, set_is_elementary_abelian
export is_elimination_ordering
export is_embedded
export is_empty
export is_equal_with_morphism
export is_equidimensional
export is_equidistant
export is_faithful
export is_fano
export is_feasible
export is_finalized
export is_finite, has_is_finite, set_is_finite
export is_finite_dimensional_vector_space
export is_finite_order
export is_finitely_generated, has_is_finitely_generated, set_is_finitely_generated
export is_flat
export is_full_direct_product
export is_full_semidirect_product
export is_full_wreath_product
export is_fulldimensional
export is_fundamental_weight
export is_fundamental_weight_with_index
export is_geometrically_integral
export is_geometrically_reduced
export is_global
export is_gorenstein
export is_graded
export is_groebner_basis
export is_homogeneous
export is_identity_map
export is_immaculate
export is_in_linear_system
export is_injective
export is_inner_automorphism
export is_integral
export is_invariant
export is_inverse_of
export is_invertible
export is_irreducible
export is_isomorphic
export is_isomorphic_to_alternating_group, has_is_isomorphic_to_alternating_group, set_is_isomorphic_to_alternating_group
export is_isomorphic_to_symmetric_group, has_is_isomorphic_to_symmetric_group, set_is_isomorphic_to_symmetric_group
export is_isomorphic_with_map
export is_isomorphic_with_permutation
export is_isomorphism
export is_johnson_solid
export is_k_separation
export is_lattice_polytope
export is_leaf
export is_left
export is_linearly_normal
export is_local
export is_locally_free
export is_loopless
export is_manifold
export is_maximal_subgroup
export is_minor
export is_mixed
export is_modular
export is_natural_alternating_group, has_is_natural_alternating_group, set_is_natural_alternating_group
export is_natural_symmetric_group, has_is_natural_symmetric_group, set_is_natural_symmetric_group
export is_nef
export is_negative_coroot
export is_negative_coroot_with_index
export is_negative_root
export is_negative_root_with_index
export is_nilpotent, has_is_nilpotent, set_is_nilpotent
export is_non_zero_divisor
export is_normal
export is_normal_subgroup
export is_normalized_by
export is_one
export is_open_embedding
export is_orbifold
export is_perfect, has_is_perfect, set_is_perfect
export is_pgroup, has_is_pgroup, set_is_pgroup
export is_pgroup_with_prime
export is_platonic_solid
export is_pointed
export is_positive_coroot
export is_positive_coroot_with_index
export is_positive_root
export is_positive_root_with_index
export is_positively_graded
export is_primary
export is_prime
export is_primitive
export is_principal
export is_probable_prime
export is_projective
export is_projective_space
export is_pure
export is_q_cartier
export is_q_gorenstein
export is_quasisimple, has_is_quasisimple, set_is_quasisimple
export is_quaternion_group, has_is_quaternion_group, set_is_quaternion_group
export is_quotient
export is_radical
export is_ready
export is_reduced
export is_regular
export is_regular_sequence
export is_right
export is_root
export is_root_with_index
export is_semiregular
export is_semisimple
export is_semistandard
export is_shifted
export is_simple, has_is_simple, set_is_simple
export is_simple_coroot
export is_simple_coroot_with_index
export is_simple_root
export is_simple_root_with_index
export is_simplicial
export is_singular
export is_smooth
export is_solvable, has_is_solvable, set_is_solvable
export is_sphere
export is_sporadic_simple, has_is_sporadic_simple, set_is_sporadic_simple
export is_square
export is_standard
export is_standard_basis
export is_standard_graded
export is_strongly_connected
export is_subscheme
export is_subset
export is_supersolvable, has_is_supersolvable, set_is_supersolvable
export is_surjective
export is_table_of_marks_name
export is_ternary
export is_total
export is_transitive
export is_transverse_intersection
export is_trivial
export is_tropically_generic
export is_two_sided
export is_unipotent
export is_unit
export is_unital
export is_vertex_transitive
export is_vertical_k_separation
export is_very_ample
export is_weakly_connected
export is_welldefined
export is_z_graded
export is_zero
export is_zm_graded
export isfinite
export isometry_group
export isomorphic_matroid
export isomorphic_subgroups
export isomorphism
export isone