10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-15 01:35:27 +02:00
quantum_package/ocaml/Bit.ml

47 lines
541 B
OCaml
Raw Normal View History

2017-08-18 18:28:33 +02:00
open Core;;
2014-08-26 15:31:16 +02:00
(*
Type for bits
==============
Zero | One
*)
type t =
| One
| Zero
2017-08-18 18:28:33 +02:00
[@@deriving sexp]
2014-08-26 15:31:16 +02:00
let to_string = function
| Zero -> "0"
| One -> "1"
;;
let and_operator a b =
match a, b with
| Zero, _ -> Zero
| _, Zero -> Zero
| _, _ -> One
;;
let or_operator a b =
match a, b with
| One, _ -> One
| _, One -> One
| _, _ -> Zero
;;
let xor_operator a b =
match a, b with
| One, Zero -> One
| Zero, One -> One
| _, _ -> Zero
;;
let not_operator = function
| One -> Zero
| Zero -> One
;;