Advertisement
Guest User

Untitled

a guest
Apr 4th, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
F# 0.26 KB | None | 0 0
  1. module Term
  2.  
  3. type Term =
  4. // Constants
  5. | False
  6. | True
  7.  
  8. // Variables
  9. | Var of int
  10.  
  11. // Quantifiers
  12. | All of Term * Term
  13.  
  14. // Predicates
  15. | And of Term list
  16. | Eqv of Term * Term
  17. | Not of Term
  18. | Or of Term list
  19.  
  20. // Comparison
  21. | Equal of Term * Term
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement