Actually, in my case one can just rely on the Smith normal form (I
wonder why PPL/GLPK do not try that first). More precisely, one can
consider the lattice in Z^3 given by the triples of values of my
equations
(x[0] - x[1] + x[2] - x[3] - x[4] - 2 * x[6],
x[0] - x[1] + x[2] - 2 * x[4] - x[5] - x[6],
2 * x[0] - x[3] - x[4] - x[5] - x[6])
where x is in Z^7. One obtains that the lattice is equal to the
vectors in Z^3 with even sum of coordinates (ie generated by (0,1,1),
(1,0,1), (1,1,0)). The lattice does not contain the particular
solution (2, 2, -1) I am looking for.
On Wed, 21 May 2025 at 20:23, Vincent Delecroix