Open
Description
Computing the toric ideal of a tuple of lattice points directly as a homomorphism kernel is much faster than applying toric_ideal
to the respective integer matrix. In virtually all cases that are not too small. A random example with 7 points in dimension 2:
A = [[9, 1], [3, 3], [9, 8], [5, 1], [7, 10], [5, 5], [1, 5]]
R, x = polynomial_ring(QQ, "x" => (1:7))
S, z = polynomial_ring(QQ, "z" => (1:2))
f = hom(R, S, [prod(z.^A[i]) for i in (1:7)])
I = kernel(f)
runs almost instantly but a subsequent call of toric_ideal(matrix(ZZ, A))
does not terminate after several minutes. And this happens for all randomly generated examples with the same or larger parameters. (AFAIK, these two calls should output the same ideal, and in small cases where both work fast this is indeed the case.)
This was tested in Oscar 1.3.0 and also in some of the older versions, probably not a recently introduced issue.