Astral_internal.ParserUtilstype dolmen_msg := [ | `Advanced of
string
* (Stdlib.Format.formatter ->
unit)
* (Stdlib.Format.formatter ->
unit)
* (Stdlib.Format.formatter ->
unit)| `Regular of Stdlib.Format.formatter -> unit ]This type does not have name in Dolmen
val show_msg : dolmen_msg -> stringval lift_cons : ?loc:loc -> ('a -> 'b) -> string -> 'a list -> 'bLift unary constructor to lists.
val lift_cons2 : ?loc:loc -> ('a -> 'a -> 'b) -> string -> 'a list -> 'bLift binary constructor to lists.
val lift_cons3 : ?loc:loc -> ('a -> 'a -> 'a -> 'b) -> string -> 'a list -> 'bLift ternary contstructor to lists.
val lift_cons4 :
?loc:loc ->
('a -> 'a -> 'a -> 'a -> 'b) ->
string ->
'a list ->
'bLift quaternary constructor to lists.
val lift_bitvector_list :
?loc:loc ->
string ->
(int -> BaseLogic.t list -> BaseLogic.t) ->
BaseLogic.t list ->
BaseLogic.t