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
Automate the conversion of numbers from decimal to peano when passed as parameters to the relations "add" and "multiply".
Example:
goal = Goal.with_variables( lambda x, y: multiply(x, y, peano.to_peano(24)))
Will become:
goal = Goal.with_variables( lambda x, y: multiply(x, y, 24)) #24 is automatically converted to peano inside the relation.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Automate the conversion of numbers from decimal to peano when passed as parameters to the relations "add" and "multiply".
Example:
Will become:
The text was updated successfully, but these errors were encountered: