Skip to content

Commit

Permalink
TLC does *not* randomize the enumeration of e.g. IntervalValue instances
Browse files Browse the repository at this point in the history
with `.probabilistic=true`.

[Bug][TLC]
  • Loading branch information
lemmy committed Nov 9, 2020
1 parent f5cf2d2 commit 9e763c4
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -83,7 +83,7 @@ public ValueEnumeration elements(final Ordering ordering) {
return ((Enumerable) enumerated.normalize()).elements();
}
} else if (ordering == Ordering.RANDOMIZED) {
elements(size());
return elements(size());
}
return elements();
}
Expand Down

0 comments on commit 9e763c4

Please sign in to comment.