The following example comes up in a calculation. However, it crashes consistently and quite severely.
In a jupyter notebook, the python kernel itself crashes even before printing its usual stack trace.
import PyNormaliz
lower = [[0,1,0,0,0],[1,0,0,0,0],[1,1,0,1,0],[1,1,1,0,0],[1,1,1,1,0]]
upper = [[0,-1,0,0,1],[-1,0,0,0,0],[-1,-1,0,-1,2],[-1,-1,-1,0,2],[-1,-1,-1,-1,3]]
PyNormaliz.Cone(inhom_inequalities=lower+upper).LatticePoints()
Happy to provide more details if needed.
The following example comes up in a calculation. However, it crashes consistently and quite severely.
In a jupyter notebook, the python kernel itself crashes even before printing its usual stack trace.
Happy to provide more details if needed.