10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-30 00:44:18 +02:00
QCaml/gaussian_integrals/lib/zero_m_parameters.ml

31 lines
533 B
OCaml
Raw Normal View History

2020-10-09 09:47:57 +02:00
open Common
open Operators
2024-01-17 10:30:24 +01:00
2020-09-28 00:24:36 +02:00
type t =
2020-09-26 16:45:52 +02:00
{
expo_p_inv : float ;
expo_q_inv : float ;
norm_pq_sq : float ;
maxm : int ;
center_pq : Coordinate.t ;
center_pa : Coordinate.t ;
center_qc : Coordinate.t ;
2020-09-28 00:24:36 +02:00
zero_m_func : t -> float array ;
operator : Operator.t option;
2020-09-26 16:45:52 +02:00
}
2024-01-17 10:30:24 +01:00
let zero ?operator zero_m_func =
2020-09-26 16:45:52 +02:00
{
zero_m_func ;
2020-09-27 23:55:42 +02:00
operator ;
2024-01-17 10:30:24 +01:00
maxm=0 ;
2020-09-26 16:45:52 +02:00
expo_p_inv = 0.;
expo_q_inv = 0.;
norm_pq_sq = 0.;
center_pq = Coordinate.zero ;
center_pa = Coordinate.zero ;
center_qc = Coordinate.zero ;
}