You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Often in models with deeply nested structures, referring to a nested clafer requires long navigation paths, which contain costly . operations. However, when the referred clafer has global cardinality <= 1, then he path can be omitted and the clafer can be referred to globally.
For example
a
xor b ?
c
d
e
[ a.b.d.e ]
can be optimized to
[ e ]
that is, e can be accessed the same way as a top-level clafer (e.g., a).
The text was updated successfully, but these errors were encountered:
Often in models with deeply nested structures, referring to a nested clafer requires long navigation paths, which contain costly
.
operations. However, when the referred clafer has global cardinality <= 1, then he path can be omitted and the clafer can be referred to globally.For example
can be optimized to
that is,
e
can be accessed the same way as a top-level clafer (e.g.,a
).The text was updated successfully, but these errors were encountered: