sig
  type typ = LINE | RAY | VERTEX | LINEMOD | RAYMOD
  and t = {
    mutable linexpr0 : Apron.Linexpr0.t;
    mutable typ : Apron.Generator0.typ;
  }
  val make : Apron.Linexpr0.t -> Apron.Generator0.typ -> Apron.Generator0.t
  val copy : Apron.Generator0.t -> Apron.Generator0.t
  val string_of_typ : Apron.Generator0.typ -> string
  val print :
    (Apron.Dim.t -> string) -> Format.formatter -> Apron.Generator0.t -> unit
end