mirror of
https://github.com/LCPQ/quantum_package
synced 2024-10-31 19:23:50 +01:00
36 lines
918 B
OCaml
36 lines
918 B
OCaml
type t = Bit.t list
|
|
|
|
(** The zero bit list *)
|
|
val zero : Qptypes.N_int_number.t -> t
|
|
|
|
(** Convert to a string for printing *)
|
|
val to_string : t -> string
|
|
|
|
(** Convert to a string for printing *)
|
|
val of_string : ?zero:char -> ?one:char -> string -> t
|
|
|
|
(** int64 conversion functions *)
|
|
|
|
val of_int64 : int64 -> t
|
|
val to_int64 : t -> int64
|
|
|
|
val of_int64_list : int64 list -> t
|
|
val to_int64_list : t -> int64 list
|
|
|
|
(** Get the number of needed int64 elements to encode the bit list *)
|
|
val n_int_of_mo_tot_num : int -> Qptypes.N_int_number.t
|
|
|
|
(** Conversion to MO numbers *)
|
|
val to_mo_number_list : t -> Qptypes.MO_number.t list
|
|
val of_mo_number_list :
|
|
Qptypes.N_int_number.t -> Qptypes.MO_number.t list -> t
|
|
|
|
(** Logical operators *)
|
|
val and_operator : t -> t -> t
|
|
val xor_operator : t -> t -> t
|
|
val or_operator : t -> t -> t
|
|
val not_operator : t -> t
|
|
|
|
(** Count the number of bits set to one *)
|
|
val popcnt : t -> int
|