We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@jdegenstein reports the following snippet nondeterministically fails
with BuildSketch() as s: with GridLocations(2,2,25,25): Rectangle(1,1) assert len(s.sketch.faces()) == 25*25
other variations work so this appears to be an issue limited to the Builder API
s = Sketch() + GridLocations(2,2,25,25) * Rectangle(1,1) assert len(s.faces()) == 25*25 # ok
The text was updated successfully, but these errors were encountered:
Improving performance and removing random failures Issue #508 #509
15a2b89
With the above fix this failure doesn't happen after at least 100 attempts.
Sorry, something went wrong.
No branches or pull requests
@jdegenstein reports the following snippet nondeterministically fails
other variations work so this appears to be an issue limited to the Builder API
The text was updated successfully, but these errors were encountered: