Meaning of INDEPENDENT
Asserts that iterations do not interfere
- If one iteration writes to an object, others cannot read or write it
- Effects on atomic objects are what counts
Things that write to an object:
- Assignment, ASSIGN, DO index, …
- Input/Output statements write file pointers
Things that read an object
- Uses in expressions (as expected)