OpenBIMRL | Mathematical operator functions
Class path: math.operators.gateOr
OR gate
Description
The OR gate node performs a Boolean conjunction in terms of the OR gate.
Thereby the truth table of an OR gate looks like this:
A | B | A \(\lor\) B |
---|---|---|
false | false | false |
false | true | true |
true | false | true |
true | true | true |
Input
Input | Name | Type | Description |
---|---|---|---|
0 | A | Boolean | A |
1 | B | Boolean | B |
Output
Output | Name | Type | Description |
---|---|---|---|
0 | AorB | Boolean | A \(\lor\) B |
Use/Example
Sample file
Download of a sample file so that the user can test the usage himself