OpenBIMRL | Mathematical operator functions
Class path: math.operators.gateXnor
EXCLUSIVE NOT OR gate

Description
The EXCLUSIVE NOT OR gate node performs a Boolean conjunction in terms of the EXCLUSIVE NOT OR gate.
Thereby the truth table of an EXCLUSIVE NOT OR gate looks like this:
| A | B | \(\overline{A \oplus B}\) |
|---|---|---|
| false | false | true |
| false | true | false |
| true | false | false |
| true | true | true |
Input
| Input | Name | Type | Description |
|---|---|---|---|
| 0 | A | Boolean | A |
| 1 | B | Boolean | B |
Output
| Output | Name | Type | Description |
|---|---|---|---|
| 0 | AxnorB | Boolean | \(\overline{A \oplus B}\) |
Use/Example
Sample file
Download of a sample file so that the user can test the usage himself