10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-26 15:12:05 +02:00
QCaml/CI/Phase.mli
2019-02-16 10:21:54 +01:00

15 lines
278 B
OCaml

type t =
| Pos
| Neg
val of_nperm : int -> t
(** Returns the phase obtained by a given number of permuations. *)
val add_nperm : t -> int -> t
(** Add to an existing phase a given number of permutations. *)
(** {1 Printers} *)
val pp_phase : Format.formatter -> t -> unit