@@ -18,7 +18,7 @@ namespace domain {
1818using namespace std ;
1919
2020// ******************************************************************************
21- Interval::Side::Side (MeshlinePolicy* meshline_policy, size_t lmin, double lambda, Coord h, Timepoint* t, function<double (double )> d_init)
21+ Interval::Side::Side (MeshlinePolicy* meshline_policy, size_t lmin, double lambda, Coord h, function<double (double )> d_init)
2222: meshline_policy(meshline_policy)
2323, lmin(lmin)
2424, lambda(lambda)
@@ -45,7 +45,7 @@ Coord calc_h(Coord const& a, Coord const& b) noexcept {
4545Interval::Interval (MeshlinePolicy* before, MeshlinePolicy* after, Axis axis, GlobalParams* global_params, Timepoint* t)
4646: Originator(t, {
4747 .dmax = global_params->get_current_state ().dmax ,
48- .before = Side (before, global_params->get_current_state ().lmin , global_params->get_current_state ().lambda , calc_h (before->coord , after->coord ), t, [before](double d) noexcept {
48+ .before = Side (before, global_params->get_current_state ().lmin , global_params->get_current_state ().lambda , calc_h (before->coord , after->coord ), [before](double d) noexcept {
4949 switch (before->policy ) {
5050 case MeshlinePolicy::Policy::ONELINE: return 0.0 ;
5151 case MeshlinePolicy::Policy::HALFS: return d / 2.0 ;
@@ -62,7 +62,7 @@ Interval::Interval(MeshlinePolicy* before, MeshlinePolicy* after, Axis axis, Glo
6262 default : unreachable ();
6363 }
6464 }),
65- .after = Side (after, global_params->get_current_state ().lmin , global_params->get_current_state ().lambda , calc_h (before->coord , after->coord ), t, [after](double d) noexcept {
65+ .after = Side (after, global_params->get_current_state ().lmin , global_params->get_current_state ().lambda , calc_h (before->coord , after->coord ), [after](double d) noexcept {
6666 switch (after->policy ) {
6767 case MeshlinePolicy::Policy::ONELINE: return 0.0 ;
6868 case MeshlinePolicy::Policy::HALFS: return d / 2.0 ;
0 commit comments