package TCSLib

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type token =
  1. | Ttt
  2. | Tff
  3. | TImplies
  4. | TInvImplies
  5. | TIff
  6. | TXor
  7. | TFormulaIdent of string
  8. | TArithmVar of string
  9. | TArithmIndex
  10. | TBeginDef
  11. | TEndDef
  12. | TDelim
  13. | TMatchWith
  14. | TMatchOption
  15. | TQuestionMark
  16. | TCondAnd
  17. | TCondOr
  18. | TCondNot
  19. | TCondEq
  20. | TCondUneq
  21. | TCondGreaterEq
  22. | TCondLessEq
  23. | TMu
  24. | TNu
  25. | TNext
  26. | TFinally
  27. | TGenerally
  28. | TProp of string
  29. | TVar of string
  30. | TBracketOpen
  31. | TBracketClose
  32. | TNeg
  33. | TAnd
  34. | TOr
  35. | TDiamondOpen
  36. | TStar
  37. | TDiamondClose
  38. | TBoxOpen
  39. | TBoxClose
  40. | TPoint
  41. | TArithmConst of int
  42. | TArithmSum
  43. | TArithmNeg
  44. | TArithmProd
  45. | TArithmDiv
  46. | TArithmMod
  47. | TEOL