John Freeman
John Freeman
There's a section in the original SmallCheck paper covering these situations. The general method is to define a custom generator for a new "type" representing the search space based off...
The non-uniformity is inherent to the SmallCheck approach. SmallCheck uses a depth parameter (which is named `size` in autocheck; should maybe change it) to define a subset of values for...
I forget what specific design I was considering back when I wrote this library, but I do remember I wanted to add shrinking. I'd love to see whatever you sketch...
Thank you! I'll leave it up for the time being so people will be more likely to see it.
Subprocesses might be too big of a first bite for me, but I'd like to take a stab at this (much easier since it should be doable in pure Python)....
I had reviewed this 4 days after it was submitted, and none of the questions were addressed in over a year. Why is it stuck?
Guess that was automatically added by my editor. I removed it.
@HowardHinnant try `-o boost:visibility=global` with your `conan install` command.
I was able to build and pass all tests in Docker container `centos:7` for devtoolset versions 8, 9, and 11 using the below script. I assume 10 will work just...
> Consider the patterns ['**/*', '!**/node_modules/**']. This will first get a list of every file in your cwd, then exclude every file within a node_modules folder. This behavior is cost...