Macaulay2 Engine
Loading...
Searching...
No Matches

◆ rawSetParametersPT()

void rawSetParametersPT ( PathTracker * PT,
M2_bool is_projective,
gmp_RR init_dt,
gmp_RR min_dt,
gmp_RR dt_increase_factor,
gmp_RR dt_decrease_factor,
int num_successes_before_increase,
gmp_RR epsilon,
int max_corr_steps,
gmp_RR end_zone_factor,
gmp_RR infinity_threshold,
int pred_type )

Definition at line 1571 of file NAG.cpp.

1583{
1584 PT->is_projective = is_projective;
1585 PT->init_dt = init_dt;
1586 PT->min_dt = min_dt;
1587 PT->dt_increase_factor = dt_increase_factor;
1588 PT->dt_decrease_factor = dt_decrease_factor;
1589 PT->num_successes_before_increase = num_successes_before_increase;
1590 PT->epsilon = epsilon;
1591 PT->max_corr_steps = max_corr_steps;
1592 PT->end_zone_factor = end_zone_factor;
1593 PT->infinity_threshold = infinity_threshold;
1594 PT->pred_type = pred_type;
1595}
M2_bool is_projective
Definition NAG.hpp:751
gmp_RR end_zone_factor
Definition NAG.hpp:757
int max_corr_steps
Definition NAG.hpp:756
gmp_RR init_dt
Definition NAG.hpp:752
int pred_type
Definition NAG.hpp:759
gmp_RR dt_decrease_factor
Definition NAG.hpp:753
gmp_RR epsilon
Definition NAG.hpp:755
int num_successes_before_increase
Definition NAG.hpp:754
gmp_RR min_dt
Definition NAG.hpp:752
gmp_RR infinity_threshold
Definition NAG.hpp:758
gmp_RR dt_increase_factor
Definition NAG.hpp:753