You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sy...@googlegroups.com
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?