Module CLogic.CSimplExpr

type t =
  1. | PVar of string
  2. | LVar of string
  3. | Loc of string
  4. | Int of Z.t
  5. | Bool of bool
  6. | String of string
val pp : Stdlib.Format.formatter -> t -> unit