sig
  val verbose_atleast : int -> bool
  val debug_atleast : int -> bool
  val result : ?level:int -> 'Log.pretty_printer
  val feedback : ?level:int -> 'Log.pretty_printer
  val debug : ?level:int -> 'Log.pretty_printer
  val warning : 'Log.pretty_printer
  val error : 'Log.pretty_printer
  val abort : ('a, 'b) Log.pretty_aborter
  val failure : 'Log.pretty_printer
  val fatal : ('a, 'b) Log.pretty_aborter
  val verify : bool -> ('a, bool) Log.pretty_aborter
  val not_yet_implemented : ('a, Format.formatter, unit, 'b) format4 -> 'a
  val deprecated : string -> now:string -> ('-> 'b) -> '-> 'b
  val with_result : (Log.event -> 'a) -> ('b, 'a) Log.pretty_aborter
  val with_warning : (Log.event -> 'a) -> ('b, 'a) Log.pretty_aborter
  val with_error : (Log.event -> 'a) -> ('b, 'a) Log.pretty_aborter
  val with_failure : (Log.event -> 'a) -> ('b, 'a) Log.pretty_aborter
  val log :
    ?kind:Log.kind -> ?verbose:int -> ?debug:int -> 'Log.pretty_printer
  val with_log :
    (Log.event -> 'a) -> ?kind:Log.kind -> ('b, 'a) Log.pretty_aborter
  val register : Log.kind -> (Log.event -> unit) -> unit
  val register_tag_handlers : (string -> string) * (string -> string) -> unit
  val add_group : string -> Plugin.group
  module Help :
    sig
      type t = bool
      val set : t -> unit
      val add_set_hook : (t -> t -> unit) -> unit
      val get : unit -> t
      val clear : unit -> unit
      val is_default : unit -> bool
      val is_set : unit -> bool
      val self : Project.Computation.t
      val select :
        Kind.how ->
        Project.Computation.selection -> Project.Computation.selection
      val depend : Project.Computation.t -> unit
      val name : string
      val mark_as_computed : ?project:Project.project -> unit -> unit
      val is_computed : ?project:Project.project -> unit -> bool
      val do_not_save : unit -> unit
      module Datatype :
        sig
          type t
          val descr : Unmarshal.t
          val copy : t -> t
          val name : string
          val register_comparable :
            ?compare:(t -> t -> int) ->
            ?equal:(t -> t -> bool) -> ?hash:(t -> int) -> unit -> unit
          val is_comparable_set : unit -> bool
          val hash : t -> int
          val equal : t -> t -> bool
          val compare : t -> t -> int
          val mem_project :
            ((Project.project -> bool) -> t -> bool) option ref
        end
      val howto_marshal : (Datatype.t -> 'a) -> ('-> Datatype.t) -> unit
      val equal : t -> t -> bool
      val unsafe_set : t -> unit
      val add_alias : string list -> unit
      val on : unit -> unit
      val off : unit -> unit
    end
  module Verbose :
    sig
      type t = int
      val set : t -> unit
      val add_set_hook : (t -> t -> unit) -> unit
      val get : unit -> t
      val clear : unit -> unit
      val is_default : unit -> bool
      val is_set : unit -> bool
      val self : Project.Computation.t
      val select :
        Kind.how ->
        Project.Computation.selection -> Project.Computation.selection
      val depend : Project.Computation.t -> unit
      val name : string
      val mark_as_computed : ?project:Project.project -> unit -> unit
      val is_computed : ?project:Project.project -> unit -> bool
      val do_not_save : unit -> unit
      module Datatype :
        sig
          type t
          val descr : Unmarshal.t
          val copy : t -> t
          val name : string
          val register_comparable :
            ?compare:(t -> t -> int) ->
            ?equal:(t -> t -> bool) -> ?hash:(t -> int) -> unit -> unit
          val is_comparable_set : unit -> bool
          val hash : t -> int
          val equal : t -> t -> bool
          val compare : t -> t -> int
          val mem_project :
            ((Project.project -> bool) -> t -> bool) option ref
        end
      val howto_marshal : (Datatype.t -> 'a) -> ('-> Datatype.t) -> unit
      val equal : t -> t -> bool
      val unsafe_set : t -> unit
      val add_alias : string list -> unit
      val incr : unit -> unit
      val set_range : min:int -> max:int -> unit
      val get_range : unit -> int * int
    end
  module Debug :
    sig
      type t = int
      val set : t -> unit
      val add_set_hook : (t -> t -> unit) -> unit
      val get : unit -> t
      val clear : unit -> unit
      val is_default : unit -> bool
      val is_set : unit -> bool
      val self : Project.Computation.t
      val select :
        Kind.how ->
        Project.Computation.selection -> Project.Computation.selection
      val depend : Project.Computation.t -> unit
      val name : string
      val mark_as_computed : ?project:Project.project -> unit -> unit
      val is_computed : ?project:Project.project -> unit -> bool
      val do_not_save : unit -> unit
      module Datatype :
        sig
          type t
          val descr : Unmarshal.t
          val copy : t -> t
          val name : string
          val register_comparable :
            ?compare:(t -> t -> int) ->
            ?equal:(t -> t -> bool) -> ?hash:(t -> int) -> unit -> unit
          val is_comparable_set : unit -> bool
          val hash : t -> int
          val equal : t -> t -> bool
          val compare : t -> t -> int
          val mem_project :
            ((Project.project -> bool) -> t -> bool) option ref
        end
      val howto_marshal : (Datatype.t -> 'a) -> ('-> Datatype.t) -> unit
      val equal : t -> t -> bool
      val unsafe_set : t -> unit
      val add_alias : string list -> unit
      val incr : unit -> unit
      val set_range : min:int -> max:int -> unit
      val get_range : unit -> int * int
    end
  val help : Plugin.group
  val messages : Plugin.group
  module Bool :
    functor
      (X : sig
             val option_name : string
             val descr : string
             val default : bool
           end->
      sig
        type t = bool
        val set : t -> unit
        val add_set_hook : (t -> t -> unit) -> unit
        val get : unit -> t
        val clear : unit -> unit
        val is_default : unit -> bool
        val is_set : unit -> bool
        val self : Project.Computation.t
        val select :
          Kind.how ->
          Project.Computation.selection -> Project.Computation.selection
        val depend : Project.Computation.t -> unit
        val name : string
        val mark_as_computed : ?project:Project.project -> unit -> unit
        val is_computed : ?project:Project.project -> unit -> bool
        val do_not_save : unit -> unit
        module Datatype :
          sig
            type t
            val descr : Unmarshal.t
            val copy : t -> t
            val name : string
            val register_comparable :
              ?compare:(t -> t -> int) ->
              ?equal:(t -> t -> bool) -> ?hash:(t -> int) -> unit -> unit
            val is_comparable_set : unit -> bool
            val hash : t -> int
            val equal : t -> t -> bool
            val compare : t -> t -> int
            val mem_project :
              ((Project.project -> bool) -> t -> bool) option ref
          end
        val howto_marshal : (Datatype.t -> 'a) -> ('-> Datatype.t) -> unit
        val equal : t -> t -> bool
        val unsafe_set : t -> unit
        val add_alias : string list -> unit
        val on : unit -> unit
        val off : unit -> unit
      end
  module Action :
    functor (X : Plugin.Parameter_input->
      sig
        type t = bool
        val set : t -> unit
        val add_set_hook : (t -> t -> unit) -> unit
        val get : unit -> t
        val clear : unit -> unit
        val is_default : unit -> bool
        val is_set : unit -> bool
        val self : Project.Computation.t
        val select :
          Kind.how ->
          Project.Computation.selection -> Project.Computation.selection
        val depend : Project.Computation.t -> unit
        val name : string
        val mark_as_computed : ?project:Project.project -> unit -> unit
        val is_computed : ?project:Project.project -> unit -> bool
        val do_not_save : unit -> unit
        module Datatype :
          sig
            type t
            val descr : Unmarshal.t
            val copy : t -> t
            val name : string
            val register_comparable :
              ?compare:(t -> t -> int) ->
              ?equal:(t -> t -> bool) -> ?hash:(t -> int) -> unit -> unit
            val is_comparable_set : unit -> bool
            val hash : t -> int
            val equal : t -> t -> bool
            val compare : t -> t -> int
            val mem_project :
              ((Project.project -> bool) -> t -> bool) option ref
          end
        val howto_marshal : (Datatype.t -> 'a) -> ('-> Datatype.t) -> unit
        val equal : t -> t -> bool
        val unsafe_set : t -> unit
        val add_alias : string list -> unit
        val on : unit -> unit
        val off : unit -> unit
      end
  module False :
    functor (X : Plugin.Parameter_input->
      sig
        type t = bool
        val set : t -> unit
        val add_set_hook : (t -> t -> unit) -> unit
        val get : unit -> t
        val clear : unit -> unit
        val is_default : unit -> bool
        val is_set : unit -> bool
        val self : Project.Computation.t
        val select :
          Kind.how ->
          Project.Computation.selection -> Project.Computation.selection
        val depend : Project.Computation.t -> unit
        val name : string
        val mark_as_computed : ?project:Project.project -> unit -> unit
        val is_computed : ?project:Project.project -> unit -> bool
        val do_not_save : unit -> unit
        module Datatype :
          sig
            type t
            val descr : Unmarshal.t
            val copy : t -> t
            val name : string
            val register_comparable :
              ?compare:(t -> t -> int) ->
              ?equal:(t -> t -> bool) -> ?hash:(t -> int) -> unit -> unit
            val is_comparable_set : unit -> bool
            val hash : t -> int
            val equal : t -> t -> bool
            val compare : t -> t -> int
            val mem_project :
              ((Project.project -> bool) -> t -> bool) option ref
          end
        val howto_marshal : (Datatype.t -> 'a) -> ('-> Datatype.t) -> unit
        val equal : t -> t -> bool
        val unsafe_set : t -> unit
        val add_alias : string list -> unit
        val on : unit -> unit
        val off : unit -> unit
      end
  module True :
    functor (X : Plugin.Parameter_input->
      sig
        type t = bool
        val set : t -> unit
        val add_set_hook : (t -> t -> unit) -> unit
        val get : unit -> t
        val clear : unit -> unit
        val is_default : unit -> bool
        val is_set : unit -> bool
        val self : Project.Computation.t
        val select :
          Kind.how ->
          Project.Computation.selection -> Project.Computation.selection
        val depend : Project.Computation.t -> unit
        val name : string
        val mark_as_computed : ?project:Project.project -> unit -> unit
        val is_computed : ?project:Project.project -> unit -> bool
        val do_not_save : unit -> unit
        module Datatype :
          sig
            type t
            val descr : Unmarshal.t
            val copy : t -> t
            val name : string
            val register_comparable :
              ?compare:(t -> t -> int) ->
              ?equal:(t -> t -> bool) -> ?hash:(t -> int) -> unit -> unit
            val is_comparable_set : unit -> bool
            val hash : t -> int
            val equal : t -> t -> bool
            val compare : t -> t -> int
            val mem_project :
              ((Project.project -> bool) -> t -> bool) option ref
          end
        val howto_marshal : (Datatype.t -> 'a) -> ('-> Datatype.t) -> unit
        val equal : t -> t -> bool
        val unsafe_set : t -> unit
        val add_alias : string list -> unit
        val on : unit -> unit
        val off : unit -> unit
      end
  module Int :
    functor
      (X : sig
             val default : int
             val option_name : string
             val descr : string
             val arg_name : string
           end->
      sig
        type t = int
        val set : t -> unit
        val add_set_hook : (t -> t -> unit) -> unit
        val get : unit -> t
        val clear : unit -> unit
        val is_default : unit -> bool
        val is_set : unit -> bool
        val self : Project.Computation.t
        val select :
          Kind.how ->
          Project.Computation.selection -> Project.Computation.selection
        val depend : Project.Computation.t -> unit
        val name : string
        val mark_as_computed : ?project:Project.project -> unit -> unit
        val is_computed : ?project:Project.project -> unit -> bool
        val do_not_save : unit -> unit
        module Datatype :
          sig
            type t
            val descr : Unmarshal.t
            val copy : t -> t
            val name : string
            val register_comparable :
              ?compare:(t -> t -> int) ->
              ?equal:(t -> t -> bool) -> ?hash:(t -> int) -> unit -> unit
            val is_comparable_set : unit -> bool
            val hash : t -> int
            val equal : t -> t -> bool
            val compare : t -> t -> int
            val mem_project :
              ((Project.project -> bool) -> t -> bool) option ref
          end
        val howto_marshal : (Datatype.t -> 'a) -> ('-> Datatype.t) -> unit
        val equal : t -> t -> bool
        val unsafe_set : t -> unit
        val add_alias : string list -> unit
        val incr : unit -> unit
        val set_range : min:int -> max:int -> unit
        val get_range : unit -> int * int
      end
  module Zero :
    functor (X : Plugin.Parameter_input_with_arg->
      sig
        type t = int
        val set : t -> unit
        val add_set_hook : (t -> t -> unit) -> unit
        val get : unit -> t
        val clear : unit -> unit
        val is_default : unit -> bool
        val is_set : unit -> bool
        val self : Project.Computation.t
        val select :
          Kind.how ->
          Project.Computation.selection -> Project.Computation.selection
        val depend : Project.Computation.t -> unit
        val name : string
        val mark_as_computed : ?project:Project.project -> unit -> unit
        val is_computed : ?project:Project.project -> unit -> bool
        val do_not_save : unit -> unit
        module Datatype :
          sig
            type t
            val descr : Unmarshal.t
            val copy : t -> t
            val name : string
            val register_comparable :
              ?compare:(t -> t -> int) ->
              ?equal:(t -> t -> bool) -> ?hash:(t -> int) -> unit -> unit
            val is_comparable_set : unit -> bool
            val hash : t -> int
            val equal : t -> t -> bool
            val compare : t -> t -> int
            val mem_project :
              ((Project.project -> bool) -> t -> bool) option ref
          end
        val howto_marshal : (Datatype.t -> 'a) -> ('-> Datatype.t) -> unit
        val equal : t -> t -> bool
        val unsafe_set : t -> unit
        val add_alias : string list -> unit
        val incr : unit -> unit
        val set_range : min:int -> max:int -> unit
        val get_range : unit -> int * int
      end
  module String :
    functor
      (X : sig
             val option_name : string
             val descr : string
             val arg_name : string
             val default : string
           end->
      sig
        type t = string
        val set : t -> unit
        val add_set_hook : (t -> t -> unit) -> unit
        val get : unit -> t
        val clear : unit -> unit
        val is_default : unit -> bool
        val is_set : unit -> bool
        val self : Project.Computation.t
        val select :
          Kind.how ->
          Project.Computation.selection -> Project.Computation.selection
        val depend : Project.Computation.t -> unit
        val name : string
        val mark_as_computed : ?project:Project.project -> unit -> unit
        val is_computed : ?project:Project.project -> unit -> bool
        val do_not_save : unit -> unit
        module Datatype :
          sig
            type t
            val descr : Unmarshal.t
            val copy : t -> t
            val name : string
            val register_comparable :
              ?compare:(t -> t -> int) ->
              ?equal:(t -> t -> bool) -> ?hash:(t -> int) -> unit -> unit
            val is_comparable_set : unit -> bool
            val hash : t -> int
            val equal : t -> t -> bool
            val compare : t -> t -> int
            val mem_project :
              ((Project.project -> bool) -> t -> bool) option ref
          end
        val howto_marshal : (Datatype.t -> 'a) -> ('-> Datatype.t) -> unit
        val equal : t -> t -> bool
        val unsafe_set : t -> unit
        val add_alias : string list -> unit
        val set_possible_values : string list -> unit
        val get_possible_values : unit -> string list
      end
  module EmptyString :
    functor (X : Plugin.Parameter_input_with_arg->
      sig
        type t = string
        val set : t -> unit
        val add_set_hook : (t -> t -> unit) -> unit
        val get : unit -> t
        val clear : unit -> unit
        val is_default : unit -> bool
        val is_set : unit -> bool
        val self : Project.Computation.t
        val select :
          Kind.how ->
          Project.Computation.selection -> Project.Computation.selection
        val depend : Project.Computation.t -> unit
        val name : string
        val mark_as_computed : ?project:Project.project -> unit -> unit
        val is_computed : ?project:Project.project -> unit -> bool
        val do_not_save : unit -> unit
        module Datatype :
          sig
            type t
            val descr : Unmarshal.t
            val copy : t -> t
            val name : string
            val register_comparable :
              ?compare:(t -> t -> int) ->
              ?equal:(t -> t -> bool) -> ?hash:(t -> int) -> unit -> unit
            val is_comparable_set : unit -> bool
            val hash : t -> int
            val equal : t -> t -> bool
            val compare : t -> t -> int
            val mem_project :
              ((Project.project -> bool) -> t -> bool) option ref
          end
        val howto_marshal : (Datatype.t -> 'a) -> ('-> Datatype.t) -> unit
        val equal : t -> t -> bool
        val unsafe_set : t -> unit
        val add_alias : string list -> unit
        val set_possible_values : string list -> unit
        val get_possible_values : unit -> string list
      end
  module StringSet :
    functor (X : Plugin.Parameter_input_with_arg->
      sig
        type t = Cilutil.StringSet.t
        val set : t -> unit
        val add_set_hook : (t -> t -> unit) -> unit
        val get : unit -> t
        val clear : unit -> unit
        val is_default : unit -> bool
        val is_set : unit -> bool
        val self : Project.Computation.t
        val select :
          Kind.how ->
          Project.Computation.selection -> Project.Computation.selection
        val depend : Project.Computation.t -> unit
        val name : string
        val mark_as_computed : ?project:Project.project -> unit -> unit
        val is_computed : ?project:Project.project -> unit -> bool
        val do_not_save : unit -> unit
        module Datatype :
          sig
            type t
            val descr : Unmarshal.t
            val copy : t -> t
            val name : string
            val register_comparable :
              ?compare:(t -> t -> int) ->
              ?equal:(t -> t -> bool) -> ?hash:(t -> int) -> unit -> unit
            val is_comparable_set : unit -> bool
            val hash : t -> int
            val equal : t -> t -> bool
            val compare : t -> t -> int
            val mem_project :
              ((Project.project -> bool) -> t -> bool) option ref
          end
        val howto_marshal : (Datatype.t -> 'a) -> ('-> Datatype.t) -> unit
        val equal : t -> t -> bool
        val unsafe_set : t -> unit
        val add_alias : string list -> unit
        val add : string -> unit
        val remove : string -> unit
        val is_empty : unit -> bool
        val get_set : ?sep:string -> unit -> string
        val iter : (string -> unit) -> unit
      end
  module StringList :
    functor (X : Plugin.Parameter_input_with_arg->
      sig
        type t = string list
        val set : t -> unit
        val add_set_hook : (t -> t -> unit) -> unit
        val get : unit -> t
        val clear : unit -> unit
        val is_default : unit -> bool
        val is_set : unit -> bool
        val self : Project.Computation.t
        val select :
          Kind.how ->
          Project.Computation.selection -> Project.Computation.selection
        val depend : Project.Computation.t -> unit
        val name : string
        val mark_as_computed : ?project:Project.project -> unit -> unit
        val is_computed : ?project:Project.project -> unit -> bool
        val do_not_save : unit -> unit
        module Datatype :
          sig
            type t
            val descr : Unmarshal.t
            val copy : t -> t
            val name : string
            val register_comparable :
              ?compare:(t -> t -> int) ->
              ?equal:(t -> t -> bool) -> ?hash:(t -> int) -> unit -> unit
            val is_comparable_set : unit -> bool
            val hash : t -> int
            val equal : t -> t -> bool
            val compare : t -> t -> int
            val mem_project :
              ((Project.project -> bool) -> t -> bool) option ref
          end
        val howto_marshal : (Datatype.t -> 'a) -> ('-> Datatype.t) -> unit
        val equal : t -> t -> bool
        val unsafe_set : t -> unit
        val add_alias : string list -> unit
        val add : string -> unit
        val remove : string -> unit
        val is_empty : unit -> bool
        val get_set : ?sep:string -> unit -> string
        val iter : (string -> unit) -> unit
      end
  module IndexedVal :
    functor (V : Plugin.COMPLEX_VALUE->
      sig
        type t = string
        val set : t -> unit
        val add_set_hook : (t -> t -> unit) -> unit
        val get : unit -> t
        val clear : unit -> unit
        val is_default : unit -> bool
        val is_set : unit -> bool
        val self : Project.Computation.t
        val select :
          Kind.how ->
          Project.Computation.selection -> Project.Computation.selection
        val depend : Project.Computation.t -> unit
        val name : string
        val mark_as_computed : ?project:Project.project -> unit -> unit
        val is_computed : ?project:Project.project -> unit -> bool
        val do_not_save : unit -> unit
        module Datatype :
          sig
            type t
            val descr : Unmarshal.t
            val copy : t -> t
            val name : string
            val register_comparable :
              ?compare:(t -> t -> int) ->
              ?equal:(t -> t -> bool) -> ?hash:(t -> int) -> unit -> unit
            val is_comparable_set : unit -> bool
            val hash : t -> int
            val equal : t -> t -> bool
            val compare : t -> t -> int
            val mem_project :
              ((Project.project -> bool) -> t -> bool) option ref
          end
        val howto_marshal : (Datatype.t -> 'a) -> ('-> Datatype.t) -> unit
        val equal : t -> t -> bool
        val unsafe_set : t -> unit
        val add_alias : string list -> unit
        val set_possible_values : string list -> unit
        val get_possible_values : unit -> string list
        type value = V.t
        val add_choice : string -> value -> unit
        val get_val : unit -> value
      end
  module StringHashtbl :
    functor (X : Plugin.Parameter_input_with_arg->
      functor
        (V : sig
               type t
               val descr : Unmarshal.t
               val copy : t -> t
               val name : string
               val register_comparable :
                 ?compare:(t -> t -> int) ->
                 ?equal:(t -> t -> bool) -> ?hash:(t -> int) -> unit -> unit
               val is_comparable_set : unit -> bool
               val hash : t -> int
               val equal : t -> t -> bool
               val compare : t -> t -> int
               val mem_project :
                 ((Project.project -> bool) -> t -> bool) option ref
               val parse : string -> string * t
               val no_binding : string -> t
             end->
        sig
          type t = Cilutil.StringSet.t
          val set : t -> unit
          val add_set_hook : (t -> t -> unit) -> unit
          val get : unit -> t
          val clear : unit -> unit
          val is_default : unit -> bool
          val is_set : unit -> bool
          val self : Project.Computation.t
          val select :
            Kind.how ->
            Project.Computation.selection -> Project.Computation.selection
          val depend : Project.Computation.t -> unit
          val name : string
          val mark_as_computed : ?project:Project.project -> unit -> unit
          val is_computed : ?project:Project.project -> unit -> bool
          val do_not_save : unit -> unit
          module Datatype :
            sig
              type t
              val descr : Unmarshal.t
              val copy : t -> t
              val name : string
              val register_comparable :
                ?compare:(t -> t -> int) ->
                ?equal:(t -> t -> bool) -> ?hash:(t -> int) -> unit -> unit
              val is_comparable_set : unit -> bool
              val hash : t -> int
              val equal : t -> t -> bool
              val compare : t -> t -> int
              val mem_project :
                ((Project.project -> bool) -> t -> bool) option ref
            end
          val howto_marshal :
            (Datatype.t -> 'a) -> ('-> Datatype.t) -> unit
          val equal : t -> t -> bool
          val unsafe_set : t -> unit
          val add_alias : string list -> unit
          val add : string -> unit
          val remove : string -> unit
          val is_empty : unit -> bool
          val get_set : ?sep:string -> unit -> string
          val iter : (string -> unit) -> unit
          type value = V.t
          val find : string -> value
        end
end