Select the most efficient processing order for the Boolean query Q: "*trees* AND *marmalade* AND *eyes*"?
1) (marmalade AND eyes) first, then merge with trees.
2) (marmalade AND trees) first, then merge with eyes.
3) (trees AND eyes) first, then merge with marmalade.
4) Any combination would result in the same amount of operations.