-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not working after fresh installation #14
Comments
The error-message |
Just saw this by chance. Can't comment on the GAP .exe installer myself, but perhaps @ChrisJefferson knows whether NormalizInterface is expected to work in that? I notice that we don't install |
Works fine in 4.14, on windows. I think almost everything (except float and xgap) work in 4.14.
|
I did a fresh install of GAP-4.13.1 for Windows using the .exe installer provided at GAP's official
website. After loading the package NormalizInterface and then NConvex, some of NConvex commands
do not work. For instance, I tried with the example from the documentation:
gap> SolveEqualitiesAndInequalitiesOverIntergers( [ [ 3, 5 ] ], [ 8 ], [ [ 4, -2 ], [ 3, 1 ] ], [ 2, 3 ] );
Error, VAL_GVAR: No value bound to NmzCone in
ValueGlobal( "NmzCone" ) at /opt/gap-4.13.1/pkg/nconvex/gap/Polyhedron.gi:166 called from
ExternalNmzPolyhedron( p ) at /opt/gap-4.13.1/pkg/nconvex/gap/Polyhedron.gi:329 called from
LatticePointsGenerators( P ) at /opt/gap-4.13.1/pkg/nconvex/gap/ZSolve.gi:44 called from
<function "SolveEqualitiesAndInequalitiesOverIntergers">( )
called from read-eval loop at stdin:4
type 'quit;' to quit to outer loop
Since ExternalNmzPolyhedron seemed problematic I also tried:
gap> P:=PolyhedronByInequalities([[2,3,4],[1,2,3]]);
<A polyhedron in |R^2>
gap> ExternalNmzPolyhedron(P);
Error, VAL_GVAR: No value bound to NmzCone in
ValueGlobal( "NmzCone" ) at /opt/gap-4.13.1/pkg/nconvex/gap/Polyhedron.gi:166 called from
<function "ExternalNmzPolyhedron method">( )
called from read-eval loop at stdin:5
type 'quit;' to quit to outer loop
Is this a known issue? Thanks.
The text was updated successfully, but these errors were encountered: