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

15 lines
278 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
2019-02-16 10:21:54 +01:00
(** {1 Printers} *)
2019-02-15 13:48:48 +01:00
val pp_phase : Format.formatter -> t -> unit