Given this spec:---- MODULE Test ----
EXTENDS Naturals
VARIABLE x
Init == x = 10
Next == IF x > 0 THEN x' = x - 1 ELSE UNCHANGED x
Monotonic == []<<x > 0 => x' < x>>_x
====And this model:INIT Init
NEXT Next
PROPERTY MonotonicTLC gives this error:*** Errors: 1
line 6, col 14 to line 6, col 27 of module Test
[] followed by action not of form [A]_v.Does TLC only support [][A]_v, not []<<A>>_v?