A = R.gens()[:1]
B = R.gens()[1:]
On Wednesday 27 Feb 2013, Santanu Sarkar wrote:
> Dear all,
>I need two arrays of Boolean variables. So I have written
>
> R=BooleanPolynomialRing(2,['x%d'%(i+1) for i in range
> (1)]+,['y%d'%(i+1) for i in range (1)] )
> R.inject_variable
Dear all,
I need two arrays of Boolean variables. So I have written
R=BooleanPolynomialRing(2,['x%d'%(i+1) for i in range
(1)]+,['y%d'%(i+1) for i in range (1)] )
R.inject_variables()
Now in one array A, I want to store x1,..,x1 and in another array B
want to store
y1,..y1.