passagemath-gap-pkg-normalizinterface 10.6.28__cp310-cp310-musllinux_1_2_aarch64.whl → 10.6.30__cp310-cp310-musllinux_1_2_aarch64.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.

@@ -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.3.7",
6
- Date := "07/07/2024", # dd/mm/yyyy format
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 fail;
91
+ return false;
93
92
  fi;
94
93
  return true;
95
94
  end,
@@ -1,4 +1,4 @@
1
- [![Build Status](https://github.com/gap-packages/NormalizInterface/workflows/CI/badge.svg?branch=master)](https://github.com/gap-packages/NormalizInterface/actions?query=workflow%3ACI+branch%3Amaster)
1
+ [![Build Status](https://github.com/gap-packages/NormalizInterface/actions/workflows/CI.yml/badge.svg)](https://github.com/gap-packages/NormalizInterface/actions/workflows/CI.yml)
2
2
  [![Code Coverage](https://codecov.io/github/gap-packages/NormalizInterface/coverage.svg?branch=master&token=)](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.11.1 and Normaliz 3.9.1.
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
@@ -29,7 +29,7 @@ NmzHilbertSeries(D);
29
29
  NmzHasConeProperty(D,"SupportHyperplanes");
30
30
  #! true
31
31
  NmzSupportHyperplanes(D);
32
- #! [ [ 1, 0, 0 ], [ 1, 3, -3 ] ]
32
+ #! [ [ 0, 1, 0 ], [ 1, 0, 0 ] ]
33
33
  NmzEquations(D);
34
34
  #! [ [ 1, 2, -3 ] ]
35
35
  #! @EndExample
@@ -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
- #! Currently the following strings are recognized:
126
- #! <List>
127
- #! <Item><C>integral_closure</C>,</Item>
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" );
@@ -36,7 +36,7 @@ gap> NmzHilbertSeries(D);
36
36
  gap> NmzHasConeProperty(D,"SupportHyperplanes");
37
37
  true
38
38
  gap> NmzSupportHyperplanes(D);
39
- [ [ 1, 0, 0 ], [ 1, 3, -3 ] ]
39
+ [ [ 0, 1, 0 ], [ 1, 0, 0 ] ]
40
40
  gap> NmzEquations(D);
41
41
  [ [ 1, 2, -3 ] ]
42
42
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: passagemath-gap-pkg-normalizinterface
3
- Version: 10.6.28
3
+ Version: 10.6.30
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.28.0
31
+ Requires-Dist: passagemath-environment~=10.6.30.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.28
3
+ Version: 10.6.30
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.28.0; sys_platform != "win32"
32
- Requires-Dist: passagemath-environment~=10.6.28.0
31
+ Requires-Dist: passagemath-conf~=10.6.30.0; sys_platform != "win32"
32
+ Requires-Dist: passagemath-environment~=10.6.30.0
33
33
 
34
34
  =============================================================================
35
35
  passagemath: Computational Group Theory with GAP: normalizinterface package
@@ -1,21 +1,21 @@
1
- gap/pkg/normalizinterface/CHANGES,sha256=V5dMpF9X60vCs3vBsQjGnH_q33Lr4-5wyLS4--2b_B0,3458
1
+ gap/pkg/normalizinterface/CHANGES,sha256=OQ3yAraGs-UTISuoSEnHniS_iXSs16PwfVUgkAttyzo,3881
2
2
  gap/pkg/normalizinterface/LICENSE,sha256=7Si8a-ZKzTN2eXY8XAHzsFjh8LI2XKgaO-BhtquTcek,18548
3
- gap/pkg/normalizinterface/PackageInfo.g,sha256=hAe6D6Ei5xn-mtOxq5074ISYe5PLVF700SQC9O4dH54,3711
4
- gap/pkg/normalizinterface/README.md,sha256=8HMkTommWdByRK2__NHBLvfE_9f91TWyfMUUmlwPiKg,3499
3
+ gap/pkg/normalizinterface/PackageInfo.g,sha256=JnxFVx9KT4REjj33d18ejbh7TBmtVA9-3XGYy_ThhrQ,3692
4
+ gap/pkg/normalizinterface/README.md,sha256=mWNBePTo4omqtNyu8Crh2LYXcKjdqaw8XZJ7CHtRSow,3479
5
5
  gap/pkg/normalizinterface/init.g,sha256=wademXUUOueMZJJ6D6DeTsA-Jnm7Mo4AVXyI_IvnHs8,248
6
6
  gap/pkg/normalizinterface/makedoc.g,sha256=XyAyF5_0ihBqePgmABkH2CVSDNsnMxr1LyRAIYSz_BI,341
7
7
  gap/pkg/normalizinterface/read.g,sha256=LS4kzoaCXjJV-9vdTEMRNd9MGsFNumaWkr8bfi9miPU,122
8
- gap/pkg/normalizinterface/bin/aarch64-unknown-linux-musl-default64-kv9/NormalizInterface.so,sha256=dGWolQth-U-6twN-Q9jpWcTeJFhFTna33--dmI5vVww,2505873
8
+ gap/pkg/normalizinterface/bin/aarch64-unknown-linux-musl-default64-kv10/NormalizInterface.so,sha256=vm19lIGqmsW7JhMMAN-ayB9I0luYsfwJMsTyWWCfy8E,2505857
9
9
  gap/pkg/normalizinterface/etc/download.sh,sha256=yuBLGrLtSmaWSOR2PXHGxf6F7jTPqKejqSiOmsIBhBU,1999
10
10
  gap/pkg/normalizinterface/etc/generate_cone_property_wrappers.g,sha256=18gnawFsKqZ_NBXELnRgB2T3yMztY9mvBBIneCtYU88,10981
11
11
  gap/pkg/normalizinterface/examples/5x5.g,sha256=IrShVhPmco1cdcRfm1976wHespHf3HhvJMP990ZgPZU,1182
12
- gap/pkg/normalizinterface/examples/demo.g,sha256=sTL5LSNxNwlAX-zmq_teO4dTqbXxEAcfF2_yTE6TY7w,1319
12
+ gap/pkg/normalizinterface/examples/demo.g,sha256=yh4Yugh73M7FONAfUrtiJaxHpEWNxrfF87nS2-xKihA,1318
13
13
  gap/pkg/normalizinterface/examples/docs.g,sha256=KRF9e5mPNSAXtHfiKPMkimYsI3H2ydNkI20u9ulOGFs,1533
14
14
  gap/pkg/normalizinterface/examples/dual_mode.g,sha256=s1vc2NcjhdOm8GWxYxZDup4QyfzCoQgtvUSUT4IJ8HE,618
15
15
  gap/pkg/normalizinterface/examples/magic_square.g,sha256=gTPKjOo34PVAFtJ6vtvMk2azxHBwem7Q7mc10W2PFUI,1141
16
16
  gap/pkg/normalizinterface/lib/cone_property_wrappers.gd,sha256=MvWMLBoR4Ihvw8fZ10HZYDXVaZydX4Z5b7ObJj6ptP8,31917
17
17
  gap/pkg/normalizinterface/lib/cone_property_wrappers.gi,sha256=lCz4iasxFq1_rUsmXz5BFIsOdyIN_Iwz-o5AeWzochQ,12613
18
- gap/pkg/normalizinterface/lib/normaliz.gd,sha256=_O4ADAjVguacfq_ecOsvEPtHdWShb075LGMRxIdoHIA,7447
18
+ gap/pkg/normalizinterface/lib/normaliz.gd,sha256=SXTVSwK8OisiZOj6yhBllSaqrtx6hUKyaJXl2RaU4ts,6563
19
19
  gap/pkg/normalizinterface/lib/normaliz.gi,sha256=lXrAmKd4Rh3U1_9cQRwlPqLQcbElOJ8WQvMLVWs9-iw,4496
20
20
  gap/pkg/normalizinterface/tst/InhomIneq.tst,sha256=7xI-HX_4x8i0aLRRLXFAOknB9w9Q9rGZRpDnP5tq5lY,428
21
21
  gap/pkg/normalizinterface/tst/bugfix.tst,sha256=ne_0ueeBjonNrLIcd_Zc4M82NkErKw7bdxrBJuf1t_o,1414
@@ -25,9 +25,8 @@ gap/pkg/normalizinterface/tst/descent.tst,sha256=WWdayUU6n10uu8flRE2YCstKGOVbWXm
25
25
  gap/pkg/normalizinterface/tst/dual.tst,sha256=UiM_7IhncuRRonIA0jbLZ72mMB4ROP_26l3LpwrTBBc,15955
26
26
  gap/pkg/normalizinterface/tst/fractions.tst,sha256=Uhv3aRbCsdFJ9RFYvl2qkZPrvxxODZFXPUpFhKfnTjk,809
27
27
  gap/pkg/normalizinterface/tst/gorenstein.tst,sha256=s4JIm01etZGLM7770fOHAJsRn3UxtfAlbCt2ERHuYdw,1347
28
- gap/pkg/normalizinterface/tst/lattice_ideal.tst,sha256=RgCyPsppUij-oyMShT06kbqQhp0mZuSFauW_Miztl8o,3672
29
28
  gap/pkg/normalizinterface/tst/normalizinterface01.tst,sha256=HuBHtaTq8bWc-OyYjj6w5ziiG3Y4HS_w-qHgIJDWhwM,1825
30
- gap/pkg/normalizinterface/tst/normalizinterface02.tst,sha256=Wl-6HdMnX5XU2o898s39xpD1mSWxju1VvAeQZlnO61w,3414
29
+ gap/pkg/normalizinterface/tst/normalizinterface02.tst,sha256=sV59cjNUcSbj2oSIGGRL2tIxlCRAFeH8pMrfHMdDaOc,3413
31
30
  gap/pkg/normalizinterface/tst/project.tst,sha256=EKX6ZsY8qXKIT8NwThTwlQP7znJ-VBs1K3IixXaA7gg,3163
32
31
  gap/pkg/normalizinterface/tst/rational.tst,sha256=ksSUZxZ8XOsMso2QxUqcZBi1SPmCrlwRZmmeuxt_j_c,4412
33
32
  gap/pkg/normalizinterface/tst/rees.tst,sha256=KQYdu5leTRNSSU7L4Jgfd-w0hg7JsP2xiN-9F0uu8gw,16146
@@ -48,8 +47,8 @@ passagemath_gap_pkg_normalizinterface.libs/libstdc++-85f2cd6d.so.6.0.33,sha256=D
48
47
  sage/all__sagemath_gap_pkg_normalizinterface.py,sha256=71OxtojEIa1HddVgFywZowzcnEuKK9J4sADAY2ia6Y0,64
49
48
  sage/libs/all__sagemath_gap_pkg_normalizinterface.py,sha256=71OxtojEIa1HddVgFywZowzcnEuKK9J4sADAY2ia6Y0,64
50
49
  sage/libs/gap_pkg_normalizinterface.cpython-310-aarch64-linux-gnu.so,sha256=dnWlM_b23bRMuSJxhtDZJxACeBs0YyJ_fc3182fgxU0,102944
51
- passagemath_gap_pkg_normalizinterface-10.6.28.dist-info/METADATA,sha256=c14FGLhN-vrEutCtxJ0aauSZcwhL6zpWcPKcXQN1rhM,4342
52
- passagemath_gap_pkg_normalizinterface-10.6.28.dist-info/METADATA.bak,sha256=J-Yvw9-l9EHM-MsrD-0drvEtN1DVWIu6JczaZI3vdig,4410
53
- passagemath_gap_pkg_normalizinterface-10.6.28.dist-info/WHEEL,sha256=qvx19vD_zYvGQFVzkH0wrT4tVIal9wOVogYGQfy9ymw,113
54
- passagemath_gap_pkg_normalizinterface-10.6.28.dist-info/top_level.txt,sha256=hibFyzQHiLOMK68qL1OWsNKaXOmSXqZjeLTBem6Yy7I,5
55
- passagemath_gap_pkg_normalizinterface-10.6.28.dist-info/RECORD,,
50
+ passagemath_gap_pkg_normalizinterface-10.6.30.dist-info/METADATA,sha256=GyYMvNBQHdZhVtt_xDXAdPFbtXGSGvoVgAbry_VO628,4342
51
+ passagemath_gap_pkg_normalizinterface-10.6.30.dist-info/METADATA.bak,sha256=lub8Rohr4qk3mAIVjE_Y3TrmjBLqDCEkIbBhSQnNTTs,4410
52
+ passagemath_gap_pkg_normalizinterface-10.6.30.dist-info/WHEEL,sha256=qvx19vD_zYvGQFVzkH0wrT4tVIal9wOVogYGQfy9ymw,113
53
+ passagemath_gap_pkg_normalizinterface-10.6.30.dist-info/top_level.txt,sha256=hibFyzQHiLOMK68qL1OWsNKaXOmSXqZjeLTBem6Yy7I,5
54
+ passagemath_gap_pkg_normalizinterface-10.6.30.dist-info/RECORD,,
@@ -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);