package DAGaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type var = string
type f = bool * string
type fl = f list
type cmd =
  1. | Comment of string
  2. | Var of var list
  3. | Delete of var list
  4. | Info of fl
  5. | Collect
  6. | Status
  7. | Count of fl
  8. | Satisfy of fl
  9. | And of var * fl
  10. | Or of var * fl
  11. | Xor of var * fl
  12. | Ite of var * f * f * f
  13. | Equal of f * f
  14. | Not of var * f
  15. | Time
  16. | Flush
  17. | Quit
type prg = cmd list