Search found 3 matches

by The Real C
Fri Aug 26, 2016 10:52 pm
Forum: Releases
Topic: Version 0.13.18
Replies: 10
Views: 14420

Re: Version 0.13.18


[A OR B OR C] AND [D OR E OR F]

is equivalent to, without brackets

A AND D OR A AND E OR A AND F OR B AND D OR B AND E OR B AND F OR C AND D OR C AND E OR C AND F
So this is equivalent to
(A+B+C)*(D+E+F)=AD + AE + AF + BD + BE + BF + CD + CE + CF
Right?

Yep. "AND" is equivalent to ...
by The Real C
Thu Aug 25, 2016 6:00 pm
Forum: Releases
Topic: Version 0.13.18
Replies: 10
Views: 14420

Re: Version 0.13.18

are we going to get 'brackets' then to allow AND to be evaluated after OR subclauses?

As far as I can tell, there's no need for this, as any logical set of conditions should be possible to express in a clause-less, standard-boolean-precedence form.

For example,

[A OR B OR C] AND [D OR E OR F ...
by The Real C
Tue Aug 23, 2016 11:44 am
Forum: Resolved Problems and Bugs
Topic: [0.13] Train conditions don't follow Boolean precedence
Replies: 26
Views: 11236

Re: [0.13] Train conditions don't follow Boolean precedence

Fixed for the next release (I hope).

Being said person that was royally confused on Reddit, this pleases me greatly! Good job!

(This also means that the update will break all my train stations, as I finally figured out how to make them work like I wanted with the "old" logic pattern, but that is ...

Go to advanced search