Open sashakolpakov opened 4 years ago
Dear Sasha, Please do not use spaces when specifying the quadratic form, as they are used to separate arguments:
./alvin -k=rc7 -qf [-1,0,0],1,1,1,1
or
./alvin -k=rc7 -qf "[-1,0,0],1,1,1,1"
should work well.
Sadly, the problem still persists.
The following input
./alvin -k=rc7 -qf [-1,0,0], 1, 1, 1, 1
gives errorERROR: No quadratic form given
Using./alvin -k=rc7 -qf "[-1,0,0], 1, 1, 1, 1"
or./alvin -k=rc7 -qf "[-1,0,0]", 1, 1, 1, 1
instead does not help. Using./alvin -k=rc7 -qf "-1,0,0", 1, 1, 1, 1
leads toQuadratic form (4,1): -1, 1, 1, 1, 1
Field of definition: Q
Vectors:
e1 = (0, -1, 1, 0, 0)
e2 = (0, 0, -1, 1, 0)
e3 = (0, 0, 0, -1, 1)
e4 = (0, 0, 0, 0, -1)
e5 = (1, 1, 1, 1, 0)
Algorithm ended
even though the field is not Q, and the form <-1,1,1,1,1> is not admissible over RC7.