-
Notifications
You must be signed in to change notification settings - Fork 23
Patterns
In order to use the framework correctly it is important to know the different patterns.
Each pattern is designed to be as simple as possible while still capturing the concept that it is represents.
The opt out pattern allow the AI Designer to remove an option from the decision pool if ONE of the condition is false, this is done by assigning a 0 to the Multiplier input of an option.
If you want to only assign a 0 or a 1 and dont want to increase the rank of the option (in case of the entry sending a value superior to 1) you can use an AND Node.
You can also use a NOT Node to invert the value of a bool and assign a 0 if the value is superior or equal to 1.
The opt in pattern allow the AI Designer to remove an option from the decision pool if ALL of the condition are false, this is done by using an OR Node.