KPMGE / relax

RelaX - a relational algebra calculator
http://dbis-uibk.github.io/relax/
MIT License
1 stars 0 forks source link

Refactoring #3

Closed rlaiola closed 1 week ago

rlaiola commented 1 week ago
KPMGE commented 1 week ago

@rlaiola Great refactorings! I have only one question: Is there a XOR operator in trc? If not, would it make sense to add it here?

rlaiola commented 1 week ago

@rlaiola Great refactorings! I have only one question: Is there a XOR operator in trc? If not, would it make sense to add it here?

Not really mandatory but yet a relevant boolean operator. Feel free to decide.

X ⊻ Y = (X ∨ Y) ∧ (¬X ∨ ¬Y)

To be clear this operator has not been implemented/mapped in this PR, just included keywords and toolbar reference (hidden).

KPMGE commented 1 week ago

@rlaiola interesting! Indeed, i think it may be a useful addition. I'll map it later. Thanks!