mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-03 20:54:00 +01:00
14 lines
250 B
OCaml
14 lines
250 B
OCaml
open Qputils
|
|
open Qptypes
|
|
open Symmetry
|
|
|
|
let () =
|
|
"SPDFGHIJKL"
|
|
|> String_ext.to_list
|
|
|> List.map of_char
|
|
|> List.map Xyz.of_symmetry
|
|
|> List.iter (fun x -> List.iter (fun y -> Xyz.to_string y |> print_endline) x ;
|
|
print_newline ();)
|
|
|
|
|