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
Getting Patterns out of a Rock.
Text gets filtered out?
assert rs.getPRock(0) == {"papa":P([175,1533]),"x":P([2]),"my_array":P([]), "output":P([2 , 3])} #Not sure whether to go with every pattern as a pattern assert rs.getPRock(0, base=10) == {"papa":P([P([1,7,5]),P([1,5,3,3])]),"x":P(P([2])),"my_array":P([]), "output":P[P([2]) , P([3])]} assert rs.getPRock(0, base=10, flatten=False) == {"papa":P([P([1,7,5]),P([1,5,3,3])]),"x":P(P([2])),"my_array":P([]), "output":P[P([2]) , P([3])]} #or flatten them?? assert rs.getPRock(0, base=10, flatten=True) == {"papa":P([1,7,5,1,5,3,3]),"x":P([2]),"my_array":P([]), "output":P([2,3])}
The text was updated successfully, but these errors were encountered:
Or should text get turned into into numbers (passed through PBase if we are using it)?
Sorry, something went wrong.
Tests ands blank for getPRock #2
6257fb6
No branches or pull requests
Getting Patterns out of a Rock.
Text gets filtered out?
The text was updated successfully, but these errors were encountered: