Benjamin Lorenz
Benjamin Lorenz
Thanks a lot for the input, we will try look into this but it might take a bit. If I remember correctly we had plenty of problems getting this to...
It is more robust now but we should investigate if we can turn this into a jupyter nbextension.
What is the issue with the cache? We usually just keep it and remove the wrappers when Pkg.build() is run, there are only a few configurations stored there. I don't...
The line ```Can't locate object method "code" via package "-1" (perhaps you forgot to load "-1"?) at /var/jenkins_home/workspace/oscar/local/share/polymake/perllib/Polymake/Core/BigObjectType.pm line 1021.``` indicates that polymake was unable to compute some of the...
> 1. the prompt does not seem to echo results, unlike the Julia prompt. So if I do `$i = 42;` in one line; and then on the next line...
If someone has time and wants to look into the `Query.jl` language: there is a WIP package [QuerySQLite.jl](https://github.com/queryverse/QuerySQLite.jl) that does this for SQLite and I think this is done similar...
```julia GC.@preserve pc begin gkz = pc.TRIANGULATION.GKZ_VECTOR end ``` does help here, so I think `pc` is freed before the gkz computation is done. According to some extra debug statements...
In some sense one can produce the change from triangulation to generic object also in the polymake shell but not within one statement, so the error cannot appear there. Adding...
We should add a note about this in the documentation.
This is more similiar to #163, i.e. please homogenize your input. ```julia julia> points = hcat(ones(10),rand(Float64, (10,2))) 10×3 Array{Float64,2}: 1.0 0.896657 0.606154 1.0 0.711502 0.144289 1.0 0.0103487 0.500112 1.0 0.490934...