sympy_gamma
sympy_gamma copied to clipboard
treating xor
I couldn't find a way to use Xor in Gamma. It treats ^
always as **
which should not happen. And if that is that case, there is no way to use xor.
Use it in the form Xor(arguments)
, it will work then. SymPy Gamma's post-processor maps ^
to **
. That's the reason why ^
doesn't work for Xor
.
@asmeurer Can this issue be closed now? I guess the explanation has been provided above^.