mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-07 22:53:41 +01:00
24 lines
432 B
OCaml
24 lines
432 B
OCaml
type t =
|
|
{
|
|
expo_p_inv : float ;
|
|
expo_q_inv : float ;
|
|
norm_pq_sq : float ;
|
|
normalization : float ;
|
|
maxm : int ;
|
|
center_pq : Coordinate.t ;
|
|
center_pa : Coordinate.t ;
|
|
center_qc : Coordinate.t ;
|
|
}
|
|
|
|
let zero =
|
|
{
|
|
maxm=0 ;
|
|
expo_p_inv = 0.;
|
|
expo_q_inv = 0.;
|
|
norm_pq_sq = 0.;
|
|
normalization = 0.;
|
|
center_pq = Coordinate.zero ;
|
|
center_pa = Coordinate.zero ;
|
|
center_qc = Coordinate.zero ;
|
|
}
|