passagemath-gap-pkg-normalizinterface 10.6.23__cp312-cp312-macosx_13_0_x86_64.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 +102 -0
- gap/pkg/normalizinterface/LICENSE +351 -0
- gap/pkg/normalizinterface/Makefile +19 -0
- gap/pkg/normalizinterface/Makefile.gappkg +220 -0
- gap/pkg/normalizinterface/Makefile.in +19 -0
- gap/pkg/normalizinterface/PackageInfo.g +122 -0
- gap/pkg/normalizinterface/README.md +96 -0
- gap/pkg/normalizinterface/autogen.sh +5 -0
- gap/pkg/normalizinterface/bin/x86_64-apple-darwin22-default64-kv9/NormalizInterface.so +0 -0
- gap/pkg/normalizinterface/config.log +337 -0
- gap/pkg/normalizinterface/config.status +897 -0
- gap/pkg/normalizinterface/configure +5163 -0
- gap/pkg/normalizinterface/configure.ac +115 -0
- gap/pkg/normalizinterface/etc/download.sh +85 -0
- gap/pkg/normalizinterface/etc/generate_cone_property_wrappers.g +380 -0
- gap/pkg/normalizinterface/examples/5x5.g +22 -0
- gap/pkg/normalizinterface/examples/demo.g +53 -0
- gap/pkg/normalizinterface/examples/docs.g +43 -0
- gap/pkg/normalizinterface/examples/dual_mode.g +26 -0
- gap/pkg/normalizinterface/examples/magic_square.g +36 -0
- gap/pkg/normalizinterface/init.g +7 -0
- gap/pkg/normalizinterface/lib/cone_property_wrappers.gd +682 -0
- gap/pkg/normalizinterface/lib/cone_property_wrappers.gi +132 -0
- gap/pkg/normalizinterface/lib/normaliz.gd +158 -0
- gap/pkg/normalizinterface/lib/normaliz.gi +153 -0
- gap/pkg/normalizinterface/makedoc.g +13 -0
- gap/pkg/normalizinterface/read.g +3 -0
- gap/pkg/normalizinterface/tst/InhomIneq.tst +20 -0
- gap/pkg/normalizinterface/tst/bugfix.tst +37 -0
- gap/pkg/normalizinterface/tst/conversion.tst +87 -0
- gap/pkg/normalizinterface/tst/cube-incidence.tst +62 -0
- gap/pkg/normalizinterface/tst/descent.tst +173 -0
- gap/pkg/normalizinterface/tst/dual.tst +533 -0
- gap/pkg/normalizinterface/tst/fractions.tst +29 -0
- gap/pkg/normalizinterface/tst/gorenstein.tst +22 -0
- gap/pkg/normalizinterface/tst/lattice_ideal.tst +147 -0
- gap/pkg/normalizinterface/tst/normalizinterface01.tst +46 -0
- gap/pkg/normalizinterface/tst/normalizinterface02.tst +107 -0
- gap/pkg/normalizinterface/tst/project.tst +136 -0
- gap/pkg/normalizinterface/tst/rational.tst +151 -0
- gap/pkg/normalizinterface/tst/rees.tst +544 -0
- gap/pkg/normalizinterface/tst/rp2poly.tst +351 -0
- gap/pkg/normalizinterface/tst/rproj2.tst +548 -0
- gap/pkg/normalizinterface/tst/testall.g +3 -0
- gap/pkg/normalizinterface/tst/verticesfloat.tst +11 -0
- passagemath_gap_pkg_normalizinterface-10.6.23.dist-info/METADATA +92 -0
- passagemath_gap_pkg_normalizinterface-10.6.23.dist-info/METADATA.bak +93 -0
- passagemath_gap_pkg_normalizinterface-10.6.23.dist-info/RECORD +60 -0
- passagemath_gap_pkg_normalizinterface-10.6.23.dist-info/WHEEL +6 -0
- passagemath_gap_pkg_normalizinterface-10.6.23.dist-info/top_level.txt +1 -0
- passagemath_gap_pkg_normalizinterface.dylibs/libeantic.3.dylib +0 -0
- passagemath_gap_pkg_normalizinterface.dylibs/libeanticxx.3.dylib +0 -0
- passagemath_gap_pkg_normalizinterface.dylibs/libflint.21.0.dylib +0 -0
- passagemath_gap_pkg_normalizinterface.dylibs/libgmp.10.dylib +0 -0
- passagemath_gap_pkg_normalizinterface.dylibs/libgmpxx.4.dylib +0 -0
- passagemath_gap_pkg_normalizinterface.dylibs/libmpfr.6.dylib +0 -0
- passagemath_gap_pkg_normalizinterface.dylibs/libnormaliz.3.dylib +0 -0
- sage/all__sagemath_gap_pkg_normalizinterface.py +1 -0
- sage/libs/all__sagemath_gap_pkg_normalizinterface.py +1 -0
- sage/libs/gap_pkg_normalizinterface.cpython-312-darwin.so +0 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
#! @BeginChunk example_dual
|
|
2
|
+
#! @BeginExample
|
|
3
|
+
M := [
|
|
4
|
+
[ 8, 8, 8, 7 ],
|
|
5
|
+
[ 0, 4, 0, 1 ],
|
|
6
|
+
[ 0, 1, 0, 7 ],
|
|
7
|
+
[ 0, -2, 0, 7 ],
|
|
8
|
+
[ 0, -2, 0, 1 ],
|
|
9
|
+
[ 8, 48, 8, 17 ],
|
|
10
|
+
[ 1, 6, 1, 34 ],
|
|
11
|
+
[ 2,-12, -2, 37 ],
|
|
12
|
+
[ 4,-24, -4, 14 ]
|
|
13
|
+
];;
|
|
14
|
+
D := NmzCone(["inhom_inequalities", M,
|
|
15
|
+
"signs", [[1,1,1]],
|
|
16
|
+
"grading", [[1,1,1]]]);
|
|
17
|
+
#! <a Normaliz cone>
|
|
18
|
+
NmzCompute(D,["DualMode","HilbertBasis","ModuleGenerators"]);
|
|
19
|
+
#! true
|
|
20
|
+
NmzHilbertBasis(D);
|
|
21
|
+
#! [ [ 1, 0, 0, 0 ], [ 1, 0, 1, 0 ] ]
|
|
22
|
+
NmzModuleGenerators(D);
|
|
23
|
+
#! [ [ 0, 0, 0, 1 ], [ 0, 0, 1, 1 ], [ 0, 0, 2, 1 ], [ 0, 0, 3, 1 ] ]
|
|
24
|
+
#! @EndExample
|
|
25
|
+
#! @EndChunk
|
|
26
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
#! @BeginChunk Demo_example_3x3magiceven
|
|
2
|
+
#! @BeginExample
|
|
3
|
+
Magic3x3even := NmzCone(["equations",
|
|
4
|
+
[ [1, 1, 1, -1, -1, -1, 0, 0, 0],
|
|
5
|
+
[1, 1, 1, 0, 0, 0, -1, -1, -1],
|
|
6
|
+
[0, 1, 1, -1, 0, 0, -1, 0, 0],
|
|
7
|
+
[1, 0, 1, 0, -1, 0, 0, -1, 0],
|
|
8
|
+
[1, 1, 0, 0, 0, -1, 0, 0, -1],
|
|
9
|
+
[0, 1, 1, 0, -1, 0, 0, 0, -1],
|
|
10
|
+
[1, 1, 0, 0, -1, 0, -1, 0, 0] ],
|
|
11
|
+
"congruences",
|
|
12
|
+
[ [1, 0, 0, 0, 0, 0, 0, 0, 0, 2],
|
|
13
|
+
[0, 0, 1, 0, 0, 0, 0, 0, 0, 2],
|
|
14
|
+
[0, 0, 0, 0, 0, 0, 1, 0, 0, 2],
|
|
15
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 1, 2] ],
|
|
16
|
+
"grading",
|
|
17
|
+
[ [1, 1, 1, 0, 0, 0, 0, 0, 0] ] ] );
|
|
18
|
+
#! <a Normaliz cone>
|
|
19
|
+
|
|
20
|
+
NmzHilbertBasis(Magic3x3even);
|
|
21
|
+
#! [ [ 0, 4, 2, 4, 2, 0, 2, 0, 4 ], [ 2, 0, 4, 4, 2, 0, 0, 4, 2 ],
|
|
22
|
+
#! [ 2, 2, 2, 2, 2, 2, 2, 2, 2 ], [ 2, 4, 0, 0, 2, 4, 4, 0, 2 ],
|
|
23
|
+
#! [ 4, 0, 2, 0, 2, 4, 2, 4, 0 ], [ 2, 3, 4, 5, 3, 1, 2, 3, 4 ],
|
|
24
|
+
#! [ 2, 5, 2, 3, 3, 3, 4, 1, 4 ], [ 4, 1, 4, 3, 3, 3, 2, 5, 2 ],
|
|
25
|
+
#! [ 4, 3, 2, 1, 3, 5, 4, 3, 2 ] ]
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
NmzHilbertSeries(Magic3x3even);
|
|
29
|
+
#! [ t^3+3*t^2-t+1, [ [ 1, 1 ], [ 2, 2 ] ] ]
|
|
30
|
+
|
|
31
|
+
NmzHilbertQuasiPolynomial(Magic3x3even);
|
|
32
|
+
#! [ 1/2*t^2+t+1, 1/2*t^2-1/2 ]
|
|
33
|
+
|
|
34
|
+
#! @EndExample
|
|
35
|
+
#! @EndChunk
|
|
36
|
+
|