I have defined the input variables in characteristic 2. But when I assign a
particular value to the input, output gives the result in simple algebra
not in characteristic 2. Here is my code:
sage: P. = GF(2)[]
: x3=0
: x2=1
: x1=0
: x0=1
: s1= x0*x2*x3 + x0*x2 + x0 + x1*x2 +
i removed
C:\Program Files (x86)\MiKTeX 2.9\miktex\bin\;
and it seems to work now!
Big thank you!
But now we have to manage the incompatibility with Miktex ...
Le vendredi 31 janvier 2020 14:43:00 UTC+1, E. Madison Bray a écrit :
>
> On Friday, January 31, 2020 at 2:04:57 PM UTC+1, Jean-Fra
On Sun, Feb 2, 2020 at 5:51 AM Chin-Hung Lin wrote:
>
> I am able to resolve the issue by modifying
>
> bits.limbs = (size - 1) / (8 * sizeof(mp_limb_t)) + 1
>
> to integer division
>
> bits.limbs = (size - 1) // (8 * sizeof(mp_limb_t)) + 1
>
>
> However, I doubt that this is the correct way to fi