You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please add a script to ./examples, which illustrates how to construct the rule strings properly when combining operators. Some examples, I would find helpful
how to use NOT
how to combine multiple NOTs
how to combine AND, OR, NOT
For example, I noticed that this does not work:
"IF (NOT (service IS low)) AND (food IS high) THEN (tip IS high)"
while this does
"IF (food IS high) AND (NOT (service IS low)) THEN (tip IS high)"
Documentation would have helped. Thank you!
The text was updated successfully, but these errors were encountered:
Please add a script to ./examples, which illustrates how to construct the rule strings properly when combining operators. Some examples, I would find helpful
For example, I noticed that this does not work:
"IF (NOT (service IS low)) AND (food IS high) THEN (tip IS high)"
while this does
"IF (food IS high) AND (NOT (service IS low)) THEN (tip IS high)"
Documentation would have helped. Thank you!
The text was updated successfully, but these errors were encountered: