10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-02 11:25:19 +02:00
QCaml/CI/Phase.mli

14 lines
275 B
OCaml
Raw Normal View History

2019-02-15 13:48:48 +01:00
type t =
| Pos
| Neg
val of_nperm : int -> t
(** Returns the phase obtained by a given number of permuations. *)
2019-02-15 16:25:47 +01:00
val add_nperm : t -> int -> t
(** Add to an existing phase a given number of permutations. *)
2019-02-15 13:48:48 +01:00
(** Formatters *)
val pp_phase : Format.formatter -> t -> unit