Ok. Then I guess I will have to create a separate function for evaluation of boolean functions generated by the module.
On Wednesday, September 19, 2012 1:51:28 PM UTC+5:30, Sachin Joglekar wrote: > > I have attached a file containing the code I have written for Boolean > function generation using Q-M method in python. I would like to incorporate > SymPy into its working. I would like suggestions if its possible . One > problem I am facing is dis.. > >>>from sympy import * > >>>from sympy.abc import * > >>>b=Not(B) > >>>b > Not(B) > >>>B=True > >>>Not(B) > False > >>>b > Not(B) > > Is there any way we could tweak the Not function so that b gets recognised > as being dependant on B and change its value accordingly? > -- You received this message because you are subscribed to the Google Groups "sympy" group. To view this discussion on the web visit https://groups.google.com/d/msg/sympy/-/0JNzwNYQSacJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sympy?hl=en.
