it feels like it's something with `filter { w1 &lt...
# kotest
p
it feels like it's something with
filter { w1 < it }
, if I use a simpler check it finishes in a few hundred MS
s
It might be spending a lot of time filtering out invalid values before being able to reach the required iteration count
p
how do I lower the iteration count?
It's not on the checkAll/forAll with this overload, it cannot be mutated after the fact, and
Arb#take
is for generation rather than construction xD
It was my first instinct to find that but couldn't
oh nevermind
silly me xD
checkAll(100, subsequentValues)
okay, now to find a global config for this