Advertisement
tinyevil

Untitled

Feb 24th, 2018
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. plus :: (n m::nat | n + m < 2^32) : nat -- (1)
  2. plus :: (n m::nat) : nat -- (2)
  3.  
  4. plus 1 2 -- pretty sure it chose (1)
  5. plus 1 2^67 -- pretty sure it chose (2)
  6.  
  7. if n < 2^30:
  8. plus n n -- not sure, but more likely (1)
  9.  
  10. if n < 2^30:
  11. plus n (n + 2^29) -- not sure for this one at all
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement