On Saturday, December 5, 2015 at 10:49:46 PM UTC-5, Prakash Dey wrote: > > > x,y -----> symbolic boolean variables > f -------> symbolic Boolean function > > Does
sage: P.<x,y>=BooleanPolynomialRing(); sage: f=x+y sage: f(1,0) 1 sage: f(1,1) 0 sage: f+x y do the trick for you? -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sage-support. For more options, visit https://groups.google.com/d/optout.
