(no title)
matklad | 3 months ago
You could _implement_ non-determinism via probabilistic sampling, but you could also implement the same interface as exhaustive search.
matklad | 3 months ago
You could _implement_ non-determinism via probabilistic sampling, but you could also implement the same interface as exhaustive search.
pfdietz|3 months ago
An example is something like "pairwise testing" of arguments to a function. Just randomly generating values will hit all possible pairs of values to arguments, again with a logarithmic penalty.
AlotOfReading|3 months ago