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
When attempting to FV on a function where multiple coin.transfer are executed, the FV model becomes so big that it practically hangs for ever.
coin.transfer
(load "root/fungible-v2.pact") (load "root/fungible-xchain-v1.pact") (load "root/coin-v5.pact") (module test GOVERNANCE (defcap GOVERNANCE() true) (use coin) (defun toobigmodel(x:decimal) @model [(property (> x 0.0))] (enforce (> x 0.0) "nope") (coin.transfer "alice" "bob" x) (coin.transfer "alice" "bob" x) (coin.transfer "alice" "bob" x) (coin.transfer "alice" "bob" x) (coin.transfer "alice" "bob" x) (coin.transfer "alice" "bob" x) (coin.transfer "alice" "bob" x) (coin.transfer "alice" "bob" x) (coin.transfer "alice" "bob" x) (coin.transfer "alice" "bob" x) (coin.transfer "alice" "bob" x) (coin.transfer "alice" "bob" x)) ) (verify "test")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When attempting to FV on a function where multiple
coin.transfer
are executed, the FV model becomes so big that it practically hangs for ever.The text was updated successfully, but these errors were encountered: