The following makes one or more literals true:
a,b,c :- condition.
a;b;c :- condition.
In the above a,b,c,condition is a valid model, but also (a,condition), (a,b,condition), etc. I want all of a, b, c to be true, always, if condition is true.
I can write the following to force a,b,c to be always true together.
:- condition, a, not b.
:- condition, b, not c.
:- condition, c, not a.
but these become very verbose and bug prone for complex rules.