|\^/| Maple 12 (IBM INTEL LINUX) ._|\| |/|_. Copyright (c) Maplesoft, a division of Waterloo Maple Inc. 2008 \ MAPLE / All rights reserved. Maple is a trademark of <____ ____> Waterloo Maple Inc. | Type ? for help. > #BEGIN OUTFILE1 > # Begin Function number 3 > check_sign := proc( x0 ,xf) > local ret; > if (xf > x0) then # if number 1 > ret := 1.0; > else > ret := -1.0; > fi;# end if 1; > ret;; > end; check_sign := proc(x0, xf) local ret; if x0 < xf then ret := 1.0 else ret := -1.0 end if; ret end proc > # End Function number 3 > # Begin Function number 4 > est_size_answer := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3_g, > array_tmp3_a1, > array_tmp3_a2, > array_tmp3, > array_tmp4, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local min_size; > min_size := glob_large_float; > if (omniabs(array_y[1]) < min_size) then # if number 1 > min_size := omniabs(array_y[1]); > omniout_float(ALWAYS,"min_size",32,min_size,32,""); > fi;# end if 1; > if (min_size < 1.0) then # if number 1 > min_size := 1.0; > omniout_float(ALWAYS,"min_size",32,min_size,32,""); > fi;# end if 1; > min_size; > end; est_size_answer := proc() local min_size; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3_g, array_tmp3_a1, array_tmp3_a2, array_tmp3, array_tmp4, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; min_size := glob_large_float; if omniabs(array_y[1]) < min_size then min_size := omniabs(array_y[1]); omniout_float(ALWAYS, "min_size", 32, min_size, 32, "") end if; if min_size < 1.0 then min_size := 1.0; omniout_float(ALWAYS, "min_size", 32, min_size, 32, "") end if; min_size end proc > # End Function number 4 > # Begin Function number 5 > test_suggested_h := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3_g, > array_tmp3_a1, > array_tmp3_a2, > array_tmp3, > array_tmp4, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local max_value3,hn_div_ho,hn_div_ho_2,hn_div_ho_3,value3,no_terms; > max_value3 := 0.0; > no_terms := glob_max_terms; > hn_div_ho := 0.5; > hn_div_ho_2 := 0.25; > hn_div_ho_3 := 0.125; > omniout_float(ALWAYS,"hn_div_ho",32,hn_div_ho,32,""); > omniout_float(ALWAYS,"hn_div_ho_2",32,hn_div_ho_2,32,""); > omniout_float(ALWAYS,"hn_div_ho_3",32,hn_div_ho_3,32,""); > value3 := omniabs(array_y[no_terms-3] + array_y[no_terms - 2] * hn_div_ho + array_y[no_terms - 1] * hn_div_ho_2 + array_y[no_terms] * hn_div_ho_3); > if (value3 > max_value3) then # if number 1 > max_value3 := value3; > omniout_float(ALWAYS,"value3",32,value3,32,""); > fi;# end if 1; > omniout_float(ALWAYS,"max_value3",32,max_value3,32,""); > max_value3; > end; test_suggested_h := proc() local max_value3, hn_div_ho, hn_div_ho_2, hn_div_ho_3, value3, no_terms; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3_g, array_tmp3_a1, array_tmp3_a2, array_tmp3, array_tmp4, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; max_value3 := 0.; no_terms := glob_max_terms; hn_div_ho := 0.5; hn_div_ho_2 := 0.25; hn_div_ho_3 := 0.125; omniout_float(ALWAYS, "hn_div_ho", 32, hn_div_ho, 32, ""); omniout_float(ALWAYS, "hn_div_ho_2", 32, hn_div_ho_2, 32, ""); omniout_float(ALWAYS, "hn_div_ho_3", 32, hn_div_ho_3, 32, ""); value3 := omniabs(array_y[no_terms - 3] + array_y[no_terms - 2]*hn_div_ho + array_y[no_terms - 1]*hn_div_ho_2 + array_y[no_terms]*hn_div_ho_3); if max_value3 < value3 then max_value3 := value3; omniout_float(ALWAYS, "value3", 32, value3, 32, "") end if; omniout_float(ALWAYS, "max_value3", 32, max_value3, 32, ""); max_value3 end proc > # End Function number 5 > # Begin Function number 6 > reached_interval := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3_g, > array_tmp3_a1, > array_tmp3_a2, > array_tmp3, > array_tmp4, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local ret; > if (glob_check_sign * (array_x[1]) >= glob_check_sign * glob_next_display) then # if number 1 > ret := true; > else > ret := false; > fi;# end if 1; > return(ret); > end; reached_interval := proc() local ret; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3_g, array_tmp3_a1, array_tmp3_a2, array_tmp3, array_tmp4, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; if glob_check_sign*glob_next_display <= glob_check_sign*array_x[1] then ret := true else ret := false end if; return ret end proc > # End Function number 6 > # Begin Function number 7 > display_alot := proc(iter) > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3_g, > array_tmp3_a1, > array_tmp3_a2, > array_tmp3, > array_tmp4, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local abserr, analytic_val_y, ind_var, numeric_val, relerr, term_no; > #TOP DISPLAY ALOT > if (reached_interval()) then # if number 1 > if (iter >= 0) then # if number 2 > ind_var := array_x[1]; > omniout_float(ALWAYS,"x[1] ",33,ind_var,20," "); > analytic_val_y := exact_soln_y(ind_var); > omniout_float(ALWAYS,"y[1] (analytic) ",33,analytic_val_y,20," "); > term_no := 1; > numeric_val := array_y[term_no]; > abserr := omniabs(numeric_val - analytic_val_y); > omniout_float(ALWAYS,"y[1] (numeric) ",33,numeric_val,20," "); > if (omniabs(analytic_val_y) <> 0.0) then # if number 3 > relerr := abserr*100.0/omniabs(analytic_val_y); > if (relerr > 0.0000000000000000000000000000000001) then # if number 4 > glob_good_digits := -trunc(log10(relerr)) + 2; > else > glob_good_digits := Digits; > fi;# end if 4; > else > relerr := -1.0 ; > glob_good_digits := -1; > fi;# end if 3; > if (glob_iter = 1) then # if number 3 > array_1st_rel_error[1] := relerr; > else > array_last_rel_error[1] := relerr; > fi;# end if 3; > omniout_float(ALWAYS,"absolute error ",4,abserr,20," "); > omniout_float(ALWAYS,"relative error ",4,relerr,20,"%"); > omniout_int(INFO,"Correct digits ",32,glob_good_digits,4," ") > ; > omniout_float(ALWAYS,"h ",4,glob_h,20," "); > fi;# end if 2; > #BOTTOM DISPLAY ALOT > fi;# end if 1; > end; display_alot := proc(iter) local abserr, analytic_val_y, ind_var, numeric_val, relerr, term_no; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3_g, array_tmp3_a1, array_tmp3_a2, array_tmp3, array_tmp4, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; if reached_interval() then if 0 <= iter then ind_var := array_x[1]; omniout_float(ALWAYS, "x[1] ", 33, ind_var, 20, " "); analytic_val_y := exact_soln_y(ind_var); omniout_float(ALWAYS, "y[1] (analytic) ", 33, analytic_val_y, 20, " "); term_no := 1; numeric_val := array_y[term_no]; abserr := omniabs(numeric_val - analytic_val_y); omniout_float(ALWAYS, "y[1] (numeric) ", 33, numeric_val, 20, " "); if omniabs(analytic_val_y) <> 0. then relerr := abserr*100.0/omniabs(analytic_val_y); if 0.1*10^(-33) < relerr then glob_good_digits := -trunc(log10(relerr)) + 2 else glob_good_digits := Digits end if else relerr := -1.0; glob_good_digits := -1 end if; if glob_iter = 1 then array_1st_rel_error[1] := relerr else array_last_rel_error[1] := relerr end if; omniout_float(ALWAYS, "absolute error ", 4, abserr, 20, " "); omniout_float(ALWAYS, "relative error ", 4, relerr, 20, "%"); omniout_int(INFO, "Correct digits ", 32, glob_good_digits, 4, " "); omniout_float(ALWAYS, "h ", 4, glob_h, 20, " ") end if end if end proc > # End Function number 7 > # Begin Function number 8 > adjust_for_pole := proc(h_param) > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3_g, > array_tmp3_a1, > array_tmp3_a2, > array_tmp3, > array_tmp4, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local hnew, sz2, tmp; > #TOP ADJUST FOR POLE > hnew := h_param; > glob_normmax := glob_small_float; > if (omniabs(array_y_higher[1,1]) > glob_small_float) then # if number 1 > tmp := omniabs(array_y_higher[1,1]); > if (tmp < glob_normmax) then # if number 2 > glob_normmax := tmp; > fi;# end if 2 > fi;# end if 1; > if (glob_look_poles and (omniabs(array_pole[1]) > glob_small_float) and (array_pole[1] <> glob_large_float)) then # if number 1 > sz2 := array_pole[1]/10.0; > if (sz2 < hnew) then # if number 2 > omniout_float(INFO,"glob_h adjusted to ",20,h_param,12,"due to singularity."); > omniout_str(INFO,"Reached Optimal"); > return(hnew); > fi;# end if 2 > fi;# end if 1; > if ( not glob_reached_optimal_h) then # if number 1 > glob_reached_optimal_h := true; > glob_curr_iter_when_opt := glob_current_iter; > glob_optimal_clock_start_sec := elapsed_time_seconds(); > glob_optimal_start := array_x[1]; > fi;# end if 1; > hnew := sz2; > ;#END block > return(hnew); > #BOTTOM ADJUST FOR POLE > end; adjust_for_pole := proc(h_param) local hnew, sz2, tmp; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3_g, array_tmp3_a1, array_tmp3_a2, array_tmp3, array_tmp4, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; hnew := h_param; glob_normmax := glob_small_float; if glob_small_float < omniabs(array_y_higher[1, 1]) then tmp := omniabs(array_y_higher[1, 1]); if tmp < glob_normmax then glob_normmax := tmp end if end if; if glob_look_poles and glob_small_float < omniabs(array_pole[1]) and array_pole[1] <> glob_large_float then sz2 := array_pole[1]/10.0; if sz2 < hnew then omniout_float(INFO, "glob_h adjusted to ", 20, h_param, 12, "due to singularity."); omniout_str(INFO, "Reached Optimal"); return hnew end if end if; if not glob_reached_optimal_h then glob_reached_optimal_h := true; glob_curr_iter_when_opt := glob_current_iter; glob_optimal_clock_start_sec := elapsed_time_seconds(); glob_optimal_start := array_x[1] end if; hnew := sz2; return hnew end proc > # End Function number 8 > # Begin Function number 9 > prog_report := proc(x_start,x_end) > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3_g, > array_tmp3_a1, > array_tmp3_a2, > array_tmp3, > array_tmp4, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local clock_sec, opt_clock_sec, clock_sec1, expect_sec, left_sec, percent_done, total_clock_sec; > #TOP PROGRESS REPORT > clock_sec1 := elapsed_time_seconds(); > total_clock_sec := convfloat(clock_sec1) - convfloat(glob_orig_start_sec); > glob_clock_sec := convfloat(clock_sec1) - convfloat(glob_clock_start_sec); > left_sec := convfloat(glob_max_sec) + convfloat(glob_orig_start_sec) - convfloat(clock_sec1); > expect_sec := comp_expect_sec(convfloat(x_end),convfloat(x_start),convfloat(array_x[1]) + convfloat(glob_h) ,convfloat( clock_sec1) - convfloat(glob_orig_start_sec)); > opt_clock_sec := convfloat( clock_sec1) - convfloat(glob_optimal_clock_start_sec); > glob_optimal_expect_sec := comp_expect_sec(convfloat(x_end),convfloat(x_start),convfloat(array_x[1]) +convfloat( glob_h) ,convfloat( opt_clock_sec)); > glob_total_exp_sec := glob_optimal_expect_sec + total_clock_sec; > percent_done := comp_percent(convfloat(x_end),convfloat(x_start),convfloat(array_x[1]) + convfloat(glob_h)); > glob_percent_done := percent_done; > omniout_str_noeol(INFO,"Total Elapsed Time "); > omniout_timestr(convfloat(total_clock_sec)); > omniout_str_noeol(INFO,"Elapsed Time(since restart) "); > omniout_timestr(convfloat(glob_clock_sec)); > if (convfloat(percent_done) < convfloat(100.0)) then # if number 1 > omniout_str_noeol(INFO,"Expected Time Remaining "); > omniout_timestr(convfloat(expect_sec)); > omniout_str_noeol(INFO,"Optimized Time Remaining "); > omniout_timestr(convfloat(glob_optimal_expect_sec)); > omniout_str_noeol(INFO,"Expected Total Time "); > omniout_timestr(convfloat(glob_total_exp_sec)); > fi;# end if 1; > omniout_str_noeol(INFO,"Time to Timeout "); > omniout_timestr(convfloat(left_sec)); > omniout_float(INFO, "Percent Done ",33,percent_done,4,"%"); > #BOTTOM PROGRESS REPORT > end; prog_report := proc(x_start, x_end) local clock_sec, opt_clock_sec, clock_sec1, expect_sec, left_sec, percent_done, total_clock_sec; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3_g, array_tmp3_a1, array_tmp3_a2, array_tmp3, array_tmp4, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; clock_sec1 := elapsed_time_seconds(); total_clock_sec := convfloat(clock_sec1) - convfloat(glob_orig_start_sec); glob_clock_sec := convfloat(clock_sec1) - convfloat(glob_clock_start_sec); left_sec := convfloat(glob_max_sec) + convfloat(glob_orig_start_sec) - convfloat(clock_sec1); expect_sec := comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(array_x[1]) + convfloat(glob_h), convfloat(clock_sec1) - convfloat(glob_orig_start_sec)); opt_clock_sec := convfloat(clock_sec1) - convfloat(glob_optimal_clock_start_sec); glob_optimal_expect_sec := comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(array_x[1]) + convfloat(glob_h), convfloat(opt_clock_sec)); glob_total_exp_sec := glob_optimal_expect_sec + total_clock_sec; percent_done := comp_percent(convfloat(x_end), convfloat(x_start), convfloat(array_x[1]) + convfloat(glob_h)); glob_percent_done := percent_done; omniout_str_noeol(INFO, "Total Elapsed Time "); omniout_timestr(convfloat(total_clock_sec)); omniout_str_noeol(INFO, "Elapsed Time(since restart) "); omniout_timestr(convfloat(glob_clock_sec)); if convfloat(percent_done) < convfloat(100.0) then omniout_str_noeol(INFO, "Expected Time Remaining "); omniout_timestr(convfloat(expect_sec)); omniout_str_noeol(INFO, "Optimized Time Remaining "); omniout_timestr(convfloat(glob_optimal_expect_sec)); omniout_str_noeol(INFO, "Expected Total Time "); omniout_timestr(convfloat(glob_total_exp_sec)) end if; omniout_str_noeol(INFO, "Time to Timeout "); omniout_timestr(convfloat(left_sec)); omniout_float(INFO, "Percent Done ", 33, percent_done, 4, "%") end proc > # End Function number 9 > # Begin Function number 10 > check_for_pole := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3_g, > array_tmp3_a1, > array_tmp3_a2, > array_tmp3, > array_tmp4, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local cnt, dr1, dr2, ds1, ds2, hdrc, m, n, nr1, nr2, ord_no, rad_c, rcs, rm0, rm1, rm2, rm3, rm4, found, h_new, ratio, term; > #TOP CHECK FOR POLE > #IN RADII REAL EQ = 1 > #Computes radius of convergence and r_order of pole from 3 adjacent Taylor series terms. EQUATUON NUMBER 1 > #Applies to pole of arbitrary r_order on the real axis, > #Due to Prof. George Corliss. > n := glob_max_terms; > m := n - 1 - 1; > while ((m >= 10) and ((omniabs(array_y_higher[1,m]) < glob_small_float) or (omniabs(array_y_higher[1,m-1]) < glob_small_float) or (omniabs(array_y_higher[1,m-2]) < glob_small_float ))) do # do number 2 > m := m - 1; > od;# end do number 2; > if (m > 10) then # if number 1 > rm0 := array_y_higher[1,m]/array_y_higher[1,m-1]; > rm1 := array_y_higher[1,m-1]/array_y_higher[1,m-2]; > hdrc := convfloat(m-1)*rm0-convfloat(m-2)*rm1; > if (omniabs(hdrc) > glob_small_float) then # if number 2 > rcs := glob_h/hdrc; > ord_no := convfloat(m-1)*rm0/hdrc - convfloat(m) + 2.0; > array_real_pole[1,1] := rcs; > array_real_pole[1,2] := ord_no; > else > array_real_pole[1,1] := glob_large_float; > array_real_pole[1,2] := glob_large_float; > fi;# end if 2 > else > array_real_pole[1,1] := glob_large_float; > array_real_pole[1,2] := glob_large_float; > fi;# end if 1; > #BOTTOM RADII REAL EQ = 1 > #TOP RADII COMPLEX EQ = 1 > #Computes radius of convergence for complex conjugate pair of poles. > #from 6 adjacent Taylor series terms > #Also computes r_order of poles. > #Due to Manuel Prieto. > #With a correction by Dennis J. Darland > n := glob_max_terms - 1 - 1; > cnt := 0; > while ((cnt < 5) and (n >= 10)) do # do number 2 > if (omniabs(array_y_higher[1,n]) > glob_small_float) then # if number 1 > cnt := cnt + 1; > else > cnt := 0; > fi;# end if 1; > n := n - 1; > od;# end do number 2; > m := n + cnt; > if (m <= 10) then # if number 1 > rad_c := glob_large_float; > ord_no := glob_large_float; > elif > (((omniabs(array_y_higher[1,m]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-1]) >=(glob_large_float)) or (omniabs(array_y_higher[1,m-2]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-3]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-4]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-5]) >= (glob_large_float))) or ((omniabs(array_y_higher[1,m]) <= (glob_small_float)) or (omniabs(array_y_higher[1,m-1]) <=(glob_small_float)) or (omniabs(array_y_higher[1,m-2]) <= (glob_small_float)) or (omniabs(array_y_higher[1,m-3]) <= (glob_small_float)) or (omniabs(array_y_higher[1,m-4]) <= (glob_small_float)) or (omniabs(array_y_higher[1,m-5]) <= (glob_small_float)))) then # if number 2 > rad_c := glob_large_float; > ord_no := glob_large_float; > else > rm0 := (array_y_higher[1,m])/(array_y_higher[1,m-1]); > rm1 := (array_y_higher[1,m-1])/(array_y_higher[1,m-2]); > rm2 := (array_y_higher[1,m-2])/(array_y_higher[1,m-3]); > rm3 := (array_y_higher[1,m-3])/(array_y_higher[1,m-4]); > rm4 := (array_y_higher[1,m-4])/(array_y_higher[1,m-5]); > nr1 := convfloat(m-1)*rm0 - 2.0*convfloat(m-2)*rm1 + convfloat(m-3)*rm2; > nr2 := convfloat(m-2)*rm1 - 2.0*convfloat(m-3)*rm2 + convfloat(m-4)*rm3; > dr1 := (-1.0)/rm1 + 2.0/rm2 - 1.0/rm3; > dr2 := (-1.0)/rm2 + 2.0/rm3 - 1.0/rm4; > ds1 := 3.0/rm1 - 8.0/rm2 + 5.0/rm3; > ds2 := 3.0/rm2 - 8.0/rm3 + 5.0/rm4; > if ((omniabs(nr1 * dr2 - nr2 * dr1) <= glob_small_float) or (omniabs(dr1) <= glob_small_float)) then # if number 3 > rad_c := glob_large_float; > ord_no := glob_large_float; > else > if (omniabs(nr1*dr2 - nr2 * dr1) > glob_small_float) then # if number 4 > rcs := ((ds1*dr2 - ds2*dr1 +dr1*dr2)/(nr1*dr2 - nr2 * dr1)); > #(Manuels) rcs := (ds1*dr2 - ds2*dr1)/(nr1*dr2 - nr2 * dr1) > ord_no := (rcs*nr1 - ds1)/(2.0*dr1) -convfloat(m)/2.0; > if (omniabs(rcs) > glob_small_float) then # if number 5 > if (rcs > 0.0) then # if number 6 > rad_c := sqrt(rcs) * omniabs(glob_h); > else > rad_c := glob_large_float; > fi;# end if 6 > else > rad_c := glob_large_float; > ord_no := glob_large_float; > fi;# end if 5 > else > rad_c := glob_large_float; > ord_no := glob_large_float; > fi;# end if 4 > fi;# end if 3; > array_complex_pole[1,1] := rad_c; > array_complex_pole[1,2] := ord_no; > fi;# end if 2; > #BOTTOM RADII COMPLEX EQ = 1 > found := false; > #TOP WHICH RADII EQ = 1 > if ( not found and ((array_real_pole[1,1] = glob_large_float) or (array_real_pole[1,2] = glob_large_float)) and ((array_complex_pole[1,1] <> glob_large_float) and (array_complex_pole[1,2] <> glob_large_float)) and ((array_complex_pole[1,1] > 0.0) and (array_complex_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_complex_pole[1,1]; > array_poles[1,2] := array_complex_pole[1,2]; > found := true; > array_type_pole[1] := 2; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Complex estimate of poles used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found and ((array_real_pole[1,1] <> glob_large_float) and (array_real_pole[1,2] <> glob_large_float) and (array_real_pole[1,1] > 0.0) and (array_real_pole[1,2] > 0.0) and ((array_complex_pole[1,1] = glob_large_float) or (array_complex_pole[1,2] = glob_large_float) or (array_complex_pole[1,1] <= 0.0 ) or (array_complex_pole[1,2] <= 0.0)))) then # if number 2 > array_poles[1,1] := array_real_pole[1,1]; > array_poles[1,2] := array_real_pole[1,2]; > found := true; > array_type_pole[1] := 1; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Real estimate of pole used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found and (((array_real_pole[1,1] = glob_large_float) or (array_real_pole[1,2] = glob_large_float)) and ((array_complex_pole[1,1] = glob_large_float) or (array_complex_pole[1,2] = glob_large_float)))) then # if number 2 > array_poles[1,1] := glob_large_float; > array_poles[1,2] := glob_large_float; > found := true; > array_type_pole[1] := 3; > if (reached_interval()) then # if number 3 > omniout_str(ALWAYS,"NO POLE"); > fi;# end if 3; > fi;# end if 2; > if ( not found and ((array_real_pole[1,1] < array_complex_pole[1,1]) and (array_real_pole[1,1] > 0.0) and (array_real_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_real_pole[1,1]; > array_poles[1,2] := array_real_pole[1,2]; > found := true; > array_type_pole[1] := 1; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Real estimate of pole used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found and ((array_complex_pole[1,1] <> glob_large_float) and (array_complex_pole[1,2] <> glob_large_float) and (array_complex_pole[1,1] > 0.0) and (array_complex_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_complex_pole[1,1]; > array_poles[1,2] := array_complex_pole[1,2]; > array_type_pole[1] := 2; > found := true; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Complex estimate of poles used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found ) then # if number 2 > array_poles[1,1] := glob_large_float; > array_poles[1,2] := glob_large_float; > array_type_pole[1] := 3; > if (reached_interval()) then # if number 3 > omniout_str(ALWAYS,"NO POLE"); > fi;# end if 3; > fi;# end if 2; > #BOTTOM WHICH RADII EQ = 1 > array_pole[1] := glob_large_float; > array_pole[2] := glob_large_float; > #TOP WHICH RADIUS EQ = 1 > if (array_pole[1] > array_poles[1,1]) then # if number 2 > array_pole[1] := array_poles[1,1]; > array_pole[2] := array_poles[1,2]; > fi;# end if 2; > #BOTTOM WHICH RADIUS EQ = 1 > #START ADJUST ALL SERIES > if (array_pole[1] * glob_ratio_of_radius < omniabs(glob_h)) then # if number 2 > h_new := array_pole[1] * glob_ratio_of_radius; > term := 1; > ratio := 1.0; > while (term <= glob_max_terms) do # do number 2 > array_y[term] := array_y[term]* ratio; > array_y_higher[1,term] := array_y_higher[1,term]* ratio; > array_x[term] := array_x[term]* ratio; > ratio := ratio * h_new / omniabs(glob_h); > term := term + 1; > od;# end do number 2; > glob_h := h_new; > fi;# end if 2; > #BOTTOM ADJUST ALL SERIES > if (reached_interval()) then # if number 2 > display_pole(); > fi;# end if 2 > end; check_for_pole := proc() local cnt, dr1, dr2, ds1, ds2, hdrc, m, n, nr1, nr2, ord_no, rad_c, rcs, rm0, rm1, rm2, rm3, rm4, found, h_new, ratio, term; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3_g, array_tmp3_a1, array_tmp3_a2, array_tmp3, array_tmp4, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; n := glob_max_terms; m := n - 2; while 10 <= m and (omniabs(array_y_higher[1, m]) < glob_small_float or omniabs(array_y_higher[1, m - 1]) < glob_small_float or omniabs(array_y_higher[1, m - 2]) < glob_small_float) do m := m - 1 end do; if 10 < m then rm0 := array_y_higher[1, m]/array_y_higher[1, m - 1]; rm1 := array_y_higher[1, m - 1]/array_y_higher[1, m - 2]; hdrc := convfloat(m - 1)*rm0 - convfloat(m - 2)*rm1; if glob_small_float < omniabs(hdrc) then rcs := glob_h/hdrc; ord_no := convfloat(m - 1)*rm0/hdrc - convfloat(m) + 2.0; array_real_pole[1, 1] := rcs; array_real_pole[1, 2] := ord_no else array_real_pole[1, 1] := glob_large_float; array_real_pole[1, 2] := glob_large_float end if else array_real_pole[1, 1] := glob_large_float; array_real_pole[1, 2] := glob_large_float end if; n := glob_max_terms - 2; cnt := 0; while cnt < 5 and 10 <= n do if glob_small_float < omniabs(array_y_higher[1, n]) then cnt := cnt + 1 else cnt := 0 end if; n := n - 1 end do; m := n + cnt; if m <= 10 then rad_c := glob_large_float; ord_no := glob_large_float elif glob_large_float <= omniabs(array_y_higher[1, m]) or glob_large_float <= omniabs(array_y_higher[1, m - 1]) or glob_large_float <= omniabs(array_y_higher[1, m - 2]) or glob_large_float <= omniabs(array_y_higher[1, m - 3]) or glob_large_float <= omniabs(array_y_higher[1, m - 4]) or glob_large_float <= omniabs(array_y_higher[1, m - 5]) or omniabs(array_y_higher[1, m]) <= glob_small_float or omniabs(array_y_higher[1, m - 1]) <= glob_small_float or omniabs(array_y_higher[1, m - 2]) <= glob_small_float or omniabs(array_y_higher[1, m - 3]) <= glob_small_float or omniabs(array_y_higher[1, m - 4]) <= glob_small_float or omniabs(array_y_higher[1, m - 5]) <= glob_small_float then rad_c := glob_large_float; ord_no := glob_large_float else rm0 := array_y_higher[1, m]/array_y_higher[1, m - 1]; rm1 := array_y_higher[1, m - 1]/array_y_higher[1, m - 2]; rm2 := array_y_higher[1, m - 2]/array_y_higher[1, m - 3]; rm3 := array_y_higher[1, m - 3]/array_y_higher[1, m - 4]; rm4 := array_y_higher[1, m - 4]/array_y_higher[1, m - 5]; nr1 := convfloat(m - 1)*rm0 - 2.0*convfloat(m - 2)*rm1 + convfloat(m - 3)*rm2; nr2 := convfloat(m - 2)*rm1 - 2.0*convfloat(m - 3)*rm2 + convfloat(m - 4)*rm3; dr1 := (-1)*(1.0)/rm1 + 2.0/rm2 - 1.0/rm3; dr2 := (-1)*(1.0)/rm2 + 2.0/rm3 - 1.0/rm4; ds1 := 3.0/rm1 - 8.0/rm2 + 5.0/rm3; ds2 := 3.0/rm2 - 8.0/rm3 + 5.0/rm4; if omniabs(nr1*dr2 - nr2*dr1) <= glob_small_float or omniabs(dr1) <= glob_small_float then rad_c := glob_large_float; ord_no := glob_large_float else if glob_small_float < omniabs(nr1*dr2 - nr2*dr1) then rcs := (ds1*dr2 - ds2*dr1 + dr1*dr2)/(nr1*dr2 - nr2*dr1); ord_no := (rcs*nr1 - ds1)/(2.0*dr1) - convfloat(m)/2.0; if glob_small_float < omniabs(rcs) then if 0. < rcs then rad_c := sqrt(rcs)*omniabs(glob_h) else rad_c := glob_large_float end if else rad_c := glob_large_float; ord_no := glob_large_float end if else rad_c := glob_large_float; ord_no := glob_large_float end if end if; array_complex_pole[1, 1] := rad_c; array_complex_pole[1, 2] := ord_no end if; found := false; if not found and (array_real_pole[1, 1] = glob_large_float or array_real_pole[1, 2] = glob_large_float) and array_complex_pole[1, 1] <> glob_large_float and array_complex_pole[1, 2] <> glob_large_float and 0. < array_complex_pole[1, 1] and 0. < array_complex_pole[1, 2] then array_poles[1, 1] := array_complex_pole[1, 1]; array_poles[1, 2] := array_complex_pole[1, 2]; found := true; array_type_pole[1] := 2; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Complex estimate of poles used") end if end if end if; if not found and array_real_pole[1, 1] <> glob_large_float and array_real_pole[1, 2] <> glob_large_float and 0. < array_real_pole[1, 1] and 0. < array_real_pole[1, 2] and ( array_complex_pole[1, 1] = glob_large_float or array_complex_pole[1, 2] = glob_large_float or array_complex_pole[1, 1] <= 0. or array_complex_pole[1, 2] <= 0.) then array_poles[1, 1] := array_real_pole[1, 1]; array_poles[1, 2] := array_real_pole[1, 2]; found := true; array_type_pole[1] := 1; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Real estimate of pole used") end if end if end if; if not found and (array_real_pole[1, 1] = glob_large_float or array_real_pole[1, 2] = glob_large_float) and ( array_complex_pole[1, 1] = glob_large_float or array_complex_pole[1, 2] = glob_large_float) then array_poles[1, 1] := glob_large_float; array_poles[1, 2] := glob_large_float; found := true; array_type_pole[1] := 3; if reached_interval() then omniout_str(ALWAYS, "NO POLE") end if end if; if not found and array_real_pole[1, 1] < array_complex_pole[1, 1] and 0. < array_real_pole[1, 1] and 0. < array_real_pole[1, 2] then array_poles[1, 1] := array_real_pole[1, 1]; array_poles[1, 2] := array_real_pole[1, 2]; found := true; array_type_pole[1] := 1; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Real estimate of pole used") end if end if end if; if not found and array_complex_pole[1, 1] <> glob_large_float and array_complex_pole[1, 2] <> glob_large_float and 0. < array_complex_pole[1, 1] and 0. < array_complex_pole[1, 2] then array_poles[1, 1] := array_complex_pole[1, 1]; array_poles[1, 2] := array_complex_pole[1, 2]; array_type_pole[1] := 2; found := true; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Complex estimate of poles used") end if end if end if; if not found then array_poles[1, 1] := glob_large_float; array_poles[1, 2] := glob_large_float; array_type_pole[1] := 3; if reached_interval() then omniout_str(ALWAYS, "NO POLE") end if end if; array_pole[1] := glob_large_float; array_pole[2] := glob_large_float; if array_poles[1, 1] < array_pole[1] then array_pole[1] := array_poles[1, 1]; array_pole[2] := array_poles[1, 2] end if; if array_pole[1]*glob_ratio_of_radius < omniabs(glob_h) then h_new := array_pole[1]*glob_ratio_of_radius; term := 1; ratio := 1.0; while term <= glob_max_terms do array_y[term] := array_y[term]*ratio; array_y_higher[1, term] := array_y_higher[1, term]*ratio; array_x[term] := array_x[term]*ratio; ratio := ratio*h_new/omniabs(glob_h); term := term + 1 end do; glob_h := h_new end if; if reached_interval() then display_pole() end if end proc > # End Function number 10 > # Begin Function number 11 > get_norms := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3_g, > array_tmp3_a1, > array_tmp3_a2, > array_tmp3, > array_tmp4, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local iii; > if ( not glob_initial_pass) then # if number 2 > iii := 1; > while (iii <= glob_max_terms) do # do number 2 > array_norms[iii] := 0.0; > iii := iii + 1; > od;# end do number 2; > #TOP GET NORMS > iii := 1; > while (iii <= glob_max_terms) do # do number 2 > if (omniabs(array_y[iii]) > array_norms[iii]) then # if number 3 > array_norms[iii] := omniabs(array_y[iii]); > fi;# end if 3; > iii := iii + 1; > od;# end do number 2 > #BOTTOM GET NORMS > ; > fi;# end if 2; > end; get_norms := proc() local iii; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3_g, array_tmp3_a1, array_tmp3_a2, array_tmp3, array_tmp4, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; if not glob_initial_pass then iii := 1; while iii <= glob_max_terms do array_norms[iii] := 0.; iii := iii + 1 end do; iii := 1; while iii <= glob_max_terms do if array_norms[iii] < omniabs(array_y[iii]) then array_norms[iii] := omniabs(array_y[iii]) end if; iii := iii + 1 end do end if end proc > # End Function number 11 > # Begin Function number 12 > atomall := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3_g, > array_tmp3_a1, > array_tmp3_a2, > array_tmp3, > array_tmp4, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local kkk, order_d, adj2, adj3 , temporary, term; > #TOP ATOMALL > #END OUTFILE1 > #BEGIN ATOMHDR1 > #emit pre mult CONST - LINEAR $eq_no = 1 i = 1 > array_tmp1[1] := array_const_2D0[1] * array_x[1]; > #emit pre add LINEAR - CONST $eq_no = 1 i = 1 > array_tmp2[1] := array_tmp1[1] + array_const_3D0[1]; > #emit pre tan $eq_no = 1 > array_tmp3_a1[1] := sin(array_tmp2[1]); > array_tmp3_a2[1] := cos(array_tmp2[1]); > array_tmp3[1] := (array_tmp3_a1[1] / array_tmp3_a2[1]); > #emit pre add CONST FULL $eq_no = 1 i = 1 > array_tmp4[1] := array_const_0D0[1] + array_tmp3[1]; > #emit pre assign xxx $eq_no = 1 i = 1 $min_hdrs = 5 > if ( not array_y_set_initial[1,2]) then # if number 1 > if (1 <= glob_max_terms) then # if number 2 > temporary := array_tmp4[1] * expt(glob_h , (1)) * factorial_3(0,1); > array_y[2] := temporary; > array_y_higher[1,2] := temporary; > temporary := temporary / glob_h * (1.0); > array_y_higher[2,1] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 2; > #END ATOMHDR1 > #BEGIN ATOMHDR2 > #emit pre mult CONST - LINEAR $eq_no = 1 i = 2 > array_tmp1[2] := array_const_2D0[1] * array_x[2]; > #emit pre add LINEAR - CONST $eq_no = 1 i = 2 > array_tmp2[2] := array_tmp1[2]; > #emit pre tan $eq_no = 1 > array_tmp3_a1[2] := array_tmp3_a2[1] * array_tmp2[2] / 1; > array_tmp3_a2[2] := -array_tmp3_a1[1] * array_tmp2[2] / 1; > array_tmp3[2] := (array_tmp3_a1[2] - ats(2,array_tmp3_a2,array_tmp3,2)) / array_tmp3_a2[1]; > #emit pre add CONST FULL $eq_no = 1 i = 2 > array_tmp4[2] := array_tmp3[2]; > #emit pre assign xxx $eq_no = 1 i = 2 $min_hdrs = 5 > if ( not array_y_set_initial[1,3]) then # if number 1 > if (2 <= glob_max_terms) then # if number 2 > temporary := array_tmp4[2] * expt(glob_h , (1)) * factorial_3(1,2); > array_y[3] := temporary; > array_y_higher[1,3] := temporary; > temporary := temporary / glob_h * (2.0); > array_y_higher[2,2] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 3; > #END ATOMHDR2 > #BEGIN ATOMHDR3 > #emit pre tan $eq_no = 1 > array_tmp3_a1[3] := array_tmp3_a2[2] * array_tmp2[2] / 2; > array_tmp3_a2[3] := -array_tmp3_a1[2] * array_tmp2[2] / 2; > array_tmp3[3] := (array_tmp3_a1[3] - ats(3,array_tmp3_a2,array_tmp3,2)) / array_tmp3_a2[1]; > #emit pre add CONST FULL $eq_no = 1 i = 3 > array_tmp4[3] := array_tmp3[3]; > #emit pre assign xxx $eq_no = 1 i = 3 $min_hdrs = 5 > if ( not array_y_set_initial[1,4]) then # if number 1 > if (3 <= glob_max_terms) then # if number 2 > temporary := array_tmp4[3] * expt(glob_h , (1)) * factorial_3(2,3); > array_y[4] := temporary; > array_y_higher[1,4] := temporary; > temporary := temporary / glob_h * (3.0); > array_y_higher[2,3] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 4; > #END ATOMHDR3 > #BEGIN ATOMHDR4 > #emit pre tan $eq_no = 1 > array_tmp3_a1[4] := array_tmp3_a2[3] * array_tmp2[2] / 3; > array_tmp3_a2[4] := -array_tmp3_a1[3] * array_tmp2[2] / 3; > array_tmp3[4] := (array_tmp3_a1[4] - ats(4,array_tmp3_a2,array_tmp3,2)) / array_tmp3_a2[1]; > #emit pre add CONST FULL $eq_no = 1 i = 4 > array_tmp4[4] := array_tmp3[4]; > #emit pre assign xxx $eq_no = 1 i = 4 $min_hdrs = 5 > if ( not array_y_set_initial[1,5]) then # if number 1 > if (4 <= glob_max_terms) then # if number 2 > temporary := array_tmp4[4] * expt(glob_h , (1)) * factorial_3(3,4); > array_y[5] := temporary; > array_y_higher[1,5] := temporary; > temporary := temporary / glob_h * (4.0); > array_y_higher[2,4] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 5; > #END ATOMHDR4 > #BEGIN ATOMHDR5 > #emit pre tan $eq_no = 1 > array_tmp3_a1[5] := array_tmp3_a2[4] * array_tmp2[2] / 4; > array_tmp3_a2[5] := -array_tmp3_a1[4] * array_tmp2[2] / 4; > array_tmp3[5] := (array_tmp3_a1[5] - ats(5,array_tmp3_a2,array_tmp3,2)) / array_tmp3_a2[1]; > #emit pre add CONST FULL $eq_no = 1 i = 5 > array_tmp4[5] := array_tmp3[5]; > #emit pre assign xxx $eq_no = 1 i = 5 $min_hdrs = 5 > if ( not array_y_set_initial[1,6]) then # if number 1 > if (5 <= glob_max_terms) then # if number 2 > temporary := array_tmp4[5] * expt(glob_h , (1)) * factorial_3(4,5); > array_y[6] := temporary; > array_y_higher[1,6] := temporary; > temporary := temporary / glob_h * (5.0); > array_y_higher[2,5] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 6; > #END ATOMHDR5 > #BEGIN OUTFILE3 > #Top Atomall While Loop-- outfile3 > while (kkk <= glob_max_terms) do # do number 1 > #END OUTFILE3 > #BEGIN OUTFILE4 > array_tmp3_a1[kkk] := array_tmp3_a2[kkk-1] * array_tmp2[2] / (kkk - 1); > array_tmp3_a2[kkk] := -array_tmp3_a1[kkk-1] * array_tmp2[2] / (kkk - 1); > array_tmp3[kkk] := (array_tmp3_a1[kkk] - ats(kkk ,array_tmp3_a2,array_tmp3,2)) / array_tmp3_a2[1]; > #emit NOT FULL - FULL add $eq_no = 1 > array_tmp4[kkk] := array_tmp3[kkk]; > #emit assign $eq_no = 1 > order_d := 1; > if (kkk + order_d + 1 <= glob_max_terms) then # if number 1 > if ( not array_y_set_initial[1,kkk + order_d]) then # if number 2 > temporary := array_tmp4[kkk] * expt(glob_h , (order_d)) * factorial_3((kkk - 1),(kkk + order_d - 1)); > array_y[kkk + order_d] := temporary; > array_y_higher[1,kkk + order_d] := temporary; > term := kkk + order_d - 1; > adj2 := kkk + order_d - 1; > adj3 := 2; > while (term >= 1) do # do number 2 > if (adj3 <= order_d + 1) then # if number 3 > if (adj2 > 0) then # if number 4 > temporary := temporary / glob_h * convfp(adj2); > else > temporary := temporary; > fi;# end if 4; > array_y_higher[adj3,term] := temporary; > fi;# end if 3; > term := term - 1; > adj2 := adj2 - 1; > adj3 := adj3 + 1; > od;# end do number 2 > fi;# end if 2 > fi;# end if 1; > kkk := kkk + 1; > od;# end do number 1; > #BOTTOM ATOMALL > #END OUTFILE4 > #BEGIN OUTFILE5 > #BOTTOM ATOMALL ??? > end; atomall := proc() local kkk, order_d, adj2, adj3, temporary, term; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3_g, array_tmp3_a1, array_tmp3_a2, array_tmp3, array_tmp4, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; array_tmp1[1] := array_const_2D0[1]*array_x[1]; array_tmp2[1] := array_tmp1[1] + array_const_3D0[1]; array_tmp3_a1[1] := sin(array_tmp2[1]); array_tmp3_a2[1] := cos(array_tmp2[1]); array_tmp3[1] := array_tmp3_a1[1]/array_tmp3_a2[1]; array_tmp4[1] := array_const_0D0[1] + array_tmp3[1]; if not array_y_set_initial[1, 2] then if 1 <= glob_max_terms then temporary := array_tmp4[1]*expt(glob_h, 1)*factorial_3(0, 1); array_y[2] := temporary; array_y_higher[1, 2] := temporary; temporary := temporary*1.0/glob_h; array_y_higher[2, 1] := temporary end if end if; kkk := 2; array_tmp1[2] := array_const_2D0[1]*array_x[2]; array_tmp2[2] := array_tmp1[2]; array_tmp3_a1[2] := array_tmp3_a2[1]*array_tmp2[2]; array_tmp3_a2[2] := -array_tmp3_a1[1]*array_tmp2[2]; array_tmp3[2] := ( array_tmp3_a1[2] - ats(2, array_tmp3_a2, array_tmp3, 2))/ array_tmp3_a2[1]; array_tmp4[2] := array_tmp3[2]; if not array_y_set_initial[1, 3] then if 2 <= glob_max_terms then temporary := array_tmp4[2]*expt(glob_h, 1)*factorial_3(1, 2); array_y[3] := temporary; array_y_higher[1, 3] := temporary; temporary := temporary*2.0/glob_h; array_y_higher[2, 2] := temporary end if end if; kkk := 3; array_tmp3_a1[3] := 1/2*array_tmp3_a2[2]*array_tmp2[2]; array_tmp3_a2[3] := -1/2*array_tmp3_a1[2]*array_tmp2[2]; array_tmp3[3] := ( array_tmp3_a1[3] - ats(3, array_tmp3_a2, array_tmp3, 2))/ array_tmp3_a2[1]; array_tmp4[3] := array_tmp3[3]; if not array_y_set_initial[1, 4] then if 3 <= glob_max_terms then temporary := array_tmp4[3]*expt(glob_h, 1)*factorial_3(2, 3); array_y[4] := temporary; array_y_higher[1, 4] := temporary; temporary := temporary*3.0/glob_h; array_y_higher[2, 3] := temporary end if end if; kkk := 4; array_tmp3_a1[4] := 1/3*array_tmp3_a2[3]*array_tmp2[2]; array_tmp3_a2[4] := -1/3*array_tmp3_a1[3]*array_tmp2[2]; array_tmp3[4] := ( array_tmp3_a1[4] - ats(4, array_tmp3_a2, array_tmp3, 2))/ array_tmp3_a2[1]; array_tmp4[4] := array_tmp3[4]; if not array_y_set_initial[1, 5] then if 4 <= glob_max_terms then temporary := array_tmp4[4]*expt(glob_h, 1)*factorial_3(3, 4); array_y[5] := temporary; array_y_higher[1, 5] := temporary; temporary := temporary*4.0/glob_h; array_y_higher[2, 4] := temporary end if end if; kkk := 5; array_tmp3_a1[5] := 1/4*array_tmp3_a2[4]*array_tmp2[2]; array_tmp3_a2[5] := -1/4*array_tmp3_a1[4]*array_tmp2[2]; array_tmp3[5] := ( array_tmp3_a1[5] - ats(5, array_tmp3_a2, array_tmp3, 2))/ array_tmp3_a2[1]; array_tmp4[5] := array_tmp3[5]; if not array_y_set_initial[1, 6] then if 5 <= glob_max_terms then temporary := array_tmp4[5]*expt(glob_h, 1)*factorial_3(4, 5); array_y[6] := temporary; array_y_higher[1, 6] := temporary; temporary := temporary*5.0/glob_h; array_y_higher[2, 5] := temporary end if end if; kkk := 6; while kkk <= glob_max_terms do array_tmp3_a1[kkk] := array_tmp3_a2[kkk - 1]*array_tmp2[2]/(kkk - 1); array_tmp3_a2[kkk] := -array_tmp3_a1[kkk - 1]*array_tmp2[2]/(kkk - 1); array_tmp3[kkk] := ( array_tmp3_a1[kkk] - ats(kkk, array_tmp3_a2, array_tmp3, 2))/ array_tmp3_a2[1]; array_tmp4[kkk] := array_tmp3[kkk]; order_d := 1; if kkk + order_d + 1 <= glob_max_terms then if not array_y_set_initial[1, kkk + order_d] then temporary := array_tmp4[kkk]*expt(glob_h, order_d)* factorial_3(kkk - 1, kkk + order_d - 1); array_y[kkk + order_d] := temporary; array_y_higher[1, kkk + order_d] := temporary; term := kkk + order_d - 1; adj2 := kkk + order_d - 1; adj3 := 2; while 1 <= term do if adj3 <= order_d + 1 then if 0 < adj2 then temporary := temporary*convfp(adj2)/glob_h else temporary := temporary end if; array_y_higher[adj3, term] := temporary end if; term := term - 1; adj2 := adj2 - 1; adj3 := adj3 + 1 end do end if end if; kkk := kkk + 1 end do end proc > # End Function number 12 > #BEGIN ATS LIBRARY BLOCK > # Begin Function number 2 > omniout_str := proc(iolevel,str) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > printf("%s\n",str); > fi;# end if 1; > end; omniout_str := proc(iolevel, str) global glob_iolevel; if iolevel <= glob_iolevel then printf("%s\n", str) end if end proc > # End Function number 2 > # Begin Function number 3 > omniout_str_noeol := proc(iolevel,str) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > printf("%s",str); > fi;# end if 1; > end; omniout_str_noeol := proc(iolevel, str) global glob_iolevel; if iolevel <= glob_iolevel then printf("%s", str) end if end proc > # End Function number 3 > # Begin Function number 4 > omniout_labstr := proc(iolevel,label,str) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > print(label,str); > fi;# end if 1; > end; omniout_labstr := proc(iolevel, label, str) global glob_iolevel; if iolevel <= glob_iolevel then print(label, str) end if end proc > # End Function number 4 > # Begin Function number 5 > omniout_float := proc(iolevel,prelabel,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > if vallen = 4 then > printf("%-30s = %-42.4g %s \n",prelabel,value, postlabel); > else > printf("%-30s = %-42.32g %s \n",prelabel,value, postlabel); > fi;# end if 1; > fi;# end if 0; > end; omniout_float := proc(iolevel, prelabel, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then if vallen = 4 then printf("%-30s = %-42.4g %s \n", prelabel, value, postlabel) else printf("%-30s = %-42.32g %s \n", prelabel, value, postlabel) end if end if end proc > # End Function number 5 > # Begin Function number 6 > omniout_int := proc(iolevel,prelabel,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 0 > if vallen = 5 then # if number 1 > printf("%-30s = %-32d %s\n",prelabel,value, postlabel); > else > printf("%-30s = %-32d %s \n",prelabel,value, postlabel); > fi;# end if 1; > fi;# end if 0; > end; omniout_int := proc(iolevel, prelabel, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then if vallen = 5 then printf("%-30s = %-32d %s\n", prelabel, value, postlabel) else printf("%-30s = %-32d %s \n", prelabel, value, postlabel) end if end if end proc > # End Function number 6 > # Begin Function number 7 > omniout_float_arr := proc(iolevel,prelabel,elemnt,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 0 > print(prelabel,"[",elemnt,"]",value, postlabel); > fi;# end if 0; > end; omniout_float_arr := proc( iolevel, prelabel, elemnt, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then print(prelabel, "[", elemnt, "]", value, postlabel) end if end proc > # End Function number 7 > # Begin Function number 8 > dump_series := proc(iolevel,dump_label,series_name,arr_series,numb) > global glob_iolevel; > local i; > if (glob_iolevel >= iolevel) then # if number 0 > i := 1; > while (i <= numb) do # do number 1 > print(dump_label,series_name > ,i,arr_series[i]); > i := i + 1; > od;# end do number 1 > fi;# end if 0 > end; dump_series := proc(iolevel, dump_label, series_name, arr_series, numb) local i; global glob_iolevel; if iolevel <= glob_iolevel then i := 1; while i <= numb do print(dump_label, series_name, i, arr_series[i]); i := i + 1 end do end if end proc > # End Function number 8 > # Begin Function number 9 > dump_series_2 := proc(iolevel,dump_label,series_name2,arr_series2,numb,subnum,arr_x) > global glob_iolevel; > local i,sub,ts_term; > if (glob_iolevel >= iolevel) then # if number 0 > sub := 1; > while (sub <= subnum) do # do number 1 > i := 1; > while (i <= numb) do # do number 2 > print(dump_label,series_name2,sub,i,arr_series2[sub,i]); > od;# end do number 2; > sub := sub + 1; > od;# end do number 1; > fi;# end if 0; > end; dump_series_2 := proc( iolevel, dump_label, series_name2, arr_series2, numb, subnum, arr_x) local i, sub, ts_term; global glob_iolevel; if iolevel <= glob_iolevel then sub := 1; while sub <= subnum do i := 1; while i <= numb do print(dump_label, series_name2, sub, i, arr_series2[sub, i]) end do; sub := sub + 1 end do end if end proc > # End Function number 9 > # Begin Function number 10 > cs_info := proc(iolevel,str) > global glob_iolevel,glob_correct_start_flag,glob_h,glob_reached_optimal_h; > if (glob_iolevel >= iolevel) then # if number 0 > print("cs_info " , str , " glob_correct_start_flag = " , glob_correct_start_flag , "glob_h := " , glob_h , "glob_reached_optimal_h := " , glob_reached_optimal_h) > fi;# end if 0; > end; cs_info := proc(iolevel, str) global glob_iolevel, glob_correct_start_flag, glob_h, glob_reached_optimal_h; if iolevel <= glob_iolevel then print("cs_info ", str, " glob_correct_start_flag = ", glob_correct_start_flag, "glob_h := ", glob_h, "glob_reached_optimal_h := ", glob_reached_optimal_h) end if end proc > # End Function number 10 > # Begin Function number 11 > logitem_time := proc(fd,secs_in) > global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; > local days_int, hours_int,minutes_int, sec_int, sec_temp, years_int; > fprintf(fd,""); > if (secs_in >= 0) then # if number 0 > years_int := trunc(secs_in / glob_sec_in_year); > sec_temp := (trunc(secs_in) mod trunc(glob_sec_in_year)); > days_int := trunc(sec_temp / glob_sec_in_day) ; > sec_temp := (sec_temp mod trunc(glob_sec_in_day)) ; > hours_int := trunc(sec_temp / glob_sec_in_hour); > sec_temp := (sec_temp mod trunc(glob_sec_in_hour)); > minutes_int := trunc(sec_temp / glob_sec_in_minute); > sec_int := (sec_temp mod trunc(glob_sec_in_minute)); > if (years_int > 0) then # if number 1 > fprintf(fd,"%d Years %d Days %d Hours %d Minutes %d Seconds",years_int,days_int,hours_int,minutes_int,sec_int); > elif > (days_int > 0) then # if number 2 > fprintf(fd,"%d Days %d Hours %d Minutes %d Seconds",days_int,hours_int,minutes_int,sec_int); > elif > (hours_int > 0) then # if number 3 > fprintf(fd,"%d Hours %d Minutes %d Seconds",hours_int,minutes_int,sec_int); > elif > (minutes_int > 0) then # if number 4 > fprintf(fd,"%d Minutes %d Seconds",minutes_int,sec_int); > else > fprintf(fd,"%d Seconds",sec_int); > fi;# end if 4 > else > fprintf(fd," Unknown"); > fi;# end if 3 > fprintf(fd,"\n"); > end; logitem_time := proc(fd, secs_in) local days_int, hours_int, minutes_int, sec_int, sec_temp, years_int; global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; fprintf(fd, ""); if 0 <= secs_in then years_int := trunc(secs_in/glob_sec_in_year); sec_temp := trunc(secs_in) mod trunc(glob_sec_in_year); days_int := trunc(sec_temp/glob_sec_in_day); sec_temp := sec_temp mod trunc(glob_sec_in_day); hours_int := trunc(sec_temp/glob_sec_in_hour); sec_temp := sec_temp mod trunc(glob_sec_in_hour); minutes_int := trunc(sec_temp/glob_sec_in_minute); sec_int := sec_temp mod trunc(glob_sec_in_minute); if 0 < years_int then fprintf(fd, "%d Years %d Days %d Hours %d Minutes %d Seconds", years_int, days_int, hours_int, minutes_int, sec_int) elif 0 < days_int then fprintf(fd, "%d Days %d Hours %d Minutes %d Seconds", days_int, hours_int, minutes_int, sec_int) elif 0 < hours_int then fprintf(fd, "%d Hours %d Minutes %d Seconds", hours_int, minutes_int, sec_int) elif 0 < minutes_int then fprintf(fd, "%d Minutes %d Seconds", minutes_int, sec_int) else fprintf(fd, "%d Seconds", sec_int) end if else fprintf(fd, " Unknown") end if; fprintf(fd, "\n") end proc > # End Function number 11 > # Begin Function number 12 > omniout_timestr := proc(secs_in) > global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; > local days_int, hours_int,minutes_int, sec_int, sec_temp, years_int; > if (secs_in >= 0) then # if number 3 > years_int := trunc(secs_in / glob_sec_in_year); > sec_temp := (trunc(secs_in) mod trunc(glob_sec_in_year)); > days_int := trunc(sec_temp / glob_sec_in_day) ; > sec_temp := (sec_temp mod trunc(glob_sec_in_day)) ; > hours_int := trunc(sec_temp / glob_sec_in_hour); > sec_temp := (sec_temp mod trunc(glob_sec_in_hour)); > minutes_int := trunc(sec_temp / glob_sec_in_minute); > sec_int := (sec_temp mod trunc(glob_sec_in_minute)); > if (years_int > 0) then # if number 4 > printf(" = %d Years %d Days %d Hours %d Minutes %d Seconds\n",years_int,days_int,hours_int,minutes_int,sec_int); > elif > (days_int > 0) then # if number 5 > printf(" = %d Days %d Hours %d Minutes %d Seconds\n",days_int,hours_int,minutes_int,sec_int); > elif > (hours_int > 0) then # if number 6 > printf(" = %d Hours %d Minutes %d Seconds\n",hours_int,minutes_int,sec_int); > elif > (minutes_int > 0) then # if number 7 > printf(" = %d Minutes %d Seconds\n",minutes_int,sec_int); > else > printf(" = %d Seconds\n",sec_int); > fi;# end if 7 > else > printf(" Unknown\n"); > fi;# end if 6 > end; omniout_timestr := proc(secs_in) local days_int, hours_int, minutes_int, sec_int, sec_temp, years_int; global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; if 0 <= secs_in then years_int := trunc(secs_in/glob_sec_in_year); sec_temp := trunc(secs_in) mod trunc(glob_sec_in_year); days_int := trunc(sec_temp/glob_sec_in_day); sec_temp := sec_temp mod trunc(glob_sec_in_day); hours_int := trunc(sec_temp/glob_sec_in_hour); sec_temp := sec_temp mod trunc(glob_sec_in_hour); minutes_int := trunc(sec_temp/glob_sec_in_minute); sec_int := sec_temp mod trunc(glob_sec_in_minute); if 0 < years_int then printf( " = %d Years %d Days %d Hours %d Minutes %d Seconds\n", years_int, days_int, hours_int, minutes_int, sec_int) elif 0 < days_int then printf( " = %d Days %d Hours %d Minutes %d Seconds\n", days_int, hours_int, minutes_int, sec_int) elif 0 < hours_int then printf( " = %d Hours %d Minutes %d Seconds\n", hours_int, minutes_int, sec_int) elif 0 < minutes_int then printf(" = %d Minutes %d Seconds\n", minutes_int, sec_int) else printf(" = %d Seconds\n", sec_int) end if else printf(" Unknown\n") end if end proc > # End Function number 12 > # Begin Function number 13 > ats := proc(mmm_ats,arr_a,arr_b,jjj_ats) > local iii_ats, lll_ats,ma_ats, ret_ats; > ret_ats := 0.0; > if (jjj_ats <= mmm_ats) then # if number 6 > ma_ats := mmm_ats + 1; > iii_ats := jjj_ats; > while (iii_ats <= mmm_ats) do # do number 1 > lll_ats := ma_ats - iii_ats; > ret_ats := ret_ats + arr_a[iii_ats]*arr_b[lll_ats]; > iii_ats := iii_ats + 1; > od;# end do number 1 > fi;# end if 6; > ret_ats; > end; ats := proc(mmm_ats, arr_a, arr_b, jjj_ats) local iii_ats, lll_ats, ma_ats, ret_ats; ret_ats := 0.; if jjj_ats <= mmm_ats then ma_ats := mmm_ats + 1; iii_ats := jjj_ats; while iii_ats <= mmm_ats do lll_ats := ma_ats - iii_ats; ret_ats := ret_ats + arr_a[iii_ats]*arr_b[lll_ats]; iii_ats := iii_ats + 1 end do end if; ret_ats end proc > # End Function number 13 > # Begin Function number 14 > att := proc(mmm_att,arr_aa,arr_bb,jjj_att) > global glob_max_terms; > local al_att, iii_att,lll_att, ma_att, ret_att; > ret_att := 0.0; > if (jjj_att <= mmm_att) then # if number 6 > ma_att := mmm_att + 2; > iii_att := jjj_att; > while (iii_att <= mmm_att) do # do number 1 > lll_att := ma_att - iii_att; > al_att := (lll_att - 1); > if (lll_att <= glob_max_terms) then # if number 7 > ret_att := ret_att + arr_aa[iii_att]*arr_bb[lll_att]* convfp(al_att); > fi;# end if 7; > iii_att := iii_att + 1; > od;# end do number 1; > ret_att := ret_att / convfp(mmm_att) ; > fi;# end if 6; > ret_att; > end; att := proc(mmm_att, arr_aa, arr_bb, jjj_att) local al_att, iii_att, lll_att, ma_att, ret_att; global glob_max_terms; ret_att := 0.; if jjj_att <= mmm_att then ma_att := mmm_att + 2; iii_att := jjj_att; while iii_att <= mmm_att do lll_att := ma_att - iii_att; al_att := lll_att - 1; if lll_att <= glob_max_terms then ret_att := ret_att + arr_aa[iii_att]*arr_bb[lll_att]*convfp(al_att) end if; iii_att := iii_att + 1 end do; ret_att := ret_att/convfp(mmm_att) end if; ret_att end proc > # End Function number 14 > # Begin Function number 15 > display_pole := proc() > global ALWAYS,glob_display_flag, glob_large_float, array_pole; > if ((array_pole[1] <> glob_large_float) and (array_pole[1] > 0.0) and (array_pole[2] <> glob_large_float) and (array_pole[2]> 0.0) and glob_display_flag) then # if number 6 > omniout_float(ALWAYS,"Radius of convergence ",4, array_pole[1],4," "); > omniout_float(ALWAYS,"Order of pole ",4, array_pole[2],4," "); > fi;# end if 6 > end; display_pole := proc() global ALWAYS, glob_display_flag, glob_large_float, array_pole; if array_pole[1] <> glob_large_float and 0. < array_pole[1] and array_pole[2] <> glob_large_float and 0. < array_pole[2] and glob_display_flag then omniout_float(ALWAYS, "Radius of convergence ", 4, array_pole[1], 4, " "); omniout_float(ALWAYS, "Order of pole ", 4, array_pole[2], 4, " ") end if end proc > # End Function number 15 > # Begin Function number 16 > logditto := proc(file) > fprintf(file,""); > fprintf(file,"ditto"); > fprintf(file,""); > end; logditto := proc(file) fprintf(file, ""); fprintf(file, "ditto"); fprintf(file, "") end proc > # End Function number 16 > # Begin Function number 17 > logitem_integer := proc(file,n) > fprintf(file,""); > fprintf(file,"%d",n); > fprintf(file,""); > end; logitem_integer := proc(file, n) fprintf(file, ""); fprintf(file, "%d", n); fprintf(file, "") end proc > # End Function number 17 > # Begin Function number 18 > logitem_str := proc(file,str) > fprintf(file,""); > fprintf(file,str); > fprintf(file,""); > end; logitem_str := proc(file, str) fprintf(file, ""); fprintf(file, str); fprintf(file, "") end proc > # End Function number 18 > # Begin Function number 19 > logitem_good_digits := proc(file,rel_error) > global glob_small_float; > local good_digits; > fprintf(file,""); > if (rel_error <> -1.0) then # if number 6 > if (rel_error > + 0.0000000000000000000000000000000001) then # if number 7 > good_digits := 1-trunc(log10(rel_error)); > fprintf(file,"%d",good_digits); > else > good_digits := Digits; > fprintf(file,"%d",good_digits); > fi;# end if 7; > else > fprintf(file,"Unknown"); > fi;# end if 6; > fprintf(file,""); > end; logitem_good_digits := proc(file, rel_error) local good_digits; global glob_small_float; fprintf(file, ""); if rel_error <> -1.0 then if 0.1*10^(-33) < rel_error then good_digits := 1 - trunc(log10(rel_error)); fprintf(file, "%d", good_digits) else good_digits := Digits; fprintf(file, "%d", good_digits) end if else fprintf(file, "Unknown") end if; fprintf(file, "") end proc > # End Function number 19 > # Begin Function number 20 > log_revs := proc(file,revs) > fprintf(file,revs); > end; log_revs := proc(file, revs) fprintf(file, revs) end proc > # End Function number 20 > # Begin Function number 21 > logitem_float := proc(file,x) > fprintf(file,""); > fprintf(file,"%g",x); > fprintf(file,""); > end; logitem_float := proc(file, x) fprintf(file, ""); fprintf(file, "%g", x); fprintf(file, "") end proc > # End Function number 21 > # Begin Function number 22 > logitem_pole := proc(file,pole) > fprintf(file,""); > if (pole = 0) then # if number 6 > fprintf(file,"NA"); > elif > (pole = 1) then # if number 7 > fprintf(file,"Real"); > elif > (pole = 2) then # if number 8 > fprintf(file,"Complex"); > else > fprintf(file,"No Pole"); > fi;# end if 8 > fprintf(file,""); > end; logitem_pole := proc(file, pole) fprintf(file, ""); if pole = 0 then fprintf(file, "NA") elif pole = 1 then fprintf(file, "Real") elif pole = 2 then fprintf(file, "Complex") else fprintf(file, "No Pole") end if; fprintf(file, "") end proc > # End Function number 22 > # Begin Function number 23 > logstart := proc(file) > fprintf(file,""); > end; logstart := proc(file) fprintf(file, "") end proc > # End Function number 23 > # Begin Function number 24 > logend := proc(file) > fprintf(file,"\n"); > end; logend := proc(file) fprintf(file, "\n") end proc > # End Function number 24 > # Begin Function number 25 > chk_data := proc() > global glob_max_iter,ALWAYS, glob_max_terms; > local errflag; > errflag := false; > if ((glob_max_terms < 15) or (glob_max_terms > 512)) then # if number 8 > omniout_str(ALWAYS,"Illegal max_terms = -- Using 30"); > glob_max_terms := 30; > fi;# end if 8; > if (glob_max_iter < 2) then # if number 8 > omniout_str(ALWAYS,"Illegal max_iter"); > errflag := true; > fi;# end if 8; > if (errflag) then # if number 8 > quit; > fi;# end if 8 > end; chk_data := proc() local errflag; global glob_max_iter, ALWAYS, glob_max_terms; errflag := false; if glob_max_terms < 15 or 512 < glob_max_terms then omniout_str(ALWAYS, "Illegal max_terms = -- Using 30"); glob_max_terms := 30 end if; if glob_max_iter < 2 then omniout_str(ALWAYS, "Illegal max_iter"); errflag := true end if; if errflag then quit end if end proc > # End Function number 25 > # Begin Function number 26 > comp_expect_sec := proc(t_end2,t_start2,t2,clock_sec2) > global glob_small_float; > local ms2, rrr, sec_left, sub1, sub2; > ; > ms2 := clock_sec2; > sub1 := (t_end2-t_start2); > sub2 := (t2-t_start2); > if (sub1 = 0.0) then # if number 8 > sec_left := 0.0; > else > if (sub2 > 0.0) then # if number 9 > rrr := (sub1/sub2); > sec_left := rrr * ms2 - ms2; > else > sec_left := 0.0; > fi;# end if 9 > fi;# end if 8; > sec_left; > end; comp_expect_sec := proc(t_end2, t_start2, t2, clock_sec2) local ms2, rrr, sec_left, sub1, sub2; global glob_small_float; ms2 := clock_sec2; sub1 := t_end2 - t_start2; sub2 := t2 - t_start2; if sub1 = 0. then sec_left := 0. else if 0. < sub2 then rrr := sub1/sub2; sec_left := rrr*ms2 - ms2 else sec_left := 0. end if end if; sec_left end proc > # End Function number 26 > # Begin Function number 27 > comp_percent := proc(t_end2,t_start2, t2) > global glob_small_float; > local rrr, sub1, sub2; > sub1 := (t_end2-t_start2); > sub2 := (t2-t_start2); > if (sub2 > glob_small_float) then # if number 8 > rrr := (100.0*sub2)/sub1; > else > rrr := 0.0; > fi;# end if 8; > rrr; > end; comp_percent := proc(t_end2, t_start2, t2) local rrr, sub1, sub2; global glob_small_float; sub1 := t_end2 - t_start2; sub2 := t2 - t_start2; if glob_small_float < sub2 then rrr := 100.0*sub2/sub1 else rrr := 0. end if; rrr end proc > # End Function number 27 > # Begin Function number 28 > factorial_2 := proc(nnn) > nnn!; > end; factorial_2 := proc(nnn) nnn! end proc > # End Function number 28 > # Begin Function number 29 > factorial_1 := proc(nnn) > global glob_max_terms,array_fact_1; > local ret; > if (nnn <= glob_max_terms) then # if number 8 > if (array_fact_1[nnn] = 0) then # if number 9 > ret := factorial_2(nnn); > array_fact_1[nnn] := ret; > else > ret := array_fact_1[nnn]; > fi;# end if 9; > else > ret := factorial_2(nnn); > fi;# end if 8; > ret; > end; factorial_1 := proc(nnn) local ret; global glob_max_terms, array_fact_1; if nnn <= glob_max_terms then if array_fact_1[nnn] = 0 then ret := factorial_2(nnn); array_fact_1[nnn] := ret else ret := array_fact_1[nnn] end if else ret := factorial_2(nnn) end if; ret end proc > # End Function number 29 > # Begin Function number 30 > factorial_3 := proc(mmm,nnn) > global glob_max_terms,array_fact_2; > local ret; > if ((nnn <= glob_max_terms) and (mmm <= glob_max_terms)) then # if number 8 > if (array_fact_2[mmm,nnn] = 0) then # if number 9 > ret := factorial_1(mmm)/factorial_1(nnn); > array_fact_2[mmm,nnn] := ret; > else > ret := array_fact_2[mmm,nnn]; > fi;# end if 9; > else > ret := factorial_2(mmm)/factorial_2(nnn); > fi;# end if 8; > ret; > end; factorial_3 := proc(mmm, nnn) local ret; global glob_max_terms, array_fact_2; if nnn <= glob_max_terms and mmm <= glob_max_terms then if array_fact_2[mmm, nnn] = 0 then ret := factorial_1(mmm)/factorial_1(nnn); array_fact_2[mmm, nnn] := ret else ret := array_fact_2[mmm, nnn] end if else ret := factorial_2(mmm)/factorial_2(nnn) end if; ret end proc > # End Function number 30 > # Begin Function number 31 > convfp := proc(mmm) > (mmm); > end; convfp := proc(mmm) mmm end proc > # End Function number 31 > # Begin Function number 32 > convfloat := proc(mmm) > (mmm); > end; convfloat := proc(mmm) mmm end proc > # End Function number 32 > # Begin Function number 33 > elapsed_time_seconds := proc() > time(); > end; elapsed_time_seconds := proc() time() end proc > # End Function number 33 > # Begin Function number 34 > omniabs := proc(x) > abs(x); > end; omniabs := proc(x) abs(x) end proc > # End Function number 34 > # Begin Function number 35 > expt := proc(x,y) > (x^y); > end; expt := proc(x, y) x^y end proc > # End Function number 35 > # Begin Function number 36 > estimated_needed_step_error := proc(x_start,x_end,estimated_h,estimated_answer) > local desired_abs_gbl_error,range,estimated_steps,step_error; > global glob_desired_digits_correct,ALWAYS; > omniout_float(ALWAYS,"glob_desired_digits_correct",32,glob_desired_digits_correct,32,""); > desired_abs_gbl_error := expt(10.0,- glob_desired_digits_correct) * omniabs(estimated_answer); > omniout_float(ALWAYS,"desired_abs_gbl_error",32,desired_abs_gbl_error,32,""); > range := (x_end - x_start); > omniout_float(ALWAYS,"range",32,range,32,""); > estimated_steps := range / estimated_h; > omniout_float(ALWAYS,"estimated_steps",32,estimated_steps,32,""); > step_error := omniabs(desired_abs_gbl_error / estimated_steps); > omniout_float(ALWAYS,"step_error",32,step_error,32,""); > (step_error);; > end; estimated_needed_step_error := proc( x_start, x_end, estimated_h, estimated_answer) local desired_abs_gbl_error, range, estimated_steps, step_error; global glob_desired_digits_correct, ALWAYS; omniout_float(ALWAYS, "glob_desired_digits_correct", 32, glob_desired_digits_correct, 32, ""); desired_abs_gbl_error := expt(10.0, -glob_desired_digits_correct)*omniabs(estimated_answer); omniout_float(ALWAYS, "desired_abs_gbl_error", 32, desired_abs_gbl_error, 32, ""); range := x_end - x_start; omniout_float(ALWAYS, "range", 32, range, 32, ""); estimated_steps := range/estimated_h; omniout_float(ALWAYS, "estimated_steps", 32, estimated_steps, 32, ""); step_error := omniabs(desired_abs_gbl_error/estimated_steps); omniout_float(ALWAYS, "step_error", 32, step_error, 32, ""); step_error end proc > # End Function number 36 > #END ATS LIBRARY BLOCK > #BEGIN USER DEF BLOCK > #BEGIN USER DEF BLOCK > exact_soln_y := proc(x) > return(ln(1.0 + expt(tan(2.0 * x + 3.0),2))/4.0); > end; exact_soln_y := proc(x) return ln(1.0 + expt(tan(2.0*x + 3.0), 2))/4.0 end proc > #END USER DEF BLOCK > #END USER DEF BLOCK > #END OUTFILE5 > # Begin Function number 2 > main := proc() > #BEGIN OUTFIEMAIN > local d1,d2,d3,d4,est_err_2,niii,done_once, > term,ord,order_diff,term_no,html_log_file,iiif,jjjf, > rows,r_order,sub_iter,calc_term,iii,temp_sum,current_iter, > x_start,x_end > ,it, log10norm, max_terms, opt_iter, tmp,subiter, est_needed_step_err,value3,min_value,est_answer,best_h,found_h,repeat_it; > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3_g, > array_tmp3_a1, > array_tmp3_a2, > array_tmp3, > array_tmp4, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > glob_last; > ALWAYS := 1; > INFO := 2; > DEBUGL := 3; > DEBUGMASSIVE := 4; > glob_iolevel := INFO; > glob_max_terms := 30; > glob_iolevel := 5; > ALWAYS := 1; > INFO := 2; > DEBUGL := 3; > DEBUGMASSIVE := 4; > MAX_UNCHANGED := 10; > glob_check_sign := 1.0; > glob_desired_digits_correct := 8.0; > glob_max_value3 := 0.0; > glob_ratio_of_radius := 0.01; > glob_percent_done := 0.0; > glob_subiter_method := 3; > glob_log10normmin := 0.1; > glob_total_exp_sec := 0.1; > glob_optimal_expect_sec := 0.1; > glob_html_log := true; > glob_good_digits := 0; > glob_max_opt_iter := 10; > glob_dump := false; > glob_djd_debug := true; > glob_display_flag := true; > glob_djd_debug2 := true; > glob_sec_in_minute := 60; > glob_min_in_hour := 60; > glob_hours_in_day := 24; > glob_days_in_year := 365; > glob_sec_in_hour := 3600; > glob_sec_in_day := 86400; > glob_sec_in_year := 31536000; > glob_almost_1 := 0.9990; > glob_clock_sec := 0.0; > glob_clock_start_sec := 0.0; > glob_not_yet_finished := true; > glob_initial_pass := true; > glob_not_yet_start_msg := true; > glob_reached_optimal_h := false; > glob_optimal_done := false; > glob_disp_incr := 0.1; > glob_h := 0.1; > glob_hmax := 1.0; > glob_hmin := 0.00000000001; > glob_hmin_init := 0.001; > glob_large_float := 9.0e100; > glob_last_good_h := 0.1; > glob_look_poles := false; > glob_neg_h := false; > glob_display_interval := 0.0; > glob_next_display := 0.0; > glob_dump_analytic := false; > glob_log10_abserr := 0.1e-10; > glob_log10_relerr := 0.1e-10; > glob_abserr := 0.1e-10; > glob_relerr := 0.1e-10; > glob_max_hours := 0.0; > glob_max_iter := 1000; > glob_max_rel_trunc_err := 0.1e-10; > glob_max_trunc_err := 0.1e-10; > glob_no_eqs := 0; > glob_optimal_clock_start_sec := 0.0; > glob_optimal_start := 0.0; > glob_small_float := 0.1e-50; > glob_smallish_float := 0.1e-100; > glob_unchanged_h_cnt := 0; > glob_warned := false; > glob_warned2 := false; > glob_max_sec := 10000.0; > glob_orig_start_sec := 0.0; > glob_start := 0; > glob_curr_iter_when_opt := 0; > glob_current_iter := 0; > glob_iter := 0; > glob_normmax := 0.0; > glob_log10abserr := 0.0; > glob_log10relerr := 0.0; > glob_max_minutes := 0.0; > #Write Set Defaults > glob_orig_start_sec := elapsed_time_seconds(); > MAX_UNCHANGED := 10; > glob_curr_iter_when_opt := 0; > glob_display_flag := true; > glob_no_eqs := 1; > glob_iter := -1; > opt_iter := -1; > glob_max_iter := 50000; > glob_max_hours := 0.0; > glob_max_minutes := 15.0; > omniout_str(ALWAYS,"##############ECHO OF PROBLEM#################"); > omniout_str(ALWAYS,"##############temp/lin_tanpostode.ode#################"); > omniout_str(ALWAYS,"diff ( y , x , 1 ) = tan (2.0 * x + 3.0 ) ;"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#BEGIN FIRST INPUT BLOCK"); > omniout_str(ALWAYS,"Digits:=32;"); > omniout_str(ALWAYS,"max_terms:=30;"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#END FIRST INPUT BLOCK"); > omniout_str(ALWAYS,"#BEGIN SECOND INPUT BLOCK"); > omniout_str(ALWAYS,"x_start := 0.0;"); > omniout_str(ALWAYS,"x_end := 5.0 ;"); > omniout_str(ALWAYS,"array_y_init[0 + 1] := exact_soln_y(x_start);"); > omniout_str(ALWAYS,"glob_h := 0.00001 ;"); > omniout_str(ALWAYS,"glob_look_poles := true;"); > omniout_str(ALWAYS,"glob_max_iter := 10;"); > omniout_str(ALWAYS,"#END SECOND INPUT BLOCK"); > omniout_str(ALWAYS,"#BEGIN OVERRIDE BLOCK"); > omniout_str(ALWAYS,"glob_desired_digits_correct:=10;"); > omniout_str(ALWAYS,"glob_display_interval:=0.001;"); > omniout_str(ALWAYS,"glob_look_poles:=true;"); > omniout_str(ALWAYS,"glob_max_iter:=10000000;"); > omniout_str(ALWAYS,"glob_max_minutes:=3;"); > omniout_str(ALWAYS,"glob_subiter_method:=3;"); > omniout_str(ALWAYS,"#END OVERRIDE BLOCK"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#BEGIN USER DEF BLOCK"); > omniout_str(ALWAYS,"exact_soln_y := proc(x)"); > omniout_str(ALWAYS,"return(ln(1.0 + expt(tan(2.0 * x + 3.0),2))/4.0);"); > omniout_str(ALWAYS,"end;"); > omniout_str(ALWAYS,"#END USER DEF BLOCK"); > omniout_str(ALWAYS,"#######END OF ECHO OF PROBLEM#################"); > glob_unchanged_h_cnt := 0; > glob_warned := false; > glob_warned2 := false; > glob_small_float := 1.0e-200; > glob_smallish_float := 1.0e-64; > glob_large_float := 1.0e100; > glob_almost_1 := 0.99; > glob_log10_abserr := -8.0; > glob_log10_relerr := -8.0; > glob_hmax := 0.01; > #BEGIN FIRST INPUT BLOCK > #BEGIN FIRST INPUT BLOCK > Digits:=32; > max_terms:=30; > #END FIRST INPUT BLOCK > #START OF INITS AFTER INPUT BLOCK > glob_max_terms := max_terms; > glob_html_log := true; > #END OF INITS AFTER INPUT BLOCK > array_y_init:= Array(0..(max_terms + 1),[]); > array_norms:= Array(0..(max_terms + 1),[]); > array_fact_1:= Array(0..(max_terms + 1),[]); > array_pole:= Array(0..(max_terms + 1),[]); > array_1st_rel_error:= Array(0..(max_terms + 1),[]); > array_last_rel_error:= Array(0..(max_terms + 1),[]); > array_type_pole:= Array(0..(max_terms + 1),[]); > array_y:= Array(0..(max_terms + 1),[]); > array_x:= Array(0..(max_terms + 1),[]); > array_tmp0:= Array(0..(max_terms + 1),[]); > array_tmp1:= Array(0..(max_terms + 1),[]); > array_tmp2:= Array(0..(max_terms + 1),[]); > array_tmp3_g:= Array(0..(max_terms + 1),[]); > array_tmp3_a1:= Array(0..(max_terms + 1),[]); > array_tmp3_a2:= Array(0..(max_terms + 1),[]); > array_tmp3:= Array(0..(max_terms + 1),[]); > array_tmp4:= Array(0..(max_terms + 1),[]); > array_m1:= Array(0..(max_terms + 1),[]); > array_y_higher := Array(0..(2+ 1) ,(0..max_terms+ 1),[]); > array_y_higher_work := Array(0..(2+ 1) ,(0..max_terms+ 1),[]); > array_y_higher_work2 := Array(0..(2+ 1) ,(0..max_terms+ 1),[]); > array_y_set_initial := Array(0..(2+ 1) ,(0..max_terms+ 1),[]); > array_poles := Array(0..(1+ 1) ,(0..3+ 1),[]); > array_real_pole := Array(0..(1+ 1) ,(0..3+ 1),[]); > array_complex_pole := Array(0..(1+ 1) ,(0..3+ 1),[]); > array_fact_2 := Array(0..(max_terms+ 1) ,(0..max_terms+ 1),[]); > term := 1; > while (term <= max_terms) do # do number 2 > array_y_init[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_norms[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_fact_1[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_pole[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_1st_rel_error[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_last_rel_error[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_type_pole[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_y[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_x[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp0[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp1[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp2[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp3_g[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp3_a1[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp3_a2[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp3[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp4[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_m1[term] := 0.0; > term := term + 1; > od;# end do number 2; > ord := 1; > while (ord <=2) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_y_higher[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=2) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_y_higher_work[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=2) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_y_higher_work2[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=2) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_y_set_initial[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=1) do # do number 2 > term := 1; > while (term <= 3) do # do number 3 > array_poles[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=1) do # do number 2 > term := 1; > while (term <= 3) do # do number 3 > array_real_pole[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=1) do # do number 2 > term := 1; > while (term <= 3) do # do number 3 > array_complex_pole[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=max_terms) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_fact_2[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > #BEGIN ARRAYS DEFINED AND INITIALIZATED > array_y := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_y[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_x := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_x[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp0 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp0[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp2 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp2[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp3_g := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp3_g[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp3_a1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp3_a1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp3_a2 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp3_a2[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp3 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp3[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp4 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp4[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_m1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_m1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_1[1] := 1; > array_const_0D0 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_0D0[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_0D0[1] := 0.0; > array_const_2D0 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_2D0[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_2D0[1] := 2.0; > array_const_3D0 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_3D0[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_3D0[1] := 3.0; > array_m1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms) do # do number 2 > array_m1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_m1[1] := -1.0; > #END ARRAYS DEFINED AND INITIALIZATED > #Initing Factorial Tables > iiif := 0; > while (iiif <= glob_max_terms) do # do number 2 > jjjf := 0; > while (jjjf <= glob_max_terms) do # do number 3 > array_fact_1[iiif] := 0; > array_fact_2[iiif,jjjf] := 0; > jjjf := jjjf + 1; > od;# end do number 3; > iiif := iiif + 1; > od;# end do number 2; > #Done Initing Factorial Tables > #TOP SECOND INPUT BLOCK > #BEGIN SECOND INPUT BLOCK > #END FIRST INPUT BLOCK > #BEGIN SECOND INPUT BLOCK > x_start := 0.0; > x_end := 5.0 ; > array_y_init[0 + 1] := exact_soln_y(x_start); > glob_h := 0.00001 ; > glob_look_poles := true; > glob_max_iter := 10; > #END SECOND INPUT BLOCK > #BEGIN OVERRIDE BLOCK > glob_desired_digits_correct:=10; > glob_display_interval:=0.001; > glob_look_poles:=true; > glob_max_iter:=10000000; > glob_max_minutes:=3; > glob_subiter_method:=3; > #END OVERRIDE BLOCK > #END SECOND INPUT BLOCK > #BEGIN INITS AFTER SECOND INPUT BLOCK > glob_last_good_h := glob_h; > glob_max_terms := max_terms; > glob_max_sec := convfloat(60.0) * convfloat(glob_max_minutes) + convfloat(3600.0) * convfloat(glob_max_hours); > glob_abserr := expt(10.0 , (glob_log10_abserr)); > glob_relerr := expt(10.0 , (glob_log10_relerr)); > if (glob_h > 0.0) then # if number 1 > glob_neg_h := false; > glob_display_interval := omniabs(glob_display_interval); > else > glob_neg_h := true; > glob_display_interval := -omniabs(glob_display_interval); > fi;# end if 1; > chk_data(); > #AFTER INITS AFTER SECOND INPUT BLOCK > array_y_set_initial[1,1] := true; > array_y_set_initial[1,2] := false; > array_y_set_initial[1,3] := false; > array_y_set_initial[1,4] := false; > array_y_set_initial[1,5] := false; > array_y_set_initial[1,6] := false; > array_y_set_initial[1,7] := false; > array_y_set_initial[1,8] := false; > array_y_set_initial[1,9] := false; > array_y_set_initial[1,10] := false; > array_y_set_initial[1,11] := false; > array_y_set_initial[1,12] := false; > array_y_set_initial[1,13] := false; > array_y_set_initial[1,14] := false; > array_y_set_initial[1,15] := false; > array_y_set_initial[1,16] := false; > array_y_set_initial[1,17] := false; > array_y_set_initial[1,18] := false; > array_y_set_initial[1,19] := false; > array_y_set_initial[1,20] := false; > array_y_set_initial[1,21] := false; > array_y_set_initial[1,22] := false; > array_y_set_initial[1,23] := false; > array_y_set_initial[1,24] := false; > array_y_set_initial[1,25] := false; > array_y_set_initial[1,26] := false; > array_y_set_initial[1,27] := false; > array_y_set_initial[1,28] := false; > array_y_set_initial[1,29] := false; > array_y_set_initial[1,30] := false; > #BEGIN OPTIMIZE CODE > omniout_str(ALWAYS,"START of Optimize"); > #Start Series -- INITIALIZE FOR OPTIMIZE > glob_check_sign := check_sign(x_start,x_end); > glob_h := check_sign(x_start,x_end); > if (glob_display_interval < glob_h) then # if number 2 > glob_h := glob_display_interval; > fi;# end if 2; > found_h := -1.0; > best_h := 0.0; > min_value := glob_large_float; > est_answer := est_size_answer(); > opt_iter := 1; > while ((opt_iter <= 20) and (found_h < 0.0)) do # do number 2 > omniout_int(ALWAYS,"opt_iter",32,opt_iter,4,""); > array_x[1] := x_start; > array_x[2] := glob_h; > glob_next_display := x_start; > order_diff := 1; > #Start Series array_y > term_no := 1; > while (term_no <= order_diff) do # do number 3 > array_y[term_no] := array_y_init[term_no] * expt(glob_h , (term_no - 1)) / factorial_1(term_no - 1); > term_no := term_no + 1; > od;# end do number 3; > rows := order_diff; > r_order := 1; > while (r_order <= rows) do # do number 3 > term_no := 1; > while (term_no <= (rows - r_order + 1)) do # do number 4 > it := term_no + r_order - 1; > array_y_higher[r_order,term_no] := array_y_init[it]* expt(glob_h , (term_no - 1)) / ((factorial_1(term_no - 1))); > term_no := term_no + 1; > od;# end do number 4; > r_order := r_order + 1; > od;# end do number 3 > ; > atomall(); > est_needed_step_err := estimated_needed_step_error(x_start,x_end,glob_h,est_answer); > omniout_float(ALWAYS,"est_needed_step_err",32,est_needed_step_err,16,""); > value3 := test_suggested_h(); > omniout_float(ALWAYS,"value3",32,value3,32,""); > if ((value3 < est_needed_step_err) and (found_h < 0.0)) then # if number 2 > best_h := glob_h; > found_h := 1.0; > fi;# end if 2; > omniout_float(ALWAYS,"best_h",32,best_h,32,""); > opt_iter := opt_iter + 1; > glob_h := glob_h * 0.5; > od;# end do number 2; > if (found_h > 0.0) then # if number 2 > glob_h := best_h ; > else > omniout_str(ALWAYS,"No increment to obtain desired accuracy found"); > fi;# end if 2; > #END OPTIMIZE CODE > if (glob_html_log) then # if number 2 > html_log_file := fopen("html/entry.html",WRITE,TEXT); > fi;# end if 2; > #BEGIN SOLUTION CODE > if (found_h > 0.0) then # if number 2 > omniout_str(ALWAYS,"START of Soultion"); > #Start Series -- INITIALIZE FOR SOLUTION > array_x[1] := x_start; > array_x[2] := glob_h; > glob_next_display := x_start; > order_diff := 1; > #Start Series array_y > term_no := 1; > while (term_no <= order_diff) do # do number 2 > array_y[term_no] := array_y_init[term_no] * expt(glob_h , (term_no - 1)) / factorial_1(term_no - 1); > term_no := term_no + 1; > od;# end do number 2; > rows := order_diff; > r_order := 1; > while (r_order <= rows) do # do number 2 > term_no := 1; > while (term_no <= (rows - r_order + 1)) do # do number 3 > it := term_no + r_order - 1; > array_y_higher[r_order,term_no] := array_y_init[it]* expt(glob_h , (term_no - 1)) / ((factorial_1(term_no - 1))); > term_no := term_no + 1; > od;# end do number 3; > r_order := r_order + 1; > od;# end do number 2 > ; > current_iter := 1; > glob_clock_start_sec := elapsed_time_seconds(); > glob_log10normmin := -glob_large_float ; > if (omniabs(array_y_higher[1,1]) > glob_small_float) then # if number 3 > tmp := omniabs(array_y_higher[1,1]); > log10norm := (log10(tmp)); > if (log10norm < glob_log10normmin) then # if number 4 > glob_log10normmin := log10norm; > fi;# end if 4 > fi;# end if 3; > display_alot(current_iter) > ; > glob_clock_sec := elapsed_time_seconds(); > glob_current_iter := 0; > glob_iter := 0; > omniout_str(DEBUGL," "); > glob_reached_optimal_h := true; > glob_optimal_clock_start_sec := elapsed_time_seconds(); > while ((glob_current_iter < glob_max_iter) and ((glob_check_sign * array_x[1]) < (glob_check_sign * x_end )) and ((convfloat(glob_clock_sec) - convfloat(glob_orig_start_sec)) < convfloat(glob_max_sec))) do # do number 2 > #left paren 0001C > if (reached_interval()) then # if number 3 > omniout_str(INFO," "); > omniout_str(INFO,"TOP MAIN SOLVE Loop"); > fi;# end if 3; > glob_iter := glob_iter + 1; > glob_clock_sec := elapsed_time_seconds(); > glob_current_iter := glob_current_iter + 1; > atomall(); > display_alot(current_iter); > if (glob_look_poles) then # if number 3 > #left paren 0004C > check_for_pole(); > fi;# end if 3;#was right paren 0004C > if (reached_interval()) then # if number 3 > glob_next_display := glob_next_display + glob_display_interval; > fi;# end if 3; > array_x[1] := array_x[1] + glob_h; > array_x[2] := glob_h; > #Jump Series array_y; > order_diff := 2; > #START PART 1 SUM AND ADJUST > #START SUM AND ADJUST EQ =1 > #sum_and_adjust array_y > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 2; > calc_term := 1; > #adjust_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > array_y_higher_work[2,iii] := array_y_higher[2,iii] / expt(glob_h , (calc_term - 1)) / factorial_3(iii - calc_term , iii - 1); > iii := iii - 1; > od;# end do number 3; > #AFTER ADJUST SUBSERIES EQ =1 > #BEFORE SUM SUBSERIES EQ =1 > temp_sum := 0.0; > ord := 2; > calc_term := 1; > #sum_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > temp_sum := temp_sum + array_y_higher_work[ord,iii]; > iii := iii - 1; > od;# end do number 3; > array_y_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , (calc_term - 1)) / (factorial_1(calc_term - 1)); > #AFTER SUM SUBSERIES EQ =1 > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 1; > calc_term := 2; > #adjust_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > array_y_higher_work[1,iii] := array_y_higher[1,iii] / expt(glob_h , (calc_term - 1)) / factorial_3(iii - calc_term , iii - 1); > iii := iii - 1; > od;# end do number 3; > #AFTER ADJUST SUBSERIES EQ =1 > #BEFORE SUM SUBSERIES EQ =1 > temp_sum := 0.0; > ord := 1; > calc_term := 2; > #sum_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > temp_sum := temp_sum + array_y_higher_work[ord,iii]; > iii := iii - 1; > od;# end do number 3; > array_y_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , (calc_term - 1)) / (factorial_1(calc_term - 1)); > #AFTER SUM SUBSERIES EQ =1 > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 1; > calc_term := 1; > #adjust_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > array_y_higher_work[1,iii] := array_y_higher[1,iii] / expt(glob_h , (calc_term - 1)) / factorial_3(iii - calc_term , iii - 1); > iii := iii - 1; > od;# end do number 3; > #AFTER ADJUST SUBSERIES EQ =1 > #BEFORE SUM SUBSERIES EQ =1 > temp_sum := 0.0; > ord := 1; > calc_term := 1; > #sum_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > temp_sum := temp_sum + array_y_higher_work[ord,iii]; > iii := iii - 1; > od;# end do number 3; > array_y_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , (calc_term - 1)) / (factorial_1(calc_term - 1)); > #AFTER SUM SUBSERIES EQ =1 > #END SUM AND ADJUST EQ =1 > #END PART 1 > #START PART 2 MOVE TERMS to REGULAR Array > term_no := glob_max_terms; > while (term_no >= 1) do # do number 3 > array_y[term_no] := array_y_higher_work2[1,term_no]; > ord := 1; > while (ord <= order_diff) do # do number 4 > array_y_higher[ord,term_no] := array_y_higher_work2[ord,term_no]; > ord := ord + 1; > od;# end do number 4; > term_no := term_no - 1; > od;# end do number 3; > #END PART 2 HEVE MOVED TERMS to REGULAR Array > ; > od;# end do number 2;#right paren 0001C > omniout_str(ALWAYS,"Finished!"); > if (glob_iter >= glob_max_iter) then # if number 3 > omniout_str(ALWAYS,"Maximum Iterations Reached before Solution Completed!"); > fi;# end if 3; > if (elapsed_time_seconds() - convfloat(glob_orig_start_sec) >= convfloat(glob_max_sec )) then # if number 3 > omniout_str(ALWAYS,"Maximum Time Reached before Solution Completed!"); > fi;# end if 3; > glob_clock_sec := elapsed_time_seconds(); > omniout_str(INFO,"diff ( y , x , 1 ) = tan (2.0 * x + 3.0 ) ;"); > omniout_int(INFO,"Iterations ",32,glob_iter,4," ") > ; > prog_report(x_start,x_end); > if (glob_html_log) then # if number 3 > logstart(html_log_file); > logitem_str(html_log_file,"2013-01-13T00:16:21-06:00") > ; > logitem_str(html_log_file,"Maple") > ; > logitem_str(html_log_file,"lin_tan") > ; > logitem_str(html_log_file,"diff ( y , x , 1 ) = tan (2.0 * x + 3.0 ) ;") > ; > logitem_float(html_log_file,x_start) > ; > logitem_float(html_log_file,x_end) > ; > logitem_float(html_log_file,array_x[1]) > ; > logitem_float(html_log_file,glob_h) > ; > logitem_integer(html_log_file,Digits) > ; > ; > logitem_good_digits(html_log_file,array_last_rel_error[1]) > ; > logitem_integer(html_log_file,glob_max_terms) > ; > logitem_float(html_log_file,array_1st_rel_error[1]) > ; > logitem_float(html_log_file,array_last_rel_error[1]) > ; > logitem_integer(html_log_file,glob_iter) > ; > logitem_pole(html_log_file,array_type_pole[1]) > ; > if (array_type_pole[1] = 1 or array_type_pole[1] = 2) then # if number 4 > logitem_float(html_log_file,array_pole[1]) > ; > logitem_float(html_log_file,array_pole[2]) > ; > 0; > else > logitem_str(html_log_file,"NA") > ; > logitem_str(html_log_file,"NA") > ; > 0; > fi;# end if 4; > logitem_time(html_log_file,convfloat(glob_clock_sec)) > ; > if (glob_percent_done < 100.0) then # if number 4 > logitem_time(html_log_file,convfloat(glob_total_exp_sec)) > ; > 0; > else > logitem_str(html_log_file,"Done") > ; > 0; > fi;# end if 4; > log_revs(html_log_file," 156 ") > ; > logitem_str(html_log_file,"lin_tan diffeq.mxt") > ; > logitem_str(html_log_file,"lin_tan maple results") > ; > logitem_str(html_log_file,"Languages compared - single equations") > ; > logend(html_log_file) > ; > ; > fi;# end if 3; > if (glob_html_log) then # if number 3 > fclose(html_log_file); > fi;# end if 3 > ; > ;; > fi;# end if 2 > #END OUTFILEMAIN > end; main := proc() local d1, d2, d3, d4, est_err_2, niii, done_once, term, ord, order_diff, term_no, html_log_file, iiif, jjjf, rows, r_order, sub_iter, calc_term, iii, temp_sum, current_iter, x_start, x_end, it, log10norm, max_terms, opt_iter, tmp, subiter, est_needed_step_err, value3, min_value, est_answer, best_h, found_h, repeat_it; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3_g, array_tmp3_a1, array_tmp3_a2, array_tmp3, array_tmp4, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; glob_last; ALWAYS := 1; INFO := 2; DEBUGL := 3; DEBUGMASSIVE := 4; glob_iolevel := INFO; glob_max_terms := 30; glob_iolevel := 5; ALWAYS := 1; INFO := 2; DEBUGL := 3; DEBUGMASSIVE := 4; MAX_UNCHANGED := 10; glob_check_sign := 1.0; glob_desired_digits_correct := 8.0; glob_max_value3 := 0.; glob_ratio_of_radius := 0.01; glob_percent_done := 0.; glob_subiter_method := 3; glob_log10normmin := 0.1; glob_total_exp_sec := 0.1; glob_optimal_expect_sec := 0.1; glob_html_log := true; glob_good_digits := 0; glob_max_opt_iter := 10; glob_dump := false; glob_djd_debug := true; glob_display_flag := true; glob_djd_debug2 := true; glob_sec_in_minute := 60; glob_min_in_hour := 60; glob_hours_in_day := 24; glob_days_in_year := 365; glob_sec_in_hour := 3600; glob_sec_in_day := 86400; glob_sec_in_year := 31536000; glob_almost_1 := 0.9990; glob_clock_sec := 0.; glob_clock_start_sec := 0.; glob_not_yet_finished := true; glob_initial_pass := true; glob_not_yet_start_msg := true; glob_reached_optimal_h := false; glob_optimal_done := false; glob_disp_incr := 0.1; glob_h := 0.1; glob_hmax := 1.0; glob_hmin := 0.1*10^(-10); glob_hmin_init := 0.001; glob_large_float := 0.90*10^101; glob_last_good_h := 0.1; glob_look_poles := false; glob_neg_h := false; glob_display_interval := 0.; glob_next_display := 0.; glob_dump_analytic := false; glob_log10_abserr := 0.1*10^(-10); glob_log10_relerr := 0.1*10^(-10); glob_abserr := 0.1*10^(-10); glob_relerr := 0.1*10^(-10); glob_max_hours := 0.; glob_max_iter := 1000; glob_max_rel_trunc_err := 0.1*10^(-10); glob_max_trunc_err := 0.1*10^(-10); glob_no_eqs := 0; glob_optimal_clock_start_sec := 0.; glob_optimal_start := 0.; glob_small_float := 0.1*10^(-50); glob_smallish_float := 0.1*10^(-100); glob_unchanged_h_cnt := 0; glob_warned := false; glob_warned2 := false; glob_max_sec := 10000.0; glob_orig_start_sec := 0.; glob_start := 0; glob_curr_iter_when_opt := 0; glob_current_iter := 0; glob_iter := 0; glob_normmax := 0.; glob_log10abserr := 0.; glob_log10relerr := 0.; glob_max_minutes := 0.; glob_orig_start_sec := elapsed_time_seconds(); MAX_UNCHANGED := 10; glob_curr_iter_when_opt := 0; glob_display_flag := true; glob_no_eqs := 1; glob_iter := -1; opt_iter := -1; glob_max_iter := 50000; glob_max_hours := 0.; glob_max_minutes := 15.0; omniout_str(ALWAYS, "##############ECHO OF PROBLEM#################"); omniout_str(ALWAYS, "##############temp/lin_tanpostode.ode#################"); omniout_str(ALWAYS, "diff ( y , x , 1 ) = tan (2.0 * x + 3.0 ) ;"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#BEGIN FIRST INPUT BLOCK"); omniout_str(ALWAYS, "Digits:=32;"); omniout_str(ALWAYS, "max_terms:=30;"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#END FIRST INPUT BLOCK"); omniout_str(ALWAYS, "#BEGIN SECOND INPUT BLOCK"); omniout_str(ALWAYS, "x_start := 0.0;"); omniout_str(ALWAYS, "x_end := 5.0 ;"); omniout_str(ALWAYS, "array_y_init[0 + 1] := exact_soln_y(x_start);"); omniout_str(ALWAYS, "glob_h := 0.00001 ;"); omniout_str(ALWAYS, "glob_look_poles := true;"); omniout_str(ALWAYS, "glob_max_iter := 10;"); omniout_str(ALWAYS, "#END SECOND INPUT BLOCK"); omniout_str(ALWAYS, "#BEGIN OVERRIDE BLOCK"); omniout_str(ALWAYS, "glob_desired_digits_correct:=10;"); omniout_str(ALWAYS, "glob_display_interval:=0.001;"); omniout_str(ALWAYS, "glob_look_poles:=true;"); omniout_str(ALWAYS, "glob_max_iter:=10000000;"); omniout_str(ALWAYS, "glob_max_minutes:=3;"); omniout_str(ALWAYS, "glob_subiter_method:=3;"); omniout_str(ALWAYS, "#END OVERRIDE BLOCK"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#BEGIN USER DEF BLOCK"); omniout_str(ALWAYS, "exact_soln_y := proc(x)"); omniout_str(ALWAYS, "return(ln(1.0 + expt(tan(2.0 * x + 3.0),2))/4.0);") ; omniout_str(ALWAYS, "end;"); omniout_str(ALWAYS, "#END USER DEF BLOCK"); omniout_str(ALWAYS, "#######END OF ECHO OF PROBLEM#################"); glob_unchanged_h_cnt := 0; glob_warned := false; glob_warned2 := false; glob_small_float := 0.10*10^(-199); glob_smallish_float := 0.10*10^(-63); glob_large_float := 0.10*10^101; glob_almost_1 := 0.99; glob_log10_abserr := -8.0; glob_log10_relerr := -8.0; glob_hmax := 0.01; Digits := 32; max_terms := 30; glob_max_terms := max_terms; glob_html_log := true; array_y_init := Array(0 .. max_terms + 1, []); array_norms := Array(0 .. max_terms + 1, []); array_fact_1 := Array(0 .. max_terms + 1, []); array_pole := Array(0 .. max_terms + 1, []); array_1st_rel_error := Array(0 .. max_terms + 1, []); array_last_rel_error := Array(0 .. max_terms + 1, []); array_type_pole := Array(0 .. max_terms + 1, []); array_y := Array(0 .. max_terms + 1, []); array_x := Array(0 .. max_terms + 1, []); array_tmp0 := Array(0 .. max_terms + 1, []); array_tmp1 := Array(0 .. max_terms + 1, []); array_tmp2 := Array(0 .. max_terms + 1, []); array_tmp3_g := Array(0 .. max_terms + 1, []); array_tmp3_a1 := Array(0 .. max_terms + 1, []); array_tmp3_a2 := Array(0 .. max_terms + 1, []); array_tmp3 := Array(0 .. max_terms + 1, []); array_tmp4 := Array(0 .. max_terms + 1, []); array_m1 := Array(0 .. max_terms + 1, []); array_y_higher := Array(0 .. 3, 0 .. max_terms + 1, []); array_y_higher_work := Array(0 .. 3, 0 .. max_terms + 1, []); array_y_higher_work2 := Array(0 .. 3, 0 .. max_terms + 1, []); array_y_set_initial := Array(0 .. 3, 0 .. max_terms + 1, []); array_poles := Array(0 .. 2, 0 .. 4, []); array_real_pole := Array(0 .. 2, 0 .. 4, []); array_complex_pole := Array(0 .. 2, 0 .. 4, []); array_fact_2 := Array(0 .. max_terms + 1, 0 .. max_terms + 1, []); term := 1; while term <= max_terms do array_y_init[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_norms[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_fact_1[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_pole[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_1st_rel_error[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_last_rel_error[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_type_pole[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_y[term] := 0.; term := term + 1 end do ; term := 1; while term <= max_terms do array_x[term] := 0.; term := term + 1 end do ; term := 1; while term <= max_terms do array_tmp0[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp1[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp2[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp3_g[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp3_a1[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp3_a2[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp3[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp4[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_m1[term] := 0.; term := term + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= max_terms do array_y_higher[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= max_terms do array_y_higher_work[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= max_terms do array_y_higher_work2[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= max_terms do array_y_set_initial[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 1 do term := 1; while term <= 3 do array_poles[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 1 do term := 1; while term <= 3 do array_real_pole[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 1 do term := 1; while term <= 3 do array_complex_pole[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= max_terms do term := 1; while term <= max_terms do array_fact_2[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; array_y := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_y[term] := 0.; term := term + 1 end do; array_x := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_x[term] := 0.; term := term + 1 end do; array_tmp0 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp0[term] := 0.; term := term + 1 end do; array_tmp1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp1[term] := 0.; term := term + 1 end do; array_tmp2 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp2[term] := 0.; term := term + 1 end do; array_tmp3_g := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp3_g[term] := 0.; term := term + 1 end do; array_tmp3_a1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp3_a1[term] := 0.; term := term + 1 end do; array_tmp3_a2 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp3_a2[term] := 0.; term := term + 1 end do; array_tmp3 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp3[term] := 0.; term := term + 1 end do; array_tmp4 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp4[term] := 0.; term := term + 1 end do; array_m1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_m1[term] := 0.; term := term + 1 end do; array_const_1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_1[term] := 0.; term := term + 1 end do; array_const_1[1] := 1; array_const_0D0 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_0D0[term] := 0.; term := term + 1 end do; array_const_0D0[1] := 0.; array_const_2D0 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_2D0[term] := 0.; term := term + 1 end do; array_const_2D0[1] := 2.0; array_const_3D0 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_3D0[term] := 0.; term := term + 1 end do; array_const_3D0[1] := 3.0; array_m1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms do array_m1[term] := 0.; term := term + 1 end do; array_m1[1] := -1.0; iiif := 0; while iiif <= glob_max_terms do jjjf := 0; while jjjf <= glob_max_terms do array_fact_1[iiif] := 0; array_fact_2[iiif, jjjf] := 0; jjjf := jjjf + 1 end do; iiif := iiif + 1 end do; x_start := 0.; x_end := 5.0; array_y_init[1] := exact_soln_y(x_start); glob_h := 0.00001; glob_look_poles := true; glob_max_iter := 10; glob_desired_digits_correct := 10; glob_display_interval := 0.001; glob_look_poles := true; glob_max_iter := 10000000; glob_max_minutes := 3; glob_subiter_method := 3; glob_last_good_h := glob_h; glob_max_terms := max_terms; glob_max_sec := convfloat(60.0)*convfloat(glob_max_minutes) + convfloat(3600.0)*convfloat(glob_max_hours); glob_abserr := expt(10.0, glob_log10_abserr); glob_relerr := expt(10.0, glob_log10_relerr); if 0. < glob_h then glob_neg_h := false; glob_display_interval := omniabs(glob_display_interval) else glob_neg_h := true; glob_display_interval := -omniabs(glob_display_interval) end if; chk_data(); array_y_set_initial[1, 1] := true; array_y_set_initial[1, 2] := false; array_y_set_initial[1, 3] := false; array_y_set_initial[1, 4] := false; array_y_set_initial[1, 5] := false; array_y_set_initial[1, 6] := false; array_y_set_initial[1, 7] := false; array_y_set_initial[1, 8] := false; array_y_set_initial[1, 9] := false; array_y_set_initial[1, 10] := false; array_y_set_initial[1, 11] := false; array_y_set_initial[1, 12] := false; array_y_set_initial[1, 13] := false; array_y_set_initial[1, 14] := false; array_y_set_initial[1, 15] := false; array_y_set_initial[1, 16] := false; array_y_set_initial[1, 17] := false; array_y_set_initial[1, 18] := false; array_y_set_initial[1, 19] := false; array_y_set_initial[1, 20] := false; array_y_set_initial[1, 21] := false; array_y_set_initial[1, 22] := false; array_y_set_initial[1, 23] := false; array_y_set_initial[1, 24] := false; array_y_set_initial[1, 25] := false; array_y_set_initial[1, 26] := false; array_y_set_initial[1, 27] := false; array_y_set_initial[1, 28] := false; array_y_set_initial[1, 29] := false; array_y_set_initial[1, 30] := false; omniout_str(ALWAYS, "START of Optimize"); glob_check_sign := check_sign(x_start, x_end); glob_h := check_sign(x_start, x_end); if glob_display_interval < glob_h then glob_h := glob_display_interval end if; found_h := -1.0; best_h := 0.; min_value := glob_large_float; est_answer := est_size_answer(); opt_iter := 1; while opt_iter <= 20 and found_h < 0. do omniout_int(ALWAYS, "opt_iter", 32, opt_iter, 4, ""); array_x[1] := x_start; array_x[2] := glob_h; glob_next_display := x_start; order_diff := 1; term_no := 1; while term_no <= order_diff do array_y[term_no] := array_y_init[term_no]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; rows := order_diff; r_order := 1; while r_order <= rows do term_no := 1; while term_no <= rows - r_order + 1 do it := term_no + r_order - 1; array_y_higher[r_order, term_no] := array_y_init[it]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; r_order := r_order + 1 end do; atomall(); est_needed_step_err := estimated_needed_step_error(x_start, x_end, glob_h, est_answer) ; omniout_float(ALWAYS, "est_needed_step_err", 32, est_needed_step_err, 16, ""); value3 := test_suggested_h(); omniout_float(ALWAYS, "value3", 32, value3, 32, ""); if value3 < est_needed_step_err and found_h < 0. then best_h := glob_h; found_h := 1.0 end if; omniout_float(ALWAYS, "best_h", 32, best_h, 32, ""); opt_iter := opt_iter + 1; glob_h := glob_h*0.5 end do; if 0. < found_h then glob_h := best_h else omniout_str(ALWAYS, "No increment to obtain desired accuracy found") end if; if glob_html_log then html_log_file := fopen("html/entry.html", WRITE, TEXT) end if; if 0. < found_h then omniout_str(ALWAYS, "START of Soultion"); array_x[1] := x_start; array_x[2] := glob_h; glob_next_display := x_start; order_diff := 1; term_no := 1; while term_no <= order_diff do array_y[term_no] := array_y_init[term_no]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; rows := order_diff; r_order := 1; while r_order <= rows do term_no := 1; while term_no <= rows - r_order + 1 do it := term_no + r_order - 1; array_y_higher[r_order, term_no] := array_y_init[it]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; r_order := r_order + 1 end do; current_iter := 1; glob_clock_start_sec := elapsed_time_seconds(); glob_log10normmin := -glob_large_float; if glob_small_float < omniabs(array_y_higher[1, 1]) then tmp := omniabs(array_y_higher[1, 1]); log10norm := log10(tmp); if log10norm < glob_log10normmin then glob_log10normmin := log10norm end if end if; display_alot(current_iter); glob_clock_sec := elapsed_time_seconds(); glob_current_iter := 0; glob_iter := 0; omniout_str(DEBUGL, " "); glob_reached_optimal_h := true; glob_optimal_clock_start_sec := elapsed_time_seconds(); while glob_current_iter < glob_max_iter and glob_check_sign*array_x[1] < glob_check_sign*x_end and convfloat(glob_clock_sec) - convfloat(glob_orig_start_sec) < convfloat(glob_max_sec) do if reached_interval() then omniout_str(INFO, " "); omniout_str(INFO, "TOP MAIN SOLVE Loop") end if; glob_iter := glob_iter + 1; glob_clock_sec := elapsed_time_seconds(); glob_current_iter := glob_current_iter + 1; atomall(); display_alot(current_iter); if glob_look_poles then check_for_pole() end if; if reached_interval() then glob_next_display := glob_next_display + glob_display_interval end if; array_x[1] := array_x[1] + glob_h; array_x[2] := glob_h; order_diff := 2; ord := 2; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do array_y_higher_work[2, iii] := array_y_higher[2, iii]/( expt(glob_h, calc_term - 1)* factorial_3(iii - calc_term, iii - 1)); iii := iii - 1 end do; temp_sum := 0.; ord := 2; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do temp_sum := temp_sum + array_y_higher_work[ord, iii]; iii := iii - 1 end do; array_y_higher_work2[ord, calc_term] := temp_sum* expt(glob_h, calc_term - 1)/factorial_1(calc_term - 1); ord := 1; calc_term := 2; iii := glob_max_terms; while calc_term <= iii do array_y_higher_work[1, iii] := array_y_higher[1, iii]/( expt(glob_h, calc_term - 1)* factorial_3(iii - calc_term, iii - 1)); iii := iii - 1 end do; temp_sum := 0.; ord := 1; calc_term := 2; iii := glob_max_terms; while calc_term <= iii do temp_sum := temp_sum + array_y_higher_work[ord, iii]; iii := iii - 1 end do; array_y_higher_work2[ord, calc_term] := temp_sum* expt(glob_h, calc_term - 1)/factorial_1(calc_term - 1); ord := 1; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do array_y_higher_work[1, iii] := array_y_higher[1, iii]/( expt(glob_h, calc_term - 1)* factorial_3(iii - calc_term, iii - 1)); iii := iii - 1 end do; temp_sum := 0.; ord := 1; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do temp_sum := temp_sum + array_y_higher_work[ord, iii]; iii := iii - 1 end do; array_y_higher_work2[ord, calc_term] := temp_sum* expt(glob_h, calc_term - 1)/factorial_1(calc_term - 1); term_no := glob_max_terms; while 1 <= term_no do array_y[term_no] := array_y_higher_work2[1, term_no]; ord := 1; while ord <= order_diff do array_y_higher[ord, term_no] := array_y_higher_work2[ord, term_no]; ord := ord + 1 end do; term_no := term_no - 1 end do end do; omniout_str(ALWAYS, "Finished!"); if glob_max_iter <= glob_iter then omniout_str(ALWAYS, "Maximum Iterations Reached before Solution Completed!") end if; if convfloat(glob_max_sec) <= elapsed_time_seconds() - convfloat(glob_orig_start_sec) then omniout_str(ALWAYS, "Maximum Time Reached before Solution Completed!") end if; glob_clock_sec := elapsed_time_seconds(); omniout_str(INFO, "diff ( y , x , 1 ) = tan (2.0 * x + 3.0 ) ;"); omniout_int(INFO, "Iterations ", 32, glob_iter, 4, " "); prog_report(x_start, x_end); if glob_html_log then logstart(html_log_file); logitem_str(html_log_file, "2013-01-13T00:16:21-06:00"); logitem_str(html_log_file, "Maple"); logitem_str(html_log_file, "lin_tan"); logitem_str(html_log_file, "diff ( y , x , 1 ) = tan (2.0 * x + 3.0 ) ;"); logitem_float(html_log_file, x_start); logitem_float(html_log_file, x_end); logitem_float(html_log_file, array_x[1]); logitem_float(html_log_file, glob_h); logitem_integer(html_log_file, Digits); logitem_good_digits(html_log_file, array_last_rel_error[1]); logitem_integer(html_log_file, glob_max_terms); logitem_float(html_log_file, array_1st_rel_error[1]); logitem_float(html_log_file, array_last_rel_error[1]); logitem_integer(html_log_file, glob_iter); logitem_pole(html_log_file, array_type_pole[1]); if array_type_pole[1] = 1 or array_type_pole[1] = 2 then logitem_float(html_log_file, array_pole[1]); logitem_float(html_log_file, array_pole[2]); 0 else logitem_str(html_log_file, "NA"); logitem_str(html_log_file, "NA"); 0 end if; logitem_time(html_log_file, convfloat(glob_clock_sec)); if glob_percent_done < 100.0 then logitem_time(html_log_file, convfloat(glob_total_exp_sec)); 0 else logitem_str(html_log_file, "Done"); 0 end if; log_revs(html_log_file, " 156 "); logitem_str(html_log_file, "lin_tan diffeq.mxt") ; logitem_str(html_log_file, "lin_tan maple results"); logitem_str(html_log_file, "Languages compared - single equations"); logend(html_log_file) end if; if glob_html_log then fclose(html_log_file) end if end if end proc > # End Function number 12 > main(); ##############ECHO OF PROBLEM################# ##############temp/lin_tanpostode.ode################# diff ( y , x , 1 ) = tan (2.0 * x + 3.0 ) ; ! #BEGIN FIRST INPUT BLOCK Digits:=32; max_terms:=30; ! #END FIRST INPUT BLOCK #BEGIN SECOND INPUT BLOCK x_start := 0.0; x_end := 5.0 ; array_y_init[0 + 1] := exact_soln_y(x_start); glob_h := 0.00001 ; glob_look_poles := true; glob_max_iter := 10; #END SECOND INPUT BLOCK #BEGIN OVERRIDE BLOCK glob_desired_digits_correct:=10; glob_display_interval:=0.001; glob_look_poles:=true; glob_max_iter:=10000000; glob_max_minutes:=3; glob_subiter_method:=3; #END OVERRIDE BLOCK ! #BEGIN USER DEF BLOCK exact_soln_y := proc(x) return(ln(1.0 + expt(tan(2.0 * x + 3.0),2))/4.0); end; #END USER DEF BLOCK #######END OF ECHO OF PROBLEM################# START of Optimize min_size = 0 min_size = 1 opt_iter = 1 glob_desired_digits_correct = 10 desired_abs_gbl_error = 1.0000000000000000000000000000000e-10 range = 5 estimated_steps = 5000 step_error = 2.0000000000000000000000000000000e-14 est_needed_step_err = 2.0000000000000000000000000000000e-14 hn_div_ho = 0.5 hn_div_ho_2 = 0.25 hn_div_ho_3 = 0.125 value3 = 1.2077402419714610852973019486907e-76 max_value3 = 1.2077402419714610852973019486907e-76 value3 = 1.2077402419714610852973019486907e-76 best_h = 0.001 START of Soultion x[1] = 0 y[1] (analytic) = 0.005028957536846446526988236639474 y[1] (numeric) = 0.005028957536846446526988236639474 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 TOP MAIN SOLVE Loop x[1] = 0 y[1] (analytic) = 0.005028957536846446526988236639474 y[1] (numeric) = 0.005028957536846446526988236639474 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.001 y[1] (analytic) = 0.0048874311200864434332053331448668 y[1] (numeric) = 0.0048874311200864434332053331448533 absolute error = 1.35e-32 relative error = 2.7621872653135676415691858985600e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.002 y[1] (analytic) = 0.0047479441889101146192702473730965 y[1] (numeric) = 0.0047479441889101146192702473730872 absolute error = 9.3e-33 relative error = 1.9587424851627846954943216031531e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.003 y[1] (analytic) = 0.004610495605706192932946366049854 y[1] (numeric) = 0.0046104956057061929329463660498517 absolute error = 2.3e-33 relative error = 4.9886177033839886791734825398703e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.004 y[1] (analytic) = 0.0044750842501082455502527075542028 y[1] (numeric) = 0.0044750842501082455502527075541905 absolute error = 1.23e-32 relative error = 2.7485516054144637654752418656580e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=3.8MB, alloc=2.8MB, time=0.14 x[1] = 0.005 y[1] (analytic) = 0.0043417090189578058874189729581388 y[1] (numeric) = 0.0043417090189578058874189729581427 absolute error = 3.9e-33 relative error = 8.9826379035787277007699906308830e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.006 y[1] (analytic) = 0.0042103688262681012136700816583208 y[1] (numeric) = 0.0042103688262681012136700816583207 absolute error = 1e-34 relative error = 2.3750888372559966793173772734045e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.007 y[1] (analytic) = 0.0040810626031883734068011728722342 y[1] (numeric) = 0.0040810626031883734068011728722364 absolute error = 2.2e-33 relative error = 5.3907528845091145772658387414228e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.008 y[1] (analytic) = 0.0039537892979687903380107974710512 y[1] (numeric) = 0.0039537892979687903380107974710461 absolute error = 5.1e-33 relative error = 1.2899018171302302411441988323878e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.009 y[1] (analytic) = 0.0038285478759259454166601535806148 y[1] (numeric) = 0.0038285478759259454166601535806188 absolute error = 4.0e-33 relative error = 1.0447825467071084724178955385734e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.01 y[1] (analytic) = 0.0037053373194089428695255165737318 y[1] (numeric) = 0.0037053373194089428695255165737299 absolute error = 1.9e-33 relative error = 5.1277382764791806516336164090822e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.011 y[1] (analytic) = 0.0035841566277660663727152055006945 y[1] (numeric) = 0.0035841566277660663727152055006976 absolute error = 3.1e-33 relative error = 8.6491755856444488557582346492148e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.012 y[1] (analytic) = 0.0034650048173120286977371843586722 y[1] (numeric) = 0.0034650048173120286977371843586672 absolute error = 5.0e-33 relative error = 1.4429994368315889024895254256472e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.013 y[1] (analytic) = 0.0033478809212958000762343344109425 y[1] (numeric) = 0.0033478809212958000762343344109474 absolute error = 4.9e-33 relative error = 1.4636123909996927107446467128070e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.014 y[1] (analytic) = 0.0032327839898690130306571165313152 y[1] (numeric) = 0.0032327839898690130306571165313038 absolute error = 1.14e-32 relative error = 3.5263723266774495576013081323896e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.015 y[1] (analytic) = 0.0031197130900549414606232818367048 y[1] (numeric) = 0.0031197130900549414606232818366878 absolute error = 1.70e-32 relative error = 5.4492190497237718569023807633401e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.016 memory used=7.6MB, alloc=3.8MB, time=0.28 y[1] (analytic) = 0.0030086673057180518169269454379582 y[1] (numeric) = 0.0030086673057180518169269454379423 absolute error = 1.59e-32 relative error = 5.2847318710784769464566517271853e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.017 y[1] (analytic) = 0.002899645737534124237110123001042 y[1] (numeric) = 0.0028996457375341242371101230010344 absolute error = 7.6e-33 relative error = 2.6210098363474858931371486921475e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.018 y[1] (analytic) = 0.0027926475029609415582041053319235 y[1] (numeric) = 0.0027926475029609415582041053319207 absolute error = 2.8e-33 relative error = 1.0026328052614097766663096710508e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.019 y[1] (analytic) = 0.0026876717362095441636911271393022 y[1] (numeric) = 0.0026876717362095441636911271392837 absolute error = 1.85e-32 relative error = 6.8832810758693220947373913394096e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.02 y[1] (analytic) = 0.0025847175882160486629339407051718 y[1] (numeric) = 0.0025847175882160486629339407051545 absolute error = 1.73e-32 relative error = 6.6931877118305683708192895545657e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.021 y[1] (analytic) = 0.0024837842266140284422773561053179 y[1] (numeric) = 0.0024837842266140284422773561053034 absolute error = 1.45e-32 relative error = 5.8378662061828329314762048471217e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.022 y[1] (analytic) = 0.0023848708357074541677467350823898 y[1] (numeric) = 0.0023848708357074541677467350823786 absolute error = 1.12e-32 relative error = 4.6962711071426236936573451838503e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.023 y[1] (analytic) = 0.0022879766164441923597589604225056 y[1] (numeric) = 0.0022879766164441923597589604225093 absolute error = 3.7e-33 relative error = 1.6171493945380753814301038264062e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.024 y[1] (analytic) = 0.0021931007863900602005266389833056 y[1] (numeric) = 0.0021931007863900602005266389832932 absolute error = 1.24e-32 relative error = 5.6540949129889020086479963024538e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.025 y[1] (analytic) = 0.0021002425797034347748812851459838 y[1] (numeric) = 0.002100242579703434774881285145975 absolute error = 8.8e-33 relative error = 4.1899921871132647811648984762193e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.026 y[1] (analytic) = 0.0020094012471104149850709826898886 y[1] (numeric) = 0.0020094012471104149850709826898799 absolute error = 8.7e-33 relative error = 4.3296479548377338026524977500629e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.027 y[1] (analytic) = 0.0019205760558805344197075076484375 y[1] (numeric) = 0.0019205760558805344197075076484328 absolute error = 4.7e-33 relative error = 2.4471824407105667209052644839531e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=11.4MB, alloc=4.0MB, time=0.44 x[1] = 0.028 y[1] (analytic) = 0.0018337662898030234964520447600789 y[1] (numeric) = 0.0018337662898030234964520447600614 absolute error = 1.75e-32 relative error = 9.5432008415204242490566217565196e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.029 y[1] (analytic) = 0.0017489712491636192372423401997519 y[1] (numeric) = 0.0017489712491636192372423401997434 absolute error = 8.5e-33 relative error = 4.8599998450888260041081297150180e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.03 y[1] (analytic) = 0.0016661902507219210738822612010082 y[1] (numeric) = 0.0016661902507219210738822612010066 absolute error = 1.6e-33 relative error = 9.6027449404817823536957686927424e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.031 y[1] (analytic) = 0.0015854226276892911206421010228783 y[1] (numeric) = 0.0015854226276892911206421010228721 absolute error = 6.2e-33 relative error = 3.9106291860084812741609159666679e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.032 y[1] (analytic) = 0.0015066677297072973891593627058615 y[1] (numeric) = 0.0015066677297072973891593627058534 absolute error = 8.1e-33 relative error = 5.3761024015385258228613860998701e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.033 y[1] (analytic) = 0.0014299249228266984593899304855517 y[1] (numeric) = 0.0014299249228266984593899304855528 absolute error = 1.1e-33 relative error = 7.6927115713565045448088822071399e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.034 y[1] (analytic) = 0.0013551935894869681586432138484824 y[1] (numeric) = 0.0013551935894869681586432138484762 absolute error = 6.2e-33 relative error = 4.5749921251819945770071971573161e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.035 y[1] (analytic) = 0.0012824731284963588388467141391478 y[1] (numeric) = 0.0012824731284963588388467141391438 absolute error = 4.0e-33 relative error = 3.1189737321746595067092771362468e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.036 y[1] (analytic) = 0.0012117629550125018801301742215616 y[1] (numeric) = 0.0012117629550125018801301742215577 absolute error = 3.9e-33 relative error = 3.2184512522581310535602730404871e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.037 y[1] (analytic) = 0.001143062500523544086601654443628 y[1] (numeric) = 0.0011430625005235440866016544436322 absolute error = 4.2e-33 relative error = 3.6743397653901874513989016612325e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.038 y[1] (analytic) = 0.0010763712128298186778121300218449 y[1] (numeric) = 0.0010763712128298186778121300218306 absolute error = 1.43e-32 relative error = 1.3285379457896114731853506093597e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.039 y[1] (analytic) = 0.0010116885560260496168760942770028 y[1] (numeric) = 0.001011688556026049616876094276987 absolute error = 1.58e-32 relative error = 1.5617454507998972851371064943644e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=15.2MB, alloc=4.1MB, time=0.59 x[1] = 0.04 y[1] (analytic) = 0.00094901401048408805353771943721842 y[1] (numeric) = 0.00094901401048408805353771943720128 absolute error = 1.714e-32 relative error = 1.8060850325336038106299390110966e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.041 y[1] (analytic) = 0.00088834707283617969764988555636988 y[1] (numeric) = 0.00088834707283617969764988555635154 absolute error = 1.834e-32 relative error = 2.0645084067702088228768764865090e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.042 y[1] (analytic) = 0.0008296872559587619755713259437347 y[1] (numeric) = 0.00082968725595876197557132594372949 absolute error = 5.21e-33 relative error = 6.2794745400536236806823607724914e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.043 y[1] (analytic) = 0.00077303408895678985888971655088852 y[1] (numeric) = 0.00077303408895678985888971655089146 absolute error = 2.94e-33 relative error = 3.8031957995119366943815954617802e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.044 y[1] (analytic) = 0.00071838711714858929165019475438505 y[1] (numeric) = 0.00071838711714858929165019475438291 absolute error = 2.14e-33 relative error = 2.9788952904585120210203721431201e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.045 y[1] (analytic) = 0.00066574590205123717891394401493478 y[1] (numeric) = 0.00066574590205123717891394401492976 absolute error = 5.02e-33 relative error = 7.5404144201756580054294895082377e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.046 y[1] (analytic) = 0.00061511002136646693599451627535462 y[1] (numeric) = 0.00061511002136646693599451627535941 absolute error = 4.79e-33 relative error = 7.7872247786810802021646293640539e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.047 y[1] (analytic) = 0.00056647906896709863412485296234315 y[1] (numeric) = 0.00056647906896709863412485296234514 absolute error = 1.99e-33 relative error = 3.5129276773253207680381406160045e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.048 y[1] (analytic) = 0.00051985265488399281459985615600935 y[1] (numeric) = 0.00051985265488399281459985615600732 absolute error = 2.03e-33 relative error = 3.9049526455780101104501436335223e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.049 y[1] (analytic) = 0.00047523040529352707962218155194278 y[1] (numeric) = 0.00047523040529352707962218155194564 absolute error = 2.86e-33 relative error = 6.0181334530426664572352664195036e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.05 y[1] (analytic) = 0.00043261196250559460415698231027005 y[1] (numeric) = 0.00043261196250559460415698231027042 absolute error = 3.7e-34 relative error = 8.5526992332121445516348890111154e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.051 y[1] (analytic) = 0.00039199698495212374907891698266422 y[1] (numeric) = 0.00039199698495212374907891698265617 absolute error = 8.05e-33 relative error = 2.0535872236321359900432457841445e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=19.0MB, alloc=4.1MB, time=0.75 x[1] = 0.052 y[1] (analytic) = 0.00035338514717611799177611659953022 y[1] (numeric) = 0.00035338514717611799177611659951558 absolute error = 1.464e-32 relative error = 4.1427887156513127900271752065017e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.053 y[1] (analytic) = 0.00031677613982121542616523958178498 y[1] (numeric) = 0.00031677613982121542616523958178373 absolute error = 1.25e-33 relative error = 3.9460042688362977450070667348052e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.054 y[1] (analytic) = 0.00028216966962176711977346581374998 y[1] (numeric) = 0.00028216966962176711977346581373224 absolute error = 1.774e-32 relative error = 6.2869974734632151016263912367143e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.055 y[1] (analytic) = 0.00024956545939343365116151464323032 y[1] (numeric) = 0.00024956545939343365116151464322889 absolute error = 1.43e-33 relative error = 5.7299596004815757511321304820596e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.056 y[1] (analytic) = 0.00021896324802429918650072246754888 y[1] (numeric) = 0.00021896324802429918650072246753499 absolute error = 1.389e-32 relative error = 6.3435303071767430760477531678753e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.057 y[1] (analytic) = 0.00019036279046650248958107641576591 y[1] (numeric) = 0.0001903627904665024895810764157602 absolute error = 5.71e-33 relative error = 2.9995357737754794093227906146763e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.058 y[1] (analytic) = 0.0001637638577283842949200505065549 y[1] (numeric) = 0.00016376385772838429492005050655941 absolute error = 4.51e-33 relative error = 2.7539654124905890851656981598866e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.059 y[1] (analytic) = 0.00013916623686715050896829590201034 y[1] (numeric) = 0.00013916623686715050896829590200152 absolute error = 8.82e-33 relative error = 6.3377441242588608700899405620931e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.06 y[1] (analytic) = 0.00011656973098205073967185191429692 y[1] (numeric) = 0.00011656973098205073967185191428365 absolute error = 1.327e-32 relative error = 1.1383744208900420198401262730327e-26 % Correct digits = 27 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.061 y[1] (analytic) = 9.5974159208071689855712475393170e-05 y[1] (numeric) = 9.5974159208071689855712475384473e-05 absolute error = 8.697e-33 relative error = 9.0618142130788872401180673006089e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.062 y[1] (analytic) = 7.7379356710144985044436625748028e-05 y[1] (numeric) = 7.7379356710144985044436625729284e-05 absolute error = 1.8744e-32 relative error = 2.4223514897148955021549514158139e-26 % Correct digits = 27 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.063 y[1] (analytic) = 6.0785174677869041436154284169572e-05 y[1] (numeric) = 6.0785174677869041436154284159220e-05 absolute error = 1.0352e-32 relative error = 1.7030468456922944267577192088638e-26 % Correct digits = 27 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=22.8MB, alloc=4.1MB, time=0.92 x[1] = 0.064 y[1] (analytic) = 4.6191480320744614800904228184465e-05 y[1] (numeric) = 4.6191480320744614800904228169421e-05 absolute error = 1.5044e-32 relative error = 3.2568776526617902661555967861745e-26 % Correct digits = 27 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.065 y[1] (analytic) = 3.3598156863923706086855710712898e-05 y[1] (numeric) = 3.3598156863923706086855710709950e-05 absolute error = 2.948e-33 relative error = 8.7742908396425726320230095214059e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.066 y[1] (analytic) = 2.3005103544471534492706843399782e-05 y[1] (numeric) = 2.3005103544471534492706843396925e-05 absolute error = 2.857e-33 relative error = 1.2418983441987502881493126431479e-26 % Correct digits = 27 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.067 y[1] (analytic) = 1.4412235608141323705513400174570e-05 y[1] (numeric) = 1.4412235608141323705513400168571e-05 absolute error = 5.999e-33 relative error = 4.1624354216158016338097199635005e-26 % Correct digits = 27 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.068 y[1] (analytic) = 7.8194843066616819144666252571890e-06 y[1] (numeric) = 7.8194843066616819144666252551382e-06 absolute error = 2.0508e-33 relative error = 2.6226793476046168955946616554519e-26 % Correct digits = 27 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.069 y[1] (analytic) = 3.2267968955363910967882506742905e-06 y[1] (numeric) = 3.2267968955363910967882506674538e-06 absolute error = 6.8367e-33 relative error = 2.1187264712747078505784478168493e-25 % Correct digits = 26 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.07 y[1] (analytic) = 6.3413663235645593602095683656568e-07 y[1] (numeric) = 6.3413663235645593602095683826360e-07 absolute error = 1.69792e-33 relative error = 2.6775302251354223254759862932652e-25 % Correct digits = 26 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.071 y[1] (analytic) = 4.1482775624297579634818655685930e-08 y[1] (numeric) = 4.1482775624297579634818642083400e-08 absolute error = 1.3602530e-32 relative error = 3.2790790382967121404027040164804e-23 % Correct digits = 24 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.072 y[1] (analytic) = 1.4488305840900122761136250980282e-06 y[1] (numeric) = 1.4488305840900122761136250852116e-06 absolute error = 1.28166e-32 relative error = 8.8461688624898162736477778593144e-25 % Correct digits = 26 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.073 y[1] (analytic) = 4.8561913165996497555957120309285e-06 y[1] (numeric) = 4.8561913165996497555957120326642e-06 absolute error = 1.7357e-33 relative error = 3.5742002051421508947273043170718e-26 % Correct digits = 27 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.074 y[1] (analytic) = 1.0263592232455501036786806568277e-05 y[1] (numeric) = 1.0263592232455501036786806554716e-05 absolute error = 1.3561e-32 relative error = 1.3212722887720973424762061199277e-25 % Correct digits = 26 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.075 y[1] (analytic) = 1.7671076592288420160301112521116e-05 y[1] (numeric) = 1.7671076592288420160301112514367e-05 absolute error = 6.749e-33 relative error = 3.8192353277135552768902391940132e-26 % Correct digits = 27 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=26.7MB, alloc=4.1MB, time=1.08 x[1] = 0.076 y[1] (analytic) = 2.7078703659442239168885018837895e-05 y[1] (numeric) = 2.7078703659442239168885018826259e-05 absolute error = 1.1636e-32 relative error = 4.2971037854474883004336006965353e-26 % Correct digits = 27 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.077 y[1] (analytic) = 3.8486548701870370482199443269055e-05 y[1] (numeric) = 3.8486548701870370482199443272697e-05 absolute error = 3.642e-33 relative error = 9.4630465002516735711936810601079e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.078 y[1] (analytic) = 5.1894702994544725652047229457088e-05 y[1] (numeric) = 5.1894702994544725652047229456593e-05 absolute error = 4.95e-34 relative error = 9.5385457751253607537519707293791e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.079 y[1] (analytic) = 6.7303273822377114337198445830102e-05 y[1] (numeric) = 6.7303273822377114337198445818131e-05 absolute error = 1.1971e-32 relative error = 1.7786653338132060146181276562465e-26 % Correct digits = 27 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.08 y[1] (analytic) = 8.4712384483653322209358832469892e-05 y[1] (numeric) = 8.4712384483653322209358832474384e-05 absolute error = 4.492e-33 relative error = 5.3026485175456333277141964488398e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.081 y[1] (analytic) = 0.00010412217429398010139741835450596 y[1] (numeric) = 0.00010412217429398010139741835448851 absolute error = 1.745e-32 relative error = 1.6759158285276880100092021384133e-26 % Correct digits = 27 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.082 y[1] (analytic) = 0.00012553279859074534199998533841028 y[1] (numeric) = 0.00012553279859074534199998533840448 absolute error = 5.80e-33 relative error = 4.6203064578435946390396304517074e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.083 y[1] (analytic) = 0.00014894442873809172815043934889464 y[1] (numeric) = 0.00014894442873809172815043934888739 absolute error = 7.25e-33 relative error = 4.8675872346649592426721869532149e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.084 y[1] (analytic) = 0.00017435725213240421710841075693488 y[1] (numeric) = 0.00017435725213240421710841075692675 absolute error = 8.13e-33 relative error = 4.6628401747385895779206925929371e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.085 y[1] (analytic) = 0.00020177147220831171488081114041766 y[1] (numeric) = 0.00020177147220831171488081114041167 absolute error = 5.99e-33 relative error = 2.9687051070410189017051099938592e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.086 y[1] (analytic) = 0.00023118730844520335694839758182592 y[1] (numeric) = 0.0002311873084452033569483975818136 absolute error = 1.232e-32 relative error = 5.3290122554111225460171747241128e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.087 y[1] (analytic) = 0.00026260499637425983779446472001822 y[1] (numeric) = 0.00026260499637425983779446472000387 absolute error = 1.435e-32 relative error = 5.4644809497640488382420742884126e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=30.5MB, alloc=4.1MB, time=1.25 x[1] = 0.088 y[1] (analytic) = 0.00029602478758600026810473873784448 y[1] (numeric) = 0.00029602478758600026810473873782639 absolute error = 1.809e-32 relative error = 6.1109747421892990423662869587499e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.089 y[1] (analytic) = 0.00033144694973834507373602425640845 y[1] (numeric) = 0.00033144694973834507373602425638949 absolute error = 1.896e-32 relative error = 5.7203724502420783527215117370693e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.09 y[1] (analytic) = 0.00036887176656519548583976530282485 y[1] (numeric) = 0.00036887176656519548583976530280648 absolute error = 1.837e-32 relative error = 4.9800504308190884342356330059549e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.091 y[1] (analytic) = 0.00040829953788553020687957281446722 y[1] (numeric) = 0.0004082995378855302068795728144493 absolute error = 1.792e-32 relative error = 4.3889346759495976808453297232765e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.092 y[1] (analytic) = 0.0004497305796130198727031027322963 y[1] (numeric) = 0.00044973057961301987270310273228222 absolute error = 1.408e-32 relative error = 3.1307633143637757208525822871921e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.093 y[1] (analytic) = 0.00049316522376615996632261205848212 y[1] (numeric) = 0.00049316522376615996632261205846408 absolute error = 1.804e-32 relative error = 3.6580032675933119065305691349865e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.094 y[1] (analytic) = 0.0005386038184789228746292597484682 y[1] (numeric) = 0.00053860381847892287462925974845582 absolute error = 1.238e-32 relative error = 2.2985355051812476539503088127548e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.095 y[1] (analytic) = 0.00058604672801192981491795316933262 y[1] (numeric) = 0.00058604672801192981491795316932215 absolute error = 1.047e-32 relative error = 1.7865469594067707608326502437765e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.096 y[1] (analytic) = 0.00063549433276414339383648179123282 y[1] (numeric) = 0.00063549433276414339383648179122409 absolute error = 8.73e-33 relative error = 1.3737337297766338622526606852869e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.097 y[1] (analytic) = 0.00068694702928508159719905577169812 y[1] (numeric) = 0.00068694702928508159719905577168813 absolute error = 9.99e-33 relative error = 1.4542606014901580788167673825527e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.098 y[1] (analytic) = 0.00074040523028755404502442216790692 y[1] (numeric) = 0.00074040523028755404502442216789257 absolute error = 1.435e-32 relative error = 1.9381278539087082027149492335588e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.099 y[1] (analytic) = 0.00079586936466092138217672650955138 y[1] (numeric) = 0.00079586936466092138217672650954687 absolute error = 4.51e-33 relative error = 5.6667591444752705844458160804801e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=34.3MB, alloc=4.1MB, time=1.42 x[1] = 0.1 y[1] (analytic) = 0.00085333987748487871110750081016675 y[1] (numeric) = 0.0008533398774848787111075008101553 absolute error = 1.145e-32 relative error = 1.3417865849358358886525781469499e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.101 y[1] (analytic) = 0.00091281723004376400942388758057582 y[1] (numeric) = 0.00091281723004376400942388758057661 absolute error = 7.9e-34 relative error = 8.6545255062957600659917395751991e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.102 y[1] (analytic) = 0.00097430189984139251134576897959995 y[1] (numeric) = 0.00097430189984139251134576897959254 absolute error = 7.41e-33 relative error = 7.6054455002153650843601771537510e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.103 y[1] (analytic) = 0.0010377943806164180685671967750317 y[1] (numeric) = 0.0010377943806164180685671967750213 absolute error = 1.04e-32 relative error = 1.0021252951690409627093642584153e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.104 y[1] (analytic) = 0.0011032951823582225426097689125834 y[1] (numeric) = 0.001103295182358222542609768912579 absolute error = 4.4e-33 relative error = 3.9880533064553792318638604496197e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.105 y[1] (analytic) = 0.0011708048313233343174517503477301 y[1] (numeric) = 0.0011708048313233343174517503477152 absolute error = 1.49e-32 relative error = 1.2726288448228271967984403193277e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.106 y[1] (analytic) = 0.0012403238700523770580411898749615 y[1] (numeric) = 0.001240323870052377058041189874954 absolute error = 7.5e-33 relative error = 6.0468077581086027144584651828503e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.107 y[1] (analytic) = 0.0013118528573875498772584646246704 y[1] (numeric) = 0.0013118528573875498772584646246574 absolute error = 1.30e-32 relative error = 9.9096479660748394033288310887734e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.108 y[1] (analytic) = 0.0013853923684906401109880372876331 y[1] (numeric) = 0.0013853923684906401109880372876235 absolute error = 9.6e-33 relative error = 6.9294448405681822078134508201508e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.109 y[1] (analytic) = 0.0014609429948615699381952103593549 y[1] (numeric) = 0.0014609429948615699381952103593508 absolute error = 4.1e-33 relative error = 2.8064065568749251801693760039369e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.11 y[1] (analytic) = 0.0015385053443574781202858047696314 y[1] (numeric) = 0.0015385053443574781202858047696277 absolute error = 3.7e-33 relative error = 2.4049315223829925155998996749766e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.111 y[1] (analytic) = 0.0016180800412123381715595016319725 y[1] (numeric) = 0.0016180800412123381715595016319736 absolute error = 1.1e-33 relative error = 6.7981803865266803614156060334535e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=38.1MB, alloc=4.2MB, time=1.60 x[1] = 0.112 y[1] (analytic) = 0.0016996677260571143102556172574426 y[1] (numeric) = 0.0016996677260571143102556172574426 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.113 y[1] (analytic) = 0.0017832690559404565775379129172589 y[1] (numeric) = 0.0017832690559404565775379129172459 absolute error = 1.30e-32 relative error = 7.2899823819037156559659748824572e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.114 y[1] (analytic) = 0.0018688847043499365497772809967357 y[1] (numeric) = 0.001868884704349936549777280996723 absolute error = 1.27e-32 relative error = 6.7954967850290711679045993499909e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.115 y[1] (analytic) = 0.0019565153612338251076724369109643 y[1] (numeric) = 0.0019565153612338251076724369109694 absolute error = 5.1e-33 relative error = 2.6066751639423974341717942601880e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.116 y[1] (analytic) = 0.0020461617330234137641037509366714 y[1] (numeric) = 0.0020461617330234137641037509366593 absolute error = 1.21e-32 relative error = 5.9135110410461099398636929543364e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.117 y[1] (analytic) = 0.0021378245426558810911487770569303 y[1] (numeric) = 0.0021378245426558810911487770569306 absolute error = 3e-34 relative error = 1.4032957055834963285857457573022e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.118 y[1] (analytic) = 0.0022315045295977058254046106211106 y[1] (numeric) = 0.0022315045295977058254046106211024 absolute error = 8.2e-33 relative error = 3.6746508426215431557554067709080e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.119 y[1] (analytic) = 0.0023272024498686282696667000921026 y[1] (numeric) = 0.0023272024498686282696667000920984 absolute error = 4.2e-33 relative error = 1.8047419983753850375723658522442e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.12 y[1] (analytic) = 0.0024249190760661616481109516995692 y[1] (numeric) = 0.0024249190760661616481109516995621 absolute error = 7.1e-33 relative error = 2.9279327586956073511158494311287e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.121 y[1] (analytic) = 0.0025246551973906551114207359616748 y[1] (numeric) = 0.0025246551973906551114207359616789 absolute error = 4.1e-33 relative error = 1.6239841401857706015964205729307e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.122 y[1] (analytic) = 0.0026264116196709101277976044507855 y[1] (numeric) = 0.0026264116196709101277976044507689 absolute error = 1.66e-32 relative error = 6.3204106605650728641506765277867e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.123 y[1] (analytic) = 0.0027301891653903520354990635975868 y[1] (numeric) = 0.0027301891653903520354990635975871 absolute error = 3e-34 relative error = 1.0988249598342653448599110978931e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.124 y[1] (analytic) = 0.0028359886737137585724635775136702 y[1] (numeric) = 0.0028359886737137585724635775136536 absolute error = 1.66e-32 relative error = 5.8533379042949830192369969388381e-28 % Correct digits = 29 h = 0.001 NO POLE memory used=41.9MB, alloc=4.2MB, time=1.77 TOP MAIN SOLVE Loop x[1] = 0.125 y[1] (analytic) = 0.0029438110005145472387170704845305 y[1] (numeric) = 0.0029438110005145472387170704845155 absolute error = 1.50e-32 relative error = 5.0954358134330490551662299934042e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.126 y[1] (analytic) = 0.0030536570184026233876115986046035 y[1] (numeric) = 0.0030536570184026233876115986045852 absolute error = 1.83e-32 relative error = 5.9928144810358504814627815010489e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.127 y[1] (analytic) = 0.0031655276167527909825306265441592 y[1] (numeric) = 0.0031655276167527909825306265441428 absolute error = 1.64e-32 relative error = 5.1808109059630242277421058988906e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.128 y[1] (analytic) = 0.003279423701733727996511589105806 y[1] (numeric) = 0.0032794237017337279965115891057962 absolute error = 9.8e-33 relative error = 2.9883299296821721261868387930964e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.129 y[1] (analytic) = 0.0033953461963375284732902903667938 y[1] (numeric) = 0.0033953461963375284732902903667772 absolute error = 1.66e-32 relative error = 4.8890448985455408740729898256728e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.13 y[1] (analytic) = 0.00351329604040981330956839202732 y[1] (numeric) = 0.0035132960404098133095683920273139 absolute error = 6.1e-33 relative error = 1.7362613141158628364795050841502e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.131 y[1] (analytic) = 0.0036332741906804118598500082104922 y[1] (numeric) = 0.0036332741906804118598500082104943 absolute error = 2.1e-33 relative error = 5.7799105979577281174798451266883e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.132 y[1] (analytic) = 0.0037552816207946165069915434353768 y[1] (numeric) = 0.003755281620794616506991543435365 absolute error = 1.18e-32 relative error = 3.1422410331779919627147978003504e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.133 y[1] (analytic) = 0.0038793193213450123836657178369248 y[1] (numeric) = 0.0038793193213450123836657178369272 absolute error = 2.4e-33 relative error = 6.1866523510827863415891796428479e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.134 y[1] (analytic) = 0.0040053882999038844722616009869938 y[1] (numeric) = 0.004005388299903884472261600986996 absolute error = 2.2e-33 relative error = 5.4926010545664010275897936259485e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.135 y[1] (analytic) = 0.0041334895810562043533328540261898 y[1] (numeric) = 0.0041334895810562043533328540261726 absolute error = 1.72e-32 relative error = 4.1611330239775258330947175050997e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.136 y[1] (analytic) = 0.0042636242064331989155717405713338 y[1] (numeric) = 0.0042636242064331989155717405713363 absolute error = 2.5e-33 relative error = 5.8635561647948655604421413893103e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=45.7MB, alloc=4.2MB, time=1.94 x[1] = 0.137 y[1] (analytic) = 0.0043957932347465033834323426041325 y[1] (numeric) = 0.0043957932347465033834323426041342 absolute error = 1.7e-33 relative error = 3.8673338558382753522738326227560e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.138 y[1] (analytic) = 0.004529997741822901061958393236575 y[1] (numeric) = 0.0045299977418229010619583932365607 absolute error = 1.43e-32 relative error = 3.1567344654449177254158627195995e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.139 y[1] (analytic) = 0.0046662388206396522420948523466132 y[1] (numeric) = 0.0046662388206396522420948523465973 absolute error = 1.59e-32 relative error = 3.4074552570415617100788411078061e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.14 y[1] (analytic) = 0.0048045175813604147537834966655328 y[1] (numeric) = 0.0048045175813604147537834966655204 absolute error = 1.24e-32 relative error = 2.5809042822752871967407168881709e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.141 y[1] (analytic) = 0.0049448351513717586984671218425638 y[1] (numeric) = 0.0049448351513717586984671218425564 absolute error = 7.4e-33 relative error = 1.4965109601170724716895813567327e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 26.36 Order of pole = 915.6 TOP MAIN SOLVE Loop x[1] = 0.142 y[1] (analytic) = 0.0050871926753202779372602661182 y[1] (numeric) = 0.0050871926753202779372602661181919 absolute error = 8.1e-33 relative error = 1.5922337754761849374526318273550e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 7.949 Order of pole = 258.7 TOP MAIN SOLVE Loop x[1] = 0.143 y[1] (analytic) = 0.0052315913151503009559925274328505 y[1] (numeric) = 0.0052315913151503009559925274328326 absolute error = 1.79e-32 relative error = 3.4215210863591209455495537133018e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 4.802 Order of pole = 146.4 TOP MAIN SOLVE Loop x[1] = 0.144 y[1] (analytic) = 0.005378032250142203773599481328131 y[1] (numeric) = 0.0053780322501422037735994813281266 absolute error = 4.4e-33 relative error = 8.1814310427083380975045166448156e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 3.501 Order of pole = 100 TOP MAIN SOLVE Loop x[1] = 0.145 y[1] (analytic) = 0.0055265166769513276059318996381205 y[1] (numeric) = 0.0055265166769513276059318996381136 absolute error = 6.9e-33 relative error = 1.2485260433170984080945379830655e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 2.791 Order of pole = 74.7 TOP MAIN SOLVE Loop x[1] = 0.146 y[1] (analytic) = 0.0056770458096475040429824652464865 y[1] (numeric) = 0.0056770458096475040429824652464728 absolute error = 1.37e-32 relative error = 2.4132269598244888474316977703275e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 2.345 Order of pole = 58.79 TOP MAIN SOLVE Loop x[1] = 0.147 y[1] (analytic) = 0.005829620879755190543796584634863 y[1] (numeric) = 0.0058296208797551905437965846348582 absolute error = 4.8e-33 relative error = 8.2338115959979399105105495709151e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 2.039 Order of pole = 47.89 TOP MAIN SOLVE Loop x[1] = 0.148 y[1] (analytic) = 0.0059842431362942190999463903576035 y[1] (numeric) = 0.0059842431362942190999463903575889 absolute error = 1.46e-32 relative error = 2.4397404429394798177490926241403e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 1.816 Order of pole = 39.97 TOP MAIN SOLVE Loop memory used=49.5MB, alloc=4.2MB, time=2.11 x[1] = 0.149 y[1] (analytic) = 0.006140913845821160965410838282163 y[1] (numeric) = 0.0061409138458211609654108382821443 absolute error = 1.87e-32 relative error = 3.0451493815900363269130522371862e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 1.647 Order of pole = 33.96 TOP MAIN SOLVE Loop x[1] = 0.15 y[1] (analytic) = 0.006299634292471310398026244602296 y[1] (numeric) = 0.0062996342924713103980262446022817 absolute error = 1.43e-32 relative error = 2.2699730390841770634390331071451e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 1.515 Order of pole = 29.26 TOP MAIN SOLVE Loop x[1] = 0.151 y[1] (analytic) = 0.0064604057780012904053570485822012 y[1] (numeric) = 0.0064604057780012904053570485821864 absolute error = 1.48e-32 relative error = 2.2908777727857830293473020451008e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 1.409 Order of pole = 25.49 TOP MAIN SOLVE Loop x[1] = 0.152 y[1] (analytic) = 0.0066232296218322835358924715320432 y[1] (numeric) = 0.0066232296218322835358924715320316 absolute error = 1.16e-32 relative error = 1.7514114204590898193438690940742e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 1.322 Order of pole = 22.4 TOP MAIN SOLVE Loop x[1] = 0.153 y[1] (analytic) = 0.0067881071610938908049075842913512 y[1] (numeric) = 0.0067881071610938908049075842913552 absolute error = 4.0e-33 relative error = 5.8926588886605135186518357412598e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 1.249 Order of pole = 19.83 TOP MAIN SOLVE Loop x[1] = 0.154 y[1] (analytic) = 0.0069550397506686218931436803597495 y[1] (numeric) = 0.0069550397506686218931436803597497 absolute error = 2e-34 relative error = 2.8756126085515618302141864375223e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 1.188 Order of pole = 17.67 TOP MAIN SOLVE Loop x[1] = 0.155 y[1] (analytic) = 0.0071240287632370198056694392184545 y[1] (numeric) = 0.0071240287632370198056694392184527 absolute error = 1.8e-33 relative error = 2.5266602084606338482855948261211e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 1.135 Order of pole = 15.82 TOP MAIN SOLVE Loop x[1] = 0.156 y[1] (analytic) = 0.007295075589323423227887888798306 y[1] (numeric) = 0.007295075589323423227887888798288 absolute error = 1.80e-32 relative error = 2.4674178875327318753387420295409e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 1.09 Order of pole = 14.23 TOP MAIN SOLVE Loop x[1] = 0.157 y[1] (analytic) = 0.0074681816373423698656614483811728 y[1] (numeric) = 0.0074681816373423698656614483811631 absolute error = 9.7e-33 relative error = 1.2988436102702833990587543680738e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 1.051 Order of pole = 12.85 TOP MAIN SOLVE Loop x[1] = 0.158 y[1] (analytic) = 0.0076433483336456441069452422851568 y[1] (numeric) = 0.0076433483336456441069452422851382 absolute error = 1.86e-32 relative error = 2.4334884644892753592607033244059e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 1.016 Order of pole = 11.64 TOP MAIN SOLVE Loop x[1] = 0.159 y[1] (analytic) = 0.0078205771225699723931543886623485 y[1] (numeric) = 0.0078205771225699723931543886623522 absolute error = 3.7e-33 relative error = 4.7311086407189833330788799418545e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.9858 Order of pole = 10.57 TOP MAIN SOLVE Loop x[1] = 0.16 y[1] (analytic) = 0.0079998694664853697397511356917245 y[1] (numeric) = 0.0079998694664853697397511356917109 absolute error = 1.36e-32 relative error = 1.7000277388244647114392126113525e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 0.9587 Order of pole = 9.634 TOP MAIN SOLVE Loop memory used=53.4MB, alloc=4.2MB, time=2.29 x[1] = 0.161 y[1] (analytic) = 0.0081812268458441408972296708223045 y[1] (numeric) = 0.0081812268458441408972296708223047 absolute error = 2e-34 relative error = 2.4446211279619389807612160034464e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.9345 Order of pole = 8.796 TOP MAIN SOLVE Loop x[1] = 0.162 y[1] (analytic) = 0.0083646507592305396958073829009708 y[1] (numeric) = 0.0083646507592305396958073829009638 absolute error = 7.0e-33 relative error = 8.3685502258123287388037643529643e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.9129 Order of pole = 8.049 TOP MAIN SOLVE Loop x[1] = 0.163 y[1] (analytic) = 0.00855014272341109016970861288005 y[1] (numeric) = 0.0085501427234110901697086128800484 absolute error = 1.6e-33 relative error = 1.8713137917792300805502481949653e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.8934 Order of pole = 7.378 TOP MAIN SOLVE Loop x[1] = 0.164 y[1] (analytic) = 0.0087377042733855731099578743213018 y[1] (numeric) = 0.0087377042733855731099578743213051 absolute error = 3.3e-33 relative error = 3.7767357383009238696735490013232e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.8757 Order of pole = 6.774 TOP MAIN SOLVE Loop x[1] = 0.165 y[1] (analytic) = 0.0089273369624386817480916367645282 y[1] (numeric) = 0.0089273369624386817480916367645152 absolute error = 1.30e-32 relative error = 1.4562013346977762541547275005056e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 0.8597 Order of pole = 6.229 TOP MAIN SOLVE Loop x[1] = 0.166 y[1] (analytic) = 0.009119042362192350327158610235495 y[1] (numeric) = 0.0091190423621923503271586102354811 absolute error = 1.39e-32 relative error = 1.5242828630371926429496427552728e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 0.8451 Order of pole = 5.735 TOP MAIN SOLVE Loop x[1] = 0.167 y[1] (analytic) = 0.0093128220626587593708157067547958 y[1] (numeric) = 0.0093128220626587593708157067547922 absolute error = 3.6e-33 relative error = 3.8656381232008848685934417858559e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.8318 Order of pole = 5.287 TOP MAIN SOLVE Loop x[1] = 0.168 y[1] (analytic) = 0.009508677672294021516248237404049 y[1] (numeric) = 0.0095086776722940215162482374040435 absolute error = 5.5e-33 relative error = 5.7841901782260059801856565841863e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.8196 Order of pole = 4.879 TOP MAIN SOLVE Loop x[1] = 0.169 y[1] (analytic) = 0.0097066108180525518320562794532892 y[1] (numeric) = 0.0097066108180525518320562794532921 absolute error = 2.9e-33 relative error = 2.9876545525102553132685310387467e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.8084 Order of pole = 4.508 TOP MAIN SOLVE Loop x[1] = 0.17 y[1] (analytic) = 0.0099066231454421265981624625566248 y[1] (numeric) = 0.0099066231454421265981624625566283 absolute error = 3.5e-33 relative error = 3.5329899488609214853269709422186e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.7981 Order of pole = 4.168 TOP MAIN SOLVE Loop x[1] = 0.171 y[1] (analytic) = 0.010108716318579634581217720318289 y[1] (numeric) = 0.01010871631857963458121772031827 absolute error = 1.9e-32 relative error = 1.8795660498532686709650185460675e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 0.7886 Order of pole = 3.857 TOP MAIN SOLVE Loop x[1] = 0.172 y[1] (analytic) = 0.010312892020247524895918978588412 y[1] (numeric) = 0.010312892020247524895918978588395 absolute error = 1.7e-32 relative error = 1.6484221852244288765637427858969e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 0.7798 Order of pole = 3.572 TOP MAIN SOLVE Loop memory used=57.2MB, alloc=4.2MB, time=2.46 x[1] = 0.173 y[1] (analytic) = 0.010519151951950955600114552195948 y[1] (numeric) = 0.010519151951950955600114552195942 absolute error = 6e-33 relative error = 5.7038818598748333265672986528149e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.7717 Order of pole = 3.311 TOP MAIN SOLVE Loop x[1] = 0.174 y[1] (analytic) = 0.010727497833975647229567549413979 y[1] (numeric) = 0.010727497833975647229567549413968 absolute error = 1.1e-32 relative error = 1.0254022112371159099738285425018e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 0.7641 Order of pole = 3.07 TOP MAIN SOLVE Loop x[1] = 0.175 y[1] (analytic) = 0.010937931405446445536783296538085 y[1] (numeric) = 0.010937931405446445536783296538089 absolute error = 4e-33 relative error = 3.6569986149375883099477543693332e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.7571 Order of pole = 2.849 TOP MAIN SOLVE Loop x[1] = 0.176 y[1] (analytic) = 0.011150454424386597757392260022101 y[1] (numeric) = 0.011150454424386597757392260022087 absolute error = 1.4e-32 relative error = 1.2555542103630596892334539034191e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 0.7506 Order of pole = 2.645 TOP MAIN SOLVE Loop x[1] = 0.177 y[1] (analytic) = 0.011365068667777746787223837314312 y[1] (numeric) = 0.011365068667777746787223837314305 absolute error = 7e-33 relative error = 6.1592236744212610726521592806780e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.7445 Order of pole = 2.457 TOP MAIN SOLVE Loop x[1] = 0.178 y[1] (analytic) = 0.011581775931620647713417498688272 y[1] (numeric) = 0.011581775931620647713417498688266 absolute error = 6e-33 relative error = 5.1805526504952983659334041743883e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.7388 Order of pole = 2.283 TOP MAIN SOLVE Loop x[1] = 0.179 y[1] (analytic) = 0.011800578030996611203704993946334 y[1] (numeric) = 0.011800578030996611203704993946317 absolute error = 1.7e-32 relative error = 1.4406073969720849791319359919202e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 0.7334 Order of pole = 2.122 TOP MAIN SOLVE Loop x[1] = 0.18 y[1] (analytic) = 0.012021476800129678319369709099029 y[1] (numeric) = 0.012021476800129678319369709099026 absolute error = 3e-33 relative error = 2.4955336601969221775659979164899e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.7284 Order of pole = 1.974 TOP MAIN SOLVE Loop x[1] = 0.181 y[1] (analytic) = 0.012244474092449531379355906487628 y[1] (numeric) = 0.012244474092449531379355906487615 absolute error = 1.3e-32 relative error = 1.0617034183621131057620272222044e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 0.7237 Order of pole = 1.837 TOP MAIN SOLVE Loop x[1] = 0.182 y[1] (analytic) = 0.012469571780655145565570765237903 y[1] (numeric) = 0.012469571780655145565570765237904 absolute error = 1e-33 relative error = 8.0195215809364422294740932301261e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.7193 Order of pole = 1.709 TOP MAIN SOLVE Loop x[1] = 0.183 y[1] (analytic) = 0.012696771756779186022605237892875 y[1] (numeric) = 0.012696771756779186022605237892876 absolute error = 1e-33 relative error = 7.8760177717305984025501187858503e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.7151 Order of pole = 1.591 TOP MAIN SOLVE Loop x[1] = 0.184 y[1] (analytic) = 0.01292607593225315526890525879884 y[1] (numeric) = 0.012926075932253155268905258798838 absolute error = 2e-33 relative error = 1.5472599808961344250495691345954e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.7112 Order of pole = 1.482 TOP MAIN SOLVE Loop memory used=61.0MB, alloc=4.2MB, time=2.62 x[1] = 0.185 y[1] (analytic) = 0.013157486237973295800862412523233 y[1] (numeric) = 0.013157486237973295800862412523221 absolute error = 1.2e-32 relative error = 9.1202831475265229806096895704860e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.7074 Order of pole = 1.38 TOP MAIN SOLVE Loop x[1] = 0.186 y[1] (analytic) = 0.013391004624367252836372557700781 y[1] (numeric) = 0.013391004624367252836372557700773 absolute error = 8e-33 relative error = 5.9741596873490836089698938577103e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.7039 Order of pole = 1.286 TOP MAIN SOLVE Loop x[1] = 0.187 y[1] (analytic) = 0.01362663306146150221014199621275 y[1] (numeric) = 0.013626633061461502210141996212734 absolute error = 1.6e-32 relative error = 1.1741711931211235100336967120078e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 0.7006 Order of pole = 1.198 TOP MAIN SOLVE Loop x[1] = 0.188 y[1] (analytic) = 0.013864373538949548499413606344621 y[1] (numeric) = 0.013864373538949548499413606344613 absolute error = 8e-33 relative error = 5.7701849834941261597437081120635e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6974 Order of pole = 1.117 TOP MAIN SOLVE Loop x[1] = 0.189 y[1] (analytic) = 0.014104228066260898525850084634002 y[1] (numeric) = 0.014104228066260898525850084633987 absolute error = 1.5e-32 relative error = 1.0635108798248875096733819600023e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 0.6944 Order of pole = 1.041 TOP MAIN SOLVE Loop x[1] = 0.19 y[1] (analytic) = 0.014346198672630815447058366267283 y[1] (numeric) = 0.014346198672630815447058366267274 absolute error = 9e-33 relative error = 6.2734388428412681521910939190877e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6915 Order of pole = 0.9707 TOP MAIN SOLVE Loop x[1] = 0.191 y[1] (analytic) = 0.014590287407170858719678860994922 y[1] (numeric) = 0.014590287407170858719678860994914 absolute error = 8e-33 relative error = 5.4830996653761232252127796921924e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6887 Order of pole = 0.9052 TOP MAIN SOLVE Loop x[1] = 0.192 y[1] (analytic) = 0.014836496338940215285105937114354 y[1] (numeric) = 0.014836496338940215285105937114335 absolute error = 1.9e-32 relative error = 1.2806258004547984574113385082197e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 0.6861 Order of pole = 0.8442 TOP MAIN SOLVE Loop x[1] = 0.193 y[1] (analytic) = 0.015084827557017827398762842795779 y[1] (numeric) = 0.015084827557017827398762842795765 absolute error = 1.4e-32 relative error = 9.2808485526815722028736608107813e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6836 Order of pole = 0.7874 TOP MAIN SOLVE Loop x[1] = 0.194 y[1] (analytic) = 0.015335283170575322594435853331062 y[1] (numeric) = 0.015335283170575322594435853331063 absolute error = 1e-33 relative error = 6.5209099100221162197478750040745e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.6812 Order of pole = 0.7346 TOP MAIN SOLVE Loop x[1] = 0.195 y[1] (analytic) = 0.015587865308950751346489907594755 y[1] (numeric) = 0.015587865308950751346489907594751 absolute error = 4e-33 relative error = 2.5660986419372952321735697471961e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6789 Order of pole = 0.6854 TOP MAIN SOLVE Loop x[1] = 0.196 y[1] (analytic) = 0.015842576121723138064852534012638 y[1] (numeric) = 0.015842576121723138064852534012632 absolute error = 6e-33 relative error = 3.7872628503724698039147745820293e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6767 Order of pole = 0.6395 TOP MAIN SOLVE Loop memory used=64.8MB, alloc=4.2MB, time=2.80 x[1] = 0.197 y[1] (analytic) = 0.016099417778787851130475809324654 y[1] (numeric) = 0.016099417778787851130475809324643 absolute error = 1.1e-32 relative error = 6.8325452206683502790127639453279e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6746 Order of pole = 0.5968 TOP MAIN SOLVE Loop x[1] = 0.198 y[1] (analytic) = 0.016358392470432797752578945659689 y[1] (numeric) = 0.016358392470432797752578945659691 absolute error = 2e-33 relative error = 1.2226140212829149342030211834973e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6725 Order of pole = 0.5569 TOP MAIN SOLVE Loop x[1] = 0.199 y[1] (analytic) = 0.016619502407415449503348528554555 y[1] (numeric) = 0.016619502407415449503348528554551 absolute error = 4e-33 relative error = 2.4068109272725527031845994124384e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6706 Order of pole = 0.5198 TOP MAIN SOLVE Loop x[1] = 0.2 y[1] (analytic) = 0.016882749821040704460941261449261 y[1] (numeric) = 0.016882749821040704460941261449254 absolute error = 7e-33 relative error = 4.1462439911749509880632305809006e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6686 Order of pole = 0.4852 TOP MAIN SOLVE Loop x[1] = 0.201 y[1] (analytic) = 0.017148136963239591967607309961324 y[1] (numeric) = 0.017148136963239591967607309961326 absolute error = 2e-33 relative error = 1.1663074561903685502850781689591e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6668 Order of pole = 0.4529 TOP MAIN SOLVE Loop x[1] = 0.202 y[1] (analytic) = 0.017415666106648826086543152118439 y[1] (numeric) = 0.017415666106648826086543152118431 absolute error = 8e-33 relative error = 4.5935653284865275990631568011306e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.665 Order of pole = 0.4228 TOP MAIN SOLVE Loop x[1] = 0.203 y[1] (analytic) = 0.017685339544691213918703573130661 y[1] (numeric) = 0.017685339544691213918703573130651 absolute error = 1.0e-32 relative error = 5.6544009091427370895192580378004e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6633 Order of pole = 0.3947 TOP MAIN SOLVE Loop x[1] = 0.204 y[1] (analytic) = 0.017957159591656925019265616886146 y[1] (numeric) = 0.017957159591656925019265616886138 absolute error = 8e-33 relative error = 4.4550475587001407407980567948818e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6616 Order of pole = 0.3685 TOP MAIN SOLVE Loop x[1] = 0.205 y[1] (analytic) = 0.018231128582785628232755623227024 y[1] (numeric) = 0.018231128582785628232755623227022 absolute error = 2e-33 relative error = 1.0970247897261057424732484051523e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.66 Order of pole = 0.344 TOP MAIN SOLVE Loop x[1] = 0.206 y[1] (analytic) = 0.018507248874349502346036825859466 y[1] (numeric) = 0.018507248874349502346036825859464 absolute error = 2e-33 relative error = 1.0806576458654212193584511439881e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6584 Order of pole = 0.3212 TOP MAIN SOLVE Loop x[1] = 0.207 y[1] (analytic) = 0.018785522843737127039422432956872 y[1] (numeric) = 0.018785522843737127039422432956852 absolute error = 2.0e-32 relative error = 1.0646496329309122955058896699335e-28 % Correct digits = 29 h = 0.001 Real estimate of pole used Radius of convergence = 0.6568 Order of pole = 0.2999 TOP MAIN SOLVE Loop x[1] = 0.208 y[1] (analytic) = 0.019065952889538260698140923748891 y[1] (numeric) = 0.019065952889538260698140923748888 absolute error = 3e-33 relative error = 1.5734854782139630098601334587904e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6553 Order of pole = 0.28 TOP MAIN SOLVE Loop memory used=68.6MB, alloc=4.2MB, time=2.98 x[1] = 0.209 y[1] (analytic) = 0.019348541431629511729249925773724 y[1] (numeric) = 0.019348541431629511729249925773724 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.6538 Order of pole = 0.2614 TOP MAIN SOLVE Loop x[1] = 0.21 y[1] (analytic) = 0.019633290911260910112886142054485 y[1] (numeric) = 0.019633290911260910112886142054478 absolute error = 7e-33 relative error = 3.5653727292275111238347441447900e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6524 Order of pole = 0.2441 TOP MAIN SOLVE Loop x[1] = 0.211 y[1] (analytic) = 0.019920203791143386001465228709186 y[1] (numeric) = 0.019920203791143386001465228709168 absolute error = 1.8e-32 relative error = 9.0360521351708673699334498442502e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6509 Order of pole = 0.2279 TOP MAIN SOLVE Loop x[1] = 0.212 y[1] (analytic) = 0.020209282555537162266121338843665 y[1] (numeric) = 0.020209282555537162266121338843651 absolute error = 1.4e-32 relative error = 6.9275096538071439328135764702405e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6496 Order of pole = 0.2129 TOP MAIN SOLVE Loop x[1] = 0.213 y[1] (analytic) = 0.020500529710341067976315513020563 y[1] (numeric) = 0.020500529710341067976315513020556 absolute error = 7e-33 relative error = 3.4145459160838145842410475849874e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6482 Order of pole = 0.1988 TOP MAIN SOLVE Loop x[1] = 0.214 y[1] (analytic) = 0.020793947783182779886159686415463 y[1] (numeric) = 0.02079394778318277988615968641545 absolute error = 1.3e-32 relative error = 6.2518191040730715879314070535211e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6469 Order of pole = 0.1856 TOP MAIN SOLVE Loop x[1] = 0.215 y[1] (analytic) = 0.021089539323509999089613489246603 y[1] (numeric) = 0.021089539323509999089613489246601 absolute error = 2e-33 relative error = 9.4833745266804322041913587174333e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.6455 Order of pole = 0.1733 TOP MAIN SOLVE Loop x[1] = 0.216 y[1] (analytic) = 0.021387306902682570096329150305926 y[1] (numeric) = 0.021387306902682570096329150305908 absolute error = 1.8e-32 relative error = 8.4162069034237749230762861638705e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6442 Order of pole = 0.1618 TOP MAIN SOLVE Loop x[1] = 0.217 y[1] (analytic) = 0.021687253114065549670560806248783 y[1] (numeric) = 0.021687253114065549670560806248777 absolute error = 6e-33 relative error = 2.7666020996032098112671188110419e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.643 Order of pole = 0.1511 TOP MAIN SOLVE Loop x[1] = 0.218 y[1] (analytic) = 0.021989380573123232867233731215133 y[1] (numeric) = 0.021989380573123232867233731215113 absolute error = 2.0e-32 relative error = 9.0952994030424051170572207328988e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6417 Order of pole = 0.1411 TOP MAIN SOLVE Loop x[1] = 0.219 y[1] (analytic) = 0.022293691917514143792002022550515 y[1] (numeric) = 0.022293691917514143792002022550514 absolute error = 1e-33 relative error = 4.4855737833821510634678894924798e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.6405 Order of pole = 0.1318 TOP MAIN SOLVE Loop x[1] = 0.22 y[1] (analytic) = 0.022600189807186998705925933883572 y[1] (numeric) = 0.022600189807186998705925933883556 absolute error = 1.6e-32 relative error = 7.0795865594508865832062987160541e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6393 Order of pole = 0.123 TOP MAIN SOLVE Loop memory used=72.4MB, alloc=4.2MB, time=3.15 x[1] = 0.221 y[1] (analytic) = 0.022908876924477649190288400589489 y[1] (numeric) = 0.022908876924477649190288400589477 absolute error = 1.2e-32 relative error = 5.2381441654951904127981386367360e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.638 Order of pole = 0.1149 TOP MAIN SOLVE Loop x[1] = 0.222 y[1] (analytic) = 0.023219755974207013183060661979845 y[1] (numeric) = 0.023219755974207013183060661979843 absolute error = 2e-33 relative error = 8.6133549474923057163170993435796e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.6369 Order of pole = 0.1073 TOP MAIN SOLVE Loop x[1] = 0.223 y[1] (analytic) = 0.023532829683780001795635804237048 y[1] (numeric) = 0.023532829683780001795635804237041 absolute error = 7e-33 relative error = 2.9745679096231885004822635853211e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6357 Order of pole = 0.1002 TOP MAIN SOLVE Loop x[1] = 0.224 y[1] (analytic) = 0.023848100803285449916693335003489 y[1] (numeric) = 0.023848100803285449916693335003489 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.6345 Order of pole = 0.09354 TOP MAIN SOLVE Loop x[1] = 0.225 y[1] (analytic) = 0.024165572105597058709454617988595 y[1] (numeric) = 0.024165572105597058709454617988576 absolute error = 1.9e-32 relative error = 7.8624250719060586723644685906819e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6333 Order of pole = 0.08734 TOP MAIN SOLVE Loop x[1] = 0.226 y[1] (analytic) = 0.024485246386475358209155468415745 y[1] (numeric) = 0.024485246386475358209155468415738 absolute error = 7e-33 relative error = 2.8588644318753973155728997652592e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6322 Order of pole = 0.08155 TOP MAIN SOLVE Loop x[1] = 0.227 y[1] (analytic) = 0.02480712646467069832931602780788 y[1] (numeric) = 0.024807126464670698329316027807866 absolute error = 1.4e-32 relative error = 5.6435395772010237547415758370900e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6311 Order of pole = 0.07615 TOP MAIN SOLVE Loop x[1] = 0.228 y[1] (analytic) = 0.025131215182027276688347060236585 y[1] (numeric) = 0.025131215182027276688347060236579 absolute error = 6e-33 relative error = 2.3874691122341478246265631204013e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6299 Order of pole = 0.0711 TOP MAIN SOLVE Loop x[1] = 0.229 y[1] (analytic) = 0.025457515403588211772214177849252 y[1] (numeric) = 0.025457515403588211772214177849244 absolute error = 8e-33 relative error = 3.1424904878472185324666654496206e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6288 Order of pole = 0.06638 TOP MAIN SOLVE Loop x[1] = 0.23 y[1] (analytic) = 0.025786030017701670054305627661222 y[1] (numeric) = 0.025786030017701670054305627661214 absolute error = 8e-33 relative error = 3.1024550869242517631820334307011e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6277 Order of pole = 0.06198 TOP MAIN SOLVE Loop x[1] = 0.231 y[1] (analytic) = 0.026116761936128055800333856032345 y[1] (numeric) = 0.026116761936128055800333856032347 absolute error = 2e-33 relative error = 7.6579171831916245593722521925485e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.6266 Order of pole = 0.05786 TOP MAIN SOLVE Loop x[1] = 0.232 y[1] (analytic) = 0.026449714094148272394065104187228 y[1] (numeric) = 0.026449714094148272394065104187226 absolute error = 2e-33 relative error = 7.5615184076506878389598322774306e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.6255 Order of pole = 0.05402 TOP MAIN SOLVE Loop memory used=76.2MB, alloc=4.2MB, time=3.33 x[1] = 0.233 y[1] (analytic) = 0.026784889450673064128934065542825 y[1] (numeric) = 0.02678488945067306412893406554281 absolute error = 1.5e-32 relative error = 5.6001724508230413774400042802041e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6244 Order of pole = 0.05043 TOP MAIN SOLVE Loop x[1] = 0.234 y[1] (analytic) = 0.027122290988353447521181742461312 y[1] (numeric) = 0.027122290988353447521181742461295 absolute error = 1.7e-32 relative error = 6.2679070906288671876341923309936e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6233 Order of pole = 0.04708 TOP MAIN SOLVE Loop x[1] = 0.235 y[1] (analytic) = 0.027461921713692241312073971793542 y[1] (numeric) = 0.027461921713692241312073971793529 absolute error = 1.3e-32 relative error = 4.7338274923121382159330899632862e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6223 Order of pole = 0.04395 TOP MAIN SOLVE Loop x[1] = 0.236 y[1] (analytic) = 0.027803784657156704440035852652525 y[1] (numeric) = 0.027803784657156704440035852652506 absolute error = 1.9e-32 relative error = 6.8336020560817402901227577125095e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6212 Order of pole = 0.04103 TOP MAIN SOLVE Loop x[1] = 0.237 y[1] (analytic) = 0.028147882873292291378194031316572 y[1] (numeric) = 0.02814788287329229137819403131656 absolute error = 1.2e-32 relative error = 4.2631980721313947169906065889280e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6201 Order of pole = 0.0383 TOP MAIN SOLVE Loop x[1] = 0.238 y[1] (analytic) = 0.02849421944083753434887532543866 y[1] (numeric) = 0.028494219440837534348875325438657 absolute error = 3e-33 relative error = 1.0528451239834420972164018169827e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6191 Order of pole = 0.03575 TOP MAIN SOLVE Loop x[1] = 0.239 y[1] (analytic) = 0.028842797462840062044087680489228 y[1] (numeric) = 0.028842797462840062044087680489212 absolute error = 1.6e-32 relative error = 5.5473121220692193355437348892873e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.618 Order of pole = 0.03337 TOP MAIN SOLVE Loop x[1] = 0.24 y[1] (analytic) = 0.029193620066773764599929458437842 y[1] (numeric) = 0.029193620066773764599929458437828 absolute error = 1.4e-32 relative error = 4.7955683358138473002488453927496e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6169 Order of pole = 0.03115 TOP MAIN SOLVE Loop x[1] = 0.241 y[1] (analytic) = 0.029546690404657114693257416215385 y[1] (numeric) = 0.02954669040465711469325741621537 absolute error = 1.5e-32 relative error = 5.0767107227805512829796063096303e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6159 Order of pole = 0.02907 TOP MAIN SOLVE Loop x[1] = 0.242 y[1] (analytic) = 0.02990201165317265475081464110223 y[1] (numeric) = 0.029902011653172654750814641102214 absolute error = 1.6e-32 relative error = 5.3508105693960468183516488333138e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6148 Order of pole = 0.02713 TOP MAIN SOLVE Loop x[1] = 0.243 y[1] (analytic) = 0.030259587013787660384399727272048 y[1] (numeric) = 0.03025958701378766038439972727204 absolute error = 8e-33 relative error = 2.6437902131165345519735429413703e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6138 Order of pole = 0.02532 TOP MAIN SOLVE Loop x[1] = 0.244 y[1] (analytic) = 0.030619419712875990290570517937702 y[1] (numeric) = 0.030619419712875990290570517937689 absolute error = 1.3e-32 relative error = 4.2456715776795983494372455115107e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6128 Order of pole = 0.02364 TOP MAIN SOLVE Loop x[1] = 0.245 y[1] (analytic) = 0.030981513001841132979843083363628 y[1] (numeric) = 0.030981513001841132979843083363614 memory used=80.1MB, alloc=4.2MB, time=3.51 absolute error = 1.4e-32 relative error = 4.5188238544605695781045620296132e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6117 Order of pole = 0.02206 TOP MAIN SOLVE Loop x[1] = 0.246 y[1] (analytic) = 0.031345870157240460828392912405205 y[1] (numeric) = 0.031345870157240460828392912405205 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.6107 Order of pole = 0.02058 TOP MAIN SOLVE Loop x[1] = 0.247 y[1] (analytic) = 0.031712494480910702074914600522555 y[1] (numeric) = 0.031712494480910702074914600522534 absolute error = 2.1e-32 relative error = 6.6219956341311859752484946456009e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6097 Order of pole = 0.01921 TOP MAIN SOLVE Loop x[1] = 0.248 y[1] (analytic) = 0.032081389300094641516573044006772 y[1] (numeric) = 0.032081389300094641516573044006769 absolute error = 3e-33 relative error = 9.3512159711585491323683879352896e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.6086 Order of pole = 0.01793 TOP MAIN SOLVE Loop x[1] = 0.249 y[1] (analytic) = 0.032452557967569060790908116458868 y[1] (numeric) = 0.032452557967569060790908116458864 absolute error = 4e-33 relative error = 1.2325684785764300428876846730428e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6076 Order of pole = 0.01673 TOP MAIN SOLVE Loop x[1] = 0.25 y[1] (analytic) = 0.03282600386177392926516122901142 y[1] (numeric) = 0.032826003861773929265161229011399 absolute error = 2.1e-32 relative error = 6.3973671874372198750549630297301e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6066 Order of pole = 0.01561 TOP MAIN SOLVE Loop x[1] = 0.251 y[1] (analytic) = 0.03320173038694285669080168903584 y[1] (numeric) = 0.033201730386942856690801689035832 absolute error = 8e-33 relative error = 2.4095129701872814483520838203217e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6055 Order of pole = 0.01456 TOP MAIN SOLVE Loop x[1] = 0.252 y[1] (analytic) = 0.033579740973234818919069418314475 y[1] (numeric) = 0.033579740973234818919069418314463 absolute error = 1.2e-32 relative error = 3.5735832535351479598561911605448e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6045 Order of pole = 0.01359 TOP MAIN SOLVE Loop x[1] = 0.253 y[1] (analytic) = 0.03396003907686716811314484027271 y[1] (numeric) = 0.033960039076867168113144840272698 absolute error = 1.2e-32 relative error = 3.5335648386147282549205602118521e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6035 Order of pole = 0.01268 TOP MAIN SOLVE Loop x[1] = 0.254 y[1] (analytic) = 0.034342628180249939034133498289188 y[1] (numeric) = 0.034342628180249939034133498289177 absolute error = 1.1e-32 relative error = 3.2030163627156458700590066677270e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6025 Order of pole = 0.01183 TOP MAIN SOLVE Loop x[1] = 0.255 y[1] (analytic) = 0.034727511792121463121439564767668 y[1] (numeric) = 0.034727511792121463121439564767651 absolute error = 1.7e-32 relative error = 4.8952542588601882271438757138789e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6015 Order of pole = 0.01103 TOP MAIN SOLVE Loop x[1] = 0.256 y[1] (analytic) = 0.035114693447685302233326633154342 y[1] (numeric) = 0.035114693447685302233326633154328 absolute error = 1.4e-32 relative error = 3.9869349908628790697650873678282e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.6004 Order of pole = 0.01029 TOP MAIN SOLVE Loop x[1] = 0.257 y[1] (analytic) = 0.035504176708748514060554298456995 y[1] (numeric) = 0.035504176708748514060554298456992 absolute error = 3e-33 relative error = 8.4497100851257759911010608115637e-30 % Correct digits = 31 h = 0.001 memory used=83.9MB, alloc=4.2MB, time=3.69 Real estimate of pole used Radius of convergence = 0.5994 Order of pole = 0.009601 TOP MAIN SOLVE Loop x[1] = 0.258 y[1] (analytic) = 0.035895965163861261374963737022515 y[1] (numeric) = 0.035895965163861261374963737022503 absolute error = 1.2e-32 relative error = 3.3429941067808810515002066969746e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5984 Order of pole = 0.008956 TOP MAIN SOLVE Loop x[1] = 0.259 y[1] (analytic) = 0.036290062428457777425793977861692 y[1] (numeric) = 0.036290062428457777425793977861678 absolute error = 1.4e-32 relative error = 3.8578054329886032831950039054412e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5974 Order of pole = 0.008354 TOP MAIN SOLVE Loop x[1] = 0.26 y[1] (analytic) = 0.036686472144998699949372482536388 y[1] (numeric) = 0.036686472144998699949372482536377 absolute error = 1.1e-32 relative error = 2.9983804265844569679965099081760e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5964 Order of pole = 0.007792 TOP MAIN SOLVE Loop x[1] = 0.261 y[1] (analytic) = 0.037085197983114786412669176743925 y[1] (numeric) = 0.037085197983114786412669176743913 absolute error = 1.2e-32 relative error = 3.2357923518336627186125019869682e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5954 Order of pole = 0.007268 TOP MAIN SOLVE Loop x[1] = 0.262 y[1] (analytic) = 0.037486243639752023268062862953708 y[1] (numeric) = 0.037486243639752023268062862953686 absolute error = 2.2e-32 relative error = 5.8688195625635465964082723572360e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5944 Order of pole = 0.006778 TOP MAIN SOLVE Loop x[1] = 0.263 y[1] (analytic) = 0.037889612839318142155574158326718 y[1] (numeric) = 0.037889612839318142155574158326714 absolute error = 4e-33 relative error = 1.0556983036388248344446051824163e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5933 Order of pole = 0.006321 TOP MAIN SOLVE Loop x[1] = 0.264 y[1] (analytic) = 0.038295309333830556149801433625252 y[1] (numeric) = 0.038295309333830556149801433625236 absolute error = 1.6e-32 relative error = 4.1780573857032144408316560674057e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5923 Order of pole = 0.005895 TOP MAIN SOLVE Loop x[1] = 0.265 y[1] (analytic) = 0.03870333690306572931188789395837 y[1] (numeric) = 0.038703336903065729311887893958356 absolute error = 1.4e-32 relative error = 3.6172591616747770024800782936780e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5913 Order of pole = 0.005498 TOP MAIN SOLVE Loop x[1] = 0.266 y[1] (analytic) = 0.03911369935470999297208169711485 y[1] (numeric) = 0.039113699354709992972081697114827 absolute error = 2.3e-32 relative error = 5.8802926799176274489568199391009e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5903 Order of pole = 0.005126 TOP MAIN SOLVE Loop x[1] = 0.267 y[1] (analytic) = 0.039526400524511822335860155178882 y[1] (numeric) = 0.039526400524511822335860155178875 absolute error = 7e-33 relative error = 1.7709682407481131786925914180701e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5893 Order of pole = 0.00478 TOP MAIN SOLVE Loop x[1] = 0.268 y[1] (analytic) = 0.03994144427643558717620747488404 y[1] (numeric) = 0.039941444276435587176207474884033 absolute error = 7e-33 relative error = 1.7525655686241215508529692445431e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5883 Order of pole = 0.004457 TOP MAIN SOLVE Loop x[1] = 0.269 y[1] (analytic) = 0.04035883450281679054649759655193 y[1] (numeric) = 0.040358834502816790546497596551911 absolute error = 1.9e-32 relative error = 4.7077672668356963000917774909310e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5873 Order of pole = 0.004156 memory used=87.7MB, alloc=4.2MB, time=3.86 TOP MAIN SOLVE Loop x[1] = 0.27 y[1] (analytic) = 0.040778575124518809622574506106868 y[1] (numeric) = 0.040778575124518809622574506106851 absolute error = 1.7e-32 relative error = 4.1688558141352177346985266945616e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5863 Order of pole = 0.003875 TOP MAIN SOLVE Loop x[1] = 0.271 y[1] (analytic) = 0.041200670091091152959077526950632 y[1] (numeric) = 0.041200670091091152959077526950613 absolute error = 1.9e-32 relative error = 4.6115754811736380127333024817060e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5853 Order of pole = 0.003612 TOP MAIN SOLVE Loop x[1] = 0.272 y[1] (analytic) = 0.04162512338092924862386475879911 y[1] (numeric) = 0.041625123380929248623864758799102 absolute error = 8e-33 relative error = 1.9219162251577225713580295548878e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5843 Order of pole = 0.003368 TOP MAIN SOLVE Loop x[1] = 0.273 y[1] (analytic) = 0.042051939001435777855580843710575 y[1] (numeric) = 0.04205193900143577785558084371057 absolute error = 5e-33 relative error = 1.1890058148874621876729091118575e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5833 Order of pole = 0.003139 TOP MAIN SOLVE Loop x[1] = 0.274 y[1] (analytic) = 0.042481120989183569073033056331042 y[1] (numeric) = 0.042481120989183569073033056331028 absolute error = 1.4e-32 relative error = 3.2955815840087277962277575522836e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5823 Order of pole = 0.002926 TOP MAIN SOLVE Loop x[1] = 0.275 y[1] (analytic) = 0.042912673410080067251120424686405 y[1] (numeric) = 0.042912673410080067251120424686389 absolute error = 1.6e-32 relative error = 3.7285022648441298561561152771564e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5813 Order of pole = 0.002728 TOP MAIN SOLVE Loop x[1] = 0.276 y[1] (analytic) = 0.043346600359533393866642928630538 y[1] (numeric) = 0.043346600359533393866642928630521 absolute error = 1.7e-32 relative error = 3.9218761930567689734722109617203e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5803 Order of pole = 0.002542 TOP MAIN SOLVE Loop x[1] = 0.277 y[1] (analytic) = 0.043782905962620012808441196812698 y[1] (numeric) = 0.04378290596262001280844119681269 absolute error = 8e-33 relative error = 1.8271971273058166859720199394713e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5792 Order of pole = 0.00237 TOP MAIN SOLVE Loop x[1] = 0.278 y[1] (analytic) = 0.044221594374254017840021606443668 y[1] (numeric) = 0.04422159437425401784002160644365 absolute error = 1.8e-32 relative error = 4.0704095487067443146014098288774e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5782 Order of pole = 0.002209 TOP MAIN SOLVE Loop x[1] = 0.279 y[1] (analytic) = 0.044662669779358057399148048010905 y[1] (numeric) = 0.044662669779358057399148048010893 absolute error = 1.2e-32 relative error = 2.6868075865778388371595580427303e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5772 Order of pole = 0.002058 TOP MAIN SOLVE Loop x[1] = 0.28 y[1] (analytic) = 0.045106136393035912717871315509322 y[1] (numeric) = 0.045106136393035912717871315509311 absolute error = 1.1e-32 relative error = 2.4386925770255788957505449588624e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5762 Order of pole = 0.001918 TOP MAIN SOLVE Loop x[1] = 0.281 y[1] (analytic) = 0.045551998460746745448162302559205 y[1] (numeric) = 0.045551998460746745448162302559202 absolute error = 3e-33 relative error = 6.5858800960953936600589281152775e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.5752 Order of pole = 0.001787 memory used=91.5MB, alloc=4.2MB, time=4.04 TOP MAIN SOLVE Loop x[1] = 0.282 y[1] (analytic) = 0.046000260258481031182758835323258 y[1] (numeric) = 0.046000260258481031182758835323236 absolute error = 2.2e-32 relative error = 4.7825816367949521764771367824758e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5742 Order of pole = 0.001666 TOP MAIN SOLVE Loop x[1] = 0.283 y[1] (analytic) = 0.04645092609293819546807170627899 y[1] (numeric) = 0.046450926092938195468071706278979 absolute error = 1.1e-32 relative error = 2.3680905689568801236855501059001e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5732 Order of pole = 0.001552 TOP MAIN SOLVE Loop x[1] = 0.284 y[1] (analytic) = 0.046904000301705969116067697374382 y[1] (numeric) = 0.046904000301705969116067697374374 absolute error = 8e-33 relative error = 1.7056114507378228790653886580822e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5722 Order of pole = 0.001446 TOP MAIN SOLVE Loop x[1] = 0.285 y[1] (analytic) = 0.047359487253441479835001277081785 y[1] (numeric) = 0.047359487253441479835001277081773 absolute error = 1.2e-32 relative error = 2.5338112162791614639678178991876e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5712 Order of pole = 0.001347 TOP MAIN SOLVE Loop x[1] = 0.286 y[1] (analytic) = 0.047817391348054097414748189962942 y[1] (numeric) = 0.047817391348054097414748189962923 absolute error = 1.9e-32 relative error = 3.9734497144987384610183500039550e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5702 Order of pole = 0.001255 TOP MAIN SOLVE Loop x[1] = 0.287 y[1] (analytic) = 0.048277717016890049921350097795898 y[1] (numeric) = 0.048277717016890049921350097795897 absolute error = 1e-33 relative error = 2.0713489820783118698044400789382e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.5692 Order of pole = 0.001169 TOP MAIN SOLVE Loop x[1] = 0.288 y[1] (analytic) = 0.048740468722918828577257363533795 y[1] (numeric) = 0.048740468722918828577257363533786 absolute error = 9e-33 relative error = 1.8465148645088848387492683568826e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5682 Order of pole = 0.001089 TOP MAIN SOLVE Loop x[1] = 0.289 y[1] (analytic) = 0.0492056509609213992287054118993 y[1] (numeric) = 0.049205650960921399228705411899289 absolute error = 1.1e-32 relative error = 2.2355155932671396093771896370333e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5672 Order of pole = 0.001015 TOP MAIN SOLVE Loop x[1] = 0.29 y[1] (analytic) = 0.04967326825768023852972812112859 y[1] (numeric) = 0.049673268257680238529728121128584 absolute error = 6e-33 relative error = 1.2078931406073344602549529827163e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5662 Order of pole = 0.0009451 TOP MAIN SOLVE Loop x[1] = 0.291 y[1] (analytic) = 0.050143325172171213203549533016678 y[1] (numeric) = 0.050143325172171213203549533016674 absolute error = 4e-33 relative error = 7.9771335192982763726919793499838e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.5652 Order of pole = 0.0008803 TOP MAIN SOLVE Loop x[1] = 0.292 y[1] (analytic) = 0.050615826295757320976553829556972 y[1] (numeric) = 0.050615826295757320976553829556955 absolute error = 1.7e-32 relative error = 3.3586333058490364519481009256878e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5642 Order of pole = 0.0008198 TOP MAIN SOLVE Loop x[1] = 0.293 y[1] (analytic) = 0.051090776252384312017764930781845 y[1] (numeric) = 0.051090776252384312017764930781836 absolute error = 9e-33 relative error = 1.7615704164565294990189843263820e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5632 Order of pole = 0.0007635 memory used=95.3MB, alloc=4.2MB, time=4.21 TOP MAIN SOLVE Loop x[1] = 0.294 y[1] (analytic) = 0.05156817969877820995782405432026 y[1] (numeric) = 0.051568179698778209957824054320236 absolute error = 2.4e-32 relative error = 4.6540328047624735324295144220997e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5622 Order of pole = 0.000711 TOP MAIN SOLVE Loop x[1] = 0.295 y[1] (analytic) = 0.05204804132464475180588991288878 y[1] (numeric) = 0.052048041324644751805889912888762 absolute error = 1.8e-32 relative error = 3.4583433961955833550497402217422e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5612 Order of pole = 0.0006621 TOP MAIN SOLVE Loop x[1] = 0.296 y[1] (analytic) = 0.052530365852870766330756635811088 y[1] (numeric) = 0.052530365852870766330756635811066 absolute error = 2.2e-32 relative error = 4.1880538318766930131336992673579e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5602 Order of pole = 0.0006166 TOP MAIN SOLVE Loop x[1] = 0.297 y[1] (analytic) = 0.053015158039727510723844682091812 y[1] (numeric) = 0.053015158039727510723844682091791 absolute error = 2.1e-32 relative error = 3.9611312644326008650902710500073e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5592 Order of pole = 0.0005741 TOP MAIN SOLVE Loop x[1] = 0.298 y[1] (analytic) = 0.0535024226750759856166266551373 y[1] (numeric) = 0.053502422675075985616626655137299 absolute error = 1e-33 relative error = 1.8690742400079171226305968694728e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.5582 Order of pole = 0.0005345 TOP MAIN SOLVE Loop x[1] = 0.299 y[1] (analytic) = 0.053992164582574248783560734318215 y[1] (numeric) = 0.053992164582574248783560734318205 absolute error = 1.0e-32 relative error = 1.8521205951478854528808886029797e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5572 Order of pole = 0.0004976 TOP MAIN SOLVE Loop x[1] = 0.3 y[1] (analytic) = 0.054484388619886748123778139479442 y[1] (numeric) = 0.054484388619886748123778139479439 absolute error = 3e-33 relative error = 5.5061643821125726242399052580022e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.5562 Order of pole = 0.0004633 TOP MAIN SOLVE Loop x[1] = 0.301 y[1] (analytic) = 0.054979099678895694780667426836772 y[1] (numeric) = 0.054979099678895694780667426836753 absolute error = 1.9e-32 relative error = 3.4558587010280471511864735394718e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5552 Order of pole = 0.0004313 TOP MAIN SOLVE Loop x[1] = 0.302 y[1] (analytic) = 0.0554763026859144975281783373315 y[1] (numeric) = 0.055476302685914497528178337331486 absolute error = 1.4e-32 relative error = 2.5236000458182332090285819467652e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5542 Order of pole = 0.0004015 TOP MAIN SOLVE Loop x[1] = 0.303 y[1] (analytic) = 0.05597600260190327982619333495889 y[1] (numeric) = 0.055976002601903279826193334958877 absolute error = 1.3e-32 relative error = 2.3224237880033930407245914251558e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5532 Order of pole = 0.0003737 TOP MAIN SOLVE Loop x[1] = 0.304 y[1] (analytic) = 0.056478204422686501224748952819068 y[1] (numeric) = 0.056478204422686501224748952819053 absolute error = 1.5e-32 relative error = 2.6558917999125890664555608180802e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5522 Order of pole = 0.0003478 TOP MAIN SOLVE Loop x[1] = 0.305 y[1] (analytic) = 0.056982913179172705078295817421518 y[1] (numeric) = 0.056982913179172705078295817421512 absolute error = 6e-33 relative error = 1.0529472196575945204710445868083e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5512 Order of pole = 0.0003237 TOP MAIN SOLVE Loop memory used=99.1MB, alloc=4.3MB, time=4.38 x[1] = 0.306 y[1] (analytic) = 0.057490133937576414816631117433638 y[1] (numeric) = 0.057490133937576414816631117433626 absolute error = 1.2e-32 relative error = 2.0873146709015787850402347068760e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5502 Order of pole = 0.0003013 TOP MAIN SOLVE Loop x[1] = 0.307 y[1] (analytic) = 0.057999871799642201308686876796008 y[1] (numeric) = 0.057999871799642201308686876795999 absolute error = 9e-33 relative error = 1.5517275677936102971357093487615e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5492 Order of pole = 0.0002804 TOP MAIN SOLVE Loop x[1] = 0.308 y[1] (analytic) = 0.058512131902870944149079447792088 y[1] (numeric) = 0.058512131902870944149079447792072 absolute error = 1.6e-32 relative error = 2.7344756514016108363299668742243e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5482 Order of pole = 0.0002609 TOP MAIN SOLVE Loop x[1] = 0.309 y[1] (analytic) = 0.05902691942074830999528915410243 y[1] (numeric) = 0.059026919420748309995289154102411 absolute error = 1.9e-32 relative error = 3.2188703368655535903856210376159e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5472 Order of pole = 0.0002428 TOP MAIN SOLVE Loop x[1] = 0.31 y[1] (analytic) = 0.059544239562975471385614241783412 y[1] (numeric) = 0.05954423956297547138561424178339 absolute error = 2.2e-32 relative error = 3.6947318769151887212836219348074e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5462 Order of pole = 0.0002259 TOP MAIN SOLVE Loop x[1] = 0.311 y[1] (analytic) = 0.06006409757570208977470177541572 y[1] (numeric) = 0.060064097575702089774701775415708 absolute error = 1.2e-32 relative error = 1.9978656942070492586580706094738e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5452 Order of pole = 0.0002101 TOP MAIN SOLVE Loop x[1] = 0.312 y[1] (analytic) = 0.060586498741761586834572694502885 y[1] (numeric) = 0.060586498741761586834572694502874 absolute error = 1.1e-32 relative error = 1.8155860180805966734349527922092e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5442 Order of pole = 0.0001955 TOP MAIN SOLVE Loop x[1] = 0.313 y[1] (analytic) = 0.061111448380908728384703104430852 y[1] (numeric) = 0.061111448380908728384703104430839 absolute error = 1.3e-32 relative error = 2.1272609870037398311690638394214e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5432 Order of pole = 0.0001819 TOP MAIN SOLVE Loop x[1] = 0.314 y[1] (analytic) = 0.06163895185005954563497456264817 y[1] (numeric) = 0.061638951850059545634974562648161 absolute error = 9e-33 relative error = 1.4601156784581673006626554777046e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5422 Order of pole = 0.0001692 TOP MAIN SOLVE Loop x[1] = 0.315 y[1] (analytic) = 0.06216901454353361875023957048444 y[1] (numeric) = 0.06216901454353361875023957048442 absolute error = 2.0e-32 relative error = 3.2170366776515453975803375534945e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5412 Order of pole = 0.0001574 TOP MAIN SOLVE Loop x[1] = 0.316 y[1] (analytic) = 0.062701641893298748074943049391798 y[1] (numeric) = 0.062701641893298748074943049391787 absolute error = 1.1e-32 relative error = 1.7543400248942488134274366348582e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5402 Order of pole = 0.0001464 TOP MAIN SOLVE Loop x[1] = 0.317 y[1] (analytic) = 0.063236839369218038690776070438108 y[1] (numeric) = 0.063236839369218038690776070438087 absolute error = 2.1e-32 relative error = 3.3208490825084191031145358251251e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5392 Order of pole = 0.0001361 TOP MAIN SOLVE Loop memory used=103.0MB, alloc=4.3MB, time=4.56 x[1] = 0.318 y[1] (analytic) = 0.0637746124792994243197957981432 y[1] (numeric) = 0.063774612479299424319795798143184 absolute error = 1.6e-32 relative error = 2.5088353151802268545505822974927e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5382 Order of pole = 0.0001266 TOP MAIN SOLVE Loop x[1] = 0.319 y[1] (analytic) = 0.064314966769947656929908292522105 y[1] (numeric) = 0.064314966769947656929908292522098 absolute error = 7e-33 relative error = 1.0883936277287914062299930797919e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5372 Order of pole = 0.0001177 TOP MAIN SOLVE Loop x[1] = 0.32 y[1] (analytic) = 0.064857907826218788749162813454618 y[1] (numeric) = 0.064857907826218788749162813454595 absolute error = 2.3e-32 relative error = 3.5462136801616436455640747909580e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5362 Order of pole = 0.0001095 TOP MAIN SOLVE Loop x[1] = 0.321 y[1] (analytic) = 0.065403441272077173750033486544065 y[1] (numeric) = 0.06540344127207717375003348654406 absolute error = 5e-33 relative error = 7.6448576753019574303833990116064e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.5352 Order of pole = 0.0001018 TOP MAIN SOLVE Loop x[1] = 0.322 y[1] (analytic) = 0.06595157277065501602485411943231 y[1] (numeric) = 0.065951572770655016024854119432299 absolute error = 1.1e-32 relative error = 1.6678904744625623127732649101437e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5342 Order of pole = 9.465e-05 TOP MAIN SOLVE Loop x[1] = 0.323 y[1] (analytic) = 0.066502308024514492838913737820598 y[1] (numeric) = 0.066502308024514492838913737820589 absolute error = 9e-33 relative error = 1.3533364882136668452325804688696e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5332 Order of pole = 8.800e-05 TOP MAIN SOLVE Loop x[1] = 0.324 y[1] (analytic) = 0.06705565277591248051850484649307 y[1] (numeric) = 0.067055652775912480518504846493064 absolute error = 6e-33 relative error = 8.9477915009654503295785086363762e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.5322 Order of pole = 8.181e-05 TOP MAIN SOLVE Loop x[1] = 0.325 y[1] (analytic) = 0.06761161280706791170753602187231 y[1] (numeric) = 0.067611612807067911707536021872288 absolute error = 2.2e-32 relative error = 3.2538788954462253451816970210778e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5312 Order of pole = 7.605e-05 TOP MAIN SOLVE Loop x[1] = 0.326 y[1] (analytic) = 0.068170193940431792908269457990355 y[1] (numeric) = 0.06817019394043179290826945799035 absolute error = 5e-33 relative error = 7.3345837982639158490092682903950e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.5302 Order of pole = 7.069e-05 TOP MAIN SOLVE Loop x[1] = 0.327 y[1] (analytic) = 0.068731402038959911609418541832495 y[1] (numeric) = 0.068731402038959911609418541832475 absolute error = 2.0e-32 relative error = 2.9098780770779476799099538764663e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5292 Order of pole = 6.570e-05 TOP MAIN SOLVE Loop x[1] = 0.328 y[1] (analytic) = 0.06929524300638826269833826405612 y[1] (numeric) = 0.069295243006388262698338264056107 absolute error = 1.3e-32 relative error = 1.8760306531866180678132373275098e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5282 Order of pole = 6.107e-05 TOP MAIN SOLVE Loop x[1] = 0.329 y[1] (analytic) = 0.069861722787511224253461964834408 y[1] (numeric) = 0.069861722787511224253461964834391 absolute error = 1.7e-32 relative error = 2.4333782966827997527390519047175e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5272 Order of pole = 5.675e-05 TOP MAIN SOLVE Loop memory used=106.8MB, alloc=4.3MB, time=4.74 x[1] = 0.33 y[1] (analytic) = 0.070430847368462513218583148907245 y[1] (numeric) = 0.070430847368462513218583148907233 absolute error = 1.2e-32 relative error = 1.7037988961316051858967569516737e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5262 Order of pole = 5.274e-05 TOP MAIN SOLVE Loop x[1] = 0.331 y[1] (analytic) = 0.071002622776998951872154384462105 y[1] (numeric) = 0.071002622776998951872154384462088 absolute error = 1.7e-32 relative error = 2.3942777513152781419425634029080e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5252 Order of pole = 4.901e-05 TOP MAIN SOLVE Loop x[1] = 0.332 y[1] (analytic) = 0.07157705508278707642258210202729 y[1] (numeric) = 0.071577055082787076422582102027271 absolute error = 1.9e-32 relative error = 2.6544819395020261843978045524509e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5242 Order of pole = 4.554e-05 TOP MAIN SOLVE Loop x[1] = 0.333 y[1] (analytic) = 0.072154150397692619484643917559318 y[1] (numeric) = 0.072154150397692619484643917559301 absolute error = 1.7e-32 relative error = 2.3560668244724608757040348354510e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5232 Order of pole = 4.231e-05 TOP MAIN SOLVE Loop x[1] = 0.334 y[1] (analytic) = 0.072733914876072898622753456707838 y[1] (numeric) = 0.072733914876072898622753456707817 absolute error = 2.1e-32 relative error = 2.8872363100186044830907675913936e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5222 Order of pole = 3.931e-05 TOP MAIN SOLVE Loop x[1] = 0.335 y[1] (analytic) = 0.073316354715072143583958189483712 y[1] (numeric) = 0.0733163547150721435839581894837 absolute error = 1.2e-32 relative error = 1.6367425858303178940835480175960e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5212 Order of pole = 3.652e-05 TOP MAIN SOLVE Loop x[1] = 0.336 y[1] (analytic) = 0.073901476154919795287392271467472 y[1] (numeric) = 0.073901476154919795287392271467457 absolute error = 1.5e-32 relative error = 2.0297294154930645020272135869285e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5202 Order of pole = 3.392e-05 TOP MAIN SOLVE Loop x[1] = 0.337 y[1] (analytic) = 0.074489285479231810087534790441305 y[1] (numeric) = 0.074489285479231810087534790441302 absolute error = 3e-33 relative error = 4.0274248580843526054613462491421e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.5192 Order of pole = 3.151e-05 TOP MAIN SOLVE Loop x[1] = 0.338 y[1] (analytic) = 0.075079789015315003286162329404145 y[1] (numeric) = 0.075079789015315003286162329404141 absolute error = 4e-33 relative error = 5.3276654775682279248742826552016e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.5182 Order of pole = 2.926e-05 TOP MAIN SOLVE Loop x[1] = 0.339 y[1] (analytic) = 0.075672993134474466332453851624682 y[1] (numeric) = 0.075672993134474466332453851624673 absolute error = 9e-33 relative error = 1.1893278734206504680929668338513e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5172 Order of pole = 2.718e-05 TOP MAIN SOLVE Loop x[1] = 0.34 y[1] (analytic) = 0.076268904252324092622428392360612 y[1] (numeric) = 0.076268904252324092622428392360603 absolute error = 9e-33 relative error = 1.1800353090461174239833255572900e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5162 Order of pole = 2.524e-05 TOP MAIN SOLVE Loop x[1] = 0.341 y[1] (analytic) = 0.076867528829100247287897084843305 y[1] (numeric) = 0.076867528829100247287897084843286 absolute error = 1.9e-32 relative error = 2.4717849382465180414974768906803e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5152 Order of pole = 2.344e-05 TOP MAIN SOLVE Loop memory used=110.6MB, alloc=4.3MB, time=4.91 x[1] = 0.342 y[1] (analytic) = 0.077468873369978616851518263741472 y[1] (numeric) = 0.07746887336997861685151826374147 absolute error = 2e-33 relative error = 2.5816820524139139741649685531293e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.5142 Order of pole = 2.176e-05 TOP MAIN SOLVE Loop x[1] = 0.343 y[1] (analytic) = 0.078072944425394275118487867187678 y[1] (numeric) = 0.078072944425394275118487867187668 absolute error = 1.0e-32 relative error = 1.2808534471958976761153611929440e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5132 Order of pole = 2.021e-05 TOP MAIN SOLVE Loop x[1] = 0.344 y[1] (analytic) = 0.078679748591365002177009722419838 y[1] (numeric) = 0.078679748591365002177009722419828 absolute error = 1.0e-32 relative error = 1.2709750830466541052875548391525e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5122 Order of pole = 1.876e-05 TOP MAIN SOLVE Loop x[1] = 0.345 y[1] (analytic) = 0.07928929250981789388910676274604 y[1] (numeric) = 0.079289292509817893889106762746023 absolute error = 1.7e-32 relative error = 2.1440473816682116354306517487571e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5112 Order of pole = 1.742e-05 TOP MAIN SOLVE Loop x[1] = 0.346 y[1] (analytic) = 0.079901582868919299770692642002915 y[1] (numeric) = 0.079901582868919299770692642002908 absolute error = 7e-33 relative error = 8.7607776325078423868320795154453e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.5102 Order of pole = 1.617e-05 TOP MAIN SOLVE Loop x[1] = 0.347 y[1] (analytic) = 0.080516626403408127685264145712492 y[1] (numeric) = 0.080516626403408127685264145712483 absolute error = 9e-33 relative error = 1.1177815566821917631982873080195e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5092 Order of pole = 1.501e-05 TOP MAIN SOLVE Loop x[1] = 0.348 y[1] (analytic) = 0.081134429894932554309241564602398 y[1] (numeric) = 0.081134429894932554309241564602388 absolute error = 1.0e-32 relative error = 1.2325223721852483267857842076308e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5082 Order of pole = 1.393e-05 TOP MAIN SOLVE Loop x[1] = 0.349 y[1] (analytic) = 0.081755000172390180869022934825045 y[1] (numeric) = 0.081755000172390180869022934825034 absolute error = 1.1e-32 relative error = 1.3454834538322043182385007397014e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5072 Order of pole = 1.293e-05 TOP MAIN SOLVE Loop x[1] = 0.35 y[1] (analytic) = 0.082378344112271674200377780050052 y[1] (numeric) = 0.082378344112271674200377780050035 absolute error = 1.7e-32 relative error = 2.0636491523586666746117402904036e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5062 Order of pole = 1.200e-05 TOP MAIN SOLVE Loop x[1] = 0.351 y[1] (analytic) = 0.083004468639007933740038677452185 y[1] (numeric) = 0.083004468639007933740038677452176 absolute error = 9e-33 relative error = 1.0842789728757388571528784446493e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5052 Order of pole = 1.113e-05 TOP MAIN SOLVE Loop x[1] = 0.352 y[1] (analytic) = 0.083633380725320825627409584387308 y[1] (numeric) = 0.083633380725320825627409584387305 absolute error = 3e-33 relative error = 3.5870844559697687789344394130892e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.5042 Order of pole = 1.033e-05 TOP MAIN SOLVE Loop x[1] = 0.353 y[1] (analytic) = 0.084265087392577525671356450951565 y[1] (numeric) = 0.084265087392577525671356450951554 absolute error = 1.1e-32 relative error = 1.3054042119190791849991308322367e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5032 Order of pole = 9.583e-06 TOP MAIN SOLVE Loop memory used=114.4MB, alloc=4.3MB, time=5.09 x[1] = 0.354 y[1] (analytic) = 0.08489959571114851352323939245404 y[1] (numeric) = 0.084899595711148513523239392454024 absolute error = 1.6e-32 relative error = 1.8845790567055638511209575002867e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5022 Order of pole = 8.890e-06 TOP MAIN SOLVE Loop x[1] = 0.355 y[1] (analytic) = 0.08553691280076926099285100188719 y[1] (numeric) = 0.085536912800769260992851001887172 absolute error = 1.8e-32 relative error = 2.1043546476741816902985016162945e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.5012 Order of pole = 8.247e-06 TOP MAIN SOLVE Loop x[1] = 0.356 y[1] (analytic) = 0.086177045830905658048909923080858 y[1] (numeric) = 0.086177045830905658048909923080854 absolute error = 4e-33 relative error = 4.6416072417342957211189975185649e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.5002 Order of pole = 7.650e-06 TOP MAIN SOLVE Loop x[1] = 0.357 y[1] (analytic) = 0.086820002021123220660393610489625 y[1] (numeric) = 0.086820002021123220660393610489611 absolute error = 1.4e-32 relative error = 1.6125316371904499426959279965059e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4992 Order of pole = 7.096e-06 TOP MAIN SOLVE Loop x[1] = 0.358 y[1] (analytic) = 0.087465788641460125259453728372322 y[1] (numeric) = 0.087465788641460125259453728372302 absolute error = 2.0e-32 relative error = 2.2866083197379064463652177899900e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4982 Order of pole = 6.581e-06 TOP MAIN SOLVE Loop x[1] = 0.359 y[1] (analytic) = 0.088114413012804115241119849899682 y[1] (numeric) = 0.088114413012804115241119849899668 absolute error = 1.4e-32 relative error = 1.5888433595949423906808337000634e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4972 Order of pole = 6.103e-06 TOP MAIN SOLVE Loop x[1] = 0.36 y[1] (analytic) = 0.0887658825072733255596435450241 y[1] (numeric) = 0.088765882507273325559643545024088 absolute error = 1.2e-32 relative error = 1.3518707482029191106589997054420e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4962 Order of pole = 5.659e-06 TOP MAIN SOLVE Loop x[1] = 0.361 y[1] (analytic) = 0.089420204548601072136350793931962 y[1] (numeric) = 0.089420204548601072136350793931949 absolute error = 1.3e-32 relative error = 1.4538101389529171627447027555259e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4952 Order of pole = 5.248e-06 TOP MAIN SOLVE Loop x[1] = 0.362 y[1] (analytic) = 0.090077386612524653459444870751055 y[1] (numeric) = 0.090077386612524653459444870751049 absolute error = 6e-33 relative error = 6.6609392497247921287137149294282e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4942 Order of pole = 4.865e-06 TOP MAIN SOLVE Loop x[1] = 0.363 y[1] (analytic) = 0.090737436227178212432527174476172 y[1] (numeric) = 0.090737436227178212432527174476166 absolute error = 6e-33 relative error = 6.6124857054346049375224577530664e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4932 Order of pole = 4.511e-06 TOP MAIN SOLVE Loop x[1] = 0.364 y[1] (analytic) = 0.091400360973489707215876615184925 y[1] (numeric) = 0.091400360973489707215876615184919 absolute error = 6e-33 relative error = 6.5645254965024426205616702608723e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4922 Order of pole = 4.181e-06 TOP MAIN SOLVE Loop x[1] = 0.365 y[1] (analytic) = 0.092066168485582040502949765225625 y[1] (numeric) = 0.092066168485582040502949765225613 absolute error = 1.2e-32 relative error = 1.3034103837914414579068716730826e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4912 Order of pole = 3.876e-06 TOP MAIN SOLVE Loop memory used=118.2MB, alloc=4.3MB, time=5.26 x[1] = 0.366 y[1] (analytic) = 0.092734866451178397384338815789732 y[1] (numeric) = 0.092734866451178397384338815789723 absolute error = 9e-33 relative error = 9.7050875732248768466192432821440e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4902 Order of pole = 3.592e-06 TOP MAIN SOLVE Loop x[1] = 0.367 y[1] (analytic) = 0.093406462612011842672761376525328 y[1] (numeric) = 0.093406462612011842672761376525313 absolute error = 1.5e-32 relative error = 1.6058846016154600293661588062997e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4892 Order of pole = 3.329e-06 TOP MAIN SOLVE Loop x[1] = 0.368 y[1] (analytic) = 0.09408096476423922929576852985211 y[1] (numeric) = 0.094080964764239229295768529852104 absolute error = 6e-33 relative error = 6.3774856210665029336996386849027e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4882 Order of pole = 3.085e-06 TOP MAIN SOLVE Loop x[1] = 0.369 y[1] (analytic) = 0.09475838075885947010796288191076 y[1] (numeric) = 0.094758380758859470107962881910748 absolute error = 1.2e-32 relative error = 1.2663787523488317448713495025308e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4872 Order of pole = 2.859e-06 TOP MAIN SOLVE Loop x[1] = 0.37 y[1] (analytic) = 0.095438718502136226231838686160785 y[1] (numeric) = 0.095438718502136226231838686160772 absolute error = 1.3e-32 relative error = 1.3621306115619121693926660514634e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4862 Order of pole = 2.649e-06 TOP MAIN SOLVE Loop x[1] = 0.371 y[1] (analytic) = 0.09612198595602506580611807033101 y[1] (numeric) = 0.096121985956025065806118070331003 absolute error = 7e-33 relative error = 7.2824129988350805860008243120856e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4852 Order of pole = 2.454e-06 TOP MAIN SOLVE Loop x[1] = 0.372 y[1] (analytic) = 0.096808191138605147802892262498435 y[1] (numeric) = 0.096808191138605147802892262498417 absolute error = 1.8e-32 relative error = 1.8593467957921552583540599712914e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4842 Order of pole = 2.274e-06 TOP MAIN SOLVE Loop x[1] = 0.373 y[1] (analytic) = 0.097497342124515486370220556577055 y[1] (numeric) = 0.097497342124515486370220556577031 absolute error = 2.4e-32 relative error = 2.4616055655495919648142891613241e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4832 Order of pole = 2.106e-06 TOP MAIN SOLVE Loop x[1] = 0.374 y[1] (analytic) = 0.098189447045395851965333538702505 y[1] (numeric) = 0.098189447045395851965333538702483 absolute error = 2.2e-32 relative error = 2.2405666456018187803603364893190e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4822 Order of pole = 1.951e-06 TOP MAIN SOLVE Loop x[1] = 0.375 y[1] (analytic) = 0.098884514090332366365476771032512 y[1] (numeric) = 0.098884514090332366365476771032497 absolute error = 1.5e-32 relative error = 1.5169210404671952255842315825898e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4812 Order of pole = 1.807e-06 TOP MAIN SOLVE Loop x[1] = 0.376 y[1] (analytic) = 0.09958255150630784947896776978744 y[1] (numeric) = 0.099582551506307849478967769787423 absolute error = 1.7e-32 relative error = 1.7071263733308912434870942147033e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4802 Order of pole = 1.673e-06 TOP MAIN SOLVE Loop x[1] = 0.377 y[1] (analytic) = 0.10028356759865697672847902297692 y[1] (numeric) = 0.10028356759865697672847902297691 absolute error = 1e-32 relative error = 9.9717234233437089708675404619669e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4792 Order of pole = 1.550e-06 TOP MAIN SOLVE Loop memory used=122.0MB, alloc=4.3MB, time=5.44 x[1] = 0.378 y[1] (analytic) = 0.10098757073152630664216462509892 y[1] (numeric) = 0.10098757073152630664216462509891 absolute error = 1e-32 relative error = 9.9022086852498169119153636356980e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4782 Order of pole = 1.435e-06 TOP MAIN SOLVE Loop x[1] = 0.379 y[1] (analytic) = 0.10169456932833923916628499117124 y[1] (numeric) = 0.10169456932833923916628499117122 absolute error = 2e-32 relative error = 1.9666733565119290336366857993117e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4772 Order of pole = 1.328e-06 TOP MAIN SOLVE Loop x[1] = 0.38 y[1] (analytic) = 0.1024045718722659661057257822598 y[1] (numeric) = 0.10240457187226596610572578225979 absolute error = 1e-32 relative error = 9.7651890117498560924687060889083e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4762 Order of pole = 1.230e-06 TOP MAIN SOLVE Loop x[1] = 0.381 y[1] (analytic) = 0.10311758690669847600653209173264 y[1] (numeric) = 0.10311758690669847600653209173264 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4752 Order of pole = 1.138e-06 TOP MAIN SOLVE Loop x[1] = 0.382 y[1] (analytic) = 0.10383362303573067671757143218573 y[1] (numeric) = 0.10383362303573067671757143218573 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4742 Order of pole = 1.054e-06 TOP MAIN SOLVE Loop x[1] = 0.383 y[1] (analytic) = 0.1045526889246436998069894538043 y[1] (numeric) = 0.1045526889246436998069894538043 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4732 Order of pole = 9.753e-07 TOP MAIN SOLVE Loop x[1] = 0.384 y[1] (analytic) = 0.1052747933003964519635270819921 y[1] (numeric) = 0.1052747933003964519635270819921 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4722 Order of pole = 9.026e-07 TOP MAIN SOLVE Loop x[1] = 0.385 y[1] (analytic) = 0.10599994495212147948332963447959 y[1] (numeric) = 0.10599994495212147948332963447959 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4712 Order of pole = 8.352e-07 TOP MAIN SOLVE Loop x[1] = 0.386 y[1] (analytic) = 0.10672815273162621292990664462923 y[1] (numeric) = 0.10672815273162621292990664462922 absolute error = 1e-32 relative error = 9.3695990645931517646826361763215e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4702 Order of pole = 7.728e-07 TOP MAIN SOLVE Loop x[1] = 0.387 y[1] (analytic) = 0.1074594255538996600587113374739 y[1] (numeric) = 0.10745942555389966005871133747389 absolute error = 1e-32 relative error = 9.3058379462341206927122872262617e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4692 Order of pole = 7.150e-07 TOP MAIN SOLVE Loop x[1] = 0.388 y[1] (analytic) = 0.10819377239762461611872347216127 y[1] (numeric) = 0.10819377239762461611872347216127 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4682 Order of pole = 6.615e-07 TOP MAIN SOLVE Loop x[1] = 0.389 y[1] (analytic) = 0.10893120230569546168176796618731 y[1] (numeric) = 0.10893120230569546168176796618732 absolute error = 1e-32 relative error = 9.1801061480408819209302955860268e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4672 Order of pole = 6.119e-07 TOP MAIN SOLVE Loop memory used=125.8MB, alloc=4.3MB, time=5.61 x[1] = 0.39 y[1] (analytic) = 0.10967172438574161920642079608678 y[1] (numeric) = 0.10967172438574161920642079608678 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4662 Order of pole = 5.659e-07 TOP MAIN SOLVE Loop x[1] = 0.391 y[1] (analytic) = 0.1104153478106567406175867915348 y[1] (numeric) = 0.11041534781065674061758679153481 absolute error = 1e-32 relative error = 9.0567119501794927996299669921090e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4652 Order of pole = 5.234e-07 TOP MAIN SOLVE Loop x[1] = 0.392 y[1] (analytic) = 0.11116208181913369927553216394524 y[1] (numeric) = 0.11116208181913369927553216394525 absolute error = 1e-32 relative error = 8.9958732657332769222450819340583e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4642 Order of pole = 4.840e-07 TOP MAIN SOLVE Loop x[1] = 0.393 y[1] (analytic) = 0.11191193571620546081967656429846 y[1] (numeric) = 0.11191193571620546081967656429846 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4632 Order of pole = 4.476e-07 TOP MAIN SOLVE Loop x[1] = 0.394 y[1] (analytic) = 0.11266491887379190850316152455607 y[1] (numeric) = 0.11266491887379190850316152455607 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4622 Order of pole = 4.138e-07 TOP MAIN SOLVE Loop x[1] = 0.395 y[1] (analytic) = 0.11342104073125269978448861250933 y[1] (numeric) = 0.11342104073125269978448861250933 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4612 Order of pole = 3.826e-07 TOP MAIN SOLVE Loop x[1] = 0.396 y[1] (analytic) = 0.1141803107959462321127439540274 y[1] (numeric) = 0.1141803107959462321127439540274 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4602 Order of pole = 3.537e-07 TOP MAIN SOLVE Loop x[1] = 0.397 y[1] (analytic) = 0.11494273864379479703348669945494 y[1] (numeric) = 0.11494273864379479703348669945494 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4592 Order of pole = 3.269e-07 TOP MAIN SOLVE Loop x[1] = 0.398 y[1] (analytic) = 0.11570833391985600295367679913655 y[1] (numeric) = 0.11570833391985600295367679913656 absolute error = 1e-32 relative error = 8.6424198337575067810564679990456e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4582 Order of pole = 3.022e-07 TOP MAIN SOLVE Loop x[1] = 0.399 y[1] (analytic) = 0.11647710633890054813646009495594 y[1] (numeric) = 0.11647710633890054813646009495594 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4572 Order of pole = 2.792e-07 TOP MAIN SOLVE Loop x[1] = 0.4 y[1] (analytic) = 0.11724906568599642675063315015026 y[1] (numeric) = 0.11724906568599642675063315015026 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4562 Order of pole = 2.580e-07 TOP MAIN SOLVE Loop x[1] = 0.401 y[1] (analytic) = 0.11802422181709965207560249543746 y[1] (numeric) = 0.11802422181709965207560249543747 absolute error = 1e-32 relative error = 8.4728370550045637688428247391135e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4552 Order of pole = 2.384e-07 TOP MAIN SOLVE Loop memory used=129.7MB, alloc=4.3MB, time=5.79 x[1] = 0.402 y[1] (analytic) = 0.11880258465965158226106850108913 y[1] (numeric) = 0.11880258465965158226106850108913 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4542 Order of pole = 2.203e-07 TOP MAIN SOLVE Loop x[1] = 0.403 y[1] (analytic) = 0.11958416421318293536194792304177 y[1] (numeric) = 0.11958416421318293536194792304177 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4532 Order of pole = 2.035e-07 TOP MAIN SOLVE Loop x[1] = 0.404 y[1] (analytic) = 0.12036897054992458171365617633114 y[1] (numeric) = 0.12036897054992458171365617633115 absolute error = 1e-32 relative error = 8.3077889212754969366459269878651e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4522 Order of pole = 1.880e-07 TOP MAIN SOLVE Loop x[1] = 0.405 y[1] (analytic) = 0.12115701381542520308126548911967 y[1] (numeric) = 0.12115701381542520308126548911967 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4512 Order of pole = 1.736e-07 TOP MAIN SOLVE Loop x[1] = 0.406 y[1] (analytic) = 0.12194830422917590940871352737941 y[1] (numeric) = 0.12194830422917590940871352737941 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4502 Order of pole = 1.603e-07 TOP MAIN SOLVE Loop x[1] = 0.407 y[1] (analytic) = 0.12274285208524190541164466216444 y[1] (numeric) = 0.12274285208524190541164466216445 absolute error = 1e-32 relative error = 8.1471139297425196297621918222587e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4492 Order of pole = 1.480e-07 TOP MAIN SOLVE Loop x[1] = 0.408 y[1] (analytic) = 0.12354066775290130070011941194528 y[1] (numeric) = 0.1235406677529013007001194119453 absolute error = 2e-32 relative error = 1.6189001050247527417291970671118e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4482 Order of pole = 1.367e-07 TOP MAIN SOLVE Loop x[1] = 0.409 y[1] (analytic) = 0.1243417616772911585858344565938 y[1] (numeric) = 0.12434176167729115858583445659382 absolute error = 2e-32 relative error = 1.6084700530387168493358306772725e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4472 Order of pole = 1.262e-07 TOP MAIN SOLVE Loop x[1] = 0.41 y[1] (analytic) = 0.12514614438006088022317507667169 y[1] (numeric) = 0.1251461443800608802231750766717 absolute error = 1e-32 relative error = 7.9906576822939395376439986816777e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4462 Order of pole = 1.165e-07 TOP MAIN SOLVE Loop x[1] = 0.411 y[1] (analytic) = 0.12595382646003302225490465603081 y[1] (numeric) = 0.12595382646003302225490465603082 absolute error = 1e-32 relative error = 7.9394173889374811339509982512829e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4452 Order of pole = 1.075e-07 TOP MAIN SOLVE Loop x[1] = 0.412 y[1] (analytic) = 0.12676481859387164768212466475606 y[1] (numeric) = 0.12676481859387164768212466475607 absolute error = 1e-32 relative error = 7.8886240763992563126142363139922e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4442 Order of pole = 9.924e-08 TOP MAIN SOLVE Loop x[1] = 0.413 y[1] (analytic) = 0.12757913153675831125486820944673 y[1] (numeric) = 0.12757913153675831125486820944674 absolute error = 1e-32 relative error = 7.8382725133371701880120901257222e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4432 Order of pole = 9.158e-08 TOP MAIN SOLVE Loop memory used=133.5MB, alloc=4.3MB, time=5.95 x[1] = 0.414 y[1] (analytic) = 0.1283967761230757822848882277957 y[1] (numeric) = 0.12839677612307578228488822779572 absolute error = 2e-32 relative error = 1.5576715088881075993739432448983e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4422 Order of pole = 8.451e-08 TOP MAIN SOLVE Loop x[1] = 0.415 y[1] (analytic) = 0.12921776326709960941644798835709 y[1] (numeric) = 0.12921776326709960941644798835711 absolute error = 2e-32 relative error = 1.5477748178212151118522265581085e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4412 Order of pole = 7.797e-08 TOP MAIN SOLVE Loop x[1] = 0.416 y[1] (analytic) = 0.13004210396369763355481017381379 y[1] (numeric) = 0.1300421039636976335548101738138 absolute error = 1e-32 relative error = 7.6898171401406928921873571108074e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4402 Order of pole = 7.193e-08 TOP MAIN SOLVE Loop x[1] = 0.417 y[1] (analytic) = 0.13086980928903755684625841142759 y[1] (numeric) = 0.1308698092890375568462584114276 absolute error = 1e-32 relative error = 7.6411817624904724354840850589738e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4392 Order of pole = 6.635e-08 TOP MAIN SOLVE Loop x[1] = 0.418 y[1] (analytic) = 0.13170089040130267732849243546835 y[1] (numeric) = 0.13170089040130267732849243546835 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4382 Order of pole = 6.120e-08 TOP MAIN SOLVE Loop x[1] = 0.419 y[1] (analytic) = 0.13253535854141590062675007207776 y[1] (numeric) = 0.13253535854141590062675007207777 absolute error = 1e-32 relative error = 7.5451563341680669694706524592929e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4372 Order of pole = 5.644e-08 TOP MAIN SOLVE Loop x[1] = 0.42 y[1] (analytic) = 0.13337322503377214185967541426472 y[1] (numeric) = 0.13337322503377214185967541426473 absolute error = 1e-32 relative error = 7.4977567629993553426532577072440e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4362 Order of pole = 5.205e-08 TOP MAIN SOLVE Loop x[1] = 0.421 y[1] (analytic) = 0.13421450128697923274043729588975 y[1] (numeric) = 0.13421450128697923274043729588976 absolute error = 1e-32 relative error = 7.4507597197845759772475464582049e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4352 Order of pole = 4.799e-08 TOP MAIN SOLVE Loop x[1] = 0.422 y[1] (analytic) = 0.13505919879460745071358515341637 y[1] (numeric) = 0.13505919879460745071358515341638 absolute error = 1e-32 relative error = 7.4041606119754895290005921451064e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4342 Order of pole = 4.424e-08 TOP MAIN SOLVE Loop x[1] = 0.423 y[1] (analytic) = 0.13590732913594778885730592785968 y[1] (numeric) = 0.13590732913594778885730592785969 absolute error = 1e-32 relative error = 7.3579549120540975328452856361057e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4332 Order of pole = 4.078e-08 TOP MAIN SOLVE Loop x[1] = 0.424 y[1] (analytic) = 0.13675890397677908720482722024606 y[1] (numeric) = 0.13675890397677908720482722024608 absolute error = 2e-32 relative error = 1.4624276312857764968293260645246e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4322 Order of pole = 3.759e-08 TOP MAIN SOLVE Loop x[1] = 0.425 y[1] (analytic) = 0.13761393507014414809842636349008 y[1] (numeric) = 0.13761393507014414809842636349008 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4312 Order of pole = 3.465e-08 TOP MAIN SOLVE Loop memory used=137.3MB, alloc=4.3MB, time=6.13 x[1] = 0.426 y[1] (analytic) = 0.13847243425713496018559720222546 y[1] (numeric) = 0.13847243425713496018559720222547 absolute error = 1e-32 relative error = 7.2216539368626993475874664819127e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4302 Order of pole = 3.193e-08 TOP MAIN SOLVE Loop x[1] = 0.427 y[1] (analytic) = 0.13933441346768715770015830159899 y[1] (numeric) = 0.139334413467687157700158301599 absolute error = 1e-32 relative error = 7.1769778557391965025349367795964e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4292 Order of pole = 2.942e-08 TOP MAIN SOLVE Loop x[1] = 0.428 y[1] (analytic) = 0.14019988472138384374223793435189 y[1] (numeric) = 0.14019988472138384374223793435189 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4282 Order of pole = 2.710e-08 TOP MAIN SOLVE Loop x[1] = 0.429 y[1] (analytic) = 0.14106886012826890838094065409517 y[1] (numeric) = 0.14106886012826890838094065409518 absolute error = 1e-32 relative error = 7.0887366573369593201747718171566e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4272 Order of pole = 2.497e-08 TOP MAIN SOLVE Loop x[1] = 0.43 y[1] (analytic) = 0.14194135188966997455290438642898 y[1] (numeric) = 0.14194135188966997455290438642898 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4262 Order of pole = 2.300e-08 TOP MAIN SOLVE Loop x[1] = 0.431 y[1] (analytic) = 0.14281737229903110691973178016084 y[1] (numeric) = 0.14281737229903110691973178016084 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4252 Order of pole = 2.118e-08 TOP MAIN SOLVE Loop x[1] = 0.432 y[1] (analytic) = 0.14369693374275542107828076381651 y[1] (numeric) = 0.14369693374275542107828076381651 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4242 Order of pole = 1.950e-08 TOP MAIN SOLVE Loop x[1] = 0.433 y[1] (analytic) = 0.14458004870105773279090274820292 y[1] (numeric) = 0.14458004870105773279090274820292 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4232 Order of pole = 1.796e-08 TOP MAIN SOLVE Loop x[1] = 0.434 y[1] (analytic) = 0.14546672974882738921881932465521 y[1] (numeric) = 0.14546672974882738921881932465521 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4222 Order of pole = 1.653e-08 TOP MAIN SOLVE Loop x[1] = 0.435 y[1] (analytic) = 0.1463569895565014265018475123511 y[1] (numeric) = 0.1463569895565014265018475123511 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4212 Order of pole = 1.522e-08 TOP MAIN SOLVE Loop x[1] = 0.436 y[1] (analytic) = 0.14725084089094820043255930510674 y[1] (numeric) = 0.14725084089094820043255930510675 absolute error = 1e-32 relative error = 6.7911326954022981881299048196365e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4202 Order of pole = 1.401e-08 TOP MAIN SOLVE Loop x[1] = 0.437 y[1] (analytic) = 0.14814829661636163942365554543482 y[1] (numeric) = 0.14814829661636163942365554543484 absolute error = 2e-32 relative error = 1.3499986470847603988851825569014e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4192 Order of pole = 1.289e-08 TOP MAIN SOLVE Loop memory used=141.1MB, alloc=4.3MB, time=6.30 x[1] = 0.438 y[1] (analytic) = 0.14904936969516627146483207527168 y[1] (numeric) = 0.14904936969516627146483207527168 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4182 Order of pole = 1.187e-08 TOP MAIN SOLVE Loop x[1] = 0.439 y[1] (analytic) = 0.1499540731889331793107263245765 y[1] (numeric) = 0.14995407318893317931072632457651 absolute error = 1e-32 relative error = 6.6687084834305214525854157999886e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4172 Order of pole = 1.092e-08 TOP MAIN SOLVE Loop x[1] = 0.44 y[1] (analytic) = 0.15086242025930704073568785140684 y[1] (numeric) = 0.15086242025930704073568785140685 absolute error = 1e-32 relative error = 6.6285559934751726837017829962608e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4162 Order of pole = 1.004e-08 TOP MAIN SOLVE Loop x[1] = 0.441 y[1] (analytic) = 0.15177442416894441333517453555042 y[1] (numeric) = 0.15177442416894441333517453555044 absolute error = 2e-32 relative error = 1.3177450752662670710173480705123e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4152 Order of pole = 9.239e-09 TOP MAIN SOLVE Loop x[1] = 0.442 y[1] (analytic) = 0.15269009828246342604862035190147 y[1] (numeric) = 0.15269009828246342604862035190148 absolute error = 1e-32 relative error = 6.5492131529713656670062581636658e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4142 Order of pole = 8.498e-09 TOP MAIN SOLVE Loop x[1] = 0.443 y[1] (analytic) = 0.15360945606740504232576029130666 y[1] (numeric) = 0.15360945606740504232576029130668 absolute error = 2e-32 relative error = 1.3020031781913114819294733451544e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4132 Order of pole = 7.815e-09 TOP MAIN SOLVE Loop x[1] = 0.444 y[1] (analytic) = 0.15453251109520606265876931750295 y[1] (numeric) = 0.15453251109520606265876931750297 absolute error = 2e-32 relative error = 1.2942260407376790406966052468016e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4122 Order of pole = 7.186e-09 TOP MAIN SOLVE Loop x[1] = 0.445 y[1] (analytic) = 0.15545927704218403705733910930397 y[1] (numeric) = 0.15545927704218403705733910930398 absolute error = 1e-32 relative error = 6.4325527496737872802179079619935e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4112 Order of pole = 6.607e-09 TOP MAIN SOLVE Loop x[1] = 0.446 y[1] (analytic) = 0.15638976769053426095417093520655 y[1] (numeric) = 0.15638976769053426095417093520656 absolute error = 1e-32 relative error = 6.3942802318039800250957202306119e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4102 Order of pole = 6.074e-09 TOP MAIN SOLVE Loop x[1] = 0.447 y[1] (analytic) = 0.15732399692933903099552663934506 y[1] (numeric) = 0.15732399692933903099552663934507 absolute error = 1e-32 relative error = 6.3563093966468636139425493883022e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4092 Order of pole = 5.583e-09 TOP MAIN SOLVE Loop x[1] = 0.448 y[1] (analytic) = 0.15826197875558934019670356110532 y[1] (numeric) = 0.15826197875558934019670356110533 absolute error = 1e-32 relative error = 6.3186370337523850025719967092139e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4082 Order of pole = 5.131e-09 TOP MAIN SOLVE Loop x[1] = 0.449 y[1] (analytic) = 0.15920372727521919502686513148508 y[1] (numeric) = 0.1592037272752191950268651314851 absolute error = 2e-32 relative error = 1.2562519949941582535113286684683e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4072 Order of pole = 4.715e-09 TOP MAIN SOLVE Loop memory used=144.9MB, alloc=4.3MB, time=6.47 x[1] = 0.45 y[1] (analytic) = 0.16014925670415274013288027113584 y[1] (numeric) = 0.16014925670415274013288027113585 absolute error = 1e-32 relative error = 6.2441750937834328611736485664157e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4062 Order of pole = 4.332e-09 TOP MAIN SOLVE Loop x[1] = 0.451 y[1] (analytic) = 0.16109858136936437961904731414012 y[1] (numeric) = 0.16109858136936437961904731414013 absolute error = 1e-32 relative error = 6.2073793046458627346901808507670e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4052 Order of pole = 3.980e-09 TOP MAIN SOLVE Loop x[1] = 0.452 y[1] (analytic) = 0.16205171570995208707018100661759 y[1] (numeric) = 0.16205171570995208707018100661761 absolute error = 2e-32 relative error = 1.2341739124685947016071400547575e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.4042 Order of pole = 3.656e-09 TOP MAIN SOLVE Loop x[1] = 0.453 y[1] (analytic) = 0.1630086742782240998409373474028 y[1] (numeric) = 0.16300867427822409984093734740281 absolute error = 1e-32 relative error = 6.1346428613559209251258413843637e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4032 Order of pole = 3.358e-09 TOP MAIN SOLVE Loop x[1] = 0.454 y[1] (analytic) = 0.16396947174079919653588890812468 y[1] (numeric) = 0.16396947174079919653588890812468 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.4022 Order of pole = 3.084e-09 TOP MAIN SOLVE Loop x[1] = 0.455 y[1] (analytic) = 0.16493412287972076007422710347312 y[1] (numeric) = 0.16493412287972076007422710347313 absolute error = 1e-32 relative error = 6.0630267560173479072210613368159e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4012 Order of pole = 2.831e-09 TOP MAIN SOLVE Loop x[1] = 0.456 y[1] (analytic) = 0.16590264259358483227157903303995 y[1] (numeric) = 0.16590264259358483227157903303996 absolute error = 1e-32 relative error = 6.0276315335718966256718505912681e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.4002 Order of pole = 2.599e-09 TOP MAIN SOLVE Loop x[1] = 0.457 y[1] (analytic) = 0.16687504589868236948084439946419 y[1] (numeric) = 0.1668750458986823694808443994642 absolute error = 1e-32 relative error = 5.9925077150669170905177714380902e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3992 Order of pole = 2.386e-09 TOP MAIN SOLVE Loop x[1] = 0.458 y[1] (analytic) = 0.16785134793015591251578115124434 y[1] (numeric) = 0.16785134793015591251578115124435 absolute error = 1e-32 relative error = 5.9576524843643603107585299136780e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3982 Order of pole = 2.190e-09 TOP MAIN SOLVE Loop x[1] = 0.459 y[1] (analytic) = 0.16883156394317088783693562384528 y[1] (numeric) = 0.1688315639431708878369356238453 absolute error = 2e-32 relative error = 1.1846126122916238755787477423089e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.3972 Order of pole = 2.010e-09 TOP MAIN SOLVE Loop x[1] = 0.46 y[1] (analytic) = 0.16981570931410176081110408931666 y[1] (numeric) = 0.16981570931410176081110408931666 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3962 Order of pole = 1.844e-09 TOP MAIN SOLVE Loop x[1] = 0.461 y[1] (analytic) = 0.17080379954173326576455025895404 y[1] (numeric) = 0.17080379954173326576455025895406 absolute error = 2e-32 relative error = 1.1709341392673943085977365981533e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.3952 Order of pole = 1.692e-09 TOP MAIN SOLVE Loop memory used=148.7MB, alloc=4.3MB, time=6.64 x[1] = 0.462 y[1] (analytic) = 0.17179585024847694153845354195997 y[1] (numeric) = 0.17179585024847694153845354195998 absolute error = 1e-32 relative error = 5.8208623698049162493424589902447e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3942 Order of pole = 1.552e-09 TOP MAIN SOLVE Loop x[1] = 0.463 y[1] (analytic) = 0.1727918771816032053243367313029 y[1] (numeric) = 0.1727918771816032053243367313029 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3932 Order of pole = 1.424e-09 TOP MAIN SOLVE Loop x[1] = 0.464 y[1] (analytic) = 0.17379189621448920170937636766562 y[1] (numeric) = 0.17379189621448920170937636766564 absolute error = 2e-32 relative error = 1.1508016447047995488893807411437e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.3922 Order of pole = 1.306e-09 TOP MAIN SOLVE Loop x[1] = 0.465 y[1] (analytic) = 0.17479592334788266809843883616969 y[1] (numeric) = 0.1747959233478826680984388361697 absolute error = 1e-32 relative error = 5.7209572216954862135974555984135e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3912 Order of pole = 1.197e-09 TOP MAIN SOLVE Loop x[1] = 0.466 y[1] (analytic) = 0.17580397471118206200336353701804 y[1] (numeric) = 0.17580397471118206200336353701807 absolute error = 3e-32 relative error = 1.7064460601237954510837364878881e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.3902 Order of pole = 1.097e-09 TOP MAIN SOLVE Loop x[1] = 0.467 y[1] (analytic) = 0.17681606656373320010243462075124 y[1] (numeric) = 0.17681606656373320010243462075125 absolute error = 1e-32 relative error = 5.6555946494802883453264366888706e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3892 Order of pole = 1.006e-09 TOP MAIN SOLVE Loop x[1] = 0.468 y[1] (analytic) = 0.17783221529614266347619971224456 y[1] (numeric) = 0.17783221529614266347619971224458 absolute error = 2e-32 relative error = 1.1246556180326578611324005515817e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.3882 Order of pole = 9.220e-10 TOP MAIN SOLVE Loop x[1] = 0.469 y[1] (analytic) = 0.17885243743160822802191568838609 y[1] (numeric) = 0.17885243743160822802191568838612 absolute error = 3e-32 relative error = 1.6773604224136875491829967383821e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.3872 Order of pole = 8.449e-10 TOP MAIN SOLVE Loop x[1] = 0.47 y[1] (analytic) = 0.17987674962726658374009035652307 y[1] (numeric) = 0.17987674962726658374009035652308 absolute error = 1e-32 relative error = 5.5593621858976218981929542316372e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3862 Order of pole = 7.742e-10 TOP MAIN SOLVE Loop x[1] = 0.471 y[1] (analytic) = 0.18090516867555861137506330333127 y[1] (numeric) = 0.1809051686755586113750633033313 absolute error = 3e-32 relative error = 1.6583274109654105461652887972020e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.3852 Order of pole = 7.093e-10 TOP MAIN SOLVE Loop x[1] = 0.472 y[1] (analytic) = 0.18193771150561248977960541410263 y[1] (numeric) = 0.18193771150561248977960541410264 absolute error = 1e-32 relative error = 5.4963866024507601128586526304260e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3842 Order of pole = 6.497e-10 TOP MAIN SOLVE Loop x[1] = 0.473 y[1] (analytic) = 0.18297439518464491236345008948398 y[1] (numeric) = 0.18297439518464491236345008948399 absolute error = 1e-32 relative error = 5.4652455552093516331267778752950e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3832 Order of pole = 5.950e-10 TOP MAIN SOLVE Loop memory used=152.5MB, alloc=4.3MB, time=6.82 x[1] = 0.474 y[1] (analytic) = 0.18401523691938069607989652606788 y[1] (numeric) = 0.18401523691938069607989652606791 absolute error = 3e-32 relative error = 1.6302997785527599180714711310478e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.3822 Order of pole = 5.449e-10 TOP MAIN SOLVE Loop x[1] = 0.475 y[1] (analytic) = 0.18506025405749107160560588000349 y[1] (numeric) = 0.1850602540574910716056058800035 absolute error = 1e-32 relative error = 5.4036454510072088869219755517360e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3812 Order of pole = 4.989e-10 TOP MAIN SOLVE Loop x[1] = 0.476 y[1] (analytic) = 0.18610946408905094867896859967036 y[1] (numeric) = 0.18610946408905094867896859967038 absolute error = 2e-32 relative error = 1.0746363758497666257619742601139e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.3802 Order of pole = 4.567e-10 TOP MAIN SOLVE Loop x[1] = 0.477 y[1] (analytic) = 0.18716288464801545598454606628662 y[1] (numeric) = 0.18716288464801545598454606628664 absolute error = 2e-32 relative error = 1.0685879327844643785094263300870e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.3792 Order of pole = 4.180e-10 TOP MAIN SOLVE Loop x[1] = 0.478 y[1] (analytic) = 0.18822053351371606050774069391802 y[1] (numeric) = 0.18822053351371606050774069391803 absolute error = 1e-32 relative error = 5.3129166161200351406968924642365e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3782 Order of pole = 3.825e-10 TOP MAIN SOLVE Loop x[1] = 0.479 y[1] (analytic) = 0.18928242861237657693775498067058 y[1] (numeric) = 0.18928242861237657693775498067059 absolute error = 1e-32 relative error = 5.2831105736066891077235996765777e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3772 Order of pole = 3.500e-10 TOP MAIN SOLVE Loop x[1] = 0.48 y[1] (analytic) = 0.19034858801864938347086328859739 y[1] (numeric) = 0.1903485880186493834708632885974 absolute error = 1e-32 relative error = 5.2535194004277305284229556142495e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3762 Order of pole = 3.202e-10 TOP MAIN SOLVE Loop x[1] = 0.481 y[1] (analytic) = 0.1914190299571721662629165498032 y[1] (numeric) = 0.19141902995717216626291654980322 absolute error = 2e-32 relative error = 1.0448281973048746946319276408412e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.3752 Order of pole = 2.929e-10 TOP MAIN SOLVE Loop x[1] = 0.482 y[1] (analytic) = 0.19249377280414552080278259944088 y[1] (numeric) = 0.19249377280414552080278259944088 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3742 Order of pole = 2.679e-10 TOP MAIN SOLVE Loop x[1] = 0.483 y[1] (analytic) = 0.19357283508893174463012539162313 y[1] (numeric) = 0.19357283508893174463012539162314 absolute error = 1e-32 relative error = 5.1660141235239818190974172501385e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3732 Order of pole = 2.450e-10 TOP MAIN SOLVE Loop x[1] = 0.484 y[1] (analytic) = 0.19465623549567516210465828267424 y[1] (numeric) = 0.19465623549567516210465828267425 absolute error = 1e-32 relative error = 5.1372615804142468560235698994076e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3722 Order of pole = 2.240e-10 TOP MAIN SOLVE Loop x[1] = 0.485 y[1] (analytic) = 0.1957439928649443283529669482349 y[1] (numeric) = 0.19574399286494432835296694823492 absolute error = 2e-32 relative error = 1.0217427215658778837292193152750e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.3712 Order of pole = 2.047e-10 TOP MAIN SOLVE Loop memory used=156.4MB, alloc=4.3MB, time=6.99 x[1] = 0.486 y[1] (analytic) = 0.19683612619539646607646966231104 y[1] (numeric) = 0.19683612619539646607646966231105 absolute error = 1e-32 relative error = 5.0803682196392851356731022411587e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3702 Order of pole = 1.871e-10 TOP MAIN SOLVE Loop x[1] = 0.487 y[1] (analytic) = 0.19793265464546449560343874459363 y[1] (numeric) = 0.19793265464546449560343874459364 absolute error = 1e-32 relative error = 5.0522234534326465250864236682528e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3692 Order of pole = 1.710e-10 TOP MAIN SOLVE Loop x[1] = 0.488 y[1] (analytic) = 0.19903359753506702541271057553836 y[1] (numeric) = 0.19903359753506702541271057553837 absolute error = 1e-32 relative error = 5.0242773701752214863099123184449e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3682 Order of pole = 1.562e-10 TOP MAIN SOLVE Loop x[1] = 0.489 y[1] (analytic) = 0.20013897434734167735032048232492 y[1] (numeric) = 0.20013897434734167735032048232492 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3672 Order of pole = 1.427e-10 TOP MAIN SOLVE Loop x[1] = 0.49 y[1] (analytic) = 0.20124880473040212790646783148278 y[1] (numeric) = 0.20124880473040212790646783148279 absolute error = 1e-32 relative error = 4.9689736112451684474877332110809e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3662 Order of pole = 1.304e-10 TOP MAIN SOLVE Loop x[1] = 0.491 y[1] (analytic) = 0.20236310849911925422270058571367 y[1] (numeric) = 0.20236310849911925422270058571368 absolute error = 1e-32 relative error = 4.9416121713921601676374972000402e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3652 Order of pole = 1.191e-10 TOP MAIN SOLVE Loop x[1] = 0.492 y[1] (analytic) = 0.20348190563692678096186510926882 y[1] (numeric) = 0.20348190563692678096186510926883 absolute error = 1e-32 relative error = 4.9144418854829393780994555550116e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3642 Order of pole = 1.087e-10 TOP MAIN SOLVE Loop x[1] = 0.493 y[1] (analytic) = 0.20460521629765183180015992408208 y[1] (numeric) = 0.20460521629765183180015992408208 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3632 Order of pole = 9.924e-11 TOP MAIN SOLVE Loop x[1] = 0.494 y[1] (analytic) = 0.20573306080737079709563450054547 y[1] (numeric) = 0.20573306080737079709563450054547 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3622 Order of pole = 9.058e-11 TOP MAIN SOLVE Loop x[1] = 0.495 y[1] (analytic) = 0.20686545966629093725487169578671 y[1] (numeric) = 0.20686545966629093725487169578673 absolute error = 2e-32 relative error = 9.6681195750433113478467192306885e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3612 Order of pole = 8.267e-11 TOP MAIN SOLVE Loop x[1] = 0.496 y[1] (analytic) = 0.20800243355065814946368685691294 y[1] (numeric) = 0.20800243355065814946368685691294 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3602 Order of pole = 7.543e-11 TOP MAIN SOLVE Loop x[1] = 0.497 y[1] (analytic) = 0.20914400331469133377288920903562 y[1] (numeric) = 0.20914400331469133377288920903563 absolute error = 1e-32 relative error = 4.7813945614081823239082809691095e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3592 Order of pole = 6.881e-11 TOP MAIN SOLVE Loop memory used=160.2MB, alloc=4.3MB, time=7.16 x[1] = 0.498 y[1] (analytic) = 0.21029018999254380304102653146135 y[1] (numeric) = 0.21029018999254380304102653146137 absolute error = 2e-32 relative error = 9.5106671408253205126365174127184e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3582 Order of pole = 6.277e-11 TOP MAIN SOLVE Loop x[1] = 0.499 y[1] (analytic) = 0.211441014800292189937243925683 y[1] (numeric) = 0.211441014800292189937243925683 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3572 Order of pole = 5.724e-11 TOP MAIN SOLVE Loop x[1] = 0.5 y[1] (analytic) = 0.21259649913795331310373430135607 y[1] (numeric) = 0.21259649913795331310373430135608 absolute error = 1e-32 relative error = 4.7037463178126118222589330970212e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3562 Order of pole = 5.219e-11 TOP MAIN SOLVE Loop x[1] = 0.501 y[1] (analytic) = 0.21375666459152947367367967740669 y[1] (numeric) = 0.2137566645915294736736796774067 absolute error = 1e-32 relative error = 4.6782167092236101339116339073361e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3552 Order of pole = 4.758e-11 TOP MAIN SOLVE Loop x[1] = 0.502 y[1] (analytic) = 0.21492153293508266264215534878314 y[1] (numeric) = 0.21492153293508266264215534878313 absolute error = 1e-32 relative error = 4.6528609132061762354065029110047e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3542 Order of pole = 4.337e-11 TOP MAIN SOLVE Loop x[1] = 0.503 y[1] (analytic) = 0.21609112613283816909941377645172 y[1] (numeric) = 0.21609112613283816909941377645171 absolute error = 1e-32 relative error = 4.6276773039965917885687794860020e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3532 Order of pole = 3.952e-11 TOP MAIN SOLVE Loop x[1] = 0.504 y[1] (analytic) = 0.21726546634131808906365010444283 y[1] (numeric) = 0.21726546634131808906365010444283 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3522 Order of pole = 3.601e-11 TOP MAIN SOLVE Loop x[1] = 0.505 y[1] (analytic) = 0.21844457591150524459929752205342 y[1] (numeric) = 0.21844457591150524459929752205342 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3512 Order of pole = 3.281e-11 TOP MAIN SOLVE Loop x[1] = 0.506 y[1] (analytic) = 0.2196284773910380330827867321846 y[1] (numeric) = 0.21962847739103803308278673218458 absolute error = 2e-32 relative error = 9.1062872345060032954282289276410e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3502 Order of pole = 2.988e-11 TOP MAIN SOLVE Loop x[1] = 0.507 y[1] (analytic) = 0.22081719352643673688637040242863 y[1] (numeric) = 0.22081719352643673688637040242862 absolute error = 1e-32 relative error = 4.5286328660828565619116884165340e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3492 Order of pole = 2.721e-11 TOP MAIN SOLVE Loop x[1] = 0.508 y[1] (analytic) = 0.22201074726536183439806901447477 y[1] (numeric) = 0.22201074726536183439806901447479 absolute error = 2e-32 relative error = 9.0085728940386321547271185516805e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3482 Order of pole = 2.477e-11 TOP MAIN SOLVE Loop x[1] = 0.509 y[1] (analytic) = 0.22320916175890486418822014603879 y[1] (numeric) = 0.22320916175890486418822014603881 absolute error = 2e-32 relative error = 8.9602056843897026340675801251682e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3472 Order of pole = 2.255e-11 TOP MAIN SOLVE Loop memory used=164.0MB, alloc=4.3MB, time=7.34 x[1] = 0.51 y[1] (analytic) = 0.22441246036391240527686836288257 y[1] (numeric) = 0.22441246036391240527686836288258 absolute error = 1e-32 relative error = 4.4560805508677058690335670014748e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3462 Order of pole = 2.053e-11 TOP MAIN SOLVE Loop x[1] = 0.511 y[1] (analytic) = 0.22562066664534374785786097350536 y[1] (numeric) = 0.22562066664534374785786097350537 absolute error = 1e-32 relative error = 4.4322180891873431798150655338679e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3452 Order of pole = 1.868e-11 TOP MAIN SOLVE Loop x[1] = 0.512 y[1] (analytic) = 0.22683380437866284050174914527395 y[1] (numeric) = 0.22683380437866284050174914527396 absolute error = 1e-32 relative error = 4.4085139899635927728333045882482e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3442 Order of pole = 1.699e-11 TOP MAIN SOLVE Loop x[1] = 0.513 y[1] (analytic) = 0.22805189755226511179736344590949 y[1] (numeric) = 0.2280518975522651117973634459095 absolute error = 1e-32 relative error = 4.3849668024394281562282373767418e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3432 Order of pole = 1.546e-11 TOP MAIN SOLVE Loop x[1] = 0.514 y[1] (analytic) = 0.2292749703699397766083691028616 y[1] (numeric) = 0.2292749703699397766083691028616 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3422 Order of pole = 1.406e-11 TOP MAIN SOLVE Loop x[1] = 0.515 y[1] (analytic) = 0.23050304725336824962354921566516 y[1] (numeric) = 0.23050304725336824962354921566516 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3412 Order of pole = 1.278e-11 TOP MAIN SOLVE Loop x[1] = 0.516 y[1] (analytic) = 0.23173615284465930167556930792121 y[1] (numeric) = 0.23173615284465930167556930792121 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3402 Order of pole = 1.162e-11 TOP MAIN SOLVE Loop x[1] = 0.517 y[1] (analytic) = 0.23297431200892160740032188224447 y[1] (numeric) = 0.23297431200892160740032188224449 absolute error = 2e-32 relative error = 8.5846374338618552724429885602945e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3392 Order of pole = 1.056e-11 TOP MAIN SOLVE Loop x[1] = 0.518 y[1] (analytic) = 0.23421754983687434621564260447796 y[1] (numeric) = 0.23421754983687434621564260447797 absolute error = 1e-32 relative error = 4.2695348862477242617996900891405e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3382 Order of pole = 9.596e-12 TOP MAIN SOLVE Loop x[1] = 0.519 y[1] (analytic) = 0.23546589164749653232247507920364 y[1] (numeric) = 0.23546589164749653232247507920365 absolute error = 1e-32 relative error = 4.2468995955348252064647389211370e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3372 Order of pole = 8.718e-12 TOP MAIN SOLVE Loop x[1] = 0.52 y[1] (analytic) = 0.236719362990715763481928446105 y[1] (numeric) = 0.236719362990715763481928446105 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3362 Order of pole = 7.919e-12 TOP MAIN SOLVE Loop x[1] = 0.521 y[1] (analytic) = 0.23797798965013709270686368162866 y[1] (numeric) = 0.23797798965013709270686368162865 absolute error = 1e-32 relative error = 4.2020692815757800773898589420422e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3352 Order of pole = 7.192e-12 TOP MAIN SOLVE Loop memory used=167.8MB, alloc=4.3MB, time=7.51 x[1] = 0.522 y[1] (analytic) = 0.23924179764581274173566419649009 y[1] (numeric) = 0.23924179764581274173566419649009 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3342 Order of pole = 6.530e-12 TOP MAIN SOLVE Loop x[1] = 0.523 y[1] (analytic) = 0.2405108132370533902379675596069 y[1] (numeric) = 0.24051081323705339023796755960691 absolute error = 1e-32 relative error = 4.1578172163692920237638971250571e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3332 Order of pole = 5.928e-12 TOP MAIN SOLVE Loop x[1] = 0.524 y[1] (analytic) = 0.24178506292528179014691017586502 y[1] (numeric) = 0.24178506292528179014691017586502 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3322 Order of pole = 5.380e-12 TOP MAIN SOLVE Loop x[1] = 0.525 y[1] (analytic) = 0.24306457345692947032970570563759 y[1] (numeric) = 0.2430645734569294703297057056376 absolute error = 1e-32 relative error = 4.1141330708039108401521080519031e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3312 Order of pole = 4.882e-12 TOP MAIN SOLVE Loop x[1] = 0.526 y[1] (analytic) = 0.24434937182637731300827870856096 y[1] (numeric) = 0.24434937182637731300827870856096 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3302 Order of pole = 4.429e-12 TOP MAIN SOLVE Loop x[1] = 0.527 y[1] (analytic) = 0.24563948527894079993465268464605 y[1] (numeric) = 0.24563948527894079993465268464605 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3292 Order of pole = 4.017e-12 TOP MAIN SOLVE Loop x[1] = 0.528 y[1] (analytic) = 0.24693494131390074332260941635657 y[1] (numeric) = 0.24693494131390074332260941635658 absolute error = 1e-32 relative error = 4.0496496554078669772833868658784e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3282 Order of pole = 3.643e-12 TOP MAIN SOLVE Loop x[1] = 0.529 y[1] (analytic) = 0.24823576768758033394888577924009 y[1] (numeric) = 0.2482357676875803339488857792401 absolute error = 1e-32 relative error = 4.0284283337385941688204179209928e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3272 Order of pole = 3.303e-12 TOP MAIN SOLVE Loop x[1] = 0.53 y[1] (analytic) = 0.24954199241646935667528598811593 y[1] (numeric) = 0.24954199241646935667528598811595 absolute error = 2e-32 relative error = 8.0146831426356894178766316015866e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3262 Order of pole = 2.994e-12 TOP MAIN SOLVE Loop x[1] = 0.531 y[1] (analytic) = 0.25085364378039644191934355807125 y[1] (numeric) = 0.25085364378039644191934355807125 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3252 Order of pole = 2.713e-12 TOP MAIN SOLVE Loop x[1] = 0.532 y[1] (analytic) = 0.25217075032575024032771292772805 y[1] (numeric) = 0.25217075032575024032771292772805 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3242 Order of pole = 2.458e-12 TOP MAIN SOLVE Loop x[1] = 0.533 y[1] (analytic) = 0.25349334086875042709582575658918 y[1] (numeric) = 0.25349334086875042709582575658917 absolute error = 1e-32 relative error = 3.9448768025735374070333519392722e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3232 Order of pole = 2.227e-12 TOP MAIN SOLVE Loop memory used=171.6MB, alloc=4.3MB, time=7.69 x[1] = 0.534 y[1] (analytic) = 0.25482144449876946204241939578455 y[1] (numeric) = 0.25482144449876946204241939578457 absolute error = 2e-32 relative error = 7.8486330062761183383423710724900e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3222 Order of pole = 2.017e-12 TOP MAIN SOLVE Loop x[1] = 0.535 y[1] (analytic) = 0.25615509058170605170164422305702 y[1] (numeric) = 0.25615509058170605170164422305702 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3212 Order of pole = 1.826e-12 TOP MAIN SOLVE Loop x[1] = 0.536 y[1] (analytic) = 0.25749430876341128035230672634535 y[1] (numeric) = 0.25749430876341128035230672634535 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3202 Order of pole = 1.653e-12 TOP MAIN SOLVE Loop x[1] = 0.537 y[1] (analytic) = 0.2588391289731683980775600110027 y[1] (numeric) = 0.25883912897316839807756001100272 absolute error = 2e-32 relative error = 7.7268070246339092348610476526815e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3192 Order of pole = 1.496e-12 TOP MAIN SOLVE Loop x[1] = 0.538 y[1] (analytic) = 0.26018958142722727565361050353325 y[1] (numeric) = 0.26018958142722727565361050353328 absolute error = 3e-32 relative error = 1.1530054291736018118278922815859e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.3182 Order of pole = 1.354e-12 TOP MAIN SOLVE Loop x[1] = 0.539 y[1] (analytic) = 0.2615456966323945583178262319931 y[1] (numeric) = 0.26154569663239455831782623199312 absolute error = 2e-32 relative error = 7.6468472842473209314618064213340e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3172 Order of pole = 1.225e-12 TOP MAIN SOLVE Loop x[1] = 0.54 y[1] (analytic) = 0.26290750538968057328054083444422 y[1] (numeric) = 0.26290750538968057328054083444423 absolute error = 1e-32 relative error = 3.8036190656398475272155853343915e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3162 Order of pole = 1.107e-12 TOP MAIN SOLVE Loop x[1] = 0.541 y[1] (analytic) = 0.26427503879800406923687305569185 y[1] (numeric) = 0.26427503879800406923687305569184 absolute error = 1e-32 relative error = 3.7839366311259528439724411151111e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3152 Order of pole = 1.001e-12 TOP MAIN SOLVE Loop x[1] = 0.542 y[1] (analytic) = 0.26564832825795589012155783012608 y[1] (numeric) = 0.26564832825795589012155783012607 absolute error = 1e-32 relative error = 3.7643752797456237855998451907978e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3142 Order of pole = 9.053e-13 TOP MAIN SOLVE Loop x[1] = 0.543 y[1] (analytic) = 0.26702740547562270994817307989775 y[1] (numeric) = 0.26702740547562270994817307989776 absolute error = 1e-32 relative error = 3.7449339636837063956630308210292e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3132 Order of pole = 8.181e-13 TOP MAIN SOLVE Loop x[1] = 0.544 y[1] (analytic) = 0.2684123024664719808018526635311 y[1] (numeric) = 0.26841230246647198080185266353113 absolute error = 3e-32 relative error = 1.1176834938013830928544162459748e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.3122 Order of pole = 7.392e-13 TOP MAIN SOLVE Loop x[1] = 0.545 y[1] (analytic) = 0.26980305155929927192977194213585 y[1] (numeric) = 0.26980305155929927192977194213585 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3112 Order of pole = 6.678e-13 TOP MAIN SOLVE Loop memory used=175.4MB, alloc=4.3MB, time=7.87 x[1] = 0.546 y[1] (analytic) = 0.27119968540023920441513451064888 y[1] (numeric) = 0.27119968540023920441513451064888 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3102 Order of pole = 6.031e-13 TOP MAIN SOLVE Loop x[1] = 0.547 y[1] (analytic) = 0.27260223695684121314743873648422 y[1] (numeric) = 0.27260223695684121314743873648422 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3092 Order of pole = 5.445e-13 TOP MAIN SOLVE Loop x[1] = 0.548 y[1] (analytic) = 0.27401073952221139573445005024648 y[1] (numeric) = 0.27401073952221139573445005024648 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3082 Order of pole = 4.916e-13 TOP MAIN SOLVE Loop x[1] = 0.549 y[1] (analytic) = 0.27542522671922173666018828501372 y[1] (numeric) = 0.27542522671922173666018828501373 absolute error = 1e-32 relative error = 3.6307494847573840247832289959537e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3072 Order of pole = 4.436e-13 TOP MAIN SOLVE Loop x[1] = 0.55 y[1] (analytic) = 0.27684573250478802439967055473655 y[1] (numeric) = 0.27684573250478802439967055473656 absolute error = 1e-32 relative error = 3.6121199736488807225216368393333e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3062 Order of pole = 4.002e-13 TOP MAIN SOLVE Loop x[1] = 0.551 y[1] (analytic) = 0.2782722911742178093771381569942 y[1] (numeric) = 0.27827229117421780937713815699422 absolute error = 2e-32 relative error = 7.1872049910562632731325159951380e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3052 Order of pole = 3.610e-13 TOP MAIN SOLVE Loop x[1] = 0.552 y[1] (analytic) = 0.27970493736562978162277207416712 y[1] (numeric) = 0.27970493736562978162277207416716 absolute error = 4e-32 relative error = 1.4300784382548125452553522559690e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.3042 Order of pole = 3.256e-13 TOP MAIN SOLVE Loop x[1] = 0.553 y[1] (analytic) = 0.28114370606444597876694562221065 y[1] (numeric) = 0.28114370606444597876694562221068 absolute error = 3e-32 relative error = 1.0670699486732654535931776458196e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.3032 Order of pole = 2.935e-13 TOP MAIN SOLVE Loop x[1] = 0.554 y[1] (analytic) = 0.28258863260795826763513014948652 y[1] (numeric) = 0.28258863260795826763513014948654 absolute error = 2e-32 relative error = 7.0774255197117081543443306047812e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3022 Order of pole = 2.646e-13 TOP MAIN SOLVE Loop x[1] = 0.555 y[1] (analytic) = 0.2840397526899705761957198939051 y[1] (numeric) = 0.28403975268997057619571989390512 absolute error = 2e-32 relative error = 7.0412679248562796686939502346978e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.3012 Order of pole = 2.384e-13 TOP MAIN SOLVE Loop x[1] = 0.556 y[1] (analytic) = 0.28549710236551838699316803346778 y[1] (numeric) = 0.28549710236551838699316803346778 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.3002 Order of pole = 2.148e-13 TOP MAIN SOLVE Loop x[1] = 0.557 y[1] (analytic) = 0.28696071805566703849668446510885 y[1] (numeric) = 0.28696071805566703849668446510887 absolute error = 2e-32 relative error = 6.9695950496333204883664964660965e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2992 Order of pole = 1.934e-13 TOP MAIN SOLVE Loop memory used=179.3MB, alloc=4.3MB, time=8.05 x[1] = 0.558 y[1] (analytic) = 0.28843063655239041703798957307598 y[1] (numeric) = 0.28843063655239041703798957307599 absolute error = 1e-32 relative error = 3.4670380787318355107143724309920e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2982 Order of pole = 1.742e-13 TOP MAIN SOLVE Loop x[1] = 0.559 y[1] (analytic) = 0.28990689502353165922882875694828 y[1] (numeric) = 0.28990689502353165922882875694829 absolute error = 1e-32 relative error = 3.4493832922422569074024257824660e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2972 Order of pole = 1.568e-13 TOP MAIN SOLVE Loop x[1] = 0.56 y[1] (analytic) = 0.29138953101784752296967467881318 y[1] (numeric) = 0.29138953101784752296967467881318 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.2962 Order of pole = 1.411e-13 TOP MAIN SOLVE Loop x[1] = 0.561 y[1] (analytic) = 0.29287858247013812441582213645468 y[1] (numeric) = 0.29287858247013812441582213645468 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.2952 Order of pole = 1.269e-13 TOP MAIN SOLVE Loop x[1] = 0.562 y[1] (analytic) = 0.29437408770646377858749472790712 y[1] (numeric) = 0.29437408770646377858749472790714 absolute error = 2e-32 relative error = 6.7940762571273171044374301510237e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2942 Order of pole = 1.142e-13 TOP MAIN SOLVE Loop x[1] = 0.563 y[1] (analytic) = 0.29587608544945072272928889204992 y[1] (numeric) = 0.29587608544945072272928889204995 absolute error = 3e-32 relative error = 1.0139379786111636657303283844271e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.2932 Order of pole = 1.026e-13 TOP MAIN SOLVE Loop x[1] = 0.564 y[1] (analytic) = 0.29738461482368754407505104821282 y[1] (numeric) = 0.29738461482368754407505104821284 absolute error = 2e-32 relative error = 6.7252974777654644815122457140792e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2922 Order of pole = 9.227e-14 TOP MAIN SOLVE Loop x[1] = 0.565 y[1] (analytic) = 0.29889971536121417739204675629845 y[1] (numeric) = 0.29889971536121417739204675629846 absolute error = 1e-32 relative error = 3.3456037212732722208868767099700e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2912 Order of pole = 8.293e-14 TOP MAIN SOLVE Loop x[1] = 0.566 y[1] (analytic) = 0.30042142700710538259916801361045 y[1] (numeric) = 0.30042142700710538259916801361049 absolute error = 4e-32 relative error = 1.3314629518437759311706230449218e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.2902 Order of pole = 7.450e-14 TOP MAIN SOLVE Loop x[1] = 0.567 y[1] (analytic) = 0.3019497901251506589153141522659 y[1] (numeric) = 0.30194979012515065891531415226594 absolute error = 4e-32 relative error = 1.3247235569669049081469907529664e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.2892 Order of pole = 6.692e-14 TOP MAIN SOLVE Loop x[1] = 0.568 y[1] (analytic) = 0.3034848455036325994346462024751 y[1] (numeric) = 0.30348484550363259943464620247513 absolute error = 3e-32 relative error = 9.8851723387423347586919436992173e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2882 Order of pole = 6.009e-14 TOP MAIN SOLVE Loop x[1] = 0.569 y[1] (analytic) = 0.30502663436120573878517119177172 y[1] (numeric) = 0.30502663436120573878517119177175 absolute error = 3e-32 relative error = 9.8352067067279996781902079401129e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2872 Order of pole = 5.394e-14 TOP MAIN SOLVE Loop memory used=183.1MB, alloc=4.3MB, time=8.21 x[1] = 0.57 y[1] (analytic) = 0.30657519835287799664747463437962 y[1] (numeric) = 0.30657519835287799664747463437965 absolute error = 3e-32 relative error = 9.7855273881186654216617039189701e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2862 Order of pole = 4.841e-14 TOP MAIN SOLVE Loop x[1] = 0.571 y[1] (analytic) = 0.30813057957609687143424897414468 y[1] (numeric) = 0.30813057957609687143424897414471 absolute error = 3e-32 relative error = 9.7361320130159649212571855681633e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2852 Order of pole = 4.343e-14 TOP MAIN SOLVE Loop x[1] = 0.572 y[1] (analytic) = 0.30969282057694259140293110362448 y[1] (numeric) = 0.3096928205769425914029311036245 absolute error = 2e-32 relative error = 6.4580121562847266889863926615322e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2842 Order of pole = 3.895e-14 TOP MAIN SOLVE Loop x[1] = 0.573 y[1] (analytic) = 0.31126196435643048493919537294975 y[1] (numeric) = 0.31126196435643048493919537294978 absolute error = 3e-32 relative error = 9.6381837279824447162524339958294e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2832 Order of pole = 3.493e-14 TOP MAIN SOLVE Loop x[1] = 0.574 y[1] (analytic) = 0.31283805437692488775580662033432 y[1] (numeric) = 0.31283805437692488775580662033437 absolute error = 5e-32 relative error = 1.5982710319428462839165514274213e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.2822 Order of pole = 3.131e-14 TOP MAIN SOLVE Loop x[1] = 0.575 y[1] (analytic) = 0.31442113456866696234866585922478 y[1] (numeric) = 0.31442113456866696234866585922481 absolute error = 3e-32 relative error = 9.5413433454958319150112479573716e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2812 Order of pole = 2.805e-14 TOP MAIN SOLVE Loop x[1] = 0.576 y[1] (analytic) = 0.3160112493364188642907789262022 y[1] (numeric) = 0.31601124933641886429077892620222 absolute error = 2e-32 relative error = 6.3288886208947659263096319279694e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2802 Order of pole = 2.513e-14 TOP MAIN SOLVE Loop x[1] = 0.577 y[1] (analytic) = 0.31760844356622675087816863351152 y[1] (numeric) = 0.31760844356622675087816863351154 absolute error = 2e-32 relative error = 6.2970618083803117039990375081268e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2792 Order of pole = 2.251e-14 TOP MAIN SOLVE Loop x[1] = 0.578 y[1] (analytic) = 0.31921276263230519032415217958592 y[1] (numeric) = 0.31921276263230519032415217958593 absolute error = 1e-32 relative error = 3.1327068246073858884027213336478e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2782 Order of pole = 2.015e-14 TOP MAIN SOLVE Loop x[1] = 0.579 y[1] (analytic) = 0.32082425240404559418660662478855 y[1] (numeric) = 0.32082425240404559418660662478858 absolute error = 3e-32 relative error = 9.3509140207449291841573256787335e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2772 Order of pole = 1.804e-14 TOP MAIN SOLVE Loop x[1] = 0.58 y[1] (analytic) = 0.32244295925315136206558382532715 y[1] (numeric) = 0.32244295925315136206558382532716 absolute error = 1e-32 relative error = 3.1013237265785533075024502446936e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2762 Order of pole = 1.614e-14 TOP MAIN SOLVE Loop x[1] = 0.581 y[1] (analytic) = 0.32406893006090249588678058343908 y[1] (numeric) = 0.3240689300609024958867805834391 absolute error = 2e-32 relative error = 6.1715265317910563989656087920735e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2752 Order of pole = 1.443e-14 memory used=186.9MB, alloc=4.3MB, time=8.37 TOP MAIN SOLVE Loop x[1] = 0.582 y[1] (analytic) = 0.32570221222555251135300404234435 y[1] (numeric) = 0.32570221222555251135300404234436 absolute error = 1e-32 relative error = 3.0702892472449298247436579600707e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2742 Order of pole = 1.291e-14 TOP MAIN SOLVE Loop x[1] = 0.583 y[1] (analytic) = 0.32734285366986054646628559336278 y[1] (numeric) = 0.3273428536698605464662855933628 absolute error = 2e-32 relative error = 6.1098019326766383947183937569035e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2732 Order of pole = 1.154e-14 TOP MAIN SOLVE Loop x[1] = 0.584 y[1] (analytic) = 0.32899090284876164146547574886052 y[1] (numeric) = 0.32899090284876164146547574886055 absolute error = 3e-32 relative error = 9.1187931764153105224823556394796e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2722 Order of pole = 1.031e-14 TOP MAIN SOLVE Loop x[1] = 0.585 y[1] (analytic) = 0.33064640875717824115827954767272 y[1] (numeric) = 0.33064640875717824115827954767275 absolute error = 3e-32 relative error = 9.0731365003366933987260331687927e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2712 Order of pole = 9.210e-15 TOP MAIN SOLVE Loop x[1] = 0.586 y[1] (analytic) = 0.33230942093797604952564546792422 y[1] (numeric) = 0.33230942093797604952564546792423 absolute error = 1e-32 relative error = 3.0092436054849169513971274294069e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2702 Order of pole = 8.225e-15 TOP MAIN SOLVE Loop x[1] = 0.587 y[1] (analytic) = 0.33397998949006744771578118361725 y[1] (numeric) = 0.33397998949006744771578118361726 absolute error = 1e-32 relative error = 2.9941913631617141010286789501767e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2692 Order of pole = 7.343e-15 TOP MAIN SOLVE Loop x[1] = 0.588 y[1] (analytic) = 0.3356581650766657702032303928491 y[1] (numeric) = 0.33565816507666577020323039284912 absolute error = 2e-32 relative error = 5.9584428686344972071934872732387e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2682 Order of pole = 6.553e-15 TOP MAIN SOLVE Loop x[1] = 0.589 y[1] (analytic) = 0.33734399893369382004672845190948 y[1] (numeric) = 0.3373439989336938200467284519095 absolute error = 2e-32 relative error = 5.9286663059718670583693065598074e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2672 Order of pole = 5.846e-15 TOP MAIN SOLVE Loop x[1] = 0.59 y[1] (analytic) = 0.33903754287835009292233205362918 y[1] (numeric) = 0.33903754287835009292233205362922 absolute error = 4e-32 relative error = 1.1798103437279918545297553932094e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.2662 Order of pole = 5.214e-15 TOP MAIN SOLVE Loop x[1] = 0.591 y[1] (analytic) = 0.3407388493178362710231366165836 y[1] (numeric) = 0.34073884931783627102313661658362 absolute error = 2e-32 relative error = 5.8695977990300393459117490989002e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2652 Order of pole = 4.649e-15 TOP MAIN SOLVE Loop x[1] = 0.592 y[1] (analytic) = 0.34244797125824964209460884301398 y[1] (numeric) = 0.342447971258249642094608843014 absolute error = 2e-32 relative error = 5.8403032514733275367633375687586e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2642 Order of pole = 4.143e-15 TOP MAIN SOLVE Loop x[1] = 0.593 y[1] (analytic) = 0.34416496231364419590947098371498 y[1] (numeric) = 0.344164962313644195909470983715 memory used=190.7MB, alloc=4.3MB, time=8.54 absolute error = 2e-32 relative error = 5.8111667920959405048246857815150e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2632 Order of pole = 3.691e-15 TOP MAIN SOLVE Loop x[1] = 0.594 y[1] (analytic) = 0.3458898767152642504760674083988 y[1] (numeric) = 0.34588987671526425047606740839881 absolute error = 1e-32 relative error = 2.8910935743378164716653546384318e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2622 Order of pole = 3.288e-15 TOP MAIN SOLVE Loop x[1] = 0.595 y[1] (analytic) = 0.34762276932095456332085346902042 y[1] (numeric) = 0.34762276932095456332085346902046 absolute error = 4e-32 relative error = 1.1506726121000617605061389580170e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.2612 Order of pole = 2.927e-15 TOP MAIN SOLVE Loop x[1] = 0.596 y[1] (analytic) = 0.3493636956247509893946002074339 y[1] (numeric) = 0.34936369562475098939460020743394 absolute error = 4e-32 relative error = 1.1449386556456544292309878700156e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.2602 Order of pole = 2.605e-15 TOP MAIN SOLVE Loop x[1] = 0.597 y[1] (analytic) = 0.3511127117666558566326986739816 y[1] (numeric) = 0.35111271176665585663269867398161 absolute error = 1e-32 relative error = 2.8480882818750940591652314167152e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2592 Order of pole = 2.318e-15 TOP MAIN SOLVE Loop x[1] = 0.598 y[1] (analytic) = 0.35286987454260234306640338983192 y[1] (numeric) = 0.35286987454260234306640338983195 absolute error = 3e-32 relative error = 8.5017175350790873844259077531397e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2582 Order of pole = 2.061e-15 TOP MAIN SOLVE Loop x[1] = 0.599 y[1] (analytic) = 0.3546352414146122557522219654087 y[1] (numeric) = 0.35463524141461225575222196540873 absolute error = 3e-32 relative error = 8.4593961616257721976554792425291e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2572 Order of pole = 1.833e-15 TOP MAIN SOLVE Loop x[1] = 0.6 y[1] (analytic) = 0.35640887052115173178378979869085 y[1] (numeric) = 0.35640887052115173178378979869086 absolute error = 1e-32 relative error = 2.8057663058098695207742167987011e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2562 Order of pole = 1.629e-15 TOP MAIN SOLVE Loop x[1] = 0.601 y[1] (analytic) = 0.3581908206876895054021225727954 y[1] (numeric) = 0.35819082068768950540212257279543 absolute error = 3e-32 relative error = 8.3754240106999637917819338448610e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2552 Order of pole = 1.447e-15 TOP MAIN SOLVE Loop x[1] = 0.602 y[1] (analytic) = 0.35998115143746251285878465284582 y[1] (numeric) = 0.35998115143746251285878465284586 absolute error = 4e-32 relative error = 1.1111692887328567120988400693007e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.2542 Order of pole = 1.285e-15 TOP MAIN SOLVE Loop x[1] = 0.603 y[1] (analytic) = 0.36177992300245373835014772748912 y[1] (numeric) = 0.36177992300245373835014772748914 absolute error = 2e-32 relative error = 5.5282227476908252529973366644444e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2532 Order of pole = 1.141e-15 TOP MAIN SOLVE Loop x[1] = 0.604 y[1] (analytic) = 0.36358719633458734017289766083038 y[1] (numeric) = 0.3635871963345873401728976608304 absolute error = 2e-32 relative error = 5.5007437560026750163842133900209e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2522 Order of pole = 1.013e-15 TOP MAIN SOLVE Loop memory used=194.5MB, alloc=4.3MB, time=8.70 x[1] = 0.605 y[1] (analytic) = 0.36540303311714623640033076199352 y[1] (numeric) = 0.36540303311714623640033076199355 absolute error = 3e-32 relative error = 8.2101124733636686133419023379630e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2512 Order of pole = 8.982e-16 TOP MAIN SOLVE Loop x[1] = 0.606 y[1] (analytic) = 0.36722749577641747400076144572182 y[1] (numeric) = 0.36722749577641747400076144572184 absolute error = 2e-32 relative error = 5.4462152834483792853273918080793e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2502 Order of pole = 7.965e-16 TOP MAIN SOLVE Loop x[1] = 0.607 y[1] (analytic) = 0.36906064749357085457474704300388 y[1] (numeric) = 0.36906064749357085457474704300391 absolute error = 3e-32 relative error = 8.1287452898978097782522126676866e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2492 Order of pole = 7.060e-16 TOP MAIN SOLVE Loop x[1] = 0.608 y[1] (analytic) = 0.37090255221677644394450998327975 y[1] (numeric) = 0.37090255221677644394450998327978 absolute error = 3e-32 relative error = 8.0883778827346278418201948762527e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2482 Order of pole = 6.256e-16 TOP MAIN SOLVE Loop x[1] = 0.609 y[1] (analytic) = 0.37275327467356675186136040451968 y[1] (numeric) = 0.3727532746735667518613604045197 absolute error = 2e-32 relative error = 5.3654793556179240916801439120434e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2472 Order of pole = 5.541e-16 TOP MAIN SOLVE Loop x[1] = 0.61 y[1] (analytic) = 0.37461288038344953228662306497905 y[1] (numeric) = 0.37461288038344953228662306497908 absolute error = 3e-32 relative error = 8.0082670860896019683375124683082e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2462 Order of pole = 4.906e-16 TOP MAIN SOLVE Loop x[1] = 0.611 y[1] (analytic) = 0.3764814356707773242374693789527 y[1] (numeric) = 0.37648143567077732423746937895273 absolute error = 3e-32 relative error = 7.9685203990334801199549997157203e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2452 Order of pole = 4.342e-16 TOP MAIN SOLVE Loop x[1] = 0.612 y[1] (analytic) = 0.37835900767788002826778731412328 y[1] (numeric) = 0.37835900767788002826778731412328 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.2442 Order of pole = 3.841e-16 TOP MAIN SOLVE Loop x[1] = 0.613 y[1] (analytic) = 0.38024566437846699448049679924702 y[1] (numeric) = 0.38024566437846699448049679924704 absolute error = 2e-32 relative error = 5.2597575392979507385145910597057e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2432 Order of pole = 3.397e-16 TOP MAIN SOLVE Loop x[1] = 0.614 y[1] (analytic) = 0.38214147459130528475467915847262 y[1] (numeric) = 0.38214147459130528475467915847265 absolute error = 3e-32 relative error = 7.8504956919644906414883270715461e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2422 Order of pole = 3.003e-16 TOP MAIN SOLVE Loop x[1] = 0.615 y[1] (analytic) = 0.38404650799418096484049770151462 y[1] (numeric) = 0.38404650799418096484049770151464 absolute error = 2e-32 relative error = 5.2077026046811596176702415607715e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2412 Order of pole = 2.653e-16 TOP MAIN SOLVE Loop x[1] = 0.616 y[1] (analytic) = 0.38596083513815048135832661147855 y[1] (numeric) = 0.38596083513815048135832661147858 absolute error = 3e-32 relative error = 7.7728093808434802524197994605019e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2402 Order of pole = 2.343e-16 TOP MAIN SOLVE Loop memory used=198.3MB, alloc=4.3MB, time=8.86 x[1] = 0.617 y[1] (analytic) = 0.38788452746208938477660541869105 y[1] (numeric) = 0.38788452746208938477660541869108 absolute error = 3e-32 relative error = 7.7342605533375150569135743534563e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2392 Order of pole = 2.069e-16 TOP MAIN SOLVE Loop x[1] = 0.618 y[1] (analytic) = 0.38981765730754587238661493544755 y[1] (numeric) = 0.38981765730754587238661493544758 absolute error = 3e-32 relative error = 7.6959058774322167585134082884709e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2382 Order of pole = 1.826e-16 TOP MAIN SOLVE Loop x[1] = 0.619 y[1] (analytic) = 0.39176029793390684540310236305708 y[1] (numeric) = 0.39176029793390684540310236305711 absolute error = 3e-32 relative error = 7.6577438189158321655326119804509e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2372 Order of pole = 1.610e-16 TOP MAIN SOLVE Loop x[1] = 0.62 y[1] (analytic) = 0.39371252353388440186999028801362 y[1] (numeric) = 0.39371252353388440186999028801366 absolute error = 4e-32 relative error = 1.0159697141703303575948184427428e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.2362 Order of pole = 1.420e-16 TOP MAIN SOLVE Loop x[1] = 0.621 y[1] (analytic) = 0.39567440924933092232437107094718 y[1] (numeric) = 0.39567440924933092232437107094721 absolute error = 3e-32 relative error = 7.5819914805497948468509518579087e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2352 Order of pole = 1.251e-16 TOP MAIN SOLVE Loop x[1] = 0.622 y[1] (analytic) = 0.39764603118739114846580395251425 y[1] (numeric) = 0.39764603118739114846580395251429 absolute error = 4e-32 relative error = 1.0059197593537644061893150141450e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.2342 Order of pole = 1.103e-16 TOP MAIN SOLVE Loop x[1] = 0.623 y[1] (analytic) = 0.39962746643699990670046072243192 y[1] (numeric) = 0.39962746643699990670046072243197 absolute error = 5e-32 relative error = 1.2511652526236545046095620749317e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.2332 Order of pole = 9.708e-17 TOP MAIN SOLVE Loop x[1] = 0.624 y[1] (analytic) = 0.4016187930857343887030442642196 y[1] (numeric) = 0.40161879308573438870304426421963 absolute error = 3e-32 relative error = 7.4697699700511371186390386317035e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2322 Order of pole = 8.545e-17 TOP MAIN SOLVE Loop x[1] = 0.625 y[1] (analytic) = 0.40362009023703017039967370846012 y[1] (numeric) = 0.40362009023703017039967370846016 absolute error = 4e-32 relative error = 9.9103094636616270986778323422769e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2312 Order of pole = 7.518e-17 TOP MAIN SOLVE Loop x[1] = 0.626 y[1] (analytic) = 0.40563143802777042937269805099502 y[1] (numeric) = 0.40563143802777042937269805099507 absolute error = 5e-32 relative error = 1.2326460750455167856871464055472e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.2302 Order of pole = 6.611e-17 TOP MAIN SOLVE Loop x[1] = 0.627 y[1] (analytic) = 0.4076529176462581089895390185005 y[1] (numeric) = 0.40765291764625810898953901850055 absolute error = 5e-32 relative error = 1.2265335984517012938545192337791e-29 % Correct digits = 30 h = 0.001 Real estimate of pole used Radius of convergence = 0.2292 Order of pole = 5.811e-17 TOP MAIN SOLVE Loop x[1] = 0.628 y[1] (analytic) = 0.40968461135058107594404435628645 y[1] (numeric) = 0.40968461135058107594404435628648 absolute error = 3e-32 relative error = 7.3227060936218515146424215872687e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2282 Order of pole = 5.106e-17 TOP MAIN SOLVE Loop memory used=202.1MB, alloc=4.3MB, time=9.02 x[1] = 0.629 y[1] (analytic) = 0.41172660248738062676909671150055 y[1] (numeric) = 0.41172660248738062676909671150058 absolute error = 3e-32 relative error = 7.2863885449130036637689339543917e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2272 Order of pole = 4.484e-17 TOP MAIN SOLVE Loop x[1] = 0.63 y[1] (analytic) = 0.41377897551103401864959832986025 y[1] (numeric) = 0.41377897551103401864959832986028 absolute error = 3e-32 relative error = 7.2502475416854538405875052920192e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2262 Order of pole = 3.936e-17 TOP MAIN SOLVE Loop x[1] = 0.631 y[1] (analytic) = 0.4158418160032620309701077140813 y[1] (numeric) = 0.41584181600326203097010771408133 absolute error = 3e-32 relative error = 7.2142816920953105632197989752582e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2252 Order of pole = 3.453e-17 TOP MAIN SOLVE Loop x[1] = 0.632 y[1] (analytic) = 0.41791521069317290692535631539778 y[1] (numeric) = 0.41791521069317290692535631539781 absolute error = 3e-32 relative error = 7.1784896152118164976339163447598e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2242 Order of pole = 3.028e-17 TOP MAIN SOLVE Loop x[1] = 0.633 y[1] (analytic) = 0.41999924747775437967893293054022 y[1] (numeric) = 0.41999924747775437967893293054024 absolute error = 2e-32 relative error = 4.7619132939182985444238166802090e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2232 Order of pole = 2.654e-17 TOP MAIN SOLVE Loop x[1] = 0.634 y[1] (analytic) = 0.42209401544282585547120158596338 y[1] (numeric) = 0.42209401544282585547120158596339 absolute error = 1e-32 relative error = 2.3691404365230891972378406453648e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2222 Order of pole = 2.325e-17 TOP MAIN SOLVE Loop x[1] = 0.635 y[1] (analytic) = 0.42419960488446320726998212429075 y[1] (numeric) = 0.42419960488446320726998212429079 absolute error = 4e-32 relative error = 9.4295231630153377045888706888364e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2212 Order of pole = 2.036e-17 TOP MAIN SOLVE Loop x[1] = 0.636 y[1] (analytic) = 0.42631610733090902756810856877825 y[1] (numeric) = 0.42631610733090902756810856877828 absolute error = 3e-32 relative error = 7.0370317902893184688175422801047e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2202 Order of pole = 1.782e-17 TOP MAIN SOLVE Loop x[1] = 0.637 y[1] (analytic) = 0.42844361556498159832677119271472 y[1] (numeric) = 0.42844361556498159832677119271475 absolute error = 3e-32 relative error = 7.0020882352137491820104621969032e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2192 Order of pole = 1.559e-17 TOP MAIN SOLVE Loop x[1] = 0.638 y[1] (analytic) = 0.43058222364699626043451173775875 y[1] (numeric) = 0.43058222364699626043451173775877 absolute error = 2e-32 relative error = 4.6448735924585166988845319662565e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2182 Order of pole = 1.363e-17 TOP MAIN SOLVE Loop x[1] = 0.639 y[1] (analytic) = 0.43273202693821330501803818649775 y[1] (numeric) = 0.43273202693821330501803818649778 absolute error = 3e-32 relative error = 6.9326969423234958095156685653366e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2172 Order of pole = 1.191e-17 TOP MAIN SOLVE Loop x[1] = 0.64 y[1] (analytic) = 0.4348931221248269651503902051266 y[1] (numeric) = 0.43489312212482696515039020512663 absolute error = 3e-32 relative error = 6.8982465975603836116026966936187e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2162 Order of pole = 1.040e-17 TOP MAIN SOLVE Loop memory used=206.0MB, alloc=4.3MB, time=9.19 x[1] = 0.641 y[1] (analytic) = 0.43706560724251055963218388897882 y[1] (numeric) = 0.43706560724251055963218388897885 absolute error = 3e-32 relative error = 6.8639580655345816039818623333820e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2152 Order of pole = 9.081e-18 TOP MAIN SOLVE Loop x[1] = 0.642 y[1] (analytic) = 0.43924958170153333128202925140358 y[1] (numeric) = 0.43924958170153333128202925140358 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.2142 Order of pole = 7.923e-18 TOP MAIN SOLVE Loop x[1] = 0.643 y[1] (analytic) = 0.44144514631246503130527498989598 y[1] (numeric) = 0.441445146312465031305274989896 absolute error = 2e-32 relative error = 4.5305742212971438678170811317554e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2132 Order of pole = 6.909e-18 TOP MAIN SOLVE Loop x[1] = 0.644 y[1] (analytic) = 0.4436524033124848295934327170461 y[1] (numeric) = 0.44365240331248482959343271704613 absolute error = 3e-32 relative error = 6.7620505999760397343420176609974e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2122 Order of pole = 6.022e-18 TOP MAIN SOLVE Loop x[1] = 0.645 y[1] (analytic) = 0.44587145639231167905413270020525 y[1] (numeric) = 0.44587145639231167905413270020527 absolute error = 2e-32 relative error = 4.4855977464505994672341875915082e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2112 Order of pole = 5.246e-18 TOP MAIN SOLVE Loop x[1] = 0.646 y[1] (analytic) = 0.44810241072377383113607363399262 y[1] (numeric) = 0.44810241072377383113607363399265 absolute error = 3e-32 relative error = 6.6948981487388294069239451342961e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2102 Order of pole = 4.567e-18 TOP MAIN SOLVE Loop x[1] = 0.647 y[1] (analytic) = 0.45034537298803579048862841339198 y[1] (numeric) = 0.45034537298803579048862841339199 absolute error = 1e-32 relative error = 2.2205179845970500120836984640299e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2092 Order of pole = 3.974e-18 TOP MAIN SOLVE Loop x[1] = 0.648 y[1] (analytic) = 0.45260045140450161011784824355088 y[1] (numeric) = 0.45260045140450161011784824355091 absolute error = 3e-32 relative error = 6.6283628102677621300059746792155e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2082 Order of pole = 3.456e-18 TOP MAIN SOLVE Loop x[1] = 0.649 y[1] (analytic) = 0.45486775576041406545094186231225 y[1] (numeric) = 0.45486775576041406545094186231227 absolute error = 2e-32 relative error = 4.3968823348591698447393993610012e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2072 Order of pole = 3.004e-18 TOP MAIN SOLVE Loop x[1] = 0.65 y[1] (analytic) = 0.45714739744116990742874870944712 y[1] (numeric) = 0.45714739744116990742874870944714 absolute error = 2e-32 relative error = 4.3749565483578610960704309632808e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2062 Order of pole = 2.610e-18 TOP MAIN SOLVE Loop x[1] = 0.651 y[1] (analytic) = 0.45943948946137208218914768393645 y[1] (numeric) = 0.45943948946137208218914768393646 absolute error = 1e-32 relative error = 2.1765651907117491721328746250444e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2052 Order of pole = 2.266e-18 TOP MAIN SOLVE Loop x[1] = 0.652 y[1] (analytic) = 0.46174414649664051921532744991608 y[1] (numeric) = 0.4617441464966405192153274499161 absolute error = 2e-32 relative error = 4.3314030403513762037148698547554e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2042 Order of pole = 1.966e-18 TOP MAIN SOLVE Loop memory used=209.8MB, alloc=4.3MB, time=9.35 x[1] = 0.653 y[1] (analytic) = 0.46406148491620383218852488418795 y[1] (numeric) = 0.46406148491620383218852488418797 absolute error = 2e-32 relative error = 4.3097737369028643333479843187860e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2032 Order of pole = 1.705e-18 TOP MAIN SOLVE Loop x[1] = 0.654 y[1] (analytic) = 0.46639162281629504845091896942162 y[1] (numeric) = 0.46639162281629504845091896942164 absolute error = 2e-32 relative error = 4.2882416882255435183196309564105e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2022 Order of pole = 1.477e-18 TOP MAIN SOLVE Loop x[1] = 0.655 y[1] (analytic) = 0.46873468005437528525831526459095 y[1] (numeric) = 0.46873468005437528525831526459096 absolute error = 1e-32 relative error = 2.1334030583868801858852243962945e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2012 Order of pole = 1.280e-18 TOP MAIN SOLVE Loop x[1] = 0.656 y[1] (analytic) = 0.47109077828421012525668664314548 y[1] (numeric) = 0.47109077828421012525668664314549 absolute error = 1e-32 relative error = 2.1227331251147899834808646143074e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.2002 Order of pole = 1.108e-18 TOP MAIN SOLVE Loop x[1] = 0.657 y[1] (analytic) = 0.4734600409918243112929022145643 y[1] (numeric) = 0.47346004099182431129290221456431 absolute error = 1e-32 relative error = 2.1121106607120577664059392351566e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1992 Order of pole = 9.583e-19 TOP MAIN SOLVE Loop x[1] = 0.658 y[1] (analytic) = 0.4758425935323612832819739765236 y[1] (numeric) = 0.47584259353236128328197397652362 absolute error = 2e-32 relative error = 4.2030705682592141526868931536830e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1982 Order of pole = 8.285e-19 TOP MAIN SOLVE Loop x[1] = 0.659 y[1] (analytic) = 0.47823856316787501899135481319495 y[1] (numeric) = 0.47823856316787501899135481319497 absolute error = 2e-32 relative error = 4.1820132336294771966817622824634e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1972 Order of pole = 7.158e-19 TOP MAIN SOLVE Loop x[1] = 0.66 y[1] (analytic) = 0.4806480791060826179385690307147 y[1] (numeric) = 0.48064807910608261793856903071471 absolute error = 1e-32 relative error = 2.0805242826722969955100128922994e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1962 Order of pole = 6.181e-19 TOP MAIN SOLVE Loop x[1] = 0.661 y[1] (analytic) = 0.48307127254010708488849219044905 y[1] (numeric) = 0.48307127254010708488849219044905 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1952 Order of pole = 5.334e-19 TOP MAIN SOLVE Loop x[1] = 0.662 y[1] (analytic) = 0.48550827668924082852789800557668 y[1] (numeric) = 0.48550827668924082852789800557668 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1942 Order of pole = 4.600e-19 TOP MAIN SOLVE Loop x[1] = 0.663 y[1] (analytic) = 0.48795922684076149372979140662982 y[1] (numeric) = 0.48795922684076149372979140662982 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1932 Order of pole = 3.964e-19 TOP MAIN SOLVE Loop x[1] = 0.664 y[1] (analytic) = 0.49042426039283289444168455597 y[1] (numeric) = 0.49042426039283289444168455597002 absolute error = 2e-32 relative error = 4.0781016795498402003908638763311e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1922 Order of pole = 3.414e-19 TOP MAIN SOLVE Loop memory used=213.6MB, alloc=4.3MB, time=9.51 x[1] = 0.665 y[1] (analytic) = 0.4929035168985250107900681177558 y[1] (numeric) = 0.49290351689852501079006811775581 absolute error = 1e-32 relative error = 2.0287946133804354889639540063003e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1912 Order of pole = 2.938e-19 TOP MAIN SOLVE Loop x[1] = 0.666 y[1] (analytic) = 0.49539713811098826075033893758558 y[1] (numeric) = 0.49539713811098826075033893758558 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1902 Order of pole = 2.527e-19 TOP MAIN SOLVE Loop x[1] = 0.667 y[1] (analytic) = 0.49790526802981855606909426475458 y[1] (numeric) = 0.49790526802981855606909426475459 absolute error = 1e-32 relative error = 2.0084141787793094593249116782600e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1892 Order of pole = 2.172e-19 TOP MAIN SOLVE Loop x[1] = 0.668 y[1] (analytic) = 0.50042805294865100655194305852988 y[1] (numeric) = 0.50042805294865100655194305852987 absolute error = 1e-32 relative error = 1.9982892527861745227712881173001e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1882 Order of pole = 1.866e-19 TOP MAIN SOLVE Loop x[1] = 0.669 y[1] (analytic) = 0.5029656415040215489863902458773 y[1] (numeric) = 0.5029656415040215489863902458773 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1872 Order of pole = 1.601e-19 TOP MAIN SOLVE Loop x[1] = 0.67 y[1] (analytic) = 0.50551818472553724963898892950448 y[1] (numeric) = 0.50551818472553724963898892950448 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1862 Order of pole = 1.374e-19 TOP MAIN SOLVE Loop x[1] = 0.671 y[1] (analytic) = 0.50808583608739756538177478068705 y[1] (numeric) = 0.50808583608739756538177478068706 absolute error = 1e-32 relative error = 1.9681713776960840398929537346984e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1852 Order of pole = 1.177e-19 TOP MAIN SOLVE Loop x[1] = 0.672 y[1] (analytic) = 0.5106687515613104511567465259204 y[1] (numeric) = 0.5106687515613104511567465259204 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1842 Order of pole = 1.008e-19 TOP MAIN SOLVE Loop x[1] = 0.673 y[1] (analytic) = 0.51326708967084887393890070344728 y[1] (numeric) = 0.51326708967084887393890070344726 absolute error = 2e-32 relative error = 3.8966067379901027662356244835334e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1832 Order of pole = 8.630e-20 TOP MAIN SOLVE Loop x[1] = 0.674 y[1] (analytic) = 0.51588101154729503904658013467762 y[1] (numeric) = 0.51588101154729503904658013467763 absolute error = 1e-32 relative error = 1.9384314941165881752882375505762e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1822 Order of pole = 7.381e-20 TOP MAIN SOLVE Loop x[1] = 0.675 y[1] (analytic) = 0.51851068098702145720041827888818 y[1] (numeric) = 0.51851068098702145720041827888819 absolute error = 1e-32 relative error = 1.9286005798307372286678726044827e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1812 Order of pole = 6.308e-20 TOP MAIN SOLVE Loop x[1] = 0.676 y[1] (analytic) = 0.52115626451045988397749360687248 y[1] (numeric) = 0.52115626451045988397749360687248 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1802 Order of pole = 5.387e-20 TOP MAIN SOLVE Loop memory used=217.4MB, alloc=4.3MB, time=9.68 x[1] = 0.677 y[1] (analytic) = 0.5238179314227111512870511782269 y[1] (numeric) = 0.52381793142271115128705117822691 absolute error = 1e-32 relative error = 1.9090602669594732462054564428531e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1792 Order of pole = 4.597e-20 TOP MAIN SOLVE Loop x[1] = 0.678 y[1] (analytic) = 0.5264958538758509874760847291986 y[1] (numeric) = 0.52649585387585098747608472919858 absolute error = 2e-32 relative error = 3.7987003796455439913249845549988e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1782 Order of pole = 3.920e-20 TOP MAIN SOLVE Loop x[1] = 0.679 y[1] (analytic) = 0.52919020693298909316516580551025 y[1] (numeric) = 0.52919020693298909316516580551024 absolute error = 1e-32 relative error = 1.8896797160999412663039871681445e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1772 Order of pole = 3.340e-20 TOP MAIN SOLVE Loop x[1] = 0.68 y[1] (analytic) = 0.53190116863414100868025572043518 y[1] (numeric) = 0.53190116863414100868025572043518 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1762 Order of pole = 2.843e-20 TOP MAIN SOLVE Loop x[1] = 0.681 y[1] (analytic) = 0.5346289200639746810190493367373 y[1] (numeric) = 0.53462892006397468101904933673729 absolute error = 1e-32 relative error = 1.8704562407142848887415470553256e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1752 Order of pole = 2.419e-20 TOP MAIN SOLVE Loop x[1] = 0.682 y[1] (analytic) = 0.53737364542149611899306534118 y[1] (numeric) = 0.53737364542149611899306534117999 absolute error = 1e-32 relative error = 1.8609025740658286046146679133923e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1742 Order of pole = 2.056e-20 TOP MAIN SOLVE Loop x[1] = 0.683 y[1] (analytic) = 0.54013553209174112014803574620028 y[1] (numeric) = 0.54013553209174112014803574620027 absolute error = 1e-32 relative error = 1.8513871807828996263983292782409e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1732 Order of pole = 1.746e-20 TOP MAIN SOLVE Loop x[1] = 0.684 y[1] (analytic) = 0.54291477071954276823992840880242 y[1] (numeric) = 0.54291477071954276823992840880242 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1722 Order of pole = 1.482e-20 TOP MAIN SOLVE Loop x[1] = 0.685 y[1] (analytic) = 0.545711555285447241733765105349 y[1] (numeric) = 0.54571155528544724173376510534901 absolute error = 1e-32 relative error = 1.8324699015708518780337284502260e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1712 Order of pole = 1.256e-20 TOP MAIN SOLVE Loop x[1] = 0.686 y[1] (analytic) = 0.54852608318385344866806459797902 y[1] (numeric) = 0.54852608318385344866806459797902 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1702 Order of pole = 1.064e-20 TOP MAIN SOLVE Loop x[1] = 0.687 y[1] (analytic) = 0.55135855530345511835315368356558 y[1] (numeric) = 0.55135855530345511835315368356558 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1692 Order of pole = 9.009e-21 TOP MAIN SOLVE Loop x[1] = 0.688 y[1] (analytic) = 0.55420917611006724322941077159685 y[1] (numeric) = 0.55420917611006724322941077159686 absolute error = 1e-32 relative error = 1.8043728669721586363168158180792e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1682 Order of pole = 7.619e-21 TOP MAIN SOLVE Loop memory used=221.2MB, alloc=4.3MB, time=9.86 x[1] = 0.689 y[1] (analytic) = 0.557078153731922182730619505447 y[1] (numeric) = 0.55707815373192218273061950544702 absolute error = 2e-32 relative error = 3.5901605306217812998205777833659e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1672 Order of pole = 6.438e-21 TOP MAIN SOLVE Loop x[1] = 0.69 y[1] (analytic) = 0.55996570004752432358256657184642 y[1] (numeric) = 0.55996570004752432358256657184645 absolute error = 3e-32 relative error = 5.3574710017870555545220981916040e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1662 Order of pole = 5.435e-21 TOP MAIN SOLVE Loop x[1] = 0.691 y[1] (analytic) = 0.56287203077615594652961867818405 y[1] (numeric) = 0.56287203077615594652961867818405 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1652 Order of pole = 4.585e-21 TOP MAIN SOLVE Loop x[1] = 0.692 y[1] (analytic) = 0.56579736557113088747518804337532 y[1] (numeric) = 0.56579736557113088747518804337533 absolute error = 1e-32 relative error = 1.7674172077322654933342653964151e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1642 Order of pole = 3.864e-21 TOP MAIN SOLVE Loop x[1] = 0.693 y[1] (analytic) = 0.56874192811589671147616603284125 y[1] (numeric) = 0.56874192811589671147616603284126 absolute error = 1e-32 relative error = 1.7582667121320843962217618250060e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1632 Order of pole = 3.253e-21 TOP MAIN SOLVE Loop x[1] = 0.694 y[1] (analytic) = 0.57170594622309045159353275347315 y[1] (numeric) = 0.57170594622309045159353275347318 absolute error = 3e-32 relative error = 5.2474528554743129657015366419440e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1622 Order of pole = 2.736e-21 TOP MAIN SOLVE Loop x[1] = 0.695 y[1] (analytic) = 0.5746896519366575125768825367486 y[1] (numeric) = 0.57468965193665751257688253674862 absolute error = 2e-32 relative error = 3.4801392251629418152470603307934e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1612 Order of pole = 2.299e-21 TOP MAIN SOLVE Loop x[1] = 0.696 y[1] (analytic) = 0.57769328163714811375854816356138 y[1] (numeric) = 0.57769328163714811375854816356137 absolute error = 1e-32 relative error = 1.7310223812298110403773164671990e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1602 Order of pole = 1.931e-21 TOP MAIN SOLVE Loop x[1] = 0.697 y[1] (analytic) = 0.5807170761503106591143923513486 y[1] (numeric) = 0.58071707615031065911439235134861 absolute error = 1e-32 relative error = 1.7220089456111734871462686298757e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1592 Order of pole = 1.619e-21 TOP MAIN SOLVE Loop x[1] = 0.698 y[1] (analytic) = 0.58376128085910668877834945394675 y[1] (numeric) = 0.58376128085910668877834945394675 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1582 Order of pole = 1.357e-21 TOP MAIN SOLVE Loop x[1] = 0.699 y[1] (analytic) = 0.58682614581927759980187968677418 y[1] (numeric) = 0.5868261458192775998018796867742 absolute error = 2e-32 relative error = 3.4081644354952304000656607279701e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1572 Order of pole = 1.136e-21 TOP MAIN SOLVE Loop x[1] = 0.7 y[1] (analytic) = 0.5899119258785991399737209966108 y[1] (numeric) = 0.58991192587859913997372099661083 absolute error = 3e-32 relative error = 5.0855049175889769529141082826135e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1562 Order of pole = 9.499e-22 TOP MAIN SOLVE Loop memory used=225.0MB, alloc=4.3MB, time=10.03 x[1] = 0.701 y[1] (analytic) = 0.59301888079996579339145786524008 y[1] (numeric) = 0.59301888079996579339145786524009 absolute error = 1e-32 relative error = 1.6862869503430112071359197331325e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1552 Order of pole = 7.936e-22 TOP MAIN SOLVE Loop x[1] = 0.702 y[1] (analytic) = 0.59614727538845360759202232616552 y[1] (numeric) = 0.59614727538845360759202232616553 absolute error = 1e-32 relative error = 1.6774378434395984083035623329685e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1542 Order of pole = 6.623e-22 TOP MAIN SOLVE Loop x[1] = 0.703 y[1] (analytic) = 0.5992973796225167779221993100504 y[1] (numeric) = 0.5992973796225167779221993100504 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1532 Order of pole = 5.521e-22 TOP MAIN SOLVE Loop x[1] = 0.704 y[1] (analytic) = 0.60246946878948042519427861745488 y[1] (numeric) = 0.6024694687894804251942786174549 absolute error = 2e-32 relative error = 3.3196702963529851158041230483979e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1522 Order of pole = 4.598e-22 TOP MAIN SOLVE Loop x[1] = 0.705 y[1] (analytic) = 0.6056638236254994985587380728045 y[1] (numeric) = 0.60566382362549949855873807280452 absolute error = 2e-32 relative error = 3.3021618957328732346282400887797e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1512 Order of pole = 3.825e-22 TOP MAIN SOLVE Loop x[1] = 0.706 y[1] (analytic) = 0.60888073046016162936357856028045 y[1] (numeric) = 0.60888073046016162936357856028046 absolute error = 1e-32 relative error = 1.6423577721769088858455688959499e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1502 Order of pole = 3.179e-22 TOP MAIN SOLVE Loop x[1] = 0.707 y[1] (analytic) = 0.6121204813659200774853158666314 y[1] (numeric) = 0.61212048136592007748531586663142 absolute error = 2e-32 relative error = 3.2673306332392072362547907147202e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1492 Order of pole = 2.639e-22 TOP MAIN SOLVE Loop x[1] = 0.708 y[1] (analytic) = 0.61538337431255167474550036038072 y[1] (numeric) = 0.61538337431255167474550036038075 absolute error = 3e-32 relative error = 4.8750098316375825790849101120636e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1482 Order of pole = 2.188e-22 TOP MAIN SOLVE Loop x[1] = 0.709 y[1] (analytic) = 0.6186697133268439078338508258636 y[1] (numeric) = 0.61866971332684390783385082586361 absolute error = 1e-32 relative error = 1.6163713504295932316229500542847e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1472 Order of pole = 1.812e-22 TOP MAIN SOLVE Loop x[1] = 0.71 y[1] (analytic) = 0.62197980865772502476821277671138 y[1] (numeric) = 0.6219798086577250247682127767114 absolute error = 2e-32 relative error = 3.2155384662986678220437789224191e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1462 Order of pole = 1.499e-22 TOP MAIN SOLVE Loop x[1] = 0.711 y[1] (analytic) = 0.62531397694706132545517453671095 y[1] (numeric) = 0.62531397694706132545517453671095 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1452 Order of pole = 1.239e-22 TOP MAIN SOLVE Loop x[1] = 0.712 y[1] (analytic) = 0.62867254140635664164689504215562 y[1] (numeric) = 0.62867254140635664164689504215562 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1442 Order of pole = 1.023e-22 memory used=228.8MB, alloc=4.3MB, time=10.20 TOP MAIN SOLVE Loop x[1] = 0.713 y[1] (analytic) = 0.63205583199960046010879312202228 y[1] (numeric) = 0.63205583199960046010879312202227 absolute error = 1e-32 relative error = 1.5821387120760435092843143838987e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1432 Order of pole = 8.429e-23 TOP MAIN SOLVE Loop x[1] = 0.714 y[1] (analytic) = 0.63546418563252323320269402232322 y[1] (numeric) = 0.63546418563252323320269402232324 absolute error = 2e-32 relative error = 3.1473056156725120174913196638201e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1422 Order of pole = 6.940e-23 TOP MAIN SOLVE Loop x[1] = 0.715 y[1] (analytic) = 0.63889794634853019412213623946872 y[1] (numeric) = 0.63889794634853019412213623946873 absolute error = 1e-32 relative error = 1.5651952016988988919254509289671e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1412 Order of pole = 5.707e-23 TOP MAIN SOLVE Loop x[1] = 0.716 y[1] (analytic) = 0.64235746553159849336011228804578 y[1] (numeric) = 0.64235746553159849336011228804579 absolute error = 1e-32 relative error = 1.5567655918382232186932505219928e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1402 Order of pole = 4.688e-23 TOP MAIN SOLVE Loop x[1] = 0.717 y[1] (analytic) = 0.64584310211643674544005223370155 y[1] (numeric) = 0.64584310211643674544005223370158 absolute error = 3e-32 relative error = 4.6450910293366278274057665220582e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1392 Order of pole = 3.845e-23 TOP MAIN SOLVE Loop x[1] = 0.718 y[1] (analytic) = 0.64935522280622117066801389812218 y[1] (numeric) = 0.64935522280622117066801389812218 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1382 Order of pole = 3.150e-23 TOP MAIN SOLVE Loop x[1] = 0.719 y[1] (analytic) = 0.65289420229823848948119237323138 y[1] (numeric) = 0.6528942022982384894811923732314 absolute error = 2e-32 relative error = 3.0632834431058571003749901296654e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1372 Order of pole = 2.577e-23 TOP MAIN SOLVE Loop x[1] = 0.72 y[1] (analytic) = 0.65646042351778263462532651194828 y[1] (numeric) = 0.65646042351778263462532651194829 absolute error = 1e-32 relative error = 1.5233210779734253665230133385404e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1362 Order of pole = 2.106e-23 TOP MAIN SOLVE Loop x[1] = 0.721 y[1] (analytic) = 0.6600542778606702508977961866134 y[1] (numeric) = 0.6600542778606702508977961866134 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1352 Order of pole = 1.718e-23 TOP MAIN SOLVE Loop x[1] = 0.722 y[1] (analytic) = 0.66367616544475892015431759229875 y[1] (numeric) = 0.66367616544475892015431759229877 absolute error = 2e-32 relative error = 3.0135178934137419804123750292770e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1342 Order of pole = 1.400e-23 TOP MAIN SOLVE Loop x[1] = 0.723 y[1] (analytic) = 0.66732649537087215228781303409972 y[1] (numeric) = 0.66732649537087215228781303409974 absolute error = 2e-32 relative error = 2.9970337066992726831823432377417e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1332 Order of pole = 1.139e-23 TOP MAIN SOLVE Loop x[1] = 0.724 y[1] (analytic) = 0.6710056859935564979364856041507 y[1] (numeric) = 0.67100568599355649793648560415072 absolute error = 2e-32 relative error = 2.9806006741039829379241674762086e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1322 Order of pole = 9.258e-24 memory used=232.7MB, alloc=4.3MB, time=10.38 TOP MAIN SOLVE Loop x[1] = 0.725 y[1] (analytic) = 0.6747141652021187485988668000766 y[1] (numeric) = 0.67471416520211874859886680007661 absolute error = 1e-32 relative error = 1.4821090938567118487317973816885e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1312 Order of pole = 7.512e-24 TOP MAIN SOLVE Loop x[1] = 0.726 y[1] (analytic) = 0.67845237071241518379947842956612 y[1] (numeric) = 0.67845237071241518379947842956614 absolute error = 2e-32 relative error = 2.9478856384566561556252776986368e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1302 Order of pole = 6.087e-24 TOP MAIN SOLVE Loop x[1] = 0.727 y[1] (analytic) = 0.68222075036989029900858037606362 y[1] (numeric) = 0.68222075036989029900858037606364 absolute error = 2e-32 relative error = 2.9316024159564608754389075157919e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1292 Order of pole = 4.924e-24 TOP MAIN SOLVE Loop x[1] = 0.728 y[1] (analytic) = 0.68601976246438950568580247932738 y[1] (numeric) = 0.6860197624643895056858024793274 absolute error = 2e-32 relative error = 2.9153679083754058649658745202140e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1282 Order of pole = 3.978e-24 TOP MAIN SOLVE Loop x[1] = 0.729 y[1] (analytic) = 0.6898498760572990477095253389845 y[1] (numeric) = 0.6898498760572990477095253389845 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1272 Order of pole = 3.209e-24 TOP MAIN SOLVE Loop x[1] = 0.73 y[1] (analytic) = 0.69371157132159694700151930189268 y[1] (numeric) = 0.69371157132159694700151930189269 absolute error = 1e-32 relative error = 1.4415212911828612899378950742707e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1262 Order of pole = 2.584e-24 TOP MAIN SOLVE Loop x[1] = 0.731 y[1] (analytic) = 0.69760533989543130537110109030705 y[1] (numeric) = 0.69760533989543130537110109030705 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1252 Order of pole = 2.078e-24 TOP MAIN SOLVE Loop x[1] = 0.732 y[1] (analytic) = 0.70153168524987688992344780724448 y[1] (numeric) = 0.7015316852498768899234478072445 absolute error = 2e-32 relative error = 2.8509047303937879762353924094357e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1242 Order of pole = 1.668e-24 TOP MAIN SOLVE Loop x[1] = 0.733 y[1] (analytic) = 0.70549112307155776759555738292948 y[1] (numeric) = 0.70549112307155776759555738292948 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1232 Order of pole = 1.337e-24 TOP MAIN SOLVE Loop x[1] = 0.734 y[1] (analytic) = 0.70948418166086299466583618219795 y[1] (numeric) = 0.70948418166086299466583618219795 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1222 Order of pole = 1.070e-24 TOP MAIN SOLVE Loop x[1] = 0.735 y[1] (analytic) = 0.71351140234652418708534723213208 y[1] (numeric) = 0.71351140234652418708534723213207 absolute error = 1e-32 relative error = 1.4015192983760330496383839627735e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1212 Order of pole = 8.546e-25 TOP MAIN SOLVE Loop x[1] = 0.736 y[1] (analytic) = 0.7175733399173683895766471936276 y[1] (numeric) = 0.7175733399173683895766471936276 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1202 Order of pole = 6.815e-25 TOP MAIN SOLVE Loop memory used=236.5MB, alloc=4.3MB, time=10.56 x[1] = 0.737 y[1] (analytic) = 0.72167056307210723408942072472122 y[1] (numeric) = 0.72167056307210723408942072472122 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1192 Order of pole = 5.423e-25 TOP MAIN SOLVE Loop x[1] = 0.738 y[1] (analytic) = 0.72580365488807415740328346513702 y[1] (numeric) = 0.72580365488807415740328346513702 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1182 Order of pole = 4.311e-25 TOP MAIN SOLVE Loop x[1] = 0.739 y[1] (analytic) = 0.72997321330987567864420551332005 y[1] (numeric) = 0.72997321330987567864420551332005 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1172 Order of pole = 3.420e-25 TOP MAIN SOLVE Loop x[1] = 0.74 y[1] (analytic) = 0.73417985165898068646399084752802 y[1] (numeric) = 0.73417985165898068646399084752801 absolute error = 1e-32 relative error = 1.3620640742733023891273188535351e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1162 Order of pole = 2.707e-25 TOP MAIN SOLVE Loop x[1] = 0.741 y[1] (analytic) = 0.7384241991653336418672701966962 y[1] (numeric) = 0.73842419916533364186727019669618 absolute error = 2e-32 relative error = 2.7084702834233615685614037304320e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1152 Order of pole = 2.140e-25 TOP MAIN SOLVE Loop x[1] = 0.742 y[1] (analytic) = 0.7427069015221438806230931552423 y[1] (numeric) = 0.7427069015221438806230931552423 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1142 Order of pole = 1.689e-25 TOP MAIN SOLVE Loop x[1] = 0.743 y[1] (analytic) = 0.74702862146507414099470974129515 y[1] (numeric) = 0.74702862146507414099470974129515 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Real estimate of pole used Radius of convergence = 0.1132 Order of pole = 1.330e-25 TOP MAIN SOLVE Loop x[1] = 0.744 y[1] (analytic) = 0.75139003937712742064862131868572 y[1] (numeric) = 0.75139003937712742064862131868573 absolute error = 1e-32 relative error = 1.3308667237976169993213385804722e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1122 Order of pole = 1.045e-25 TOP MAIN SOLVE Loop x[1] = 0.745 y[1] (analytic) = 0.75579185392061268690065719253452 y[1] (numeric) = 0.75579185392061268690065719253453 absolute error = 1e-32 relative error = 1.3231156102206925786940515769865e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1112 Order of pole = 8.188e-26 TOP MAIN SOLVE Loop x[1] = 0.746 y[1] (analytic) = 0.76023478269765726942643258759605 y[1] (numeric) = 0.76023478269765726942643258759607 absolute error = 2e-32 relative error = 2.6307662389546217963382694689718e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1102 Order of pole = 6.412e-26 TOP MAIN SOLVE Loop x[1] = 0.747 y[1] (analytic) = 0.76471956294082743705239387604262 y[1] (numeric) = 0.76471956294082743705239387604264 absolute error = 2e-32 relative error = 2.6153378269920842108716192442328e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1092 Order of pole = 4.996e-26 TOP MAIN SOLVE Loop x[1] = 0.748 y[1] (analytic) = 0.76924695223551922752372009101778 y[1] (numeric) = 0.76924695223551922752372009101779 absolute error = 1e-32 relative error = 1.2999726512973319462232851819022e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1082 Order of pole = 3.898e-26 TOP MAIN SOLVE Loop memory used=240.3MB, alloc=4.3MB, time=10.73 x[1] = 0.749 y[1] (analytic) = 0.77381772927588963745226453451432 y[1] (numeric) = 0.77381772927588963745226453451433 absolute error = 1e-32 relative error = 1.2922939888386422326821180954549e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1072 Order of pole = 3.032e-26 TOP MAIN SOLVE Loop x[1] = 0.75 y[1] (analytic) = 0.77843269465621441922928602455618 y[1] (numeric) = 0.77843269465621441922928602455621 absolute error = 3e-32 relative error = 3.8538977365601459887219534620339e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1062 Order of pole = 2.352e-26 TOP MAIN SOLVE Loop x[1] = 0.751 y[1] (analytic) = 0.7830926716996836624256117833194 y[1] (numeric) = 0.78309267169968366242561178331941 absolute error = 1e-32 relative error = 1.2769880706832873804670066608187e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1052 Order of pole = 1.825e-26 TOP MAIN SOLVE Loop x[1] = 0.752 y[1] (analytic) = 0.78779850732678081487777783166182 y[1] (numeric) = 0.78779850732678081487777783166184 absolute error = 2e-32 relative error = 2.5387202202077731758049806793974e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1042 Order of pole = 1.414e-26 TOP MAIN SOLVE Loop x[1] = 0.753 y[1] (analytic) = 0.79255107296553565194564879370368 y[1] (numeric) = 0.79255107296553565194564879370371 absolute error = 3e-32 relative error = 3.7852450174279885199923726481629e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1032 Order of pole = 1.086e-26 TOP MAIN SOLVE Loop x[1] = 0.754 y[1] (analytic) = 0.797351265506097840697799643498 y[1] (numeric) = 0.79735126550609784069779964349801 absolute error = 1e-32 relative error = 1.2541523958895032047567522886612e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1022 Order of pole = 8.308e-27 TOP MAIN SOLVE Loop x[1] = 0.755 y[1] (analytic) = 0.80220000830224616783791018820048 y[1] (numeric) = 0.8022000083022461678379101882005 absolute error = 2e-32 relative error = 2.4931438285979882861550936832792e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1012 Order of pole = 6.344e-27 TOP MAIN SOLVE Loop x[1] = 0.756 y[1] (analytic) = 0.80709825222263030403085454673305 y[1] (numeric) = 0.80709825222263030403085454673307 absolute error = 2e-32 relative error = 2.4780130479681911165115707127158e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.1002 Order of pole = 4.867e-27 TOP MAIN SOLVE Loop x[1] = 0.757 y[1] (analytic) = 0.81204697675473837106972510604542 y[1] (numeric) = 0.81204697675473837106972510604546 absolute error = 4e-32 relative error = 4.9258234000027752962222353236421e-30 % Correct digits = 31 h = 0.001 Real estimate of pole used Radius of convergence = 0.09919 Order of pole = 3.593e-27 TOP MAIN SOLVE Loop x[1] = 0.75897397035482766408405495249568 y[1] (analytic) = 0.82196773981936894340556776155488 y[1] (numeric) = 0.82196773981936894340556776155482 absolute error = 6e-32 relative error = 7.2995565511105418960820857710972e-30 % Correct digits = 31 h = 0.0009820254529042147955851271209533 Real estimate of pole used Radius of convergence = 0.09722 Order of pole = 2.274e-27 TOP MAIN SOLVE Loop x[1] = 0.7599461755532028367316842283454 memory used=244.1MB, alloc=4.3MB, time=10.90 y[1] (analytic) = 0.82693005359573271311812141426152 y[1] (numeric) = 0.82693005359573271311812141426161 absolute error = 9e-32 relative error = 1.0883629106071763610299593053289e-29 % Correct digits = 30 h = 0.00097220519837517264762927584972453 Real estimate of pole used Radius of convergence = 0.09625 Order of pole = 1.572e-27 TOP MAIN SOLVE Loop x[1] = 0.7609086586995942576528372114366 y[1] (analytic) = 0.83189362124284685418163320283555 y[1] (numeric) = 0.83189362124284685418163320283564 absolute error = 9e-32 relative error = 1.0818690960214388918782997851536e-29 % Correct digits = 30 h = 0.00096248314639142092115298309120061 Real estimate of pole used Radius of convergence = 0.09529 Order of pole = 1.355e-27 TOP MAIN SOLVE Loop x[1] = 0.76186151701452176436477866469688 y[1] (analytic) = 0.8368584176871724258469792165596 y[1] (numeric) = 0.83685841768717242584697921655958 absolute error = 2e-32 relative error = 2.3898905211796813809811473562700e-30 % Correct digits = 31 h = 0.00095285831492750671194145326028012 Real estimate of pole used Radius of convergence = 0.09433 Order of pole = 9.15e-28 TOP MAIN SOLVE Loop x[1] = 0.76280484674629999600960070342454 y[1] (analytic) = 0.84182441835894638084255494259768 y[1] (numeric) = 0.8418244183589463808425549425977 absolute error = 2e-32 relative error = 2.3757923343430719301778070765068e-30 % Correct digits = 31 h = 0.00094332973177823164482203872766052 Real estimate of pole used Radius of convergence = 0.09339 Order of pole = 6.91e-28 TOP MAIN SOLVE Loop x[1] = 0.76373874318076044533797452176492 y[1] (analytic) = 0.84679159918196535713962160922815 y[1] (numeric) = 0.84679159918196535713962160922831 absolute error = 1.6e-31 relative error = 1.8894849707362049449076300792967e-29 % Correct digits = 30 h = 0.0009338964344604493283738183403756 Real estimate of pole used Radius of convergence = 0.09246 Order of pole = 3.58e-28 TOP MAIN SOLVE Loop x[1] = 0.76466330065087629017306460192188 y[1] (analytic) = 0.85175993656358038574148497341542 y[1] (numeric) = 0.85175993656358038574148497341539 absolute error = 3e-32 relative error = 3.5221191690507062310088795481649e-30 % Correct digits = 31 h = 0.00092455747011584483509008015695995 Real estimate of pole used Radius of convergence = 0.09153 Order of pole = 3.46e-28 TOP MAIN SOLVE Loop x[1] = 0.76557861254629097655980378127727 y[1] (analytic) = 0.85672940738489801227274807944225 y[1] (numeric) = 0.85672940738489801227274807944242 absolute error = 1.7e-31 relative error = 1.9842904718178426454148304079483e-29 % Correct digits = 30 h = 0.00091531189541468638673917935538945 Real estimate of pole used Radius of convergence = 0.09062 Order of pole = 4.87e-28 TOP MAIN SOLVE Loop x[1] = 0.76648477132275151608267556883911 y[1] (analytic) = 0.86169998899118343205249171821415 y[1] (numeric) = 0.86169998899118343205249171821426 absolute error = 1.1e-31 relative error = 1.2765463781516362046525678929077e-29 % Correct digits = 30 h = 0.00090615877646053952287178756184095 Real estimate of pole used Radius of convergence = 0.08971 Order of pole = 1.16e-28 TOP MAIN SOLVE Loop x[1] = 0.76738186851144745021031863852532 y[1] (analytic) = 0.866671659182461337712164165769 y[1] (numeric) = 0.86667165918246133771216416576916 absolute error = 1.6e-31 relative error = 1.8461432112702213561865242706868e-29 % Correct digits = 30 h = 0.00089709718869593412764306968620923 Real estimate of pole used Radius of convergence = 0.08881 Order of pole = 2.44e-28 TOP MAIN SOLVE Loop x[1] = 0.76826999472825642499668527751467 y[1] (analytic) = 0.87164439620431027533641991272868 y[1] (numeric) = 0.87164439620431027533641991272886 absolute error = 1.8e-31 relative error = 2.0650623211005954182593872393665e-29 % Correct digits = 30 h = 0.00088812621680897478636663898935154 Real estimate of pole used Radius of convergence = 0.08792 Order of pole = 3.45e-28 TOP MAIN SOLVE Loop x[1] = 0.76914923968289731003518825011413 y[1] (analytic) = 0.8766181787388463996320486227678 y[1] (numeric) = 0.87661817873884639963204862276774 absolute error = 6e-32 relative error = 6.8444850283985063328589833591545e-30 % Correct digits = 31 h = 0.00087924495464088503850297259946152 NO POLE TOP MAIN SOLVE Loop memory used=247.9MB, alloc=4.3MB, time=11.07 x[1] = 0.77002848463753819507369122271359 y[1] (analytic) = 0.88164349759889789363439370176265 y[1] (numeric) = 0.88164349759889789363439370176268 absolute error = 3e-32 relative error = 3.4027359223658047619003009727164e-30 % Correct digits = 31 h = 0.00087924495464088503850297259946152 Real estimate of pole used Radius of convergence = 0.08617 Order of pole = 2.9e-29 TOP MAIN SOLVE Loop x[1] = 0.77175180474863432974915704900851 y[1] (analytic) = 0.8916466560700463525529134299567 y[1] (numeric) = 0.89164665607004635255291342995686 absolute error = 1.6e-31 relative error = 1.7944327936494908224088247020457e-29 % Correct digits = 30 h = 0.00086166005554806733773291314746109 Real estimate of pole used Radius of convergence = 0.08444 Order of pole = 8.9e-29 TOP MAIN SOLVE Loop x[1] = 0.77259623160307143574013530389302 y[1] (analytic) = 0.89662443528380254899868973950092 y[1] (numeric) = 0.89662443528380254899868973950116 absolute error = 2.4e-31 relative error = 2.6767059936754277905384576057320e-29 % Correct digits = 30 h = 0.00084442685443710599097825488451413 Real estimate of pole used Radius of convergence = 0.0836 Order of pole = 6.0e-29 TOP MAIN SOLVE Loop x[1] = 0.77343221418896417067120377622869 y[1] (analytic) = 0.90160315927895296954915900645868 y[1] (numeric) = 0.90160315927895296954915900645871 absolute error = 3e-32 relative error = 3.3274062641919050127320977951502e-30 % Correct digits = 31 h = 0.00083598258589273493106847233566817 NO POLE TOP MAIN SOLVE Loop x[1] = 0.77426819677485690560227224856436 y[1] (analytic) = 0.90663336955485044463574639644382 y[1] (numeric) = 0.90663336955485044463574639644398 absolute error = 1.6e-31 relative error = 1.7647706931254768279317489202255e-29 % Correct digits = 30 h = 0.00083598258589273493106847233566817 NO POLE TOP MAIN SOLVE Loop x[1] = 0.77510417936074964053334072090003 y[1] (analytic) = 0.91171611260606170004537745834025 y[1] (numeric) = 0.9117161126060617000453774583402 absolute error = 5e-32 relative error = 5.4841632508916971918537226581024e-30 % Correct digits = 31 h = 0.00083598258589273493106847233566817 Real estimate of pole used Radius of convergence = 0.08109 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = 0.77672598557738154629961355723123 y[1] (analytic) = 0.9217305182813957154574043550804 y[1] (numeric) = 0.92173051828139571545740435508032 absolute error = 8e-32 relative error = 8.6793263772109092132679226446443e-30 % Correct digits = 31 h = 0.00081090310831595288313641816559626 Real estimate of pole used Radius of convergence = 0.07947 Order of pole = 1.37e-28 TOP MAIN SOLVE Loop x[1] = 0.77752067062353118012508724703352 y[1] (analytic) = 0.9267137250825577810202422261099 y[1] (numeric) = 0.92671372508255778102024222611006 absolute error = 1.6e-31 relative error = 1.7265310275376157070554833120116e-29 % Correct digits = 30 h = 0.00079468504614963382547368980228802 Real estimate of pole used Radius of convergence = 0.07867 Order of pole = 7.5e-29 TOP MAIN SOLVE Loop x[1] = 0.77830740881921931761230619993778 y[1] (analytic) = 0.93169776827883222021494785082552 y[1] (numeric) = 0.93169776827883222021494785082544 absolute error = 8e-32 relative error = 8.5864754348169845467407736284784e-30 % Correct digits = 31 h = 0.00078673819568813748721895290426359 NO POLE TOP MAIN SOLVE Loop x[1] = 0.77909414701490745509952515284204 memory used=251.7MB, alloc=4.3MB, time=11.24 y[1] (analytic) = 0.93673324392871259873100083466925 y[1] (numeric) = 0.93673324392871259873100083466925 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.00078673819568813748721895290426359 NO POLE TOP MAIN SOLVE Loop x[1] = 0.78066762340628373007396305865056 y[1] (analytic) = 0.9469627111490426018290069704311 y[1] (numeric) = 0.94696271114904260182900697043127 absolute error = 1.7e-31 relative error = 1.7952132433358685307043013496802e-29 % Correct digits = 30 h = 0.00078673819568813748721895290426359 NO POLE TOP MAIN SOLVE Loop x[1] = 0.78145436160197186756118201155482 y[1] (analytic) = 0.95215889470391407263287634017548 y[1] (numeric) = 0.95215889470391407263287634017574 absolute error = 2.6e-31 relative error = 2.7306366767791452420836061440146e-29 % Correct digits = 30 h = 0.00078673819568813748721895290426359 Real estimate of pole used Radius of convergence = 0.07474 Order of pole = 5.8e-29 TOP MAIN SOLVE Loop x[1] = 0.78220176288787559817404001681387 y[1] (analytic) = 0.95714695349150743535278166130875 y[1] (numeric) = 0.95714695349150743535278166130901 absolute error = 2.6e-31 relative error = 2.7164062848611148569907590600012e-29 % Correct digits = 30 h = 0.00074740128590373061285800525904996 NO POLE TOP MAIN SOLVE Loop x[1] = 0.78369656545968305939975602733197 y[1] (analytic) = 0.96727829312363961508434414076272 y[1] (numeric) = 0.96727829312363961508434414076298 absolute error = 2.6e-31 relative error = 2.6879544578673413334470796268565e-29 % Correct digits = 30 h = 0.00074740128590373061285800525904996 NO POLE TOP MAIN SOLVE Loop x[1] = 0.78444396674558679001261403259102 y[1] (analytic) = 0.9724236995314144473438952714908 y[1] (numeric) = 0.97242369953141444734389527149107 absolute error = 2.7e-31 relative error = 2.7765674585070884194117236771112e-29 % Correct digits = 30 h = 0.00074740128590373061285800525904996 Real estimate of pole used Radius of convergence = 0.07175 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = 0.78516147198005437140095771763971 y[1] (analytic) = 0.9774146716400499023461287926209 y[1] (numeric) = 0.97741467164004990234612879262106 absolute error = 1.6e-31 relative error = 1.6369715397409422820556555820076e-29 % Correct digits = 30 h = 0.00071750523446758138834368504868635 Real estimate of pole used Radius of convergence = 0.07103 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = 0.78657502904247895349413361155413 y[1] (analytic) = 0.98739864647812024899650616174462 y[1] (numeric) = 0.98739864647812024899650616174457 absolute error = 5e-32 relative error = 5.0638108709528142147248050171460e-30 % Correct digits = 31 h = 0.0007032268803016765187156457162175 NO POLE TOP MAIN SOLVE Loop x[1] = 0.78727825592278063001284925727035 y[1] (analytic) = 0.99244231657494858481910046435928 y[1] (numeric) = 0.99244231657494858481910046435932 absolute error = 4e-32 relative error = 4.0304609479012704470730310442007e-30 % Correct digits = 31 h = 0.0007032268803016765187156457162175 NO POLE memory used=255.6MB, alloc=4.3MB, time=11.41 TOP MAIN SOLVE Loop x[1] = 0.7886636128769749327547190793313 y[1] (analytic) = 1.0025326469135654622080101567926 y[1] (numeric) = 1.0025326469135654622080101567927 absolute error = 1e-31 relative error = 9.9747375118270455948864411475857e-30 % Correct digits = 31 h = 0.00068213007389262622315417634473205 NO POLE TOP MAIN SOLVE Loop x[1] = 0.78934574295086755897787325567603 y[1] (analytic) = 1.0075782410031755510792620548458 y[1] (numeric) = 1.0075782410031755510792620548458 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.00068213007389262622315417634473205 Real estimate of pole used Radius of convergence = 0.06685 Order of pole = 7.7e-29 TOP MAIN SOLVE Loop x[1] = 0.79001423042328233267656434849387 y[1] (analytic) = 1.0125737311564938321705513203538 y[1] (numeric) = 1.0125737311564938321705513203541 absolute error = 3e-31 relative error = 2.9627472130583529179821054069938e-29 % Correct digits = 30 h = 0.00066848747241477369869109281783789 Real estimate of pole used Radius of convergence = 0.06618 Order of pole = 4.2e-29 TOP MAIN SOLVE Loop x[1] = 0.79133783561866358459997271227319 y[1] (analytic) = 1.0226172048064924585364285746489 y[1] (numeric) = 1.0226172048064924585364285746489 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.00066180259769062596170418188965886 Real estimate of pole used Radius of convergence = 0.06486 Order of pole = 7.4e-29 TOP MAIN SOLVE Loop x[1] = 0.79262848304467984335048820779441 y[1] (analytic) = 1.0326122303526511661235619141849 y[1] (numeric) = 1.032612230352651166123561914185 absolute error = 1e-31 relative error = 9.6841773766178070108547075094182e-30 % Correct digits = 31 h = 0.00064208088027944530804539726934686 Real estimate of pole used Radius of convergence = 0.06357 Order of pole = 4.3e-29 TOP MAIN SOLVE Loop x[1] = 0.79326414311615649420545315109106 y[1] (analytic) = 1.0376105667490522365130119959086 y[1] (numeric) = 1.0376105667490522365130119959087 absolute error = 1e-31 relative error = 9.6375271421252939898611168440358e-30 % Correct digits = 31 h = 0.0006356600714766508549649432966534 NO POLE TOP MAIN SOLVE Loop x[1] = 0.79452275005768026289828373881843 y[1] (analytic) = 1.047659591197824612657094548909 y[1] (numeric) = 1.0476595911978246126570945489088 absolute error = 2e-31 relative error = 1.9090170288169007424459297563698e-29 % Correct digits = 30 h = 0.00062294687004711783786564443072017 NO POLE TOP MAIN SOLVE Loop memory used=259.4MB, alloc=4.3MB, time=11.57 x[1] = 0.79514569692772738073614938324915 y[1] (analytic) = 1.0527102685164132206287974530997 y[1] (numeric) = 1.0527102685164132206287974530996 absolute error = 1e-31 relative error = 9.4992898797244762122192402172028e-30 % Correct digits = 31 h = 0.00062294687004711783786564443072017 Real estimate of pole used Radius of convergence = 0.06105 Order of pole = 3.3e-29 TOP MAIN SOLVE Loop x[1] = 0.79636056791369326994355496301794 y[1] (analytic) = 1.0627116043092117718176335368499 y[1] (numeric) = 1.0627116043092117718176335368498 absolute error = 1e-31 relative error = 9.4098906603172378988280109770111e-30 % Correct digits = 31 h = 0.00060438305331971372629724822668396 Real estimate of pole used Radius of convergence = 0.05983 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = 0.79755126296703843795573317174933 y[1] (analytic) = 1.0727148727100903429129110598464 y[1] (numeric) = 1.0727148727100903429129110598462 absolute error = 2e-31 relative error = 1.8644283312183700637168019806409e-29 % Correct digits = 30 h = 0.00059235583055865142314393298697472 NO POLE TOP MAIN SOLVE Loop x[1] = 0.7981436187975970893788771047363 y[1] (analytic) = 1.0777679960199828437054743717232 y[1] (numeric) = 1.0777679960199828437054743717232 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.00059235583055865142314393298697472 NO POLE TOP MAIN SOLVE Loop x[1] = 0.79931055978379763268247065272063 y[1] (analytic) = 1.0878766672273418074799736479535 y[1] (numeric) = 1.0878766672273418074799736479534 absolute error = 1e-31 relative error = 9.1922184759113180216186329461415e-30 % Correct digits = 31 h = 0.00057458515564189188044961499736416 NO POLE TOP MAIN SOLVE Loop x[1] = 0.80044823839196857860576089041541 y[1] (analytic) = 1.0979352724004229147279149423962 y[1] (numeric) = 1.0979352724004229147279149423965 absolute error = 3e-31 relative error = 2.7324015134708996048803651475466e-29 % Correct digits = 30 h = 0.00056309345252905404284062269741783 NO POLE TOP MAIN SOLVE Loop x[1] = 0.80101133184449763264860151311283 y[1] (analytic) = 1.1029906198229705596163886553827 y[1] (numeric) = 1.1029906198229705596163886553827 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.00056309345252905404284062269741783 Real estimate of pole used Radius of convergence = 0.05518 Order of pole = 4.5e-29 TOP MAIN SOLVE Loop memory used=263.2MB, alloc=4.3MB, time=11.75 x[1] = 0.80210947669561979384294929549733 y[1] (analytic) = 1.1130009263735244396012372658112 y[1] (numeric) = 1.1130009263735244396012372658113 absolute error = 1e-31 relative error = 8.9847184876861351882758095460033e-30 % Correct digits = 31 h = 0.00054631326764368823236397214103465 Real estimate of pole used Radius of convergence = 0.05409 Order of pole = 1.47e-28 TOP MAIN SOLVE Loop x[1] = 0.80319117696555429654302996033659 y[1] (analytic) = 1.1230636379860376409740553467452 y[1] (numeric) = 1.1230636379860376409740553467452 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.00054085013496725135004033241962592 Real estimate of pole used Radius of convergence = 0.053 Order of pole = 9.2e-29 TOP MAIN SOLVE Loop x[1] = 0.80425124323009010918910901187905 y[1] (analytic) = 1.1331278809488169585106805055626 y[1] (numeric) = 1.1331278809488169585106805055628 absolute error = 2e-31 relative error = 1.7650258489141698131551802449095e-29 % Correct digits = 30 h = 0.00053003313226790632303952577123222 NO POLE TOP MAIN SOLVE Loop x[1] = 0.80514604061245943602362843216336 y[1] (analytic) = 1.141785412533864845799064317508 y[1] (numeric) = 1.1417854125338648457990643175084 absolute error = 4e-31 relative error = 3.5032852549089313094130752969674e-29 % Correct digits = 30 h = 0.0003647642501014205114798945130805 NO POLE TOP MAIN SOLVE Loop x[1] = 0.8062403333627636975580681157026 y[1] (analytic) = 1.1525832713535406975400213409249 y[1] (numeric) = 1.1525832713535406975400213409252 absolute error = 3e-31 relative error = 2.6028488132375357155229653599773e-29 % Correct digits = 30 h = 0.0003647642501014205114798945130805 Real estimate of pole used Radius of convergence = 0.04995 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop memory used=267.0MB, alloc=4.3MB, time=11.92 x[1] = 0.80733462611306795909250779924184 y[1] (analytic) = 1.1636219227730061292377751196298 y[1] (numeric) = 1.16362192277300612923777511963 absolute error = 2e-31 relative error = 1.7187713301532138262976126231669e-29 % Correct digits = 30 h = 0.0003647642501014205114798945130805 NO POLE TOP MAIN SOLVE Loop x[1] = 0.808064154613270800115467588268 y[1] (analytic) = 1.1711201364360620095704654198422 y[1] (numeric) = 1.1711201364360620095704654198424 absolute error = 2e-31 relative error = 1.7077667250145443746452544677232e-29 % Correct digits = 30 h = 0.0003647642501014205114798945130805 Real estimate of pole used Radius of convergence = 0.04813 Order of pole = 5.1e-29 TOP MAIN SOLVE Loop x[1] = 0.80915844736357506164990727180724 y[1] (analytic) = 1.182584641725606205288514519638 y[1] (numeric) = 1.1825846417256062052885145196382 absolute error = 2e-31 relative error = 1.6912108693392432607756673447298e-29 % Correct digits = 30 h = 0.0003647642501014205114798945130805 Real estimate of pole used Radius of convergence = 0.04704 Order of pole = 1.19e-28 TOP MAIN SOLVE Loop x[1] = 0.81025274011387932318434695534648 y[1] (analytic) = 1.1943206497385282524908557723414 y[1] (numeric) = 1.1943206497385282524908557723415 absolute error = 1e-31 relative error = 8.3729608143251083332999168765084e-30 % Correct digits = 31 h = 0.0003647642501014205114798945130805 NO POLE TOP MAIN SOLVE Loop x[1] = 0.81134703286418358471878663888572 y[1] (analytic) = 1.2063412135190579386074684261346 y[1] (numeric) = 1.2063412135190579386074684261351 absolute error = 5e-31 relative error = 4.1447643038028471837132494071250e-29 % Correct digits = 30 h = 0.0003647642501014205114798945130805 NO POLE memory used=270.8MB, alloc=4.3MB, time=12.09 TOP MAIN SOLVE Loop x[1] = 0.81207656136438642574174642791188 y[1] (analytic) = 1.2145198902737938312427448902368 y[1] (numeric) = 1.2145198902737938312427448902369 absolute error = 1e-31 relative error = 8.2337062406986698447827091155768e-30 % Correct digits = 31 h = 0.0003647642501014205114798945130805 NO POLE TOP MAIN SOLVE Loop x[1] = 0.81317085411469068727618611145112 y[1] (analytic) = 1.2270463922001896317952920801113 y[1] (numeric) = 1.2270463922001896317952920801119 absolute error = 6e-31 relative error = 4.8897906698063251436180557506859e-29 % Correct digits = 30 h = 0.0003647642501014205114798945130805 Real estimate of pole used Radius of convergence = 0.04302 Order of pole = 9.7e-29 TOP MAIN SOLVE Loop x[1] = 0.81426514686499494881062579499036 y[1] (analytic) = 1.2398972599715647488430073830684 y[1] (numeric) = 1.2398972599715647488430073830688 absolute error = 4e-31 relative error = 3.2260737475068976418750526303393e-29 % Correct digits = 30 h = 0.0003647642501014205114798945130805 Real estimate of pole used Radius of convergence = 0.04193 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = 0.8153594396152992103450654785296 y[1] (analytic) = 1.2530896089389232034467422200695 y[1] (numeric) = 1.2530896089389232034467422200698 absolute error = 3e-31 relative error = 2.3940825768560202740284109107877e-29 % Correct digits = 30 h = 0.0003647642501014205114798945130805 NO POLE TOP MAIN SOLVE Loop x[1] = 0.81608896811550205136802526755576 y[1] (analytic) = 1.2620832989664325536585210992589 y[1] (numeric) = 1.2620832989664325536585210992594 absolute error = 5e-31 relative error = 3.9617036403973397910955791248182e-29 % Correct digits = 30 h = 0.0003647642501014205114798945130805 Real estimate of pole used Radius of convergence = 0.04011 Order of pole = 7.6e-29 memory used=274.6MB, alloc=4.3MB, time=12.26 TOP MAIN SOLVE Loop x[1] = 0.817183260865806312902464951095 y[1] (analytic) = 1.2758866761259692473998410918223 y[1] (numeric) = 1.2758866761259692473998410918226 absolute error = 3e-31 relative error = 2.3513060024335638978541343659580e-29 % Correct digits = 30 h = 0.0003647642501014205114798945130805 NO POLE TOP MAIN SOLVE Loop x[1] = 0.81827755361611057443690463463424 y[1] (analytic) = 1.2900844286536534823940186182087 y[1] (numeric) = 1.290084428653653482394018618209 absolute error = 3e-31 relative error = 2.3254291993360725270247519836284e-29 % Correct digits = 30 h = 0.0003647642501014205114798945130805 Real estimate of pole used Radius of convergence = 0.03792 Order of pole = 3.4e-29 TOP MAIN SOLVE Loop x[1] = 0.8190070821163134154598644236604 y[1] (analytic) = 1.2997799963117338889581788985592 y[1] (numeric) = 1.2997799963117338889581788985596 absolute error = 4e-31 relative error = 3.0774438838499068961182153197486e-29 % Correct digits = 30 h = 0.0003647642501014205114798945130805 Real estimate of pole used Radius of convergence = 0.03719 Order of pole = 6.0e-29 TOP MAIN SOLVE Loop x[1] = 0.82010137486661767699430410719964 y[1] (analytic) = 1.3146872943427437888648726332374 y[1] (numeric) = 1.3146872943427437888648726332378 absolute error = 4e-31 relative error = 3.0425486100097544272757724108299e-29 % Correct digits = 30 h = 0.0003647642501014205114798945130805 NO POLE memory used=278.4MB, alloc=4.3MB, time=12.43 TOP MAIN SOLVE Loop x[1] = 0.82119566761692193852874379073888 y[1] (analytic) = 1.3300552116671981657168916405725 y[1] (numeric) = 1.3300552116671981657168916405727 absolute error = 2e-31 relative error = 1.5036969762278057310410188694498e-29 % Correct digits = 30 h = 0.0003647642501014205114798945130805 Complex estimate of poles used Radius of convergence = 0.02398 Order of pole = 4.430e-27 TOP MAIN SOLVE Loop x[1] = 0.82202261323342064380264440062436 y[1] (analytic) = 1.3419918515688286533601249420525 y[1] (numeric) = 1.3419918515688286533601249420532 absolute error = 7e-31 relative error = 5.2161270516037712314550469416330e-29 % Correct digits = 30 h = 6.9486053677833460034649907520843e-05 Real estimate of pole used Radius of convergence = 0.03417 Order of pole = 6.8e-29 memory used=282.3MB, alloc=4.3MB, time=12.60 TOP MAIN SOLVE Loop x[1] = 0.82306490403858814570316414923716 y[1] (analytic) = 1.3574565969354142837219195728794 y[1] (numeric) = 1.3574565969354142837219195728804 absolute error = 1.0e-30 relative error = 7.3667180391446318641868239234078e-29 % Correct digits = 30 h = 6.9486053677833460034649907520843e-05 Real estimate of pole used Radius of convergence = 0.03313 Order of pole = 6.5e-29 memory used=286.1MB, alloc=4.3MB, time=12.76 TOP MAIN SOLVE Loop x[1] = 0.82403770879007781414364924794244 y[1] (analytic) = 1.3723371036801904788489453149004 y[1] (numeric) = 1.3723371036801904788489453149013 absolute error = 9e-31 relative error = 6.5581554093850110906202091593887e-29 % Correct digits = 30 h = 6.9486053677833460034649907520843e-05 Real estimate of pole used Radius of convergence = 0.03216 Order of pole = 8e-30 memory used=289.9MB, alloc=4.3MB, time=12.93 memory used=293.7MB, alloc=4.3MB, time=13.10 TOP MAIN SOLVE Loop x[1] = 0.82501051354156748258413434664772 y[1] (analytic) = 1.3876760410456419096127026262189 y[1] (numeric) = 1.3876760410456419096127026262205 absolute error = 1.6e-30 relative error = 1.1530068637593308169982815834145e-28 % Correct digits = 29 h = 6.9486053677833460034649907520843e-05 Real estimate of pole used Radius of convergence = 0.03118 Order of pole = 1.52e-28 memory used=297.5MB, alloc=4.3MB, time=13.26 TOP MAIN SOLVE Loop x[1] = 0.82605280434673498448465409526052 y[1] (analytic) = 1.4046523635814064006250144994848 y[1] (numeric) = 1.4046523635814064006250144994867 absolute error = 1.9e-30 relative error = 1.3526478502877525733041708435425e-28 % Correct digits = 29 h = 6.9486053677833460034649907520843e-05 Real estimate of pole used Radius of convergence = 0.03014 Order of pole = 1.6e-29 memory used=301.3MB, alloc=4.3MB, time=13.43 TOP MAIN SOLVE Loop x[1] = 0.8270256090982246529251391939658 y[1] (analytic) = 1.4210364767459725556964296923274 y[1] (numeric) = 1.4210364767459725556964296923292 absolute error = 1.8e-30 relative error = 1.2666810665703775273944594249152e-28 % Correct digits = 29 h = 6.9486053677833460034649907520843e-05 Real estimate of pole used Radius of convergence = 0.02917 Order of pole = 6.8e-29 memory used=305.1MB, alloc=4.3MB, time=13.59 TOP MAIN SOLVE Loop x[1] = 0.8280678999033921548256589425786 y[1] (analytic) = 1.4392100774592477165605197775927 y[1] (numeric) = 1.4392100774592477165605197775948 absolute error = 2.1e-30 relative error = 1.4591337518337124291230094194710e-28 % Correct digits = 29 h = 6.9486053677833460034649907520843e-05 Real estimate of pole used Radius of convergence = 0.02813 Order of pole = 6e-30 memory used=309.0MB, alloc=4.3MB, time=13.76 TOP MAIN SOLVE Loop x[1] = 0.82904070465488182326614404128388 y[1] (analytic) = 1.4567916158320270380442676562214 y[1] (numeric) = 1.4567916158320270380442676562232 absolute error = 1.8e-30 relative error = 1.2355919545651380522339434583196e-28 % Correct digits = 29 h = 6.9486053677833460034649907520843e-05 Real estimate of pole used Radius of convergence = 0.02715 Order of pole = 5.4e-29 memory used=312.8MB, alloc=4.3MB, time=13.92 TOP MAIN SOLVE Loop x[1] = 0.83001350940637149170662913998916 y[1] (analytic) = 1.4750159398693379143337581650265 y[1] (numeric) = 1.4750159398693379143337581650289 absolute error = 2.4e-30 relative error = 1.6271010604892855721635685979414e-28 % Correct digits = 29 h = 6.9486053677833460034649907520843e-05 Real estimate of pole used Radius of convergence = 0.02618 Order of pole = 1.54e-28 memory used=316.6MB, alloc=4.3MB, time=14.09 TOP MAIN SOLVE Loop x[1] = 0.83105580021153899360714888860196 y[1] (analytic) = 1.4953106717847830398407599733248 y[1] (numeric) = 1.4953106717847830398407599733274 absolute error = 2.6e-30 relative error = 1.7387691060190685253239624232926e-28 % Correct digits = 29 h = 6.9486053677833460034649907520843e-05 NO POLE memory used=320.4MB, alloc=4.3MB, time=14.26 TOP MAIN SOLVE Loop x[1] = 0.83202860496302866204763398730724 y[1] (analytic) = 1.5150277590416337321519765475269 y[1] (numeric) = 1.5150277590416337321519765475294 absolute error = 2.5e-30 relative error = 1.6501347814124762386588143008343e-28 % Correct digits = 29 h = 6.9486053677833460034649907520843e-05 Real estimate of pole used Radius of convergence = 0.02417 Order of pole = 3.5e-29 memory used=324.2MB, alloc=4.3MB, time=14.43 TOP MAIN SOLVE Loop memory used=328.0MB, alloc=4.3MB, time=14.59 x[1] = 0.83300140971451833048811908601252 y[1] (analytic) = 1.5355563789408961656182344663648 y[1] (numeric) = 1.5355563789408961656182344663683 absolute error = 3.5e-30 relative error = 2.2793041323653773925971864632974e-28 % Correct digits = 29 h = 6.9486053677833460034649907520843e-05 NO POLE memory used=331.9MB, alloc=4.3MB, time=14.76 TOP MAIN SOLVE Loop x[1] = 0.83404370051968583238863883462532 y[1] (analytic) = 1.55853103891081644388799143842 y[1] (numeric) = 1.5585310389108164438879914384238 absolute error = 3.8e-30 relative error = 2.4381933404776077434235881944809e-28 % Correct digits = 29 h = 6.9486053677833460034649907520843e-05 NO POLE memory used=335.7MB, alloc=4.3MB, time=14.93 TOP MAIN SOLVE Loop x[1] = 0.8350165052711755008291239333306 y[1] (analytic) = 1.5809724629991638540131355574016 y[1] (numeric) = 1.5809724629991638540131355574051 absolute error = 3.5e-30 relative error = 2.2138273005466326599851492853791e-28 % Correct digits = 29 h = 6.9486053677833460034649907520843e-05 Real estimate of pole used Radius of convergence = 0.02118 Order of pole = 1.1e-29 memory used=339.5MB, alloc=4.3MB, time=15.10 TOP MAIN SOLVE Loop x[1] = 0.83601707431350457540098459639536 y[1] (analytic) = 1.6051577893741350477320165835384 y[1] (numeric) = 1.6051577893741350477320165835424 absolute error = 4.0e-30 relative error = 2.4919668499130136692506755329204e-28 % Correct digits = 29 h = 4.8637726688506150971063634970162e-05 Real estimate of pole used Radius of convergence = 0.02018 Order of pole = 4.5e-29 memory used=343.3MB, alloc=4.3MB, time=15.27 memory used=347.1MB, alloc=4.3MB, time=15.43 TOP MAIN SOLVE Loop x[1] = 0.83703846657396320457137693272973 y[1] (analytic) = 1.6311177652286819614164265532492 y[1] (numeric) = 1.6311177652286819614164265532527 absolute error = 3.5e-30 relative error = 2.1457678130979718731446221557430e-28 % Correct digits = 29 h = 4.8637726688506150971063634970162e-05 NO POLE memory used=350.9MB, alloc=4.3MB, time=15.60 TOP MAIN SOLVE Loop x[1] = 0.83801122110773332759079820542913 y[1] (analytic) = 1.6571633193851661695841580573607 y[1] (numeric) = 1.6571633193851661695841580573644 absolute error = 3.7e-30 relative error = 2.2327310511390987005796393891473e-28 % Correct digits = 29 h = 4.8637726688506150971063634970162e-05 Real estimate of pole used Radius of convergence = 0.01818 Order of pole = 1.42e-28 memory used=354.7MB, alloc=4.3MB, time=15.77 memory used=358.6MB, alloc=4.3MB, time=15.94 TOP MAIN SOLVE Loop x[1] = 0.8390326133681919567611905417635 y[1] (analytic) = 1.686056999680881551533146503839 y[1] (numeric) = 1.6860569996808815515331465038432 absolute error = 4.2e-30 relative error = 2.4910189873740508857958417997774e-28 % Correct digits = 29 h = 4.8637726688506150971063634970162e-05 Real estimate of pole used Radius of convergence = 0.01716 Order of pole = 4e-30 memory used=362.4MB, alloc=4.3MB, time=16.10 TOP MAIN SOLVE Loop memory used=366.2MB, alloc=4.3MB, time=16.27 x[1] = 0.8400053679019620797806118144629 y[1] (analytic) = 1.7152216382498102194250014514062 y[1] (numeric) = 1.7152216382498102194250014514107 absolute error = 4.5e-30 relative error = 2.6235676484304041820100136041942e-28 % Correct digits = 29 h = 4.8637726688506150971063634970162e-05 Real estimate of pole used Radius of convergence = 0.01619 Order of pole = 6.2e-29 memory used=370.0MB, alloc=4.3MB, time=16.44 TOP MAIN SOLVE Loop x[1] = 0.84102676016242070895100415079727 y[1] (analytic) = 1.7477956648945545407221492043744 y[1] (numeric) = 1.7477956648945545407221492043797 absolute error = 5.3e-30 relative error = 3.0323910892179446337696737563036e-28 % Correct digits = 29 h = 4.8637726688506150971063634970162e-05 NO POLE memory used=373.8MB, alloc=4.3MB, time=16.61 memory used=377.6MB, alloc=4.3MB, time=16.77 TOP MAIN SOLVE Loop x[1] = 0.84204815242287933812139648713164 y[1] (analytic) = 1.7826428694257711215060512867882 y[1] (numeric) = 1.7826428694257711215060512867925 absolute error = 4.3e-30 relative error = 2.4121488794809055309125127460526e-28 % Correct digits = 29 h = 4.8637726688506150971063634970162e-05 NO POLE memory used=381.4MB, alloc=4.3MB, time=16.94 TOP MAIN SOLVE Loop x[1] = 0.84302090695664946114081775983104 y[1] (analytic) = 1.818255121138472038531344997823 y[1] (numeric) = 1.8182551211384720385313449978277 absolute error = 4.7e-30 relative error = 2.5848957857229454277224395055741e-28 % Correct digits = 29 h = 4.8637726688506150971063634970162e-05 Real estimate of pole used Radius of convergence = 0.01317 Order of pole = 1.7e-29 memory used=385.3MB, alloc=4.3MB, time=17.11 memory used=389.1MB, alloc=4.3MB, time=17.29 TOP MAIN SOLVE Loop x[1] = 0.8440266565900929163883816959721 y[1] (analytic) = 1.8579554623261289163644698949535 y[1] (numeric) = 1.8579554623261289163644698949573 absolute error = 3.8e-30 relative error = 2.0452589295345454958091686407168e-28 % Correct digits = 29 h = 3.9662404072912130096530796178381e-05 NO POLE memory used=392.9MB, alloc=4.3MB, time=17.46 memory used=396.7MB, alloc=4.3MB, time=17.64 TOP MAIN SOLVE Loop x[1] = 0.8450182166919157196407949658766 y[1] (analytic) = 1.9004491393793399442416216204391 y[1] (numeric) = 1.9004491393793399442416216204415 absolute error = 2.4e-30 relative error = 1.2628593684879177382567057447005e-28 % Correct digits = 29 h = 3.9662404072912130096530796178381e-05 NO POLE memory used=400.5MB, alloc=4.3MB, time=17.80 memory used=404.3MB, alloc=4.3MB, time=17.96 TOP MAIN SOLVE Loop x[1] = 0.84603094536526037907020966632829 y[1] (analytic) = 1.9479348414319778383894701433208 y[1] (numeric) = 1.9479348414319778383894701433179 absolute error = 2.9e-30 relative error = 1.4887561628437911034241504751168e-28 % Correct digits = 29 h = 3.2426559611344112023652236305425e-05 Real estimate of pole used Radius of convergence = 0.01016 Order of pole = 7.1e-29 memory used=408.1MB, alloc=4.3MB, time=18.12 memory used=412.0MB, alloc=4.3MB, time=18.28 TOP MAIN SOLVE Loop memory used=415.8MB, alloc=4.3MB, time=18.45 x[1] = 0.84700374215360070243091923341759 y[1] (analytic) = 1.9982335411001100601493837440494 y[1] (numeric) = 1.9982335411001100601493837440391 absolute error = 1.03e-29 relative error = 5.1545526527041602810802888919432e-28 % Correct digits = 29 h = 3.2426559611344112023652236305425e-05 Real estimate of pole used Radius of convergence = 0.009191 Order of pole = 1.9e-29 memory used=419.6MB, alloc=4.3MB, time=18.62 memory used=423.4MB, alloc=4.3MB, time=18.79 TOP MAIN SOLVE Loop x[1] = 0.8480089655015523699036524527432 y[1] (analytic) = 2.0561427273251839258081290253348 y[1] (numeric) = 2.0561427273251839258081290253168 absolute error = 1.80e-29 relative error = 8.7542560936010628584895267102981e-28 % Correct digits = 29 h = 3.2426559611344112023652236305425e-05 NO POLE memory used=427.2MB, alloc=4.3MB, time=18.95 memory used=431.0MB, alloc=4.3MB, time=19.12 TOP MAIN SOLVE Loop x[1] = 0.84901418884950403737638567206881 y[1] (analytic) = 2.1216505589378133080221813826738 y[1] (numeric) = 2.1216505589378133080221813826472 absolute error = 2.66e-29 relative error = 1.2537408617051937424097111989271e-27 % Correct digits = 28 h = 3.2426559611344112023652236305425e-05 NO POLE memory used=434.9MB, alloc=4.3MB, time=19.27 memory used=438.7MB, alloc=4.3MB, time=19.43 memory used=442.5MB, alloc=4.3MB, time=19.58 TOP MAIN SOLVE Loop x[1] = 0.85002032145710920912887473706786 y[1] (analytic) = 2.1971296282238737212042125283018 y[1] (numeric) = 2.197129628223873721204212528276 absolute error = 2.58e-29 relative error = 1.1742593458564540328452078176164e-27 % Correct digits = 28 h = 2.5416840550334708529634170742792e-05 Real estimate of pole used Radius of convergence = 0.006174 Order of pole = 2e-30 memory used=446.3MB, alloc=4.3MB, time=19.74 memory used=450.1MB, alloc=4.3MB, time=19.90 memory used=453.9MB, alloc=4.3MB, time=20.06 TOP MAIN SOLVE Loop x[1] = 0.85102162381682393576575470965546 y[1] (analytic) = 2.2855994889837641346959224227993 y[1] (numeric) = 2.2855994889837641346959224227725 absolute error = 2.68e-29 relative error = 1.1725588900930304277822881268114e-27 % Correct digits = 28 h = 2.4648277435401623314364458636892e-05 NO POLE memory used=457.7MB, alloc=4.3MB, time=20.22 memory used=461.6MB, alloc=4.3MB, time=20.38 memory used=465.4MB, alloc=4.3MB, time=20.54 TOP MAIN SOLVE Loop x[1] = 0.85200812918844261539848109267642 y[1] (analytic) = 2.3913939605552528227684473807728 y[1] (numeric) = 2.3913939605552528227684473807353 absolute error = 3.75e-29 relative error = 1.5681230536892780510287609816020e-27 % Correct digits = 28 h = 2.1147604737580487846305417237685e-05 Real estimate of pole used Radius of convergence = 0.004186 Order of pole = 3.0e-29 memory used=469.2MB, alloc=4.3MB, time=20.69 memory used=473.0MB, alloc=4.3MB, time=20.85 memory used=476.8MB, alloc=4.3MB, time=21.00 memory used=480.6MB, alloc=4.3MB, time=21.16 memory used=484.4MB, alloc=4.3MB, time=21.33 TOP MAIN SOLVE Loop x[1] = 0.8530037758292086785940184021965 y[1] (analytic) = 2.5271850277616463235083847979352 y[1] (numeric) = 2.5271850277616463235083847979024 absolute error = 3.28e-29 relative error = 1.2978867649058247277987245110685e-27 % Correct digits = 28 h = 5.3108595252167754368974359966521e-06 Real estimate of pole used Radius of convergence = 0.003191 Order of pole = 4.5e-29 memory used=488.3MB, alloc=4.3MB, time=21.49 memory used=492.1MB, alloc=4.3MB, time=21.65 memory used=495.9MB, alloc=4.3MB, time=21.81 memory used=499.7MB, alloc=4.3MB, time=21.98 memory used=503.5MB, alloc=4.3MB, time=22.14 memory used=507.3MB, alloc=4.3MB, time=22.31 memory used=511.1MB, alloc=4.3MB, time=22.47 memory used=515.0MB, alloc=4.3MB, time=22.64 memory used=518.8MB, alloc=4.3MB, time=22.80 memory used=522.6MB, alloc=4.3MB, time=22.95 memory used=526.4MB, alloc=4.3MB, time=23.10 memory used=530.2MB, alloc=4.3MB, time=23.26 memory used=534.0MB, alloc=4.3MB, time=23.41 memory used=537.9MB, alloc=4.3MB, time=23.57 TOP MAIN SOLVE Loop x[1] = 0.8540022174199494323761551201645 y[1] (analytic) = 2.7148362505794877444570757605525 y[1] (numeric) = 2.7148362505794877444570757604017 absolute error = 1.508e-28 relative error = 5.5546628260843139131109048808592e-27 % Correct digits = 28 h = 5.3108595252167754368974359966521e-06 Real estimate of pole used Radius of convergence = 0.002192 Order of pole = 3.3e-29 memory used=541.7MB, alloc=4.3MB, time=23.72 memory used=545.5MB, alloc=4.3MB, time=23.88 memory used=549.3MB, alloc=4.3MB, time=24.03 memory used=553.1MB, alloc=4.3MB, time=24.19 memory used=556.9MB, alloc=4.3MB, time=24.34 memory used=560.7MB, alloc=4.3MB, time=24.50 memory used=564.6MB, alloc=4.3MB, time=24.65 memory used=568.4MB, alloc=4.3MB, time=24.80 memory used=572.2MB, alloc=4.3MB, time=24.96 memory used=576.0MB, alloc=4.3MB, time=25.11 memory used=579.8MB, alloc=4.3MB, time=25.27 memory used=583.6MB, alloc=4.3MB, time=25.42 memory used=587.4MB, alloc=4.3MB, time=25.58 memory used=591.3MB, alloc=4.3MB, time=25.73 memory used=595.1MB, alloc=4.3MB, time=25.89 memory used=598.9MB, alloc=4.3MB, time=26.04 memory used=602.7MB, alloc=4.3MB, time=26.20 memory used=606.5MB, alloc=4.3MB, time=26.35 memory used=610.3MB, alloc=4.3MB, time=26.50 memory used=614.1MB, alloc=4.3MB, time=26.66 memory used=618.0MB, alloc=4.3MB, time=26.82 memory used=621.8MB, alloc=4.3MB, time=26.97 memory used=625.6MB, alloc=4.3MB, time=27.13 memory used=629.4MB, alloc=4.3MB, time=27.28 memory used=633.2MB, alloc=4.3MB, time=27.43 memory used=637.0MB, alloc=4.3MB, time=27.59 memory used=640.9MB, alloc=4.3MB, time=27.74 memory used=644.7MB, alloc=4.3MB, time=27.90 memory used=648.5MB, alloc=4.3MB, time=28.05 memory used=652.3MB, alloc=4.3MB, time=28.21 memory used=656.1MB, alloc=4.3MB, time=28.36 memory used=659.9MB, alloc=4.3MB, time=28.51 memory used=663.7MB, alloc=4.3MB, time=28.67 memory used=667.6MB, alloc=4.3MB, time=28.82 memory used=671.4MB, alloc=4.3MB, time=28.97 memory used=675.2MB, alloc=4.3MB, time=29.13 memory used=679.0MB, alloc=4.3MB, time=29.28 memory used=682.8MB, alloc=4.3MB, time=29.44 memory used=686.6MB, alloc=4.3MB, time=29.60 memory used=690.4MB, alloc=4.3MB, time=29.75 memory used=694.3MB, alloc=4.3MB, time=29.91 memory used=698.1MB, alloc=4.3MB, time=30.06 memory used=701.9MB, alloc=4.3MB, time=30.22 memory used=705.7MB, alloc=4.3MB, time=30.37 memory used=709.5MB, alloc=4.3MB, time=30.53 memory used=713.3MB, alloc=4.3MB, time=30.68 memory used=717.2MB, alloc=4.3MB, time=30.84 memory used=721.0MB, alloc=4.3MB, time=30.99 TOP MAIN SOLVE Loop x[1] = 0.85500058971209598554476561812249 y[1] (analytic) = 3.0186916935332919526253418642558 y[1] (numeric) = 3.0186916935332919526253418647299 absolute error = 4.741e-28 relative error = 1.5705479331182694005762659022581e-26 % Correct digits = 27 h = 9.9219904080870386193896821365781e-07 Real estimate of pole used Radius of convergence = 0.001194 Order of pole = 5.2e-29 memory used=724.8MB, alloc=4.3MB, time=31.15 memory used=728.6MB, alloc=4.3MB, time=31.30 memory used=732.4MB, alloc=4.3MB, time=31.46 memory used=736.2MB, alloc=4.3MB, time=31.62 memory used=740.0MB, alloc=4.3MB, time=31.77 memory used=743.9MB, alloc=4.3MB, time=31.93 memory used=747.7MB, alloc=4.3MB, time=32.09 memory used=751.5MB, alloc=4.3MB, time=32.24 memory used=755.3MB, alloc=4.3MB, time=32.39 memory used=759.1MB, alloc=4.3MB, time=32.55 memory used=762.9MB, alloc=4.3MB, time=32.70 memory used=766.7MB, alloc=4.3MB, time=32.86 memory used=770.6MB, alloc=4.3MB, time=33.02 memory used=774.4MB, alloc=4.3MB, time=33.17 memory used=778.2MB, alloc=4.3MB, time=33.32 memory used=782.0MB, alloc=4.3MB, time=33.48 memory used=785.8MB, alloc=4.3MB, time=33.64 memory used=789.6MB, alloc=4.3MB, time=33.79 memory used=793.4MB, alloc=4.3MB, time=33.95 memory used=797.3MB, alloc=4.3MB, time=34.10 memory used=801.1MB, alloc=4.3MB, time=34.26 memory used=804.9MB, alloc=4.3MB, time=34.42 memory used=808.7MB, alloc=4.3MB, time=34.57 memory used=812.5MB, alloc=4.3MB, time=34.73 memory used=816.3MB, alloc=4.3MB, time=34.89 memory used=820.2MB, alloc=4.3MB, time=35.05 memory used=824.0MB, alloc=4.3MB, time=35.20 memory used=827.8MB, alloc=4.3MB, time=35.36 memory used=831.6MB, alloc=4.3MB, time=35.52 memory used=835.4MB, alloc=4.3MB, time=35.67 memory used=839.2MB, alloc=4.3MB, time=35.83 memory used=843.0MB, alloc=4.3MB, time=35.99 memory used=846.9MB, alloc=4.3MB, time=36.15 memory used=850.7MB, alloc=4.3MB, time=36.30 memory used=854.5MB, alloc=4.3MB, time=36.46 memory used=858.3MB, alloc=4.3MB, time=36.62 memory used=862.1MB, alloc=4.3MB, time=36.78 memory used=865.9MB, alloc=4.3MB, time=36.94 memory used=869.7MB, alloc=4.3MB, time=37.09 memory used=873.6MB, alloc=4.3MB, time=37.25 memory used=877.4MB, alloc=4.3MB, time=37.41 memory used=881.2MB, alloc=4.3MB, time=37.56 memory used=885.0MB, alloc=4.3MB, time=37.72 memory used=888.8MB, alloc=4.3MB, time=37.88 memory used=892.6MB, alloc=4.3MB, time=38.03 memory used=896.5MB, alloc=4.3MB, time=38.19 memory used=900.3MB, alloc=4.3MB, time=38.35 memory used=904.1MB, alloc=4.3MB, time=38.50 memory used=907.9MB, alloc=4.3MB, time=38.66 memory used=911.7MB, alloc=4.3MB, time=38.82 memory used=915.5MB, alloc=4.3MB, time=38.97 memory used=919.3MB, alloc=4.3MB, time=39.13 memory used=923.2MB, alloc=4.3MB, time=39.29 memory used=927.0MB, alloc=4.3MB, time=39.45 memory used=930.8MB, alloc=4.3MB, time=39.60 memory used=934.6MB, alloc=4.3MB, time=39.76 memory used=938.4MB, alloc=4.3MB, time=39.92 memory used=942.2MB, alloc=4.3MB, time=40.08 memory used=946.0MB, alloc=4.3MB, time=40.24 memory used=949.9MB, alloc=4.3MB, time=40.39 memory used=953.7MB, alloc=4.3MB, time=40.55 memory used=957.5MB, alloc=4.3MB, time=40.71 memory used=961.3MB, alloc=4.3MB, time=40.87 memory used=965.1MB, alloc=4.3MB, time=41.02 memory used=968.9MB, alloc=4.3MB, time=41.18 memory used=972.7MB, alloc=4.3MB, time=41.33 memory used=976.6MB, alloc=4.3MB, time=41.49 memory used=980.4MB, alloc=4.3MB, time=41.65 memory used=984.2MB, alloc=4.3MB, time=41.80 memory used=988.0MB, alloc=4.3MB, time=41.96 memory used=991.8MB, alloc=4.3MB, time=42.11 memory used=995.6MB, alloc=4.3MB, time=42.27 memory used=999.5MB, alloc=4.3MB, time=42.43 memory used=1003.3MB, alloc=4.3MB, time=42.59 memory used=1007.1MB, alloc=4.3MB, time=42.74 memory used=1010.9MB, alloc=4.3MB, time=42.90 memory used=1014.7MB, alloc=4.3MB, time=43.06 memory used=1018.5MB, alloc=4.3MB, time=43.21 memory used=1022.3MB, alloc=4.3MB, time=43.39 memory used=1026.2MB, alloc=4.3MB, time=43.55 TOP MAIN SOLVE Loop x[1] = 0.85600005375130827465364511624193 y[1] (analytic) = 3.9261290371283540328834353924415 y[1] (numeric) = 3.926129037128354032883435393083 absolute error = 6.415e-28 relative error = 1.6339249014321887529629120828245e-26 % Correct digits = 27 h = 6.4059628238152913798915037177882e-07 NO POLE memory used=1030.0MB, alloc=4.3MB, time=43.70 memory used=1033.8MB, alloc=4.3MB, time=43.86 memory used=1037.6MB, alloc=4.3MB, time=44.02 memory used=1041.4MB, alloc=4.3MB, time=44.17 memory used=1045.2MB, alloc=4.3MB, time=44.33 memory used=1049.0MB, alloc=4.3MB, time=44.49 memory used=1052.9MB, alloc=4.3MB, time=44.64 memory used=1056.7MB, alloc=4.3MB, time=44.80 memory used=1060.5MB, alloc=4.3MB, time=44.95 memory used=1064.3MB, alloc=4.3MB, time=45.11 memory used=1068.1MB, alloc=4.3MB, time=45.27 memory used=1071.9MB, alloc=4.3MB, time=45.42 memory used=1075.7MB, alloc=4.3MB, time=45.58 memory used=1079.6MB, alloc=4.3MB, time=45.73 memory used=1083.4MB, alloc=4.3MB, time=45.90 memory used=1087.2MB, alloc=4.3MB, time=46.05 memory used=1091.0MB, alloc=4.3MB, time=46.21 memory used=1094.8MB, alloc=4.3MB, time=46.37 memory used=1098.6MB, alloc=4.3MB, time=46.52 memory used=1102.5MB, alloc=4.3MB, time=46.68 memory used=1106.3MB, alloc=4.3MB, time=46.84 memory used=1110.1MB, alloc=4.3MB, time=47.00 memory used=1113.9MB, alloc=4.3MB, time=47.15 memory used=1117.7MB, alloc=4.3MB, time=47.31 memory used=1121.5MB, alloc=4.3MB, time=47.47 memory used=1125.3MB, alloc=4.3MB, time=47.62 memory used=1129.2MB, alloc=4.3MB, time=47.78 memory used=1133.0MB, alloc=4.3MB, time=47.94 memory used=1136.8MB, alloc=4.3MB, time=48.09 memory used=1140.6MB, alloc=4.3MB, time=48.25 memory used=1144.4MB, alloc=4.3MB, time=48.41 memory used=1148.2MB, alloc=4.3MB, time=48.56 memory used=1152.0MB, alloc=4.4MB, time=48.72 memory used=1155.9MB, alloc=4.4MB, time=48.87 memory used=1159.7MB, alloc=4.4MB, time=49.03 memory used=1163.5MB, alloc=4.4MB, time=49.19 memory used=1167.3MB, alloc=4.4MB, time=49.35 memory used=1171.1MB, alloc=4.4MB, time=49.50 memory used=1174.9MB, alloc=4.4MB, time=49.66 memory used=1178.8MB, alloc=4.4MB, time=49.82 memory used=1182.6MB, alloc=4.4MB, time=49.98 memory used=1186.4MB, alloc=4.4MB, time=50.14 memory used=1190.2MB, alloc=4.4MB, time=50.29 memory used=1194.0MB, alloc=4.4MB, time=50.45 memory used=1197.8MB, alloc=4.4MB, time=50.61 memory used=1201.6MB, alloc=4.4MB, time=50.77 memory used=1205.5MB, alloc=4.4MB, time=50.92 memory used=1209.3MB, alloc=4.4MB, time=51.08 memory used=1213.1MB, alloc=4.4MB, time=51.24 memory used=1216.9MB, alloc=4.4MB, time=51.40 memory used=1220.7MB, alloc=4.4MB, time=51.55 memory used=1224.5MB, alloc=4.4MB, time=51.71 memory used=1228.3MB, alloc=4.4MB, time=51.87 memory used=1232.2MB, alloc=4.4MB, time=52.03 memory used=1236.0MB, alloc=4.4MB, time=52.19 memory used=1239.8MB, alloc=4.4MB, time=52.34 memory used=1243.6MB, alloc=4.4MB, time=52.50 memory used=1247.4MB, alloc=4.4MB, time=52.66 memory used=1251.2MB, alloc=4.4MB, time=52.81 memory used=1255.0MB, alloc=4.4MB, time=52.97 memory used=1258.9MB, alloc=4.4MB, time=53.13 memory used=1262.7MB, alloc=4.4MB, time=53.29 memory used=1266.5MB, alloc=4.4MB, time=53.45 memory used=1270.3MB, alloc=4.4MB, time=53.61 memory used=1274.1MB, alloc=4.4MB, time=53.77 memory used=1277.9MB, alloc=4.4MB, time=53.93 memory used=1281.8MB, alloc=4.4MB, time=54.08 memory used=1285.6MB, alloc=4.4MB, time=54.24 memory used=1289.4MB, alloc=4.4MB, time=54.40 memory used=1293.2MB, alloc=4.4MB, time=54.56 memory used=1297.0MB, alloc=4.4MB, time=54.72 memory used=1300.8MB, alloc=4.4MB, time=54.87 memory used=1304.6MB, alloc=4.4MB, time=55.03 memory used=1308.5MB, alloc=4.4MB, time=55.19 memory used=1312.3MB, alloc=4.4MB, time=55.35 memory used=1316.1MB, alloc=4.4MB, time=55.51 memory used=1319.9MB, alloc=4.4MB, time=55.66 memory used=1323.7MB, alloc=4.4MB, time=55.82 memory used=1327.5MB, alloc=4.4MB, time=55.98 memory used=1331.3MB, alloc=4.4MB, time=56.14 memory used=1335.2MB, alloc=4.4MB, time=56.29 memory used=1339.0MB, alloc=4.4MB, time=56.45 memory used=1342.8MB, alloc=4.4MB, time=56.61 memory used=1346.6MB, alloc=4.4MB, time=56.77 memory used=1350.4MB, alloc=4.4MB, time=56.93 memory used=1354.2MB, alloc=4.4MB, time=57.08 memory used=1358.0MB, alloc=4.4MB, time=57.24 memory used=1361.9MB, alloc=4.4MB, time=57.40 memory used=1365.7MB, alloc=4.4MB, time=57.55 memory used=1369.5MB, alloc=4.4MB, time=57.71 memory used=1373.3MB, alloc=4.4MB, time=57.87 memory used=1377.1MB, alloc=4.4MB, time=58.03 memory used=1380.9MB, alloc=4.4MB, time=58.18 memory used=1384.8MB, alloc=4.4MB, time=58.34 memory used=1388.6MB, alloc=4.4MB, time=58.49 memory used=1392.4MB, alloc=4.4MB, time=58.65 memory used=1396.2MB, alloc=4.4MB, time=58.80 memory used=1400.0MB, alloc=4.4MB, time=58.96 memory used=1403.8MB, alloc=4.4MB, time=59.12 memory used=1407.6MB, alloc=4.4MB, time=59.27 memory used=1411.5MB, alloc=4.4MB, time=59.43 memory used=1415.3MB, alloc=4.4MB, time=59.58 memory used=1419.1MB, alloc=4.4MB, time=59.74 memory used=1422.9MB, alloc=4.4MB, time=59.89 memory used=1426.7MB, alloc=4.4MB, time=60.05 memory used=1430.5MB, alloc=4.4MB, time=60.20 memory used=1434.3MB, alloc=4.4MB, time=60.36 memory used=1438.2MB, alloc=4.4MB, time=60.52 memory used=1442.0MB, alloc=4.4MB, time=60.67 memory used=1445.8MB, alloc=4.4MB, time=60.83 memory used=1449.6MB, alloc=4.4MB, time=60.99 memory used=1453.4MB, alloc=4.4MB, time=61.14 memory used=1457.2MB, alloc=4.4MB, time=61.30 memory used=1461.0MB, alloc=4.4MB, time=61.45 memory used=1464.9MB, alloc=4.4MB, time=61.61 memory used=1468.7MB, alloc=4.4MB, time=61.76 memory used=1472.5MB, alloc=4.4MB, time=61.92 memory used=1476.3MB, alloc=4.4MB, time=62.08 memory used=1480.1MB, alloc=4.4MB, time=62.23 memory used=1483.9MB, alloc=4.4MB, time=62.39 memory used=1487.8MB, alloc=4.4MB, time=62.55 memory used=1491.6MB, alloc=4.4MB, time=62.70 memory used=1495.4MB, alloc=4.4MB, time=62.86 memory used=1499.2MB, alloc=4.4MB, time=63.01 memory used=1503.0MB, alloc=4.4MB, time=63.17 memory used=1506.8MB, alloc=4.4MB, time=63.33 memory used=1510.6MB, alloc=4.4MB, time=63.48 memory used=1514.5MB, alloc=4.4MB, time=63.64 memory used=1518.3MB, alloc=4.4MB, time=63.80 memory used=1522.1MB, alloc=4.4MB, time=63.96 memory used=1525.9MB, alloc=4.4MB, time=64.12 memory used=1529.7MB, alloc=4.4MB, time=64.27 memory used=1533.5MB, alloc=4.4MB, time=64.43 memory used=1537.3MB, alloc=4.4MB, time=64.58 memory used=1541.2MB, alloc=4.4MB, time=64.73 memory used=1545.0MB, alloc=4.4MB, time=64.89 memory used=1548.8MB, alloc=4.4MB, time=65.05 memory used=1552.6MB, alloc=4.4MB, time=65.20 memory used=1556.4MB, alloc=4.4MB, time=65.36 memory used=1560.2MB, alloc=4.4MB, time=65.51 memory used=1564.1MB, alloc=4.4MB, time=65.67 memory used=1567.9MB, alloc=4.4MB, time=65.82 memory used=1571.7MB, alloc=4.4MB, time=65.98 memory used=1575.5MB, alloc=4.4MB, time=66.13 memory used=1579.3MB, alloc=4.4MB, time=66.29 memory used=1583.1MB, alloc=4.4MB, time=66.44 memory used=1586.9MB, alloc=4.4MB, time=66.60 memory used=1590.8MB, alloc=4.4MB, time=66.75 memory used=1594.6MB, alloc=4.4MB, time=66.90 memory used=1598.4MB, alloc=4.4MB, time=67.06 memory used=1602.2MB, alloc=4.4MB, time=67.21 memory used=1606.0MB, alloc=4.4MB, time=67.37 memory used=1609.8MB, alloc=4.4MB, time=67.52 memory used=1613.6MB, alloc=4.4MB, time=67.67 memory used=1617.5MB, alloc=4.4MB, time=67.83 memory used=1621.3MB, alloc=4.4MB, time=67.99 memory used=1625.1MB, alloc=4.4MB, time=68.14 memory used=1628.9MB, alloc=4.4MB, time=68.30 memory used=1632.7MB, alloc=4.4MB, time=68.45 memory used=1636.5MB, alloc=4.4MB, time=68.60 memory used=1640.3MB, alloc=4.4MB, time=68.76 memory used=1644.2MB, alloc=4.4MB, time=68.91 memory used=1648.0MB, alloc=4.4MB, time=69.07 memory used=1651.8MB, alloc=4.4MB, time=69.22 memory used=1655.6MB, alloc=4.4MB, time=69.38 memory used=1659.4MB, alloc=4.4MB, time=69.53 memory used=1663.2MB, alloc=4.4MB, time=69.69 memory used=1667.0MB, alloc=4.4MB, time=69.85 memory used=1670.9MB, alloc=4.4MB, time=70.00 memory used=1674.7MB, alloc=4.4MB, time=70.16 memory used=1678.5MB, alloc=4.4MB, time=70.31 memory used=1682.3MB, alloc=4.4MB, time=70.47 memory used=1686.1MB, alloc=4.4MB, time=70.62 memory used=1689.9MB, alloc=4.4MB, time=70.77 memory used=1693.8MB, alloc=4.4MB, time=70.93 memory used=1697.6MB, alloc=4.4MB, time=71.08 memory used=1701.4MB, alloc=4.4MB, time=71.24 memory used=1705.2MB, alloc=4.4MB, time=71.39 memory used=1709.0MB, alloc=4.4MB, time=71.55 memory used=1712.8MB, alloc=4.4MB, time=71.70 memory used=1716.6MB, alloc=4.4MB, time=71.86 memory used=1720.5MB, alloc=4.4MB, time=72.01 memory used=1724.3MB, alloc=4.4MB, time=72.16 memory used=1728.1MB, alloc=4.4MB, time=72.32 memory used=1731.9MB, alloc=4.4MB, time=72.47 memory used=1735.7MB, alloc=4.4MB, time=72.62 memory used=1739.5MB, alloc=4.4MB, time=72.78 memory used=1743.3MB, alloc=4.4MB, time=72.93 memory used=1747.2MB, alloc=4.4MB, time=73.09 memory used=1751.0MB, alloc=4.4MB, time=73.24 memory used=1754.8MB, alloc=4.4MB, time=73.40 memory used=1758.6MB, alloc=4.4MB, time=73.55 memory used=1762.4MB, alloc=4.4MB, time=73.70 memory used=1766.2MB, alloc=4.4MB, time=73.86 memory used=1770.1MB, alloc=4.4MB, time=74.01 memory used=1773.9MB, alloc=4.4MB, time=74.17 memory used=1777.7MB, alloc=4.4MB, time=74.32 memory used=1781.5MB, alloc=4.4MB, time=74.48 memory used=1785.3MB, alloc=4.4MB, time=74.63 memory used=1789.1MB, alloc=4.4MB, time=74.79 memory used=1792.9MB, alloc=4.4MB, time=74.94 memory used=1796.8MB, alloc=4.4MB, time=75.10 memory used=1800.6MB, alloc=4.4MB, time=75.26 memory used=1804.4MB, alloc=4.4MB, time=75.42 memory used=1808.2MB, alloc=4.4MB, time=75.57 memory used=1812.0MB, alloc=4.4MB, time=75.73 memory used=1815.8MB, alloc=4.4MB, time=75.89 memory used=1819.6MB, alloc=4.4MB, time=76.05 memory used=1823.5MB, alloc=4.4MB, time=76.21 memory used=1827.3MB, alloc=4.4MB, time=76.36 memory used=1831.1MB, alloc=4.4MB, time=76.52 memory used=1834.9MB, alloc=4.4MB, time=76.68 memory used=1838.7MB, alloc=4.4MB, time=76.83 memory used=1842.5MB, alloc=4.4MB, time=76.99 memory used=1846.3MB, alloc=4.4MB, time=77.15 memory used=1850.2MB, alloc=4.4MB, time=77.31 memory used=1854.0MB, alloc=4.4MB, time=77.47 memory used=1857.8MB, alloc=4.4MB, time=77.62 memory used=1861.6MB, alloc=4.4MB, time=77.78 memory used=1865.4MB, alloc=4.4MB, time=77.94 memory used=1869.2MB, alloc=4.4MB, time=78.10 memory used=1873.1MB, alloc=4.4MB, time=78.25 memory used=1876.9MB, alloc=4.4MB, time=78.41 memory used=1880.7MB, alloc=4.4MB, time=78.57 memory used=1884.5MB, alloc=4.4MB, time=78.73 memory used=1888.3MB, alloc=4.4MB, time=78.89 memory used=1892.1MB, alloc=4.4MB, time=79.04 memory used=1895.9MB, alloc=4.4MB, time=79.20 memory used=1899.8MB, alloc=4.4MB, time=79.36 memory used=1903.6MB, alloc=4.4MB, time=79.52 memory used=1907.4MB, alloc=4.4MB, time=79.68 memory used=1911.2MB, alloc=4.4MB, time=79.83 memory used=1915.0MB, alloc=4.4MB, time=79.99 memory used=1918.8MB, alloc=4.4MB, time=80.15 memory used=1922.6MB, alloc=4.4MB, time=80.31 memory used=1926.5MB, alloc=4.4MB, time=80.46 memory used=1930.3MB, alloc=4.4MB, time=80.62 memory used=1934.1MB, alloc=4.4MB, time=80.78 memory used=1937.9MB, alloc=4.4MB, time=80.94 memory used=1941.7MB, alloc=4.4MB, time=81.10 memory used=1945.5MB, alloc=4.4MB, time=81.25 memory used=1949.4MB, alloc=4.4MB, time=81.41 memory used=1953.2MB, alloc=4.4MB, time=81.57 memory used=1957.0MB, alloc=4.4MB, time=81.74 memory used=1960.8MB, alloc=4.4MB, time=81.89 memory used=1964.6MB, alloc=4.4MB, time=82.05 memory used=1968.4MB, alloc=4.4MB, time=82.21 memory used=1972.2MB, alloc=4.4MB, time=82.37 memory used=1976.1MB, alloc=4.4MB, time=82.53 memory used=1979.9MB, alloc=4.4MB, time=82.69 memory used=1983.7MB, alloc=4.4MB, time=82.85 memory used=1987.5MB, alloc=4.4MB, time=83.00 memory used=1991.3MB, alloc=4.4MB, time=83.16 memory used=1995.1MB, alloc=4.4MB, time=83.32 memory used=1998.9MB, alloc=4.4MB, time=83.48 memory used=2002.8MB, alloc=4.4MB, time=83.64 memory used=2006.6MB, alloc=4.4MB, time=83.80 memory used=2010.4MB, alloc=4.4MB, time=83.95 memory used=2014.2MB, alloc=4.4MB, time=84.11 memory used=2018.0MB, alloc=4.4MB, time=84.27 memory used=2021.8MB, alloc=4.4MB, time=84.42 memory used=2025.6MB, alloc=4.4MB, time=84.58 memory used=2029.5MB, alloc=4.4MB, time=84.74 memory used=2033.3MB, alloc=4.4MB, time=84.90 memory used=2037.1MB, alloc=4.4MB, time=85.05 memory used=2040.9MB, alloc=4.4MB, time=85.21 memory used=2044.7MB, alloc=4.4MB, time=85.37 memory used=2048.5MB, alloc=4.4MB, time=85.53 memory used=2052.4MB, alloc=4.4MB, time=85.68 memory used=2056.2MB, alloc=4.4MB, time=85.84 memory used=2060.0MB, alloc=4.4MB, time=86.00 memory used=2063.8MB, alloc=4.4MB, time=86.15 memory used=2067.6MB, alloc=4.4MB, time=86.31 memory used=2071.4MB, alloc=4.4MB, time=86.47 memory used=2075.2MB, alloc=4.4MB, time=86.62 memory used=2079.1MB, alloc=4.4MB, time=86.78 memory used=2082.9MB, alloc=4.4MB, time=86.94 memory used=2086.7MB, alloc=4.4MB, time=87.09 memory used=2090.5MB, alloc=4.4MB, time=87.25 memory used=2094.3MB, alloc=4.4MB, time=87.41 memory used=2098.1MB, alloc=4.4MB, time=87.57 memory used=2101.9MB, alloc=4.4MB, time=87.73 memory used=2105.8MB, alloc=4.4MB, time=87.89 memory used=2109.6MB, alloc=4.4MB, time=88.05 memory used=2113.4MB, alloc=4.4MB, time=88.21 memory used=2117.2MB, alloc=4.4MB, time=88.36 memory used=2121.0MB, alloc=4.4MB, time=88.52 memory used=2124.8MB, alloc=4.4MB, time=88.68 memory used=2128.6MB, alloc=4.4MB, time=88.84 memory used=2132.5MB, alloc=4.4MB, time=89.00 memory used=2136.3MB, alloc=4.4MB, time=89.16 memory used=2140.1MB, alloc=4.4MB, time=89.32 memory used=2143.9MB, alloc=4.4MB, time=89.47 memory used=2147.7MB, alloc=4.4MB, time=89.63 memory used=2151.5MB, alloc=4.4MB, time=89.79 memory used=2155.4MB, alloc=4.4MB, time=89.95 memory used=2159.2MB, alloc=4.4MB, time=90.11 memory used=2163.0MB, alloc=4.4MB, time=90.26 memory used=2166.8MB, alloc=4.4MB, time=90.43 memory used=2170.6MB, alloc=4.4MB, time=90.58 memory used=2174.4MB, alloc=4.4MB, time=90.74 memory used=2178.2MB, alloc=4.4MB, time=90.90 memory used=2182.1MB, alloc=4.4MB, time=91.06 memory used=2185.9MB, alloc=4.4MB, time=91.21 memory used=2189.7MB, alloc=4.4MB, time=91.37 memory used=2193.5MB, alloc=4.4MB, time=91.53 memory used=2197.3MB, alloc=4.4MB, time=91.69 memory used=2201.1MB, alloc=4.4MB, time=91.85 memory used=2204.9MB, alloc=4.4MB, time=92.00 memory used=2208.8MB, alloc=4.4MB, time=92.16 memory used=2212.6MB, alloc=4.4MB, time=92.32 memory used=2216.4MB, alloc=4.4MB, time=92.48 memory used=2220.2MB, alloc=4.4MB, time=92.64 memory used=2224.0MB, alloc=4.4MB, time=92.80 memory used=2227.8MB, alloc=4.4MB, time=92.95 memory used=2231.7MB, alloc=4.4MB, time=93.11 memory used=2235.5MB, alloc=4.4MB, time=93.27 memory used=2239.3MB, alloc=4.4MB, time=93.43 memory used=2243.1MB, alloc=4.4MB, time=93.59 memory used=2246.9MB, alloc=4.4MB, time=93.75 memory used=2250.7MB, alloc=4.4MB, time=93.91 memory used=2254.5MB, alloc=4.4MB, time=94.07 memory used=2258.4MB, alloc=4.4MB, time=94.23 memory used=2262.2MB, alloc=4.4MB, time=94.39 memory used=2266.0MB, alloc=4.4MB, time=94.55 memory used=2269.8MB, alloc=4.4MB, time=94.70 memory used=2273.6MB, alloc=4.4MB, time=94.86 memory used=2277.4MB, alloc=4.4MB, time=95.02 memory used=2281.2MB, alloc=4.4MB, time=95.18 memory used=2285.1MB, alloc=4.4MB, time=95.34 memory used=2288.9MB, alloc=4.4MB, time=95.49 memory used=2292.7MB, alloc=4.4MB, time=95.65 memory used=2296.5MB, alloc=4.4MB, time=95.81 memory used=2300.3MB, alloc=4.4MB, time=95.97 memory used=2304.1MB, alloc=4.4MB, time=96.13 memory used=2307.9MB, alloc=4.4MB, time=96.29 memory used=2311.8MB, alloc=4.4MB, time=96.44 memory used=2315.6MB, alloc=4.4MB, time=96.60 memory used=2319.4MB, alloc=4.4MB, time=96.76 memory used=2323.2MB, alloc=4.4MB, time=96.92 memory used=2327.0MB, alloc=4.4MB, time=97.08 memory used=2330.8MB, alloc=4.4MB, time=97.24 memory used=2334.7MB, alloc=4.4MB, time=97.40 memory used=2338.5MB, alloc=4.4MB, time=97.55 memory used=2342.3MB, alloc=4.4MB, time=97.71 memory used=2346.1MB, alloc=4.4MB, time=97.87 memory used=2349.9MB, alloc=4.4MB, time=98.03 memory used=2353.7MB, alloc=4.4MB, time=98.19 memory used=2357.5MB, alloc=4.4MB, time=98.34 memory used=2361.4MB, alloc=4.4MB, time=98.50 memory used=2365.2MB, alloc=4.4MB, time=98.66 memory used=2369.0MB, alloc=4.4MB, time=98.82 memory used=2372.8MB, alloc=4.4MB, time=98.98 memory used=2376.6MB, alloc=4.4MB, time=99.13 memory used=2380.4MB, alloc=4.4MB, time=99.29 memory used=2384.2MB, alloc=4.4MB, time=99.46 memory used=2388.1MB, alloc=4.4MB, time=99.62 memory used=2391.9MB, alloc=4.4MB, time=99.77 memory used=2395.7MB, alloc=4.4MB, time=99.93 memory used=2399.5MB, alloc=4.4MB, time=100.09 memory used=2403.3MB, alloc=4.4MB, time=100.25 memory used=2407.1MB, alloc=4.4MB, time=100.41 memory used=2410.9MB, alloc=4.4MB, time=100.57 memory used=2414.8MB, alloc=4.4MB, time=100.72 memory used=2418.6MB, alloc=4.4MB, time=100.88 memory used=2422.4MB, alloc=4.4MB, time=101.04 memory used=2426.2MB, alloc=4.4MB, time=101.19 memory used=2430.0MB, alloc=4.4MB, time=101.35 memory used=2433.8MB, alloc=4.4MB, time=101.51 memory used=2437.6MB, alloc=4.4MB, time=101.67 memory used=2441.5MB, alloc=4.4MB, time=101.83 memory used=2445.3MB, alloc=4.4MB, time=101.98 memory used=2449.1MB, alloc=4.4MB, time=102.14 memory used=2452.9MB, alloc=4.4MB, time=102.30 memory used=2456.7MB, alloc=4.4MB, time=102.46 memory used=2460.5MB, alloc=4.4MB, time=102.61 memory used=2464.4MB, alloc=4.4MB, time=102.77 memory used=2468.2MB, alloc=4.4MB, time=102.93 memory used=2472.0MB, alloc=4.4MB, time=103.09 memory used=2475.8MB, alloc=4.4MB, time=103.24 memory used=2479.6MB, alloc=4.4MB, time=103.40 memory used=2483.4MB, alloc=4.4MB, time=103.56 memory used=2487.2MB, alloc=4.4MB, time=103.72 memory used=2491.1MB, alloc=4.4MB, time=103.87 memory used=2494.9MB, alloc=4.4MB, time=104.03 memory used=2498.7MB, alloc=4.4MB, time=104.19 memory used=2502.5MB, alloc=4.4MB, time=104.35 memory used=2506.3MB, alloc=4.4MB, time=104.51 memory used=2510.1MB, alloc=4.4MB, time=104.67 memory used=2513.9MB, alloc=4.4MB, time=104.82 memory used=2517.8MB, alloc=4.4MB, time=104.98 memory used=2521.6MB, alloc=4.4MB, time=105.14 memory used=2525.4MB, alloc=4.4MB, time=105.30 memory used=2529.2MB, alloc=4.4MB, time=105.46 memory used=2533.0MB, alloc=4.4MB, time=105.62 memory used=2536.8MB, alloc=4.4MB, time=105.78 memory used=2540.7MB, alloc=4.4MB, time=105.94 memory used=2544.5MB, alloc=4.4MB, time=106.09 memory used=2548.3MB, alloc=4.4MB, time=106.25 memory used=2552.1MB, alloc=4.4MB, time=106.41 memory used=2555.9MB, alloc=4.4MB, time=106.56 memory used=2559.7MB, alloc=4.4MB, time=106.72 memory used=2563.5MB, alloc=4.4MB, time=106.88 memory used=2567.4MB, alloc=4.4MB, time=107.04 memory used=2571.2MB, alloc=4.4MB, time=107.20 memory used=2575.0MB, alloc=4.4MB, time=107.36 memory used=2578.8MB, alloc=4.4MB, time=107.51 memory used=2582.6MB, alloc=4.4MB, time=107.67 memory used=2586.4MB, alloc=4.4MB, time=107.83 memory used=2590.2MB, alloc=4.4MB, time=107.99 memory used=2594.1MB, alloc=4.4MB, time=108.14 memory used=2597.9MB, alloc=4.4MB, time=108.30 memory used=2601.7MB, alloc=4.4MB, time=108.46 memory used=2605.5MB, alloc=4.4MB, time=108.62 memory used=2609.3MB, alloc=4.4MB, time=108.77 memory used=2613.1MB, alloc=4.4MB, time=108.93 memory used=2616.9MB, alloc=4.4MB, time=109.09 memory used=2620.8MB, alloc=4.4MB, time=109.25 memory used=2624.6MB, alloc=4.4MB, time=109.41 memory used=2628.4MB, alloc=4.4MB, time=109.56 memory used=2632.2MB, alloc=4.4MB, time=109.72 memory used=2636.0MB, alloc=4.4MB, time=109.88 memory used=2639.8MB, alloc=4.4MB, time=110.03 memory used=2643.7MB, alloc=4.4MB, time=110.19 memory used=2647.5MB, alloc=4.4MB, time=110.35 memory used=2651.3MB, alloc=4.4MB, time=110.50 memory used=2655.1MB, alloc=4.4MB, time=110.66 memory used=2658.9MB, alloc=4.4MB, time=110.82 memory used=2662.7MB, alloc=4.4MB, time=110.98 memory used=2666.5MB, alloc=4.4MB, time=111.14 memory used=2670.4MB, alloc=4.4MB, time=111.29 memory used=2674.2MB, alloc=4.4MB, time=111.45 memory used=2678.0MB, alloc=4.4MB, time=111.61 memory used=2681.8MB, alloc=4.4MB, time=111.76 memory used=2685.6MB, alloc=4.4MB, time=111.92 memory used=2689.4MB, alloc=4.4MB, time=112.08 memory used=2693.2MB, alloc=4.4MB, time=112.23 memory used=2697.1MB, alloc=4.4MB, time=112.39 memory used=2700.9MB, alloc=4.4MB, time=112.55 memory used=2704.7MB, alloc=4.4MB, time=112.71 memory used=2708.5MB, alloc=4.4MB, time=112.86 memory used=2712.3MB, alloc=4.4MB, time=113.02 memory used=2716.1MB, alloc=4.4MB, time=113.18 memory used=2720.0MB, alloc=4.4MB, time=113.34 memory used=2723.8MB, alloc=4.4MB, time=113.49 memory used=2727.6MB, alloc=4.4MB, time=113.65 memory used=2731.4MB, alloc=4.4MB, time=113.81 memory used=2735.2MB, alloc=4.4MB, time=113.97 memory used=2739.0MB, alloc=4.4MB, time=114.12 memory used=2742.8MB, alloc=4.4MB, time=114.28 memory used=2746.7MB, alloc=4.4MB, time=114.43 memory used=2750.5MB, alloc=4.4MB, time=114.59 memory used=2754.3MB, alloc=4.4MB, time=114.75 memory used=2758.1MB, alloc=4.4MB, time=114.91 memory used=2761.9MB, alloc=4.4MB, time=115.06 memory used=2765.7MB, alloc=4.4MB, time=115.22 memory used=2769.5MB, alloc=4.4MB, time=115.37 memory used=2773.4MB, alloc=4.4MB, time=115.53 memory used=2777.2MB, alloc=4.4MB, time=115.69 memory used=2781.0MB, alloc=4.4MB, time=115.85 memory used=2784.8MB, alloc=4.4MB, time=116.00 memory used=2788.6MB, alloc=4.4MB, time=116.16 memory used=2792.4MB, alloc=4.4MB, time=116.32 memory used=2796.2MB, alloc=4.4MB, time=116.47 memory used=2800.1MB, alloc=4.4MB, time=116.63 memory used=2803.9MB, alloc=4.4MB, time=116.79 memory used=2807.7MB, alloc=4.4MB, time=116.95 memory used=2811.5MB, alloc=4.4MB, time=117.11 memory used=2815.3MB, alloc=4.4MB, time=117.27 memory used=2819.1MB, alloc=4.4MB, time=117.42 memory used=2823.0MB, alloc=4.4MB, time=117.58 memory used=2826.8MB, alloc=4.4MB, time=117.73 memory used=2830.6MB, alloc=4.4MB, time=117.89 memory used=2834.4MB, alloc=4.4MB, time=118.05 memory used=2838.2MB, alloc=4.4MB, time=118.21 memory used=2842.0MB, alloc=4.4MB, time=118.36 memory used=2845.8MB, alloc=4.4MB, time=118.52 memory used=2849.7MB, alloc=4.4MB, time=118.68 memory used=2853.5MB, alloc=4.4MB, time=118.83 memory used=2857.3MB, alloc=4.4MB, time=118.99 memory used=2861.1MB, alloc=4.4MB, time=119.15 memory used=2864.9MB, alloc=4.4MB, time=119.30 memory used=2868.7MB, alloc=4.4MB, time=119.46 memory used=2872.5MB, alloc=4.4MB, time=119.61 memory used=2876.4MB, alloc=4.4MB, time=119.77 memory used=2880.2MB, alloc=4.4MB, time=119.93 memory used=2884.0MB, alloc=4.4MB, time=120.08 memory used=2887.8MB, alloc=4.4MB, time=120.24 memory used=2891.6MB, alloc=4.4MB, time=120.40 memory used=2895.4MB, alloc=4.4MB, time=120.56 memory used=2899.2MB, alloc=4.4MB, time=120.71 memory used=2903.1MB, alloc=4.4MB, time=120.87 memory used=2906.9MB, alloc=4.4MB, time=121.03 memory used=2910.7MB, alloc=4.4MB, time=121.18 memory used=2914.5MB, alloc=4.4MB, time=121.34 memory used=2918.3MB, alloc=4.4MB, time=121.50 memory used=2922.1MB, alloc=4.4MB, time=121.65 memory used=2926.0MB, alloc=4.4MB, time=121.81 memory used=2929.8MB, alloc=4.4MB, time=121.97 memory used=2933.6MB, alloc=4.4MB, time=122.12 memory used=2937.4MB, alloc=4.4MB, time=122.28 memory used=2941.2MB, alloc=4.4MB, time=122.44 memory used=2945.0MB, alloc=4.4MB, time=122.60 memory used=2948.8MB, alloc=4.4MB, time=122.75 memory used=2952.7MB, alloc=4.4MB, time=122.91 memory used=2956.5MB, alloc=4.4MB, time=123.07 memory used=2960.3MB, alloc=4.4MB, time=123.23 memory used=2964.1MB, alloc=4.4MB, time=123.39 memory used=2967.9MB, alloc=4.4MB, time=123.55 memory used=2971.7MB, alloc=4.4MB, time=123.70 memory used=2975.5MB, alloc=4.4MB, time=123.86 memory used=2979.4MB, alloc=4.4MB, time=124.02 memory used=2983.2MB, alloc=4.4MB, time=124.17 memory used=2987.0MB, alloc=4.4MB, time=124.33 memory used=2990.8MB, alloc=4.4MB, time=124.49 memory used=2994.6MB, alloc=4.4MB, time=124.65 memory used=2998.4MB, alloc=4.4MB, time=124.80 memory used=3002.2MB, alloc=4.4MB, time=124.96 memory used=3006.1MB, alloc=4.4MB, time=125.12 memory used=3009.9MB, alloc=4.4MB, time=125.27 memory used=3013.7MB, alloc=4.4MB, time=125.43 memory used=3017.5MB, alloc=4.4MB, time=125.59 memory used=3021.3MB, alloc=4.4MB, time=125.75 memory used=3025.1MB, alloc=4.4MB, time=125.90 memory used=3029.0MB, alloc=4.4MB, time=126.06 memory used=3032.8MB, alloc=4.4MB, time=126.22 memory used=3036.6MB, alloc=4.4MB, time=126.37 memory used=3040.4MB, alloc=4.4MB, time=126.53 memory used=3044.2MB, alloc=4.4MB, time=126.69 memory used=3048.0MB, alloc=4.4MB, time=126.84 memory used=3051.8MB, alloc=4.4MB, time=127.00 memory used=3055.7MB, alloc=4.4MB, time=127.16 memory used=3059.5MB, alloc=4.4MB, time=127.31 memory used=3063.3MB, alloc=4.4MB, time=127.47 memory used=3067.1MB, alloc=4.4MB, time=127.62 memory used=3070.9MB, alloc=4.4MB, time=127.78 memory used=3074.7MB, alloc=4.4MB, time=127.94 memory used=3078.5MB, alloc=4.4MB, time=128.09 memory used=3082.4MB, alloc=4.4MB, time=128.25 memory used=3086.2MB, alloc=4.4MB, time=128.41 memory used=3090.0MB, alloc=4.4MB, time=128.56 memory used=3093.8MB, alloc=4.4MB, time=128.72 memory used=3097.6MB, alloc=4.4MB, time=128.88 memory used=3101.4MB, alloc=4.4MB, time=129.04 memory used=3105.3MB, alloc=4.4MB, time=129.20 memory used=3109.1MB, alloc=4.4MB, time=129.36 memory used=3112.9MB, alloc=4.4MB, time=129.51 memory used=3116.7MB, alloc=4.4MB, time=129.67 memory used=3120.5MB, alloc=4.4MB, time=129.83 memory used=3124.3MB, alloc=4.4MB, time=129.99 memory used=3128.1MB, alloc=4.4MB, time=130.14 memory used=3132.0MB, alloc=4.4MB, time=130.30 memory used=3135.8MB, alloc=4.4MB, time=130.46 memory used=3139.6MB, alloc=4.4MB, time=130.61 memory used=3143.4MB, alloc=4.4MB, time=130.77 memory used=3147.2MB, alloc=4.4MB, time=130.93 memory used=3151.0MB, alloc=4.4MB, time=131.08 memory used=3154.8MB, alloc=4.4MB, time=131.24 memory used=3158.7MB, alloc=4.4MB, time=131.40 memory used=3162.5MB, alloc=4.4MB, time=131.55 memory used=3166.3MB, alloc=4.4MB, time=131.71 memory used=3170.1MB, alloc=4.4MB, time=131.87 memory used=3173.9MB, alloc=4.4MB, time=132.02 memory used=3177.7MB, alloc=4.4MB, time=132.18 memory used=3181.5MB, alloc=4.4MB, time=132.34 memory used=3185.4MB, alloc=4.4MB, time=132.50 memory used=3189.2MB, alloc=4.4MB, time=132.65 memory used=3193.0MB, alloc=4.4MB, time=132.81 memory used=3196.8MB, alloc=4.4MB, time=132.96 memory used=3200.6MB, alloc=4.4MB, time=133.12 memory used=3204.4MB, alloc=4.4MB, time=133.28 memory used=3208.3MB, alloc=4.4MB, time=133.43 memory used=3212.1MB, alloc=4.4MB, time=133.59 memory used=3215.9MB, alloc=4.4MB, time=133.75 memory used=3219.7MB, alloc=4.4MB, time=133.90 memory used=3223.5MB, alloc=4.4MB, time=134.06 memory used=3227.3MB, alloc=4.4MB, time=134.22 memory used=3231.1MB, alloc=4.4MB, time=134.38 memory used=3235.0MB, alloc=4.4MB, time=134.53 memory used=3238.8MB, alloc=4.4MB, time=134.69 memory used=3242.6MB, alloc=4.4MB, time=134.85 memory used=3246.4MB, alloc=4.4MB, time=135.01 memory used=3250.2MB, alloc=4.4MB, time=135.17 memory used=3254.0MB, alloc=4.4MB, time=135.33 memory used=3257.8MB, alloc=4.4MB, time=135.48 memory used=3261.7MB, alloc=4.4MB, time=135.64 memory used=3265.5MB, alloc=4.4MB, time=135.79 memory used=3269.3MB, alloc=4.4MB, time=135.95 memory used=3273.1MB, alloc=4.4MB, time=136.11 memory used=3276.9MB, alloc=4.4MB, time=136.26 memory used=3280.7MB, alloc=4.4MB, time=136.42 memory used=3284.5MB, alloc=4.4MB, time=136.58 memory used=3288.4MB, alloc=4.4MB, time=136.74 memory used=3292.2MB, alloc=4.4MB, time=136.89 memory used=3296.0MB, alloc=4.4MB, time=137.05 memory used=3299.8MB, alloc=4.4MB, time=137.21 memory used=3303.6MB, alloc=4.4MB, time=137.37 memory used=3307.4MB, alloc=4.4MB, time=137.53 memory used=3311.3MB, alloc=4.4MB, time=137.68 memory used=3315.1MB, alloc=4.4MB, time=137.84 memory used=3318.9MB, alloc=4.4MB, time=138.00 memory used=3322.7MB, alloc=4.4MB, time=138.16 memory used=3326.5MB, alloc=4.4MB, time=138.31 memory used=3330.3MB, alloc=4.4MB, time=138.47 memory used=3334.1MB, alloc=4.4MB, time=138.63 memory used=3338.0MB, alloc=4.4MB, time=138.78 memory used=3341.8MB, alloc=4.4MB, time=138.94 memory used=3345.6MB, alloc=4.4MB, time=139.10 memory used=3349.4MB, alloc=4.4MB, time=139.25 memory used=3353.2MB, alloc=4.4MB, time=139.41 memory used=3357.0MB, alloc=4.4MB, time=139.57 memory used=3360.8MB, alloc=4.4MB, time=139.73 memory used=3364.7MB, alloc=4.4MB, time=139.89 memory used=3368.5MB, alloc=4.4MB, time=140.04 memory used=3372.3MB, alloc=4.4MB, time=140.20 memory used=3376.1MB, alloc=4.4MB, time=140.36 memory used=3379.9MB, alloc=4.4MB, time=140.52 memory used=3383.7MB, alloc=4.4MB, time=140.68 memory used=3387.5MB, alloc=4.4MB, time=140.84 memory used=3391.4MB, alloc=4.4MB, time=141.00 memory used=3395.2MB, alloc=4.4MB, time=141.16 memory used=3399.0MB, alloc=4.4MB, time=141.32 memory used=3402.8MB, alloc=4.4MB, time=141.48 memory used=3406.6MB, alloc=4.4MB, time=141.63 memory used=3410.4MB, alloc=4.4MB, time=141.79 memory used=3414.3MB, alloc=4.4MB, time=141.95 memory used=3418.1MB, alloc=4.4MB, time=142.11 memory used=3421.9MB, alloc=4.4MB, time=142.27 memory used=3425.7MB, alloc=4.4MB, time=142.43 memory used=3429.5MB, alloc=4.4MB, time=142.59 memory used=3433.3MB, alloc=4.4MB, time=142.75 memory used=3437.1MB, alloc=4.4MB, time=142.91 memory used=3441.0MB, alloc=4.4MB, time=143.06 memory used=3444.8MB, alloc=4.4MB, time=143.22 memory used=3448.6MB, alloc=4.4MB, time=143.37 memory used=3452.4MB, alloc=4.4MB, time=143.53 memory used=3456.2MB, alloc=4.4MB, time=143.69 memory used=3460.0MB, alloc=4.4MB, time=143.85 memory used=3463.8MB, alloc=4.4MB, time=144.00 memory used=3467.7MB, alloc=4.4MB, time=144.16 memory used=3471.5MB, alloc=4.4MB, time=144.32 memory used=3475.3MB, alloc=4.4MB, time=144.48 memory used=3479.1MB, alloc=4.4MB, time=144.64 memory used=3482.9MB, alloc=4.4MB, time=144.80 memory used=3486.7MB, alloc=4.4MB, time=144.96 memory used=3490.5MB, alloc=4.4MB, time=145.12 memory used=3494.4MB, alloc=4.4MB, time=145.28 memory used=3498.2MB, alloc=4.4MB, time=145.44 memory used=3502.0MB, alloc=4.4MB, time=145.59 memory used=3505.8MB, alloc=4.4MB, time=145.75 memory used=3509.6MB, alloc=4.4MB, time=145.91 memory used=3513.4MB, alloc=4.4MB, time=146.07 memory used=3517.3MB, alloc=4.4MB, time=146.23 memory used=3521.1MB, alloc=4.4MB, time=146.39 memory used=3524.9MB, alloc=4.4MB, time=146.55 memory used=3528.7MB, alloc=4.4MB, time=146.71 memory used=3532.5MB, alloc=4.4MB, time=146.87 memory used=3536.3MB, alloc=4.4MB, time=147.03 memory used=3540.1MB, alloc=4.4MB, time=147.19 memory used=3544.0MB, alloc=4.4MB, time=147.35 memory used=3547.8MB, alloc=4.4MB, time=147.51 memory used=3551.6MB, alloc=4.4MB, time=147.67 memory used=3555.4MB, alloc=4.4MB, time=147.83 memory used=3559.2MB, alloc=4.4MB, time=147.99 memory used=3563.0MB, alloc=4.4MB, time=148.15 memory used=3566.8MB, alloc=4.4MB, time=148.31 memory used=3570.7MB, alloc=4.4MB, time=148.47 memory used=3574.5MB, alloc=4.4MB, time=148.64 memory used=3578.3MB, alloc=4.4MB, time=148.80 memory used=3582.1MB, alloc=4.4MB, time=148.96 memory used=3585.9MB, alloc=4.4MB, time=149.12 memory used=3589.7MB, alloc=4.4MB, time=149.28 memory used=3593.5MB, alloc=4.4MB, time=149.45 memory used=3597.4MB, alloc=4.4MB, time=149.61 memory used=3601.2MB, alloc=4.4MB, time=149.77 memory used=3605.0MB, alloc=4.4MB, time=149.93 memory used=3608.8MB, alloc=4.4MB, time=150.09 memory used=3612.6MB, alloc=4.4MB, time=150.25 memory used=3616.4MB, alloc=4.4MB, time=150.41 memory used=3620.3MB, alloc=4.4MB, time=150.58 memory used=3624.1MB, alloc=4.4MB, time=150.74 memory used=3627.9MB, alloc=4.4MB, time=150.90 memory used=3631.7MB, alloc=4.4MB, time=151.06 memory used=3635.5MB, alloc=4.4MB, time=151.22 memory used=3639.3MB, alloc=4.4MB, time=151.38 memory used=3643.1MB, alloc=4.4MB, time=151.54 memory used=3647.0MB, alloc=4.4MB, time=151.70 memory used=3650.8MB, alloc=4.4MB, time=151.86 memory used=3654.6MB, alloc=4.4MB, time=152.02 memory used=3658.4MB, alloc=4.4MB, time=152.18 memory used=3662.2MB, alloc=4.4MB, time=152.34 memory used=3666.0MB, alloc=4.4MB, time=152.50 memory used=3669.8MB, alloc=4.4MB, time=152.66 memory used=3673.7MB, alloc=4.4MB, time=152.83 memory used=3677.5MB, alloc=4.4MB, time=152.99 memory used=3681.3MB, alloc=4.4MB, time=153.16 memory used=3685.1MB, alloc=4.4MB, time=153.32 memory used=3688.9MB, alloc=4.4MB, time=153.48 memory used=3692.7MB, alloc=4.4MB, time=153.64 memory used=3696.6MB, alloc=4.4MB, time=153.80 memory used=3700.4MB, alloc=4.4MB, time=153.96 memory used=3704.2MB, alloc=4.4MB, time=154.12 memory used=3708.0MB, alloc=4.4MB, time=154.29 memory used=3711.8MB, alloc=4.4MB, time=154.45 memory used=3715.6MB, alloc=4.4MB, time=154.61 memory used=3719.4MB, alloc=4.4MB, time=154.77 memory used=3723.3MB, alloc=4.4MB, time=154.93 memory used=3727.1MB, alloc=4.4MB, time=155.09 memory used=3730.9MB, alloc=4.4MB, time=155.25 memory used=3734.7MB, alloc=4.4MB, time=155.41 memory used=3738.5MB, alloc=4.4MB, time=155.57 memory used=3742.3MB, alloc=4.4MB, time=155.74 memory used=3746.1MB, alloc=4.4MB, time=155.90 memory used=3750.0MB, alloc=4.4MB, time=156.06 memory used=3753.8MB, alloc=4.4MB, time=156.22 memory used=3757.6MB, alloc=4.4MB, time=156.38 memory used=3761.4MB, alloc=4.4MB, time=156.54 memory used=3765.2MB, alloc=4.4MB, time=156.71 memory used=3769.0MB, alloc=4.4MB, time=156.87 memory used=3772.8MB, alloc=4.4MB, time=157.03 memory used=3776.7MB, alloc=4.4MB, time=157.19 memory used=3780.5MB, alloc=4.4MB, time=157.35 memory used=3784.3MB, alloc=4.4MB, time=157.51 memory used=3788.1MB, alloc=4.4MB, time=157.67 memory used=3791.9MB, alloc=4.4MB, time=157.83 memory used=3795.7MB, alloc=4.4MB, time=157.99 memory used=3799.6MB, alloc=4.4MB, time=158.15 memory used=3803.4MB, alloc=4.4MB, time=158.31 memory used=3807.2MB, alloc=4.4MB, time=158.47 memory used=3811.0MB, alloc=4.4MB, time=158.64 memory used=3814.8MB, alloc=4.4MB, time=158.80 memory used=3818.6MB, alloc=4.4MB, time=158.97 memory used=3822.4MB, alloc=4.4MB, time=159.13 memory used=3826.3MB, alloc=4.4MB, time=159.29 memory used=3830.1MB, alloc=4.4MB, time=159.45 memory used=3833.9MB, alloc=4.4MB, time=159.61 memory used=3837.7MB, alloc=4.4MB, time=159.77 memory used=3841.5MB, alloc=4.4MB, time=159.93 memory used=3845.3MB, alloc=4.4MB, time=160.09 memory used=3849.1MB, alloc=4.4MB, time=160.25 memory used=3853.0MB, alloc=4.4MB, time=160.41 memory used=3856.8MB, alloc=4.4MB, time=160.57 memory used=3860.6MB, alloc=4.4MB, time=160.73 memory used=3864.4MB, alloc=4.4MB, time=160.90 memory used=3868.2MB, alloc=4.4MB, time=161.06 memory used=3872.0MB, alloc=4.4MB, time=161.22 memory used=3875.8MB, alloc=4.4MB, time=161.38 memory used=3879.7MB, alloc=4.4MB, time=161.54 memory used=3883.5MB, alloc=4.4MB, time=161.70 memory used=3887.3MB, alloc=4.4MB, time=161.86 memory used=3891.1MB, alloc=4.4MB, time=162.02 memory used=3894.9MB, alloc=4.4MB, time=162.18 memory used=3898.7MB, alloc=4.4MB, time=162.34 memory used=3902.6MB, alloc=4.4MB, time=162.51 memory used=3906.4MB, alloc=4.4MB, time=162.67 memory used=3910.2MB, alloc=4.4MB, time=162.83 memory used=3914.0MB, alloc=4.4MB, time=162.99 memory used=3917.8MB, alloc=4.4MB, time=163.15 memory used=3921.6MB, alloc=4.4MB, time=163.31 memory used=3925.4MB, alloc=4.4MB, time=163.47 memory used=3929.3MB, alloc=4.4MB, time=163.63 memory used=3933.1MB, alloc=4.4MB, time=163.79 memory used=3936.9MB, alloc=4.4MB, time=163.95 memory used=3940.7MB, alloc=4.4MB, time=164.11 memory used=3944.5MB, alloc=4.4MB, time=164.28 memory used=3948.3MB, alloc=4.4MB, time=164.44 memory used=3952.1MB, alloc=4.4MB, time=164.60 memory used=3956.0MB, alloc=4.4MB, time=164.76 memory used=3959.8MB, alloc=4.4MB, time=164.93 memory used=3963.6MB, alloc=4.4MB, time=165.09 memory used=3967.4MB, alloc=4.4MB, time=165.25 memory used=3971.2MB, alloc=4.4MB, time=165.41 memory used=3975.0MB, alloc=4.4MB, time=165.58 memory used=3978.8MB, alloc=4.4MB, time=165.74 memory used=3982.7MB, alloc=4.4MB, time=165.90 memory used=3986.5MB, alloc=4.4MB, time=166.06 memory used=3990.3MB, alloc=4.4MB, time=166.22 memory used=3994.1MB, alloc=4.4MB, time=166.39 memory used=3997.9MB, alloc=4.4MB, time=166.55 memory used=4001.7MB, alloc=4.4MB, time=166.71 memory used=4005.6MB, alloc=4.4MB, time=166.87 memory used=4009.4MB, alloc=4.4MB, time=167.03 memory used=4013.2MB, alloc=4.4MB, time=167.19 memory used=4017.0MB, alloc=4.4MB, time=167.36 memory used=4020.8MB, alloc=4.4MB, time=167.52 memory used=4024.6MB, alloc=4.4MB, time=167.68 memory used=4028.4MB, alloc=4.4MB, time=167.84 memory used=4032.3MB, alloc=4.4MB, time=168.00 memory used=4036.1MB, alloc=4.4MB, time=168.16 memory used=4039.9MB, alloc=4.4MB, time=168.33 memory used=4043.7MB, alloc=4.4MB, time=168.48 memory used=4047.5MB, alloc=4.4MB, time=168.65 memory used=4051.3MB, alloc=4.4MB, time=168.80 memory used=4055.1MB, alloc=4.4MB, time=168.96 memory used=4059.0MB, alloc=4.4MB, time=169.12 memory used=4062.8MB, alloc=4.4MB, time=169.28 memory used=4066.6MB, alloc=4.4MB, time=169.45 memory used=4070.4MB, alloc=4.4MB, time=169.61 memory used=4074.2MB, alloc=4.4MB, time=169.77 memory used=4078.0MB, alloc=4.4MB, time=169.93 memory used=4081.8MB, alloc=4.4MB, time=170.09 memory used=4085.7MB, alloc=4.4MB, time=170.25 memory used=4089.5MB, alloc=4.4MB, time=170.41 memory used=4093.3MB, alloc=4.4MB, time=170.57 memory used=4097.1MB, alloc=4.4MB, time=170.74 memory used=4100.9MB, alloc=4.4MB, time=170.90 memory used=4104.7MB, alloc=4.4MB, time=171.06 memory used=4108.6MB, alloc=4.4MB, time=171.22 memory used=4112.4MB, alloc=4.4MB, time=171.38 memory used=4116.2MB, alloc=4.4MB, time=171.55 memory used=4120.0MB, alloc=4.4MB, time=171.71 memory used=4123.8MB, alloc=4.4MB, time=171.87 memory used=4127.6MB, alloc=4.4MB, time=172.02 memory used=4131.4MB, alloc=4.4MB, time=172.18 memory used=4135.3MB, alloc=4.4MB, time=172.34 memory used=4139.1MB, alloc=4.4MB, time=172.51 memory used=4142.9MB, alloc=4.4MB, time=172.67 memory used=4146.7MB, alloc=4.4MB, time=172.83 memory used=4150.5MB, alloc=4.4MB, time=172.99 memory used=4154.3MB, alloc=4.4MB, time=173.15 memory used=4158.1MB, alloc=4.4MB, time=173.31 memory used=4162.0MB, alloc=4.4MB, time=173.48 memory used=4165.8MB, alloc=4.4MB, time=173.64 memory used=4169.6MB, alloc=4.4MB, time=173.80 memory used=4173.4MB, alloc=4.4MB, time=173.96 memory used=4177.2MB, alloc=4.4MB, time=174.12 memory used=4181.0MB, alloc=4.4MB, time=174.28 memory used=4184.8MB, alloc=4.4MB, time=174.44 memory used=4188.7MB, alloc=4.4MB, time=174.60 memory used=4192.5MB, alloc=4.4MB, time=174.76 memory used=4196.3MB, alloc=4.4MB, time=174.93 memory used=4200.1MB, alloc=4.4MB, time=175.09 memory used=4203.9MB, alloc=4.4MB, time=175.25 memory used=4207.7MB, alloc=4.4MB, time=175.41 memory used=4211.6MB, alloc=4.4MB, time=175.57 memory used=4215.4MB, alloc=4.4MB, time=175.73 memory used=4219.2MB, alloc=4.4MB, time=175.89 memory used=4223.0MB, alloc=4.4MB, time=176.05 memory used=4226.8MB, alloc=4.4MB, time=176.21 memory used=4230.6MB, alloc=4.4MB, time=176.37 memory used=4234.4MB, alloc=4.4MB, time=176.53 memory used=4238.3MB, alloc=4.4MB, time=176.70 memory used=4242.1MB, alloc=4.4MB, time=176.86 memory used=4245.9MB, alloc=4.4MB, time=177.02 memory used=4249.7MB, alloc=4.4MB, time=177.19 memory used=4253.5MB, alloc=4.4MB, time=177.35 memory used=4257.3MB, alloc=4.4MB, time=177.51 memory used=4261.1MB, alloc=4.4MB, time=177.67 memory used=4265.0MB, alloc=4.4MB, time=177.83 memory used=4268.8MB, alloc=4.4MB, time=177.99 memory used=4272.6MB, alloc=4.4MB, time=178.15 memory used=4276.4MB, alloc=4.4MB, time=178.31 memory used=4280.2MB, alloc=4.4MB, time=178.47 memory used=4284.0MB, alloc=4.4MB, time=178.63 memory used=4287.8MB, alloc=4.4MB, time=178.79 memory used=4291.7MB, alloc=4.4MB, time=178.96 memory used=4295.5MB, alloc=4.4MB, time=179.11 memory used=4299.3MB, alloc=4.4MB, time=179.28 memory used=4303.1MB, alloc=4.4MB, time=179.44 memory used=4306.9MB, alloc=4.4MB, time=179.60 memory used=4310.7MB, alloc=4.4MB, time=179.76 memory used=4314.6MB, alloc=4.4MB, time=179.92 Finished! Maximum Time Reached before Solution Completed! diff ( y , x , 1 ) = tan (2.0 * x + 3.0 ) ; Iterations = 16375 Total Elapsed Time = 3 Minutes 0 Seconds Elapsed Time(since restart) = 2 Minutes 59 Seconds Expected Time Remaining = 14 Minutes 31 Seconds Optimized Time Remaining = 14 Minutes 31 Seconds Expected Total Time = 17 Minutes 31 Seconds Time to Timeout Unknown Percent Done = 17.12 % > quit memory used=4317.8MB, alloc=4.4MB, time=180.05