Open
Description
Consider this input:
julia> F, t = quadratic_field(3)
(Real quadratic field defined by x^2 - 3, sqrt(3))
julia> a = diagonal_matrix(F.([1, -1, -1]))
[1 0 0]
[0 -1 0]
[0 0 -1]
julia> b = matrix(F, [1//2 -t//2 0
t//2 1//2 0
0 0 1])
[ 1//2 -1//2*sqrt(3) 0]
[1//2*sqrt(3) 1//2 0]
[ 0 0 1]
julia> G = matrix_group(a, b)
Matrix group of degree 3 over F
julia> o = orbit(G, *, F.([1,1,1]));
julia> vert = matrix(F, collect(o));
julia> ph = convex_hull(vert)
Polyhedron in ambient dimension 3
I think the last command is slightly buggy, because the output is this:
julia> typeof(ph)
Polyhedron{QQFieldElem}
I have to use the semi-undocumented optional first argument to convex_hull
(it is documented only in the barest sense: the docstring mentions it, but provides no other information);
julia> ph2 = convex_hull(nf_elem, vert)
Polyhedron in ambient dimension 3 with nf_elem type coefficients
julia> typeof(ph2)
Polyhedron{nf_elem}
Why do I even have to provide this? Can't it automatically determine it?
Anyway, I did not even notice the problem for quite a time, because everything worked, e.g. visualization. But then I tried this:
julia> ehrhart_polynomial(ph)
polymake: WARNING: rule libnormaliz.ehrhartpoly: H_STAR_VECTOR, HILBERT_SERIES : RAYS | INPUT_RAYS failed: Some error in the normaliz input data detected: Generator degrees are too huge, h-vector would contain more than 10^6 entires. at /Users/mhorn/.julia/artifacts/e75f8bd18c56df0983c9054335c32294bb1eebac/share/polymake/bundled/libnormaliz/apps/polytope/rules/main.rules line 58.
ERROR: Can't locate object method "code" via package "1" (perhaps you forgot to load "1"?) at /Users/mhorn/.julia/artifacts/e75f8bd18c56df0983c9054335c32294bb1eebac/share/polymake/perllib/Polymake/Core/BigObjectType.pm line 1023.
Ooops, scary. I was about to suggest we catch this problem earlier, but now it looks as if ph
is simply in an inconsistent state and the proper fix is to adjust the constructors to not allow this?