2020-10-09 09:47:57 +02:00
|
|
|
open Common
|
|
|
|
open Operators
|
2020-09-26 16:45:52 +02: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
|
|
|
}
|
|
|
|
|
2020-09-27 23:55:42 +02: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 ;
|
2020-09-26 16:45:52 +02:00
|
|
|
maxm=0 ;
|
|
|
|
expo_p_inv = 0.;
|
|
|
|
expo_q_inv = 0.;
|
|
|
|
norm_pq_sq = 0.;
|
|
|
|
center_pq = Coordinate.zero ;
|
|
|
|
center_pa = Coordinate.zero ;
|
|
|
|
center_qc = Coordinate.zero ;
|
|
|
|
}
|
|
|
|
|
|
|
|
|