2006/4/4, Luke Palmer <[EMAIL PROTECTED]>:
> I don't follow.  Why is that the representation of any(1,2,3)?  Is
> this a disjunctive normal form; i.e. is 2 < any(1,2,3) equivalent to
> the test:
>
>      2 < 1
>   || 2 < 2
>   || 2 < 3
>   || 2 < 1 && 2 < 2
>   || ...

  2 < 1
| 2 < 2
| 2 < 3

which ends up being the same thing after simplification

- Flavio S. Glock

Reply via email to