passagemath-gap-pkg-normalizinterface 10.6.28__cp310-cp310-macosx_14_0_arm64.whl → 10.6.29__cp310-cp310-macosx_14_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of passagemath-gap-pkg-normalizinterface might be problematic. Click here for more details.
- gap/pkg/normalizinterface/CHANGES +11 -0
- gap/pkg/normalizinterface/PackageInfo.g +3 -4
- gap/pkg/normalizinterface/README.md +2 -2
- gap/pkg/normalizinterface/bin/aarch64-apple-darwin23-default64-kv10/NormalizInterface.so +0 -0
- gap/pkg/normalizinterface/examples/demo.g +1 -1
- gap/pkg/normalizinterface/lib/normaliz.gd +3 -31
- gap/pkg/normalizinterface/tst/normalizinterface02.tst +1 -1
- {passagemath_gap_pkg_normalizinterface-10.6.28.dist-info → passagemath_gap_pkg_normalizinterface-10.6.29.dist-info}/METADATA +2 -2
- {passagemath_gap_pkg_normalizinterface-10.6.28.dist-info → passagemath_gap_pkg_normalizinterface-10.6.29.dist-info}/METADATA.bak +3 -3
- {passagemath_gap_pkg_normalizinterface-10.6.28.dist-info → passagemath_gap_pkg_normalizinterface-10.6.29.dist-info}/RECORD +15 -16
- passagemath_gap_pkg_normalizinterface.dylibs/libeantic.3.dylib +0 -0
- passagemath_gap_pkg_normalizinterface.dylibs/libeanticxx.3.dylib +0 -0
- sage/libs/gap_pkg_normalizinterface.cpython-310-darwin.so +0 -0
- gap/pkg/normalizinterface/bin/aarch64-apple-darwin23-default64-kv9/NormalizInterface.so +0 -0
- gap/pkg/normalizinterface/tst/lattice_ideal.tst +0 -147
- {passagemath_gap_pkg_normalizinterface-10.6.28.dist-info → passagemath_gap_pkg_normalizinterface-10.6.29.dist-info}/WHEEL +0 -0
- {passagemath_gap_pkg_normalizinterface-10.6.28.dist-info → passagemath_gap_pkg_normalizinterface-10.6.29.dist-info}/top_level.txt +0 -0
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
This file describes changes in the NormalizInterface package.
|
|
2
2
|
|
|
3
|
+
1.4.1 (2025-06-20)
|
|
4
|
+
- Janitorial changes
|
|
5
|
+
|
|
6
|
+
1.4.0 (2025-04-14)
|
|
7
|
+
- Update to Normaliz 3.10.2 (as usual this implies many breaking
|
|
8
|
+
changes, e.g. input type `lattice_ideal` has been renamed to
|
|
9
|
+
`normal_toric_ideal` while at the same time `lattice_ideal` has
|
|
10
|
+
a new meaning that is not quite compatible with how it worked before.
|
|
11
|
+
So beware and carefully study the Normaliz manual)
|
|
12
|
+
- Various janitorial changes
|
|
13
|
+
|
|
3
14
|
1.3.7 (2024-07-07)
|
|
4
15
|
- Require C++14 (as Normaliz or rather e-Antic sometimes needs it, and
|
|
5
16
|
it seems OK to require a C++ compiler made in the last 10 years
|
|
@@ -2,8 +2,8 @@ SetPackageInfo( rec(
|
|
|
2
2
|
|
|
3
3
|
PackageName := "NormalizInterface",
|
|
4
4
|
Subtitle := "GAP wrapper for Normaliz",
|
|
5
|
-
Version := "1.
|
|
6
|
-
Date := "
|
|
5
|
+
Version := "1.4.1",
|
|
6
|
+
Date := "20/06/2025", # dd/mm/yyyy format
|
|
7
7
|
License := "GPL-2.0-or-later",
|
|
8
8
|
|
|
9
9
|
Persons := [
|
|
@@ -73,7 +73,6 @@ PackageDoc := rec(
|
|
|
73
73
|
PDFFile := "doc/manual.pdf",
|
|
74
74
|
SixFile := "doc/manual.six",
|
|
75
75
|
LongTitle := "GAP wrapper for Normaliz",
|
|
76
|
-
Autoload := true
|
|
77
76
|
),
|
|
78
77
|
|
|
79
78
|
Dependencies := rec(
|
|
@@ -89,7 +88,7 @@ AvailabilityTest := function()
|
|
|
89
88
|
if not IsKernelExtensionAvailable("NormalizInterface") then
|
|
90
89
|
LogPackageLoadingMessage( PACKAGE_WARNING,
|
|
91
90
|
[ "kernel functions for NormalizInterface not available." ] );
|
|
92
|
-
return
|
|
91
|
+
return false;
|
|
93
92
|
fi;
|
|
94
93
|
return true;
|
|
95
94
|
end,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[](https://github.com/gap-packages/NormalizInterface/actions/workflows/CI.yml)
|
|
2
2
|
[](https://codecov.io/gh/gap-packages/NormalizInterface)
|
|
3
3
|
|
|
4
4
|
# The GAP 4 package 'NormalizInterface'
|
|
@@ -28,7 +28,7 @@ and especially have a look at the manual.
|
|
|
28
28
|
|
|
29
29
|
NormalizInterface supports GAP 4.9 or later, and Normaliz 3.5.4 or later.
|
|
30
30
|
However, we recommend using the most recent versions -- at the time this
|
|
31
|
-
is written, that means GAP 4.
|
|
31
|
+
is written, that means GAP 4.14.0 and Normaliz 3.10.x.
|
|
32
32
|
|
|
33
33
|
Assuming you have a suitable version installed, you still need to
|
|
34
34
|
compile Normaliz. There is a complicating factor, however: Normaliz
|
|
Binary file
|
|
@@ -122,37 +122,9 @@ DeclareGlobalFunction( "NmzBasisChange" );
|
|
|
122
122
|
#! correspond to a Normaliz input type string and the following matrix will be
|
|
123
123
|
#! interpreted as input of that type.
|
|
124
124
|
#!
|
|
125
|
-
#!
|
|
126
|
-
#!
|
|
127
|
-
#!
|
|
128
|
-
#! <Item><C>polyhedron</C>,</Item>
|
|
129
|
-
#! <Item><C>normalization</C>,</Item>
|
|
130
|
-
#! <Item><C>polytope</C>,</Item>
|
|
131
|
-
#! <Item><C>rees_algebra</C>,</Item>
|
|
132
|
-
#! <Item><C>inequalities</C>,</Item>
|
|
133
|
-
#! <Item><C>strict_inequalities</C>,</Item>
|
|
134
|
-
#! <Item><C>signs</C>,</Item>
|
|
135
|
-
#! <Item><C>strict_signs</C>,</Item>
|
|
136
|
-
#! <Item><C>equations</C>,</Item>
|
|
137
|
-
#! <Item><C>congruences</C>,</Item>
|
|
138
|
-
#! <Item><C>inhom_inequalities</C>,</Item>
|
|
139
|
-
#! <Item><C>inhom_equations</C>,</Item>
|
|
140
|
-
#! <Item><C>inhom_congruences</C>,</Item>
|
|
141
|
-
#! <Item><C>dehomogenization</C>,</Item>
|
|
142
|
-
#! <Item><C>lattice_ideal</C>,</Item>
|
|
143
|
-
#! <Item><C>grading</C>,</Item>
|
|
144
|
-
#! <Item><C>excluded_faces</C>,</Item>
|
|
145
|
-
#! <Item><C>lattice</C>,</Item>
|
|
146
|
-
#! <Item><C>saturation</C>,</Item>
|
|
147
|
-
#! <Item><C>cone</C>,</Item>
|
|
148
|
-
#! <Item><C>offset</C>,</Item>
|
|
149
|
-
#! <Item><C>vertices</C>,</Item>
|
|
150
|
-
#! <Item><C>support_hyperplanes</C>,</Item>
|
|
151
|
-
#! <Item><C>cone_and_lattice</C>,</Item>
|
|
152
|
-
#! <Item><C>subspace</C>.</Item>
|
|
153
|
-
#! </List>
|
|
154
|
-
#!
|
|
155
|
-
#! See the Normaliz manual for a detailed description.
|
|
125
|
+
#! See the Normaliz manual for the Normaliz version loaded by your version
|
|
126
|
+
#! of NormalizInterface for a detailed description of which input type strings
|
|
127
|
+
#! are supported and what arguments they take.
|
|
156
128
|
#!
|
|
157
129
|
#! @InsertChunk NmzCone_example
|
|
158
130
|
DeclareGlobalFunction( "NmzCone" );
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: passagemath-gap-pkg-normalizinterface
|
|
3
|
-
Version: 10.6.
|
|
3
|
+
Version: 10.6.29
|
|
4
4
|
Summary: passagemath: Computational Group Theory with GAP: normalizinterface package
|
|
5
5
|
Author-email: The Sage Developers <sage-support@googlegroups.com>
|
|
6
6
|
Maintainer: Matthias Köppe, passagemath contributors
|
|
@@ -28,7 +28,7 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
|
28
28
|
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
29
29
|
Requires-Python: <3.14,>=3.10
|
|
30
30
|
Description-Content-Type: text/x-rst
|
|
31
|
-
Requires-Dist: passagemath-environment~=10.6.
|
|
31
|
+
Requires-Dist: passagemath-environment~=10.6.29.0
|
|
32
32
|
|
|
33
33
|
=============================================================================
|
|
34
34
|
passagemath: Computational Group Theory with GAP: normalizinterface package
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: passagemath-gap-pkg-normalizinterface
|
|
3
|
-
Version: 10.6.
|
|
3
|
+
Version: 10.6.29
|
|
4
4
|
Summary: passagemath: Computational Group Theory with GAP: normalizinterface package
|
|
5
5
|
Author-email: The Sage Developers <sage-support@googlegroups.com>
|
|
6
6
|
Maintainer: Matthias Köppe, passagemath contributors
|
|
@@ -28,8 +28,8 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
|
28
28
|
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
29
29
|
Requires-Python: <3.14,>=3.10
|
|
30
30
|
Description-Content-Type: text/x-rst
|
|
31
|
-
Requires-Dist: passagemath-conf~=10.6.
|
|
32
|
-
Requires-Dist: passagemath-environment~=10.6.
|
|
31
|
+
Requires-Dist: passagemath-conf~=10.6.29.0; sys_platform != "win32"
|
|
32
|
+
Requires-Dist: passagemath-environment~=10.6.29.0
|
|
33
33
|
|
|
34
34
|
=============================================================================
|
|
35
35
|
passagemath: Computational Group Theory with GAP: normalizinterface package
|
|
@@ -1,37 +1,41 @@
|
|
|
1
1
|
passagemath_gap_pkg_normalizinterface.dylibs/libgmpxx.4.dylib,sha256=VjdvSQj17Sy8uun0BDGnILiKWqIaaeqP_3KQl8_3uAA,64640
|
|
2
2
|
passagemath_gap_pkg_normalizinterface.dylibs/libflint.21.0.dylib,sha256=kpoxzwgHORAviXDwJskxUNeGOZhN8PY_3X5J-1gEP9o,9127584
|
|
3
|
-
passagemath_gap_pkg_normalizinterface.dylibs/libeantic.3.dylib,sha256=
|
|
3
|
+
passagemath_gap_pkg_normalizinterface.dylibs/libeantic.3.dylib,sha256=0uyR3NLFWViJIWHzL4ZWZbZuehv6KhXge5ZGq7GqTz4,139600
|
|
4
4
|
passagemath_gap_pkg_normalizinterface.dylibs/libnormaliz.3.dylib,sha256=GEHNsUJRZ3z67mkh9HywugoXooDPXMZa78pSyT28yN0,7709904
|
|
5
|
-
passagemath_gap_pkg_normalizinterface.dylibs/libeanticxx.3.dylib,sha256=
|
|
5
|
+
passagemath_gap_pkg_normalizinterface.dylibs/libeanticxx.3.dylib,sha256=4haWlObU94D1zK-ARAgaSXF9NAH15sQmk4snKILvHbU,460256
|
|
6
6
|
passagemath_gap_pkg_normalizinterface.dylibs/libgmp.10.dylib,sha256=cEGozDRv4noVUttk9ZWznTdvt6zRf_KEmOTdD9kC0UY,464688
|
|
7
7
|
passagemath_gap_pkg_normalizinterface.dylibs/libmpfr.6.dylib,sha256=uOQxmdpChaa-ExqCzvXfGEHvleL8DmR5_3jKJ3_DzXU,466160
|
|
8
|
-
|
|
8
|
+
passagemath_gap_pkg_normalizinterface-10.6.29.dist-info/RECORD,,
|
|
9
|
+
passagemath_gap_pkg_normalizinterface-10.6.29.dist-info/METADATA.bak,sha256=h3SPgpeX4vjoxoxnfyi-tvMXbv4lPCTkKWXmfBqMzyA,4410
|
|
10
|
+
passagemath_gap_pkg_normalizinterface-10.6.29.dist-info/WHEEL,sha256=BY2G-e9pCnwWPELNk7GCw-k-0y7AcCiRrhf_nAfhQVk,136
|
|
11
|
+
passagemath_gap_pkg_normalizinterface-10.6.29.dist-info/top_level.txt,sha256=hibFyzQHiLOMK68qL1OWsNKaXOmSXqZjeLTBem6Yy7I,5
|
|
12
|
+
passagemath_gap_pkg_normalizinterface-10.6.29.dist-info/METADATA,sha256=BF8dk7D_5AhmNcYRQUazKnrylnbRl6WmL3wQ3mfuQ8Q,4342
|
|
13
|
+
gap/pkg/normalizinterface/PackageInfo.g,sha256=JnxFVx9KT4REjj33d18ejbh7TBmtVA9-3XGYy_ThhrQ,3692
|
|
9
14
|
gap/pkg/normalizinterface/LICENSE,sha256=7Si8a-ZKzTN2eXY8XAHzsFjh8LI2XKgaO-BhtquTcek,18548
|
|
10
|
-
gap/pkg/normalizinterface/CHANGES,sha256=
|
|
11
|
-
gap/pkg/normalizinterface/README.md,sha256=
|
|
15
|
+
gap/pkg/normalizinterface/CHANGES,sha256=OQ3yAraGs-UTISuoSEnHniS_iXSs16PwfVUgkAttyzo,3881
|
|
16
|
+
gap/pkg/normalizinterface/README.md,sha256=mWNBePTo4omqtNyu8Crh2LYXcKjdqaw8XZJ7CHtRSow,3479
|
|
12
17
|
gap/pkg/normalizinterface/makedoc.g,sha256=XyAyF5_0ihBqePgmABkH2CVSDNsnMxr1LyRAIYSz_BI,341
|
|
13
18
|
gap/pkg/normalizinterface/init.g,sha256=wademXUUOueMZJJ6D6DeTsA-Jnm7Mo4AVXyI_IvnHs8,248
|
|
14
19
|
gap/pkg/normalizinterface/read.g,sha256=LS4kzoaCXjJV-9vdTEMRNd9MGsFNumaWkr8bfi9miPU,122
|
|
15
|
-
gap/pkg/normalizinterface/bin/aarch64-apple-darwin23-default64-
|
|
20
|
+
gap/pkg/normalizinterface/bin/aarch64-apple-darwin23-default64-kv10/NormalizInterface.so,sha256=TJ3MgceHKZjAUj_s6PU_oc8r7YxW1bT2neo_tX-n59Q,184192
|
|
16
21
|
gap/pkg/normalizinterface/etc/generate_cone_property_wrappers.g,sha256=18gnawFsKqZ_NBXELnRgB2T3yMztY9mvBBIneCtYU88,10981
|
|
17
22
|
gap/pkg/normalizinterface/etc/download.sh,sha256=yuBLGrLtSmaWSOR2PXHGxf6F7jTPqKejqSiOmsIBhBU,1999
|
|
18
23
|
gap/pkg/normalizinterface/examples/dual_mode.g,sha256=s1vc2NcjhdOm8GWxYxZDup4QyfzCoQgtvUSUT4IJ8HE,618
|
|
19
|
-
gap/pkg/normalizinterface/examples/demo.g,sha256=
|
|
24
|
+
gap/pkg/normalizinterface/examples/demo.g,sha256=yh4Yugh73M7FONAfUrtiJaxHpEWNxrfF87nS2-xKihA,1318
|
|
20
25
|
gap/pkg/normalizinterface/examples/5x5.g,sha256=IrShVhPmco1cdcRfm1976wHespHf3HhvJMP990ZgPZU,1182
|
|
21
26
|
gap/pkg/normalizinterface/examples/magic_square.g,sha256=gTPKjOo34PVAFtJ6vtvMk2azxHBwem7Q7mc10W2PFUI,1141
|
|
22
27
|
gap/pkg/normalizinterface/examples/docs.g,sha256=KRF9e5mPNSAXtHfiKPMkimYsI3H2ydNkI20u9ulOGFs,1533
|
|
23
28
|
gap/pkg/normalizinterface/lib/normaliz.gi,sha256=lXrAmKd4Rh3U1_9cQRwlPqLQcbElOJ8WQvMLVWs9-iw,4496
|
|
24
29
|
gap/pkg/normalizinterface/lib/cone_property_wrappers.gi,sha256=lCz4iasxFq1_rUsmXz5BFIsOdyIN_Iwz-o5AeWzochQ,12613
|
|
25
|
-
gap/pkg/normalizinterface/lib/normaliz.gd,sha256=
|
|
30
|
+
gap/pkg/normalizinterface/lib/normaliz.gd,sha256=SXTVSwK8OisiZOj6yhBllSaqrtx6hUKyaJXl2RaU4ts,6563
|
|
26
31
|
gap/pkg/normalizinterface/lib/cone_property_wrappers.gd,sha256=MvWMLBoR4Ihvw8fZ10HZYDXVaZydX4Z5b7ObJj6ptP8,31917
|
|
27
32
|
gap/pkg/normalizinterface/tst/cube-incidence.tst,sha256=KC-RMCJli3vGBp4Ib25ias_JDUZCDP4zFaDnbqQtuCI,2051
|
|
28
33
|
gap/pkg/normalizinterface/tst/descent.tst,sha256=WWdayUU6n10uu8flRE2YCstKGOVbWXmxtgBZ6k1k5Y8,5542
|
|
29
34
|
gap/pkg/normalizinterface/tst/rp2poly.tst,sha256=ufTGiAkhm0Y6mVmR7fEwPOH69ukSplqHE58czgUb8sU,10725
|
|
30
|
-
gap/pkg/normalizinterface/tst/lattice_ideal.tst,sha256=RgCyPsppUij-oyMShT06kbqQhp0mZuSFauW_Miztl8o,3672
|
|
31
35
|
gap/pkg/normalizinterface/tst/project.tst,sha256=EKX6ZsY8qXKIT8NwThTwlQP7znJ-VBs1K3IixXaA7gg,3163
|
|
32
36
|
gap/pkg/normalizinterface/tst/gorenstein.tst,sha256=s4JIm01etZGLM7770fOHAJsRn3UxtfAlbCt2ERHuYdw,1347
|
|
33
37
|
gap/pkg/normalizinterface/tst/bugfix.tst,sha256=ne_0ueeBjonNrLIcd_Zc4M82NkErKw7bdxrBJuf1t_o,1414
|
|
34
|
-
gap/pkg/normalizinterface/tst/normalizinterface02.tst,sha256=
|
|
38
|
+
gap/pkg/normalizinterface/tst/normalizinterface02.tst,sha256=sV59cjNUcSbj2oSIGGRL2tIxlCRAFeH8pMrfHMdDaOc,3413
|
|
35
39
|
gap/pkg/normalizinterface/tst/InhomIneq.tst,sha256=7xI-HX_4x8i0aLRRLXFAOknB9w9Q9rGZRpDnP5tq5lY,428
|
|
36
40
|
gap/pkg/normalizinterface/tst/fractions.tst,sha256=Uhv3aRbCsdFJ9RFYvl2qkZPrvxxODZFXPUpFhKfnTjk,809
|
|
37
41
|
gap/pkg/normalizinterface/tst/dual.tst,sha256=UiM_7IhncuRRonIA0jbLZ72mMB4ROP_26l3LpwrTBBc,15955
|
|
@@ -42,11 +46,6 @@ gap/pkg/normalizinterface/tst/rational.tst,sha256=ksSUZxZ8XOsMso2QxUqcZBi1SPmCrl
|
|
|
42
46
|
gap/pkg/normalizinterface/tst/conversion.tst,sha256=Zm0Fhgd1J9b5mAt0_4kquOPVRp8le2o65VaBTHx5D-o,2651
|
|
43
47
|
gap/pkg/normalizinterface/tst/rees.tst,sha256=KQYdu5leTRNSSU7L4Jgfd-w0hg7JsP2xiN-9F0uu8gw,16146
|
|
44
48
|
gap/pkg/normalizinterface/tst/testall.g,sha256=Ht0hveno12P8akULo6WdcZC2blGRp1Txqj58tgGmbsM,140
|
|
45
|
-
passagemath_gap_pkg_normalizinterface-10.6.28.dist-info/RECORD,,
|
|
46
|
-
passagemath_gap_pkg_normalizinterface-10.6.28.dist-info/METADATA.bak,sha256=J-Yvw9-l9EHM-MsrD-0drvEtN1DVWIu6JczaZI3vdig,4410
|
|
47
|
-
passagemath_gap_pkg_normalizinterface-10.6.28.dist-info/WHEEL,sha256=BY2G-e9pCnwWPELNk7GCw-k-0y7AcCiRrhf_nAfhQVk,136
|
|
48
|
-
passagemath_gap_pkg_normalizinterface-10.6.28.dist-info/top_level.txt,sha256=hibFyzQHiLOMK68qL1OWsNKaXOmSXqZjeLTBem6Yy7I,5
|
|
49
|
-
passagemath_gap_pkg_normalizinterface-10.6.28.dist-info/METADATA,sha256=c14FGLhN-vrEutCtxJ0aauSZcwhL6zpWcPKcXQN1rhM,4342
|
|
50
49
|
sage/all__sagemath_gap_pkg_normalizinterface.py,sha256=71OxtojEIa1HddVgFywZowzcnEuKK9J4sADAY2ia6Y0,64
|
|
51
|
-
sage/libs/gap_pkg_normalizinterface.cpython-310-darwin.so,sha256=
|
|
50
|
+
sage/libs/gap_pkg_normalizinterface.cpython-310-darwin.so,sha256=tgKAUx9XcRbS32gn48nBFIuNDCzwI0R4xafOPgMP3Hk,54400
|
|
52
51
|
sage/libs/all__sagemath_gap_pkg_normalizinterface.py,sha256=71OxtojEIa1HddVgFywZowzcnEuKK9J4sADAY2ia6Y0,64
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,147 +0,0 @@
|
|
|
1
|
-
gap> START_TEST("lattice_ideal.tst");
|
|
2
|
-
|
|
3
|
-
#
|
|
4
|
-
gap> M := [
|
|
5
|
-
> [ 2, 1, 0, -1, -1, -1 ],
|
|
6
|
-
> [ 1, 0, -1, 2, -1, -1 ],
|
|
7
|
-
> [ 1, 1, 1, 0, -2, -1 ],
|
|
8
|
-
> ];;
|
|
9
|
-
gap> cone := NmzCone(["lattice_ideal", M]);;
|
|
10
|
-
gap> NmzCompute(cone);
|
|
11
|
-
true
|
|
12
|
-
gap> Display(NmzTriangulation(cone));
|
|
13
|
-
[ [ rec(
|
|
14
|
-
Excluded := [ ],
|
|
15
|
-
height := 0,
|
|
16
|
-
key := [ 0, 1, 2 ],
|
|
17
|
-
mult := 0,
|
|
18
|
-
vol := 1 ), rec(
|
|
19
|
-
Excluded := [ ],
|
|
20
|
-
height := 0,
|
|
21
|
-
key := [ 1, 2, 3 ],
|
|
22
|
-
mult := 0,
|
|
23
|
-
vol := 1 ), rec(
|
|
24
|
-
Excluded := [ ],
|
|
25
|
-
height := 0,
|
|
26
|
-
key := [ 1, 3, 4 ],
|
|
27
|
-
mult := 0,
|
|
28
|
-
vol := 2 ), rec(
|
|
29
|
-
Excluded := [ ],
|
|
30
|
-
height := 0,
|
|
31
|
-
key := [ 2, 3, 4 ],
|
|
32
|
-
mult := 0,
|
|
33
|
-
vol := 1 ), rec(
|
|
34
|
-
Excluded := [ ],
|
|
35
|
-
height := 0,
|
|
36
|
-
key := [ 2, 4, 5 ],
|
|
37
|
-
mult := 0,
|
|
38
|
-
vol := 5 ) ],
|
|
39
|
-
[ [ 0, 0, 1 ], [ 0, 1, 3 ], [ 1, 0, 0 ], [ 1, 1, 2 ], [ 2, 3, 5 ],
|
|
40
|
-
[ 3, 1, 0 ] ] ]
|
|
41
|
-
gap> Display(NmzExtremeRays(cone));
|
|
42
|
-
[ [ 0, 0, 1 ],
|
|
43
|
-
[ 0, 1, 3 ],
|
|
44
|
-
[ 1, 0, 0 ],
|
|
45
|
-
[ 2, 3, 5 ],
|
|
46
|
-
[ 3, 1, 0 ] ]
|
|
47
|
-
gap> Display(NmzSupportHyperplanes(cone));
|
|
48
|
-
[ [ 0, 0, 1 ],
|
|
49
|
-
[ 0, 1, 0 ],
|
|
50
|
-
[ 1, 0, 0 ],
|
|
51
|
-
[ 2, -3, 1 ],
|
|
52
|
-
[ 5, -15, 7 ] ]
|
|
53
|
-
gap> Display(NmzHilbertBasis(cone));
|
|
54
|
-
[ [ 0, 0, 1 ],
|
|
55
|
-
[ 0, 1, 3 ],
|
|
56
|
-
[ 1, 0, 0 ],
|
|
57
|
-
[ 1, 1, 2 ],
|
|
58
|
-
[ 1, 2, 4 ],
|
|
59
|
-
[ 2, 1, 1 ],
|
|
60
|
-
[ 2, 2, 3 ],
|
|
61
|
-
[ 2, 3, 5 ],
|
|
62
|
-
[ 3, 1, 0 ] ]
|
|
63
|
-
gap> Display(NmzDeg1Elements(cone));
|
|
64
|
-
[ [ 0, 0, 1 ],
|
|
65
|
-
[ 0, 1, 3 ],
|
|
66
|
-
[ 1, 0, 0 ],
|
|
67
|
-
[ 1, 1, 2 ],
|
|
68
|
-
[ 1, 2, 4 ],
|
|
69
|
-
[ 2, 1, 1 ],
|
|
70
|
-
[ 2, 2, 3 ],
|
|
71
|
-
[ 2, 3, 5 ],
|
|
72
|
-
[ 3, 1, 0 ] ]
|
|
73
|
-
gap> Display(NmzSublattice(cone));
|
|
74
|
-
[ [ [ 1, 0, 0 ], [ 0, 1, 0 ], [ 0, 0, 1 ] ],
|
|
75
|
-
[ [ 1, 0, 0 ], [ 0, 1, 0 ], [ 0, 0, 1 ] ], 1 ]
|
|
76
|
-
gap> Display(NmzOriginalMonoidGenerators(cone));
|
|
77
|
-
[ [ 1, 0, 0 ],
|
|
78
|
-
[ 2, 3, 5 ],
|
|
79
|
-
[ 0, 0, 1 ],
|
|
80
|
-
[ 1, 1, 2 ],
|
|
81
|
-
[ 0, 1, 3 ],
|
|
82
|
-
[ 3, 1, 0 ] ]
|
|
83
|
-
gap> _NmzPrintSomeConeProperties(cone, [
|
|
84
|
-
> "Generators",
|
|
85
|
-
> "ExtremeRays",
|
|
86
|
-
> "SupportHyperplanes",
|
|
87
|
-
> "HilbertBasis",
|
|
88
|
-
> "Deg1Elements",
|
|
89
|
-
> "Sublattice",
|
|
90
|
-
> "NumberLatticePoints",
|
|
91
|
-
> "OriginalMonoidGenerators",
|
|
92
|
-
> ]);
|
|
93
|
-
BasicTriangulation = fail
|
|
94
|
-
ClassGroup = [ 2 ]
|
|
95
|
-
EmbeddingDim = 3
|
|
96
|
-
Grading = [ 1, -2, 1 ]
|
|
97
|
-
GradingDenom = 1
|
|
98
|
-
HilbertQuasiPolynomial = [ 5*t^2+3*t+1 ]
|
|
99
|
-
HilbertSeries = [ 3*t^2+6*t+1, [ [ 1, 3 ] ] ]
|
|
100
|
-
InternalIndex = 1
|
|
101
|
-
IsDeg1ExtremeRays = true
|
|
102
|
-
IsDeg1HilbertBasis = true
|
|
103
|
-
IsInhomogeneous = false
|
|
104
|
-
IsIntegrallyClosed = false
|
|
105
|
-
IsPointed = true
|
|
106
|
-
IsTriangulationNested = false
|
|
107
|
-
IsTriangulationPartial = false
|
|
108
|
-
MaximalSubspace = [ ]
|
|
109
|
-
Multiplicity = 10
|
|
110
|
-
Rank = 3
|
|
111
|
-
TriangulationDetSum = 10
|
|
112
|
-
TriangulationSize = 5
|
|
113
|
-
UnitGroupIndex = 1
|
|
114
|
-
gap> Display(NmzConeDecomposition(cone));
|
|
115
|
-
[ [ rec(
|
|
116
|
-
Excluded := [ false, false, false ],
|
|
117
|
-
height := 0,
|
|
118
|
-
key := [ 0, 1, 2 ],
|
|
119
|
-
mult := 0,
|
|
120
|
-
vol := 1 ), rec(
|
|
121
|
-
Excluded := [ false, false, true ],
|
|
122
|
-
height := 0,
|
|
123
|
-
key := [ 1, 2, 3 ],
|
|
124
|
-
mult := 0,
|
|
125
|
-
vol := 1 ), rec(
|
|
126
|
-
Excluded := [ false, false, true ],
|
|
127
|
-
height := 0,
|
|
128
|
-
key := [ 1, 3, 4 ],
|
|
129
|
-
mult := 0,
|
|
130
|
-
vol := 2 ), rec(
|
|
131
|
-
Excluded := [ true, false, true ],
|
|
132
|
-
height := 0,
|
|
133
|
-
key := [ 2, 3, 4 ],
|
|
134
|
-
mult := 0,
|
|
135
|
-
vol := 1 ), rec(
|
|
136
|
-
Excluded := [ false, false, true ],
|
|
137
|
-
height := 0,
|
|
138
|
-
key := [ 2, 4, 5 ],
|
|
139
|
-
mult := 0,
|
|
140
|
-
vol := 5 ) ],
|
|
141
|
-
[ [ 0, 0, 1 ], [ 0, 1, 3 ], [ 1, 0, 0 ], [ 1, 1, 2 ], [ 2, 3, 5 ],
|
|
142
|
-
[ 3, 1, 0 ] ] ]
|
|
143
|
-
gap> ForAll(NmzConeDecomposition(cone), IsBlistRep);
|
|
144
|
-
false
|
|
145
|
-
|
|
146
|
-
#
|
|
147
|
-
gap> STOP_TEST("lattice_ideal.tst", 0);
|
|
File without changes
|