For my program, I need to simplify boolean expressions, and I can do this using Quine–McCluskey's algorithm, however the end result only contains NOTs, ANDs, and ORs, but no XORs, and the involvement of XORs is crucial for my program - if the result derived from the algorithm contained an expression that can be converted into an XOR, how would I go about doing that?
Thank you.