Santanu Sarkar
unread,Feb 26, 2013, 8:50:59 PM2/26/13Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sage-s...@googlegroups.com
Dear all,
I need two arrays of Boolean variables. So I have written
R=BooleanPolynomialRing(20000,['x%d'%(i+1) for i in range (10000)]+,['y%d'%(i+1) for i in range (10000)] )
R.inject_variables()
Now in one array A, I want to store x1,..,x10000 and in another array B want to store
y1,..y10000. Hence A=[x1,.., x10000] & B=[y1,..,y10000]. How this can be possible?
Also function R.inject_variables() explicitly shows the variables, which I do not want.
Is there any way to tackle this?