MarineB210 / calculator-cucumber-2024

This repository is used for teaching purposes at the University of Mons. It contains Java code for computing arithmetic expressions. The code uses design patterns and is accompanied with JavaDoc, unit tests and BDD scenarios. We have also paid particular attention to code quality.
2 stars 1 forks source link

[FEATURE] Supporting Boolean logic #9

Closed MarineB210 closed 5 months ago

MarineB210 commented 7 months ago

Describe the new functionality you would like to see Add support for Boolean expressions (we can assume that true is represented as 0, and false is represented as 1), Boolean operations (e.g., and, or, not, implication, equivalence, xor); and Boolean algebra. One could also consider using Boolean laws to replace logic expressions by equivalent ones.