With multiple conditions and one or more [OR] conditions in a trigger condition, what does the [OR] bind to?
i.e, is the binding for [OR] tighter than than the implied [AND] between two non-[OR] conditions?
From the manual:
This implies that the [OR] operation binds tighter than the [AND] operation
As an example, if I have the condition list
Unit A inside zone Z
Unit A AGL altitude higher than 10000
[OR]
Unit B inside zone Z
Unit B AGL altitude higher than 10000
is the condition evaluated as
( Unit A inside zone Z [AND] Unit A AGL altitude higher than 10000 ) [OR] ( Unit B inside zone Z [AND] Unit B AGL altitude higher than 10000 )
or is it evaluated as:
Unit A inside zone Z [AND] ( Unit A AGL altitude higher than 10000 [OR] Unit B inside zone Z ) [AND] Unit B AGL altitude higher than 10000
I'm hoping for the first, but worried it might be the second.