|\^/| 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_1D0, > #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, > 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_1D0, 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, 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_1D0, > #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, > 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_1D0, 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, 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_1D0, > #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, > 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_1D0, 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, 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_1D0, > #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, > 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_1D0, 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, 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_1D0, > #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, > 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_1D0, 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, 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_1D0, > #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, > 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_1D0, 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, 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_1D0, > #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, > 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_1D0, 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, 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_1D0, > #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, > 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_1D0, 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, 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_1D0, > #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, > 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 LINEAR - LINEAR $eq_no = 1 i = 1 > array_tmp1[1] := array_x[1] * array_x[1]; > #emit pre add FULL - CONST $eq_no = 1 i = 1 > array_tmp2[1] := array_tmp1[1] + array_const_1D0[1]; > #emit pre div CONST FULL $eq_no = 1 i = 1 > array_tmp3[1] := array_const_1D0[1] / array_tmp2[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 LINEAR - LINEAR $eq_no = 1 i = 2 > array_tmp1[2] := array_x[1] * array_x[2] + array_x[2] * array_x[1]; > #emit pre add FULL CONST $eq_no = 1 i = 2 > array_tmp2[2] := array_tmp1[2]; > #emit pre div CONST FULL $eq_no = 1 i = 2 > array_tmp3[2] := -ats(2,array_tmp2,array_tmp3,2) / array_tmp2[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 mult LINEAR - LINEAR $eq_no = 1 i = 3 > array_tmp1[3] := array_x[2] * array_x[2]; > #emit pre add FULL CONST $eq_no = 1 i = 3 > array_tmp2[3] := array_tmp1[3]; > #emit pre div CONST FULL $eq_no = 1 i = 3 > array_tmp3[3] := -ats(3,array_tmp2,array_tmp3,2) / array_tmp2[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 add FULL CONST $eq_no = 1 i = 4 > array_tmp2[4] := array_tmp1[4]; > #emit pre div CONST FULL $eq_no = 1 i = 4 > array_tmp3[4] := -ats(4,array_tmp2,array_tmp3,2) / array_tmp2[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 add FULL CONST $eq_no = 1 i = 5 > array_tmp2[5] := array_tmp1[5]; > #emit pre div CONST FULL $eq_no = 1 i = 5 > array_tmp3[5] := -ats(5,array_tmp2,array_tmp3,2) / array_tmp2[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 > #emit mult LINEAR - LINEAR $eq_no = 1 i = 1 > #emit FULL - NOT FULL add $eq_no = 1 > array_tmp2[kkk] := array_tmp1[kkk]; > #emit div CONST FULL $eq_no = 1 i = 1 > array_tmp3[kkk] := -ats(kkk,array_tmp2,array_tmp3,2) / array_tmp2[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_1D0, 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, 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_x[1]*array_x[1]; array_tmp2[1] := array_tmp1[1] + array_const_1D0[1]; array_tmp3[1] := array_const_1D0[1]/array_tmp2[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] := 2*array_x[1]*array_x[2]; array_tmp2[2] := array_tmp1[2]; array_tmp3[2] := -ats(2, array_tmp2, array_tmp3, 2)/array_tmp2[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_tmp1[3] := array_x[2]*array_x[2]; array_tmp2[3] := array_tmp1[3]; array_tmp3[3] := -ats(3, array_tmp2, array_tmp3, 2)/array_tmp2[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_tmp2[4] := array_tmp1[4]; array_tmp3[4] := -ats(4, array_tmp2, array_tmp3, 2)/array_tmp2[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_tmp2[5] := array_tmp1[5]; array_tmp3[5] := -ats(5, array_tmp2, array_tmp3, 2)/array_tmp2[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_tmp2[kkk] := array_tmp1[kkk]; array_tmp3[kkk] := -ats(kkk, array_tmp2, array_tmp3, 2)/array_tmp2[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(arctan(x)); > end; exact_soln_y := proc(x) return arctan(x) 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_1D0, > #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, > 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/sing2postode.ode#################"); > omniout_str(ALWAYS,"diff ( y , x , 1 ) = 1.0/ (x * x + 1.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 := -2.0;"); > omniout_str(ALWAYS,"x_end := 1.0;"); > omniout_str(ALWAYS,"glob_h := 0.00001;"); > omniout_str(ALWAYS,"array_y_init[0 + 1] := exact_soln_y(x_start);"); > omniout_str(ALWAYS,"glob_look_poles := true;"); > omniout_str(ALWAYS,"glob_max_iter := 100;"); > 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(arctan(x));"); > omniout_str(ALWAYS,"end;"); > omniout_str(ALWAYS,""); > omniout_str(ALWAYS,""); > 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:= 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[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 := 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_1D0 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_1D0[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_1D0[1] := 1.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 := -2.0; > x_end := 1.0; > glob_h := 0.00001; > array_y_init[0 + 1] := exact_soln_y(x_start); > glob_look_poles := true; > glob_max_iter := 100; > #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 ) = 1.0/ (x * x + 1.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-13T01:36:47-06:00") > ; > logitem_str(html_log_file,"Maple") > ; > logitem_str(html_log_file,"sing2") > ; > logitem_str(html_log_file,"diff ( y , x , 1 ) = 1.0/ (x * x + 1.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,"sing2 diffeq.mxt") > ; > logitem_str(html_log_file,"sing2 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_1D0, 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, 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/sing2postode.ode#################"); omniout_str(ALWAYS, "diff ( y , x , 1 ) = 1.0/ (x * x + 1.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 := -2.0;"); omniout_str(ALWAYS, "x_end := 1.0;"); omniout_str(ALWAYS, "glob_h := 0.00001;"); omniout_str(ALWAYS, "array_y_init[0 + 1] := exact_soln_y(x_start);"); omniout_str(ALWAYS, "glob_look_poles := true;"); omniout_str(ALWAYS, "glob_max_iter := 100;"); 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(arctan(x));"); omniout_str(ALWAYS, "end;"); omniout_str(ALWAYS, ""); omniout_str(ALWAYS, ""); 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 := 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[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 := 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_1D0 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_1D0[term] := 0.; term := term + 1 end do; array_const_1D0[1] := 1.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 := -2.0; x_end := 1.0; glob_h := 0.00001; array_y_init[1] := exact_soln_y(x_start); glob_look_poles := true; glob_max_iter := 100; 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 ) = 1.0/ (x * x + 1.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-13T01:36:47-06:00"); logitem_str(html_log_file, "Maple"); logitem_str(html_log_file, "sing2"); logitem_str(html_log_file, "diff ( y , x , 1 ) = 1.0/ (x * x + 1.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, "sing2 diffeq.mxt"); logitem_str(html_log_file, "sing2 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/sing2postode.ode################# diff ( y , x , 1 ) = 1.0/ (x * x + 1.0) ; ! #BEGIN FIRST INPUT BLOCK Digits:=32; max_terms:=30; ! #END FIRST INPUT BLOCK #BEGIN SECOND INPUT BLOCK x_start := -2.0; x_end := 1.0; glob_h := 0.00001; array_y_init[0 + 1] := exact_soln_y(x_start); glob_look_poles := true; glob_max_iter := 100; #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(arctan(x)); 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 = 3 estimated_steps = 3000 step_error = 3.3333333333333333333333333333333e-14 est_needed_step_err = 3.3333333333333333333333333333333e-14 hn_div_ho = 0.5 hn_div_ho_2 = 0.25 hn_div_ho_3 = 0.125 value3 = 1.5423793205590851374391492714693e-89 max_value3 = 1.5423793205590851374391492714693e-89 value3 = 1.5423793205590851374391492714693e-89 best_h = 0.001 START of Soultion x[1] = -2 y[1] (analytic) = -1.1071487177940905030170654601785 y[1] (numeric) = -1.1071487177940905030170654601785 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 TOP MAIN SOLVE Loop x[1] = -2 y[1] (analytic) = -1.1071487177940905030170654601785 y[1] (numeric) = -1.1071487177940905030170654601785 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.236 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -1.999 y[1] (analytic) = -1.106948637764747567059262846648 y[1] (numeric) = -1.106948637764747567059262846648 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.998 y[1] (analytic) = -1.1067483975592701523523682753958 y[1] (numeric) = -1.1067483975592701523523682753957 absolute error = 1e-31 relative error = 9.0354772792562059120416505345611e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.234 Order of pole = 1.81e-28 TOP MAIN SOLVE Loop x[1] = -1.997 y[1] (analytic) = -1.1065479970013122650430381404474 y[1] (numeric) = -1.1065479970013122650430381404474 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.996 y[1] (analytic) = -1.1063474359142968807862186779712 y[1] (numeric) = -1.1063474359142968807862186779711 absolute error = 1e-31 relative error = 9.0387519104574028519967794944694e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.995 y[1] (analytic) = -1.1061467141214156290212504508558 y[1] (numeric) = -1.1061467141214156290212504508557 absolute error = 1e-31 relative error = 9.0403920857304604426210877964644e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.994 y[1] (analytic) = -1.1059458314456284769108753479934 y[1] (numeric) = -1.1059458314456284769108753479933 absolute error = 1e-31 relative error = 9.0420341717175948049497190083926e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.231 Order of pole = 2.0e-29 TOP MAIN SOLVE Loop x[1] = -1.993 y[1] (analytic) = -1.105744787709663412943428695263 y[1] (numeric) = -1.1057447877096634129434286952629 absolute error = 1e-31 relative error = 9.0436781716268063971992603060437e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.23 Order of pole = 2.18e-28 TOP MAIN SOLVE Loop x[1] = -1.992 y[1] (analytic) = -1.1055435827360161301985035103973 y[1] (numeric) = -1.1055435827360161301985035103972 absolute error = 1e-31 relative error = 9.0453240886730556478989646583430e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.991 y[1] (analytic) = -1.1053422163469497092763783943778 y[1] (numeric) = -1.1053422163469497092763783943777 absolute error = 1e-31 relative error = 9.0469719260782813712921493917677e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.228 Order of pole = 8.0e-29 TOP MAIN SOLVE Loop x[1] = -1.99 y[1] (analytic) = -1.1051406883644943008915050378617 y[1] (numeric) = -1.1051406883644943008915050378616 absolute error = 1e-31 relative error = 9.0486216870714192400987702792324e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.989 y[1] (analytic) = -1.1049389986104468081303558325205 y[1] (numeric) = -1.1049389986104468081303558325204 absolute error = 1e-31 relative error = 9.0502733748884203158446404492898e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.226 Order of pole = 1.89e-28 TOP MAIN SOLVE Loop x[1] = -1.988 y[1] (analytic) = -1.1047371469063705683739366141761 y[1] (numeric) = -1.104737146906370568373936614176 absolute error = 1e-31 relative error = 9.0519269927722696369635959928604e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.225 Order of pole = 8.9e-29 TOP MAIN SOLVE Loop memory used=3.8MB, alloc=2.9MB, time=0.16 x[1] = -1.987 y[1] (analytic) = -1.1045351330735950348852741273846 y[1] (numeric) = -1.1045351330735950348852741273845 absolute error = 1e-31 relative error = 9.0535825439730048648797464965443e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.986 y[1] (analytic) = -1.1043329569332154580621923897538 y[1] (numeric) = -1.1043329569332154580621923897537 absolute error = 1e-31 relative error = 9.0552400317477349882777888728361e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.985 y[1] (analytic) = -1.1041306183060925663556967489111 y[1] (numeric) = -1.104130618306092566355696748911 absolute error = 1e-31 relative error = 9.0568994593606590857702068072494e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.984 y[1] (analytic) = -1.103928117012852246854289065787 y[1] (numeric) = -1.1039281170128522468542890657869 absolute error = 1e-31 relative error = 9.0585608300830851471710259195647e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.983 y[1] (analytic) = -1.1037254528738852255345421248616 y[1] (numeric) = -1.1037254528738852255345421248615 absolute error = 1e-31 relative error = 9.0602241471934489535866463604083e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.221 Order of pole = 2.46e-28 TOP MAIN SOLVE Loop x[1] = -1.982 y[1] (analytic) = -1.1035226257093467471782660653698 y[1] (numeric) = -1.1035226257093467471782660653697 absolute error = 1e-31 relative error = 9.0618894139773330165351300543921e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.981 y[1] (analytic) = -1.1033196353391562549566043472836 y[1] (numeric) = -1.1033196353391562549566043472834 absolute error = 2e-31 relative error = 1.8127113267454971152612358353300e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.219 Order of pole = 1.20e-28 TOP MAIN SOLVE Loop x[1] = -1.98 y[1] (analytic) = -1.103116481582997069681401512326 y[1] (numeric) = -1.1031164815829970696814015123258 absolute error = 2e-31 relative error = 1.8130451619487679319549811460408e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.979 y[1] (analytic) = -1.1029131642603160687241897734317 y[1] (numeric) = -1.1029131642603160687241897734315 absolute error = 2e-31 relative error = 1.8133793890667064395766718593860e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.978 y[1] (analytic) = -1.1027096831903233646031462660842 y[1] (numeric) = -1.102709683190323364603146266084 absolute error = 2e-31 relative error = 1.8137140087621846406009302369409e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.216 Order of pole = 1.36e-28 TOP MAIN SOLVE Loop x[1] = -1.977 y[1] (analytic) = -1.1025060381919919832383776219549 y[1] (numeric) = -1.1025060381919919832383776219547 absolute error = 2e-31 relative error = 1.8140490216995230012810776614791e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.976 y[1] (analytic) = -1.1023022290840575418758933793661 y[1] (numeric) = -1.1023022290840575418758933793659 absolute error = 2e-31 relative error = 1.8143844285444943112046018465636e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.215 Order of pole = 1.32e-28 TOP MAIN SOLVE Loop x[1] = -1.975 y[1] (analytic) = -1.1020982556850179266806346264257 y[1] (numeric) = -1.1020982556850179266806346264256 absolute error = 1e-31 relative error = 9.0736011498216377747754979365750e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.974 y[1] (analytic) = -1.1018941178131329699989291813655 y[1] (numeric) = -1.1018941178131329699989291813653 absolute error = 2e-31 relative error = 1.8150564266277117959243675854204e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.213 Order of pole = 1.49e-28 TOP MAIN SOLVE Loop x[1] = -1.973 y[1] (analytic) = -1.1016898152864241272907495507763 y[1] (numeric) = -1.1016898152864241272907495507761 absolute error = 2e-31 relative error = 1.8153930192048000723184921159141e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.212 Order of pole = 2.8e-29 TOP MAIN SOLVE Loop x[1] = -1.972 y[1] (analytic) = -1.1014853479226741537321548702117 y[1] (numeric) = -1.1014853479226741537321548702116 absolute error = 1e-31 relative error = 9.0786500418360665270098367538807e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.971 y[1] (analytic) = -1.1012807155394267804883030231387 y[1] (numeric) = -1.1012807155394267804883030231386 absolute error = 1e-31 relative error = 9.0803369739402211001202600955206e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.21 Order of pole = 6.1e-29 TOP MAIN SOLVE Loop x[1] = -1.97 y[1] (analytic) = -1.1010759179539863906574241535935 y[1] (numeric) = -1.1010759179539863906574241535935 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.969 y[1] (analytic) = -1.1008709549834176948861518352737 y[1] (numeric) = -1.1008709549834176948861518352737 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.968 y[1] (analytic) = -1.1006658264445454066566132352894 y[1] (numeric) = -1.1006658264445454066566132352894 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.207 Order of pole = 2.22e-28 TOP MAIN SOLVE Loop x[1] = -1.967 y[1] (analytic) = -1.1004605321539539172456847145512 y[1] (numeric) = -1.1004605321539539172456847145512 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.966 y[1] (analytic) = -1.1002550719279869703568244389027 y[1] (numeric) = -1.1002550719279869703568244389027 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.965 y[1] (analytic) = -1.1000494455827473364248987357562 y[1] (numeric) = -1.1000494455827473364248987357562 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.205 Order of pole = 1.30e-28 TOP MAIN SOLVE Loop x[1] = -1.964 y[1] (analytic) = -1.0998436529340964865944241202885 y[1] (numeric) = -1.0998436529340964865944241202884 absolute error = 1e-31 relative error = 9.0922013991012302698553316089919e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.963 y[1] (analytic) = -1.0996376937976542663716521333248 y[1] (numeric) = -1.0996376937976542663716521333247 absolute error = 1e-31 relative error = 9.0939043435883826168198000358170e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=7.6MB, alloc=4.1MB, time=0.37 x[1] = -1.962 y[1] (analytic) = -1.0994315679887985689509293800305 y[1] (numeric) = -1.0994315679887985689509293800304 absolute error = 1e-31 relative error = 9.0956093049912169162666286652321e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.961 y[1] (analytic) = -1.0992252753226650082157704345585 y[1] (numeric) = -1.0992252753226650082157704345583 absolute error = 2e-31 relative error = 1.8194632573499757573522657907884e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.96 y[1] (analytic) = -1.0990188156141465914150865810103 y[1] (numeric) = -1.0990188156141465914150865810101 absolute error = 2e-31 relative error = 1.8198050584624185222028007802136e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.2 Order of pole = 3.1e-29 TOP MAIN SOLVE Loop x[1] = -1.959 y[1] (analytic) = -1.0988121886778933915150186955938 y[1] (numeric) = -1.0988121886778933915150186955936 absolute error = 2e-31 relative error = 1.8201472650266363786040457441318e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.958 y[1] (analytic) = -1.0986053943283122192268279388266 y[1] (numeric) = -1.0986053943283122192268279388265 absolute error = 1e-31 relative error = 9.1024493886760896795704879744568e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.199 Order of pole = 3.7e-29 TOP MAIN SOLVE Loop x[1] = -1.957 y[1] (analytic) = -1.0983984323795662947113033201895 y[1] (numeric) = -1.0983984323795662947113033201894 absolute error = 1e-31 relative error = 9.1041644864113990463622488837287e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.198 Order of pole = 6.0e-29 TOP MAIN SOLVE Loop x[1] = -1.956 y[1] (analytic) = -1.0981913026455749189601506209025 y[1] (numeric) = -1.0981913026455749189601506209023 absolute error = 2e-31 relative error = 1.8211763243634707297899427387834e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.197 Order of pole = 3.9e-29 TOP MAIN SOLVE Loop x[1] = -1.955 y[1] (analytic) = -1.0979840049400131448548326136238 y[1] (numeric) = -1.0979840049400131448548326136236 absolute error = 2e-31 relative error = 1.8215201596759756677534523102427e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.196 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = -1.954 y[1] (analytic) = -1.0977765390763114479033360009882 y[1] (numeric) = -1.0977765390763114479033360009881 absolute error = 1e-31 relative error = 9.1093220195925998444635623885240e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.195 Order of pole = 7.6e-29 TOP MAIN SOLVE Loop x[1] = -1.953 y[1] (analytic) = -1.0975689048676553966553460081481 y[1] (numeric) = -1.097568904867655396655346008148 absolute error = 1e-31 relative error = 9.1110452889568675187843218323314e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.952 y[1] (analytic) = -1.0973611021269853227963151079938 y[1] (numeric) = -1.0973611021269853227963151079937 absolute error = 1e-31 relative error = 9.1127706099817741512425971545534e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.951 y[1] (analytic) = -1.0971531306669959909209179316523 y[1] (numeric) = -1.0971531306669959909209179316522 absolute error = 1e-31 relative error = 9.1144979861841768468166098275057e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.95 y[1] (analytic) = -1.0969449903001362679863900213251 y[1] (numeric) = -1.096944990300136267986390021325 absolute error = 1e-31 relative error = 9.1162274210887179709159703187133e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.949 y[1] (analytic) = -1.0967366808386087924462537176792 y[1] (numeric) = -1.0967366808386087924462537176791 absolute error = 1e-31 relative error = 9.1179589182278461608582254086509e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.948 y[1] (analytic) = -1.0965282020943696430649401399777 y[1] (numeric) = -1.0965282020943696430649401399776 absolute error = 1e-31 relative error = 9.1196924811418374040986375519891e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.19 Order of pole = 1.60e-28 TOP MAIN SOLVE Loop x[1] = -1.947 y[1] (analytic) = -1.0963195538791280074138219140809 y[1] (numeric) = -1.0963195538791280074138219140807 absolute error = 2e-31 relative error = 1.8242856226757632366914219309903e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.189 Order of pole = 2.66e-28 TOP MAIN SOLVE Loop x[1] = -1.946 y[1] (analytic) = -1.0961107360043458500491770314935 y[1] (numeric) = -1.0961107360043458500491770314934 absolute error = 1e-31 relative error = 9.1231658184947766895871771316607e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.188 Order of pole = 1.61e-28 TOP MAIN SOLVE Loop x[1] = -1.945 y[1] (analytic) = -1.095901748281237580372609981937 y[1] (numeric) = -1.0959017482812375803726099819368 absolute error = 2e-31 relative error = 1.8249811200107208201866004508942e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.187 Order of pole = 2.48e-28 TOP MAIN SOLVE Loop x[1] = -1.944 y[1] (analytic) = -1.0956925905207697201744620926103 y[1] (numeric) = -1.0956925905207697201744620926102 absolute error = 1e-31 relative error = 9.1266474616270959314213236512886e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.943 y[1] (analytic) = -1.0954832625336605708607488295345 y[1] (numeric) = -1.0954832625336605708607488295344 absolute error = 1e-31 relative error = 9.1283914067949834461363363505802e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.185 Order of pole = 1.42e-28 TOP MAIN SOLVE Loop x[1] = -1.942 y[1] (analytic) = -1.0952737641303798803641676702742 y[1] (numeric) = -1.0952737641303798803641676702741 absolute error = 1e-31 relative error = 9.1301374391449531452265050565231e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.184 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = -1.941 y[1] (analytic) = -1.0950640951211485097397260430628 y[1] (numeric) = -1.0950640951211485097397260430627 absolute error = 1e-31 relative error = 9.1318855622726683162933453765985e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.183 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = -1.94 y[1] (analytic) = -1.094854255315938099445544745049 y[1] (numeric) = -1.0948542553159380994455447450489 absolute error = 1e-31 relative error = 9.1336357797817906555132445465154e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.183 Order of pole = 5.3e-29 TOP MAIN SOLVE Loop x[1] = -1.939 y[1] (analytic) = -1.0946442445244707353093982021949 y[1] (numeric) = -1.0946442445244707353093982021948 absolute error = 1e-31 relative error = 9.1353880952840019577444348270348e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.182 Order of pole = 2.67e-28 TOP MAIN SOLVE Loop x[1] = -1.938 y[1] (analytic) = -1.0944340625562186141815589154218 y[1] (numeric) = -1.0944340625562186141815589154217 absolute error = 1e-31 relative error = 9.1371425123990258758722792088744e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.181 Order of pole = 1.02e-28 memory used=11.4MB, alloc=4.1MB, time=0.59 TOP MAIN SOLVE Loop x[1] = -1.937 y[1] (analytic) = -1.0942237092204037092745194520772 y[1] (numeric) = -1.0942237092204037092745194520771 absolute error = 1e-31 relative error = 9.1388990347546497496470803801347e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.936 y[1] (analytic) = -1.0940131843259974351901713888221 y[1] (numeric) = -1.094013184325997435190171388822 absolute error = 1e-31 relative error = 9.1406576659867465042696801106602e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.935 y[1] (analytic) = -1.0938024876817203126350266917691 y[1] (numeric) = -1.093802487681720312635026691769 absolute error = 1e-31 relative error = 9.1424184097392966189811773144578e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.934 y[1] (analytic) = -1.0935916190960416328240731322788 y[1] (numeric) = -1.0935916190960416328240731322787 absolute error = 1e-31 relative error = 9.1441812696644101659141590900677e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.177 Order of pole = 1.68e-28 TOP MAIN SOLVE Loop x[1] = -1.933 y[1] (analytic) = -1.0933805783771791215738614824 y[1] (numeric) = -1.0933805783771791215738614823999 absolute error = 1e-31 relative error = 9.1459462494223489194639100349531e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.932 y[1] (analytic) = -1.093169365333098603085428412664 y[1] (numeric) = -1.093169365333098603085428412664 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.175 Order of pole = 7.5e-29 TOP MAIN SOLVE Loop x[1] = -1.931 y[1] (analytic) = -1.0929579797715136634176652269667 y[1] (numeric) = -1.0929579797715136634176652269666 absolute error = 1e-31 relative error = 9.1494825831186408072528603110266e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.93 y[1] (analytic) = -1.0927464214998853136517488147424 y[1] (numeric) = -1.0927464214998853136517488147423 absolute error = 1e-31 relative error = 9.1512539444184759784150934509128e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.174 Order of pole = 3.5e-29 TOP MAIN SOLVE Loop x[1] = -1.929 y[1] (analytic) = -1.0925346903254216527472574797095 y[1] (numeric) = -1.0925346903254216527472574797094 absolute error = 1e-31 relative error = 9.1530274402741451465902543897967e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.928 y[1] (analytic) = -1.0923227860550775300906006172872 y[1] (numeric) = -1.0923227860550775300906006172871 absolute error = 1e-31 relative error = 9.1548030743870027244830602811850e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.172 Order of pole = 8.8e-29 TOP MAIN SOLVE Loop x[1] = -1.927 y[1] (analytic) = -1.0921107084955542077363975595155 y[1] (numeric) = -1.0921107084955542077363975595155 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.171 Order of pole = 8.8e-29 TOP MAIN SOLVE Loop x[1] = -1.926 y[1] (analytic) = -1.0918984574532990223424472870959 y[1] (numeric) = -1.0918984574532990223424472870958 absolute error = 1e-31 relative error = 9.1583607722311526406783794450876e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.925 y[1] (analytic) = -1.0916860327345050467989371231669 y[1] (numeric) = -1.0916860327345050467989371231669 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.169 Order of pole = 1.34e-28 TOP MAIN SOLVE Loop x[1] = -1.924 y[1] (analytic) = -1.0914734341451107515525449727968 y[1] (numeric) = -1.0914734341451107515525449727968 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.923 y[1] (analytic) = -1.0912606614907996656260961560552 y[1] (numeric) = -1.0912606614907996656260961560551 absolute error = 1e-31 relative error = 9.1637134489377992004496602860778e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.167 Order of pole = 1.18e-28 TOP MAIN SOLVE Loop x[1] = -1.922 y[1] (analytic) = -1.0910477145770000373344424010914 y[1] (numeric) = -1.0910477145770000373344424010914 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.921 y[1] (analytic) = -1.0908345932088844946972371170395 y[1] (numeric) = -1.0908345932088844946972371170395 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.92 y[1] (analytic) = -1.0906212971913697055492876549513 y[1] (numeric) = -1.0906212971913697055492876549513 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.165 Order of pole = 6.8e-29 TOP MAIN SOLVE Loop x[1] = -1.919 y[1] (analytic) = -1.0904078263291160373491718884929 y[1] (numeric) = -1.0904078263291160373491718884929 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.918 y[1] (analytic) = -1.0901941804265272166868131049712 y[1] (numeric) = -1.0901941804265272166868131049712 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.917 y[1] (analytic) = -1.0899803592877499884907138915571 y[1] (numeric) = -1.0899803592877499884907138915571 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.162 Order of pole = 3.0e-29 TOP MAIN SOLVE Loop x[1] = -1.916 y[1] (analytic) = -1.0897663627166737749355564314937 y[1] (numeric) = -1.0897663627166737749355564314936 absolute error = 1e-31 relative error = 9.1762788264734506583807129225455e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.161 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -1.915 y[1] (analytic) = -1.0895521905169303340508833907792 y[1] (numeric) = -1.0895521905169303340508833907791 absolute error = 1e-31 relative error = 9.1780825985541552593114430261943e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.16 Order of pole = 2.3e-29 TOP MAIN SOLVE Loop x[1] = -1.914 y[1] (analytic) = -1.0893378424918934180315803774641 y[1] (numeric) = -1.089337842491893418031580377464 absolute error = 1e-31 relative error = 9.1798885615914123713052762040903e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.913 y[1] (analytic) = -1.089123318444678431250887793451 y[1] (numeric) = -1.0891233184446784312508877934509 absolute error = 1e-31 relative error = 9.1816967194132717178587516586951e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.159 Order of pole = 6.5e-29 TOP MAIN SOLVE Loop memory used=15.2MB, alloc=4.2MB, time=0.82 x[1] = -1.912 y[1] (analytic) = -1.088908618178142087976676772703 y[1] (numeric) = -1.088908618178142087976676772703 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.911 y[1] (analytic) = -1.0886937414948820697917308102142 y[1] (numeric) = -1.0886937414948820697917308102142 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.157 Order of pole = 1.53e-28 TOP MAIN SOLVE Loop x[1] = -1.91 y[1] (analytic) = -1.0884786881972366827187816331298 y[1] (numeric) = -1.0884786881972366827187816331298 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.156 Order of pole = 1.28e-28 TOP MAIN SOLVE Loop x[1] = -1.909 y[1] (analytic) = -1.0882634580872845140510548491992 y[1] (numeric) = -1.0882634580872845140510548491991 absolute error = 1e-31 relative error = 9.1889513754103713041870176103847e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.908 y[1] (analytic) = -1.0880480509668440888890879284541 y[1] (numeric) = -1.088048050966844088889087928454 absolute error = 1e-31 relative error = 9.1907705648789663351824837155424e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.907 y[1] (analytic) = -1.0878324666374735263845901318031 y[1] (numeric) = -1.087832466637473526384590131803 absolute error = 1e-31 relative error = 9.1925919722825830598204883418474e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.153 Order of pole = 9.0e-29 TOP MAIN SOLVE Loop x[1] = -1.906 y[1] (analytic) = -1.0876167049004701956921210952779 y[1] (numeric) = -1.0876167049004701956921210952778 absolute error = 1e-31 relative error = 9.1944156015102015057258789205689e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.905 y[1] (analytic) = -1.0874007655568703716293719111304 y[1] (numeric) = -1.0874007655568703716293719111304 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.904 y[1] (analytic) = -1.0871846484074488900468397170265 y[1] (numeric) = -1.0871846484074488900468397170265 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.903 y[1] (analytic) = -1.0869683532527188029076940123762 y[1] (numeric) = -1.0869683532527188029076940123762 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.902 y[1] (analytic) = -1.0867518798929310330786401665586 y[1] (numeric) = -1.0867518798929310330786401665585 absolute error = 1e-31 relative error = 9.2017324147488201111130775904820e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.901 y[1] (analytic) = -1.0865352281280740288325928675998 y[1] (numeric) = -1.0865352281280740288325928675998 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.9 y[1] (analytic) = -1.0863183977578734180639795819257 y[1] (numeric) = -1.0863183977578734180639795819256 absolute error = 1e-31 relative error = 9.2054042540747552241846705235362e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.147 Order of pole = 4.9e-29 TOP MAIN SOLVE Loop x[1] = -1.899 y[1] (analytic) = -1.0861013885817916622175014562941 y[1] (numeric) = -1.086101388581791662217501456294 absolute error = 1e-31 relative error = 9.2072435457041350112918090220349e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.898 y[1] (analytic) = -1.0858842003990277099311864921022 y[1] (numeric) = -1.0858842003990277099311864921021 absolute error = 1e-31 relative error = 9.2090850905882228194692844273728e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.897 y[1] (analytic) = -1.085666833008516650394577260115 y[1] (numeric) = -1.0856668330085166503945772601149 absolute error = 1e-31 relative error = 9.2109288926960834390817176372048e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.144 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = -1.896 y[1] (analytic) = -1.0854492862089293664229029004597 y[1] (numeric) = -1.0854492862089293664229029004597 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.895 y[1] (analytic) = -1.0852315597986721872480926686421 y[1] (numeric) = -1.0852315597986721872480926686421 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.894 y[1] (analytic) = -1.0850136535758865410274958435374 y[1] (numeric) = -1.0850136535758865410274958435373 absolute error = 1e-31 relative error = 9.2164738821884269280400018914311e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.142 Order of pole = 1.94e-28 TOP MAIN SOLVE Loop x[1] = -1.893 y[1] (analytic) = -1.0847955673384486070711804079716 y[1] (numeric) = -1.0847955673384486070711804079716 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.141 Order of pole = 2.99e-28 TOP MAIN SOLVE Loop x[1] = -1.892 y[1] (analytic) = -1.0845773008839689677886905468049 y[1] (numeric) = -1.0845773008839689677886905468048 absolute error = 1e-31 relative error = 9.2201819011421733813010714595852e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.891 y[1] (analytic) = -1.0843588540097922603561506815363 y[1] (numeric) = -1.0843588540097922603561506815363 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.89 y[1] (analytic) = -1.084140226512996828104611474551 y[1] (numeric) = -1.084140226512996828104611474551 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.138 Order of pole = 3.48e-28 TOP MAIN SOLVE Loop x[1] = -1.889 y[1] (analytic) = -1.0839214181903943716305409903873 y[1] (numeric) = -1.0839214181903943716305409903873 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.137 Order of pole = 2.89e-28 TOP MAIN SOLVE Loop x[1] = -1.888 y[1] (analytic) = -1.0837024288385295996293719960113 y[1] (numeric) = -1.0837024288385295996293719960113 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.136 Order of pole = 2.5e-29 TOP MAIN SOLVE Loop x[1] = -1.887 y[1] (analytic) = -1.0834832582536798794530242172078 y[1] (numeric) = -1.0834832582536798794530242172078 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE memory used=19.0MB, alloc=4.2MB, time=1.05 TOP MAIN SOLVE Loop x[1] = -1.886 y[1] (analytic) = -1.0832639062318548873923282440222 y[1] (numeric) = -1.0832639062318548873923282440222 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.135 Order of pole = 1.40e-28 TOP MAIN SOLVE Loop x[1] = -1.885 y[1] (analytic) = -1.0830443725687962586852856948912 y[1] (numeric) = -1.0830443725687962586852856948912 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.884 y[1] (analytic) = -1.0828246570599772372521082068612 y[1] (numeric) = -1.0828246570599772372521082068612 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.133 Order of pole = 1.84e-28 TOP MAIN SOLVE Loop x[1] = -1.883 y[1] (analytic) = -1.0826047595006023251579858182959 y[1] (numeric) = -1.0826047595006023251579858182959 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.132 Order of pole = 2.92e-28 TOP MAIN SOLVE Loop x[1] = -1.882 y[1] (analytic) = -1.0823846796856069318045433508962 y[1] (numeric) = -1.0823846796856069318045433508963 absolute error = 1e-31 relative error = 9.2388595179531120030967885518493e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.881 y[1] (analytic) = -1.0821644174096570228509514798842 y[1] (numeric) = -1.0821644174096570228509514798843 absolute error = 1e-31 relative error = 9.2407399828731071368025313317981e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.13 Order of pole = 5.5e-29 TOP MAIN SOLVE Loop x[1] = -1.88 y[1] (analytic) = -1.0819439724671487688656673050121 y[1] (numeric) = -1.0819439724671487688656673050121 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.129 Order of pole = 1.12e-28 TOP MAIN SOLVE Loop x[1] = -1.879 y[1] (analytic) = -1.0817233446522081937097874008434 y[1] (numeric) = -1.0817233446522081937097874008434 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.878 y[1] (analytic) = -1.0815025337586908226530045326886 y[1] (numeric) = -1.0815025337586908226530045326886 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.128 Order of pole = 2.44e-28 TOP MAIN SOLVE Loop x[1] = -1.877 y[1] (analytic) = -1.0812815395801813302231674748537 y[1] (numeric) = -1.0812815395801813302231674748537 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.876 y[1] (analytic) = -1.0810603619099931877904516606612 y[1] (numeric) = -1.0810603619099931877904516606612 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.126 Order of pole = 7.8e-29 TOP MAIN SOLVE Loop x[1] = -1.875 y[1] (analytic) = -1.0808390005411683108871567292172 y[1] (numeric) = -1.0808390005411683108871567292172 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.125 Order of pole = 9.7e-29 TOP MAIN SOLVE Loop x[1] = -1.874 y[1] (analytic) = -1.0806174552664767062641554123057 y[1] (numeric) = -1.0806174552664767062641554123057 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.124 Order of pole = 1.68e-28 TOP MAIN SOLVE Loop x[1] = -1.873 y[1] (analytic) = -1.0803957258784161186850266262912 y[1] (numeric) = -1.0803957258784161186850266262912 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.123 Order of pole = 1.52e-28 TOP MAIN SOLVE Loop x[1] = -1.872 y[1] (analytic) = -1.0801738121692116774589140986807 y[1] (numeric) = -1.0801738121692116774589140986807 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.871 y[1] (analytic) = -1.0799517139308155427131603672314 y[1] (numeric) = -1.0799517139308155427131603672314 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.87 y[1] (analytic) = -1.0797294309549065514067745413803 y[1] (numeric) = -1.0797294309549065514067745413803 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.121 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -1.869 y[1] (analytic) = -1.0795069630328898630858008115048 y[1] (numeric) = -1.0795069630328898630858008115048 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.868 y[1] (analytic) = -1.0792843099558966053816633312927 y[1] (numeric) = -1.0792843099558966053816633312927 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.119 Order of pole = 3.7e-29 TOP MAIN SOLVE Loop x[1] = -1.867 y[1] (analytic) = -1.0790614715147835192535717824957 y[1] (numeric) = -1.0790614715147835192535717824957 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.866 y[1] (analytic) = -1.07883844750013260397608065976 y[1] (numeric) = -1.07883844750013260397608065976 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.117 Order of pole = 7.8e-29 TOP MAIN SOLVE Loop x[1] = -1.865 y[1] (analytic) = -1.0786152377022507618729040862557 y[1] (numeric) = -1.0786152377022507618729040862557 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.864 y[1] (analytic) = -1.0783918419111694427980967886686 y[1] (numeric) = -1.0783918419111694427980967886686 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.863 y[1] (analytic) = -1.0781682599166442883657207229581 y[1] (numeric) = -1.0781682599166442883657207229581 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.114 Order of pole = 1.22e-28 TOP MAIN SOLVE Loop x[1] = -1.862 y[1] (analytic) = -1.0779444915081547759291257503268 y[1] (numeric) = -1.0779444915081547759291257503268 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.861 y[1] (analytic) = -1.0777205364749038623109817162831 y[1] (numeric) = -1.0777205364749038623109817162831 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.113 Order of pole = 2.0e-29 TOP MAIN SOLVE Loop memory used=22.8MB, alloc=4.3MB, time=1.26 x[1] = -1.86 y[1] (analytic) = -1.0774963946058176272852082847049 y[1] (numeric) = -1.0774963946058176272852082847049 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.859 y[1] (analytic) = -1.0772720656895449168119579236318 y[1] (numeric) = -1.0772720656895449168119579236318 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.858 y[1] (analytic) = -1.0770475495144569860268165303173 y[1] (numeric) = -1.0770475495144569860268165303174 absolute error = 1e-31 relative error = 9.2846411511804586976718044742353e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.857 y[1] (analytic) = -1.0768228458686471419853953200687 y[1] (numeric) = -1.0768228458686471419853953200688 absolute error = 1e-31 relative error = 9.2865786033107795344102001548831e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.109 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = -1.856 y[1] (analytic) = -1.0765979545399303861644967867803 y[1] (numeric) = -1.0765979545399303861644967867804 absolute error = 1e-31 relative error = 9.2885184834605831215698755590492e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.855 y[1] (analytic) = -1.0763728753158430567210467730395 y[1] (numeric) = -1.0763728753158430567210467730397 absolute error = 2e-31 relative error = 1.8580921592000676278365345927323e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.854 y[1] (analytic) = -1.0761476079836424705099939644419 y[1] (numeric) = -1.076147607983642470509993964442 absolute error = 1e-31 relative error = 9.2924055453106585335090153478525e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.853 y[1] (analytic) = -1.0759221523303065648623874465032 y[1] (numeric) = -1.0759221523303065648623874465034 absolute error = 2e-31 relative error = 1.8588705471564664420487561209757e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.106 Order of pole = 1.28e-28 TOP MAIN SOLVE Loop x[1] = -1.852 y[1] (analytic) = -1.0756965081425335391248523335068 y[1] (numeric) = -1.0756965081425335391248523335069 absolute error = 1e-31 relative error = 9.2963023718163498232442498154181e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.851 y[1] (analytic) = -1.0754706752067414959616928969641 y[1] (numeric) = -1.0754706752067414959616928969642 absolute error = 1e-31 relative error = 9.2982544578239336591460294742795e-30 % Correct digits = 31 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.85 y[1] (analytic) = -1.0752446533090680824208620873218 y[1] (numeric) = -1.075244653309068082420862087322 absolute error = 2e-31 relative error = 1.8600417996453133236468869531471e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.849 y[1] (analytic) = -1.0750184422353701307650458563007 y[1] (numeric) = -1.0750184422353701307650458563009 absolute error = 2e-31 relative error = 1.8604331994912042583880831782527e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.102 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = -1.848 y[1] (analytic) = -1.0747920417712232990691202490252 y[1] (numeric) = -1.0747920417712232990691202490254 absolute error = 2e-31 relative error = 1.8608250919908778274663424217194e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.101 Order of pole = 4.5e-29 TOP MAIN SOLVE Loop x[1] = -1.847 y[1] (analytic) = -1.0745654517019217115852488450957 y[1] (numeric) = -1.074565451701921711585248845096 absolute error = 3e-31 relative error = 2.7918262170522329246914585753719e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.846 y[1] (analytic) = -1.0743386718124775988768977861754 y[1] (numeric) = -1.0743386718124775988768977861757 absolute error = 3e-31 relative error = 2.7924155377734000685555948314660e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.845 y[1] (analytic) = -1.0741117018876209377230553347201 y[1] (numeric) = -1.0741117018876209377230553347204 absolute error = 3e-31 relative error = 2.7930056014917853957333579491231e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.099 Order of pole = 1.33e-28 TOP MAIN SOLVE Loop x[1] = -1.844 y[1] (analytic) = -1.073884541711799090793952664386 y[1] (numeric) = -1.0738845417117990907939526643863 absolute error = 3e-31 relative error = 2.7935964095524870914733552053890e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.843 y[1] (analytic) = -1.0736571910691764460995923876043 y[1] (numeric) = -1.0736571910691764460995923876046 absolute error = 3e-31 relative error = 2.7941879633037432028566264928496e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.842 y[1] (analytic) = -1.0734296497436340562124011800399 y[1] (numeric) = -1.0734296497436340562124011800401 absolute error = 2e-31 relative error = 1.8631868427312937120652895760835e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.096 Order of pole = 3.38e-28 TOP MAIN SOLVE Loop x[1] = -1.841 y[1] (analytic) = -1.0732019175187692772653327653487 y[1] (numeric) = -1.0732019175187692772653327653489 absolute error = 2e-31 relative error = 1.8635822088577491838251468937032e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.84 y[1] (analytic) = -1.0729739941778954077267574770421 y[1] (numeric) = -1.0729739941778954077267574770423 absolute error = 2e-31 relative error = 1.8639780748203361025599096246503e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.094 Order of pole = 1.41e-28 TOP MAIN SOLVE Loop x[1] = -1.839 y[1] (analytic) = -1.0727458795040413269534846175545 y[1] (numeric) = -1.0727458795040413269534846175547 absolute error = 2e-31 relative error = 1.8643744415263125262072580928954e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.093 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = -1.838 y[1] (analytic) = -1.0725175732799511335232738880207 y[1] (numeric) = -1.0725175732799511335232738880209 absolute error = 2e-31 relative error = 1.8647713098850597183044918728758e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.837 y[1] (analytic) = -1.0722890752880837833482022660042 y[1] (numeric) = -1.0722890752880837833482022660045 absolute error = 3e-31 relative error = 2.7977530212121323018938206931445e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.092 Order of pole = 8.1e-29 TOP MAIN SOLVE Loop x[1] = -1.836 y[1] (analytic) = -1.0720603853106127275702628626984 y[1] (numeric) = -1.0720603853106127275702628626987 absolute error = 3e-31 relative error = 2.7983498328135657449314193947025e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=26.7MB, alloc=4.3MB, time=1.49 x[1] = -1.835 y[1] (analytic) = -1.0718315031294255502405824961646 y[1] (numeric) = -1.0718315031294255502405824961649 absolute error = 3e-31 relative error = 2.7989474010055708285431928474344e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.09 Order of pole = 7.1e-29 TOP MAIN SOLVE Loop x[1] = -1.834 y[1] (analytic) = -1.0716024285261236057836549731896 y[1] (numeric) = -1.0716024285261236057836549731899 absolute error = 3e-31 relative error = 2.7995457271650497860459305013785e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.833 y[1] (analytic) = -1.0713731612820216562479973795565 y[1] (numeric) = -1.0713731612820216562479973795568 absolute error = 3e-31 relative error = 2.8001448126721353646042716422842e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.832 y[1] (analytic) = -1.0711437011781475083446470371482 y[1] (numeric) = -1.0711437011781475083446470371485 absolute error = 3e-31 relative error = 2.8007446589102000586806134943257e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.087 Order of pole = 8.5e-29 TOP MAIN SOLVE Loop x[1] = -1.831 y[1] (analytic) = -1.0709140479952416502749271965605 y[1] (numeric) = -1.0709140479952416502749271965608 absolute error = 3e-31 relative error = 2.8013452672658653745499550395080e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.83 y[1] (analytic) = -1.0706842015137568883489199960067 y[1] (numeric) = -1.0706842015137568883489199960071 absolute error = 4e-31 relative error = 3.7359288521720148346665977727177e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.085 Order of pole = 3.32e-28 TOP MAIN SOLVE Loop x[1] = -1.829 y[1] (analytic) = -1.0704541615138579833960957314775 y[1] (numeric) = -1.0704541615138579833960957314778 absolute error = 3e-31 relative error = 2.8025487758927847613369564835552e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.828 y[1] (analytic) = -1.0702239277754212869695580495882 y[1] (numeric) = -1.0702239277754212869695580495885 absolute error = 3e-31 relative error = 2.8031516789536107218194475717391e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.827 y[1] (analytic) = -1.0699935000780343773453752935366 y[1] (numeric) = -1.0699935000780343773453752935369 absolute error = 3e-31 relative error = 2.8037553497111998316405861944994e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.083 Order of pole = 2.80e-28 TOP MAIN SOLVE Loop x[1] = -1.826 y[1] (analytic) = -1.0697628782009956953184789043136 y[1] (numeric) = -1.0697628782009956953184789043139 absolute error = 3e-31 relative error = 2.8043597895685587195824197938997e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.082 Order of pole = 1.05e-28 TOP MAIN SOLVE Loop x[1] = -1.825 y[1] (analytic) = -1.0695320619233141797966205039994 y[1] (numeric) = -1.0695320619233141797966205039997 absolute error = 3e-31 relative error = 2.8049649999319992724645945924283e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.824 y[1] (analytic) = -1.0693010510237089031938900658457 y[1] (numeric) = -1.069301051023708903193890065846 absolute error = 3e-31 relative error = 2.8055709822111481205110765585664e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.08 Order of pole = 6.29e-28 TOP MAIN SOLVE Loop x[1] = -1.823 y[1] (analytic) = -1.0690698452806087066253084071283 y[1] (numeric) = -1.0690698452806087066253084071286 absolute error = 3e-31 relative error = 2.8061777378189561547588959632361e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.079 Order of pole = 3.93e-28 TOP MAIN SOLVE Loop x[1] = -1.822 y[1] (analytic) = -1.068838444472151834904018125674 y[1] (numeric) = -1.0688384444721518349040181256743 absolute error = 3e-31 relative error = 2.8067852681717080766334799306703e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.078 Order of pole = 6.94e-28 TOP MAIN SOLVE Loop x[1] = -1.821 y[1] (analytic) = -1.068606848376185571342608039746 y[1] (numeric) = -1.0686068483761855713426080397463 absolute error = 3e-31 relative error = 2.8073935746890319798156859161509e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.078 Order of pole = 1.143e-27 TOP MAIN SOLVE Loop x[1] = -1.82 y[1] (analytic) = -1.0683750567702658723601171838498 y[1] (numeric) = -1.0683750567702658723601171838501 absolute error = 3e-31 relative error = 2.8080026587939089645262002760789e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.819 y[1] (analytic) = -1.0681430694316570018962754602112 y[1] (numeric) = -1.0681430694316570018962754602115 absolute error = 3e-31 relative error = 2.8086125219126827843535200477993e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.076 Order of pole = 1.313e-25 TOP MAIN SOLVE Loop x[1] = -1.818 y[1] (analytic) = -1.0679108861373311656345491474241 y[1] (numeric) = -1.0679108861373311656345491474244 absolute error = 3e-31 relative error = 2.8092231654750695257522927423330e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.075 Order of pole = 4.296e-27 TOP MAIN SOLVE Loop x[1] = -1.817 y[1] (analytic) = -1.0676785066639681450355706242843 y[1] (numeric) = -1.0676785066639681450355706242846 absolute error = 3e-31 relative error = 2.8098345909141673203393483876693e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.816 y[1] (analytic) = -1.0674459307879549311825428783578 y[1] (numeric) = -1.0674459307879549311825428783581 absolute error = 3e-31 relative error = 2.8104467996664660901153202585791e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.815 y[1] (analytic) = -1.0672131582853853584402206356041 y[1] (numeric) = -1.0672131582853853584402206356044 absolute error = 3e-31 relative error = 2.8110597931718573257403157061688e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.072 Order of pole = 2.72e-28 TOP MAIN SOLVE Loop x[1] = -1.814 y[1] (analytic) = -1.0669801889320597379290812696193 y[1] (numeric) = -1.0669801889320597379290812696196 absolute error = 3e-31 relative error = 2.8116735728736438979926662718547e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.813 y[1] (analytic) = -1.0667470225034844908163100270173 y[1] (numeric) = -1.0667470225034844908163100270177 absolute error = 4e-31 relative error = 3.7497175202913998700538091352118e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.812 y[1] (analytic) = -1.0665136587748717814252355393604 y[1] (numeric) = -1.0665136587748717814252355393608 absolute error = 4e-31 relative error = 3.7505379955423073842070761075278e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.811 y[1] (analytic) = -1.0662800975211391501648630821168 y[1] (numeric) = -1.0662800975211391501648630821172 absolute error = 4e-31 relative error = 3.7513595248557093580016724809298e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.81 y[1] (analytic) = -1.0660463385169091462811645876063 y[1] (numeric) = -1.0660463385169091462811645876067 memory used=30.5MB, alloc=4.3MB, time=1.71 absolute error = 4e-31 relative error = 3.7521821101743353568354227243260e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.068 Order of pole = 3.14e-28 TOP MAIN SOLVE Loop x[1] = -1.809 y[1] (analytic) = -1.0658123815365089604317960220182 y[1] (numeric) = -1.0658123815365089604317960220186 absolute error = 4e-31 relative error = 3.7530057534455295323918643603915e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.808 y[1] (analytic) = -1.0655782263539700570859243966009 y[1] (numeric) = -1.0655782263539700570859243966013 absolute error = 4e-31 relative error = 3.7538304566212639737055677664421e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.807 y[1] (analytic) = -1.0653438727430278067508584002558 y[1] (numeric) = -1.0653438727430278067508584002562 absolute error = 4e-31 relative error = 3.7546562216581521036973481518940e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.065 Order of pole = 5.49e-28 TOP MAIN SOLVE Loop x[1] = -1.806 y[1] (analytic) = -1.0651093204771211180271884152658 y[1] (numeric) = -1.0651093204771211180271884152661 absolute error = 3e-31 relative error = 2.8166122878880965910182010904529e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.805 y[1] (analytic) = -1.0648745693293920694941535099859 y[1] (numeric) = -1.0648745693293920694941535099863 absolute error = 4e-31 relative error = 3.7563109451651304897567873866394e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.063 Order of pole = 4.9e-29 TOP MAIN SOLVE Loop x[1] = -1.804 y[1] (analytic) = -1.0646396190726855414269648922663 y[1] (numeric) = -1.0646396190726855414269648922667 absolute error = 4e-31 relative error = 3.7571399075717754700628783078964e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.063 Order of pole = 8.65e-28 TOP MAIN SOLVE Loop x[1] = -1.803 y[1] (analytic) = -1.0644044694795488473478272553968 y[1] (numeric) = -1.0644044694795488473478272553972 absolute error = 4e-31 relative error = 3.7579699397127107017463919551986e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.062 Order of pole = 2.80e-28 TOP MAIN SOLVE Loop x[1] = -1.802 y[1] (analytic) = -1.0641691203222313654124114547175 y[1] (numeric) = -1.0641691203222313654124114547179 absolute error = 4e-31 relative error = 3.7588010435679588291544294668560e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.801 y[1] (analytic) = -1.0639335713726841696335440179519 y[1] (numeric) = -1.0639335713726841696335440179523 absolute error = 4e-31 relative error = 3.7596332211222651746359474721922e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.06 Order of pole = 3.83e-28 TOP MAIN SOLVE Loop x[1] = -1.8 y[1] (analytic) = -1.0636978224025596609438911160525 y[1] (numeric) = -1.063697822402559660943891116053 absolute error = 5e-31 relative error = 4.7005830929563893230016305303638e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.059 Order of pole = 4.33e-28 TOP MAIN SOLVE Loop x[1] = -1.799 y[1] (analytic) = -1.0634618731832111980994268041349 y[1] (numeric) = -1.0634618731832111980994268041354 absolute error = 5e-31 relative error = 4.7016260066134119566249209805795e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.058 Order of pole = 6.78e-28 TOP MAIN SOLVE Loop x[1] = -1.798 y[1] (analytic) = -1.0632257234856927284254875841644 y[1] (numeric) = -1.0632257234856927284254875841648 absolute error = 4e-31 relative error = 3.7621362158981153587008401710518e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.797 y[1] (analytic) = -1.0629893730807584184072276426995 y[1] (numeric) = -1.0629893730807584184072276426999 absolute error = 4e-31 relative error = 3.7629727081910425416613541789994e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.796 y[1] (analytic) = -1.0627528217388622841263014784297 y[1] (numeric) = -1.0627528217388622841263014784301 absolute error = 4e-31 relative error = 3.7638102841780765655705772834783e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.056 Order of pole = 1.155e-27 TOP MAIN SOLVE Loop x[1] = -1.795 y[1] (analytic) = -1.0625160692301578215456130557209 y[1] (numeric) = -1.0625160692301578215456130557213 absolute error = 4e-31 relative error = 3.7646489458725885864545700835308e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.055 Order of pole = 1.72e-28 TOP MAIN SOLVE Loop x[1] = -1.794 y[1] (analytic) = -1.0622791153244976366439831021563 y[1] (numeric) = -1.0622791153244976366439831021567 absolute error = 4e-31 relative error = 3.7654886952927694691313411430901e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.054 Order of pole = 4.69e-28 TOP MAIN SOLVE Loop x[1] = -1.793 y[1] (analytic) = -1.0620419597914330754025987103692 y[1] (numeric) = -1.0620419597914330754025987103696 absolute error = 4e-31 relative error = 3.7663295344616438394044498699751e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.792 y[1] (analytic) = -1.061804602400213853645122007572 y[1] (numeric) = -1.0618046024002138536451220075723 absolute error = 3e-31 relative error = 2.8253785990553131383636789462704e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.052 Order of pole = 3.3e-29 TOP MAIN SOLVE Loop x[1] = -1.791 y[1] (analytic) = -1.0615670429197876867333473203349 y[1] (numeric) = -1.0615670429197876867333473203352 absolute error = 3e-31 relative error = 2.8260108676213687513739159726227e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.79 y[1] (analytic) = -1.061329281118799919120308987613 y[1] (numeric) = -1.0613292811187999191203089876133 absolute error = 3e-31 relative error = 2.8266439580726077474527569644484e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.05 Order of pole = 6.6e-29 TOP MAIN SOLVE Loop x[1] = -1.789 y[1] (analytic) = -1.0610913167655931537627547620153 y[1] (numeric) = -1.0610913167655931537627547620156 absolute error = 3e-31 relative error = 2.8272778719409059959332584798323e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.788 y[1] (analytic) = -1.0608531496282068813949125881078 y[1] (numeric) = -1.0608531496282068813949125881081 absolute error = 3e-31 relative error = 2.8279126107618179280495052171179e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.787 y[1] (analytic) = -1.0606147794743771096654914573981 y[1] (numeric) = -1.0606147794743771096654914573984 absolute error = 3e-31 relative error = 2.8285481760745872952654185695514e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.048 Order of pole = 2.06e-28 TOP MAIN SOLVE Loop x[1] = -1.786 y[1] (analytic) = -1.0603762060715359921398700128174 y[1] (numeric) = -1.0603762060715359921398700128177 absolute error = 3e-31 relative error = 2.8291845694221579646418197554602e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.047 Order of pole = 6.1e-29 TOP MAIN SOLVE Loop x[1] = -1.785 y[1] (analytic) = -1.0601374291868114571694396112554 y[1] (numeric) = -1.0601374291868114571694396112556 absolute error = 2e-31 relative error = 1.8865478615674565009256863159005e-29 % Correct digits = 30 h = 0.001 memory used=34.3MB, alloc=4.3MB, time=1.93 Complex estimate of poles used Radius of convergence = 2.046 Order of pole = 2.9e-29 TOP MAIN SOLVE Loop x[1] = -1.784 y[1] (analytic) = -1.0598984485870268366300816512671 y[1] (numeric) = -1.0598984485870268366300816512673 absolute error = 2e-31 relative error = 1.8869732309413628591659634640842e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.045 Order of pole = 3.95e-28 TOP MAIN SOLVE Loop x[1] = -1.783 y[1] (analytic) = -1.0596592640387004945317721347226 y[1] (numeric) = -1.0596592640387004945317721347229 absolute error = 3e-31 relative error = 2.8310987331588459353651996807241e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.044 Order of pole = 2.26e-28 TOP MAIN SOLVE Loop x[1] = -1.782 y[1] (analytic) = -1.0594198753080454555013196561638 y[1] (numeric) = -1.0594198753080454555013196561641 absolute error = 3e-31 relative error = 2.8317384541494427202726701073615e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.781 y[1] (analytic) = -1.0591802821609690331402563022281 y[1] (numeric) = -1.0591802821609690331402563022284 absolute error = 3e-31 relative error = 2.8323790109454423256732763898785e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.78 y[1] (analytic) = -1.0589404843630724582599142959644 y[1] (numeric) = -1.0589404843630724582599142959647 absolute error = 3e-31 relative error = 2.8330204051122181076376797600840e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.779 y[1] (analytic) = -1.0587004816796505069957346374499 y[1] (numeric) = -1.0587004816796505069957346374502 absolute error = 3e-31 relative error = 2.8336626382189201548871686384311e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.041 Order of pole = 3.6e-29 TOP MAIN SOLVE Loop x[1] = -1.778 y[1] (analytic) = -1.0584602738756911288028674730938 y[1] (numeric) = -1.0584602738756911288028674730941 absolute error = 3e-31 relative error = 2.8343057118384863858066981396865e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.04 Order of pole = 3.20e-28 TOP MAIN SOLVE Loop x[1] = -1.777 y[1] (analytic) = -1.0582198607158750743351374716394 y[1] (numeric) = -1.0582198607158750743351374716397 absolute error = 3e-31 relative error = 2.8349496275476536838412323221305e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.776 y[1] (analytic) = -1.0579792419645755232094610954174 y[1] (numeric) = -1.0579792419645755232094610954177 absolute error = 3e-31 relative error = 2.8355943869269690714282244963984e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.775 y[1] (analytic) = -1.057738417385857711657816331125 y[1] (numeric) = -1.0577384173858577116578163311254 absolute error = 4e-31 relative error = 3.7816533220810678968263474455773e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.774 y[1] (analytic) = -1.0574973867434785600688791855726 y[1] (numeric) = -1.0574973867434785600688791855729 absolute error = 3e-31 relative error = 2.8368864430373502145485836770791e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.036 Order of pole = 1.57e-28 TOP MAIN SOLVE Loop x[1] = -1.773 y[1] (analytic) = -1.057256149800886300421455058718 y[1] (numeric) = -1.0572561498008863004214550587183 absolute error = 3e-31 relative error = 2.8375337429486618178929146114313e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.772 y[1] (analytic) = -1.0570147063212201036118469791709 y[1] (numeric) = -1.0570147063212201036118469791712 absolute error = 3e-31 relative error = 2.8381818928906358264956835658017e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.035 Order of pole = 2.13e-28 TOP MAIN SOLVE Loop x[1] = -1.771 y[1] (analytic) = -1.0567730560673097066773166264532 y[1] (numeric) = -1.0567730560673097066773166264535 absolute error = 3e-31 relative error = 2.8388308944630389262944914234223e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.77 y[1] (analytic) = -1.0565311988016750399178080699299 y[1] (numeric) = -1.0565311988016750399178080699302 absolute error = 3e-31 relative error = 2.8394807492695158037193269426314e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.033 Order of pole = 1.57e-28 TOP MAIN SOLVE Loop x[1] = -1.769 y[1] (analytic) = -1.0562891342865258539181182267354 y[1] (numeric) = -1.0562891342865258539181182267358 absolute error = 4e-31 relative error = 3.7868419452234674582877022184918e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.032 Order of pole = 2.00e-28 TOP MAIN SOLVE Loop x[1] = -1.768 y[1] (analytic) = -1.0560468622837613464727121804917 y[1] (numeric) = -1.0560468622837613464727121804921 absolute error = 4e-31 relative error = 3.7877107000249711567362386299793e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.031 Order of pole = 4.3e-29 TOP MAIN SOLVE Loop x[1] = -1.767 y[1] (analytic) = -1.055804382554969789415395709414 y[1] (numeric) = -1.0558043825549697894153957094144 absolute error = 4e-31 relative error = 3.7885805989176622140931891369171e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.03 Order of pole = 2.75e-28 TOP MAIN SOLVE Loop x[1] = -1.766 y[1] (analytic) = -1.0555616948614281553560716468066 y[1] (numeric) = -1.055561694861428155356071646807 absolute error = 4e-31 relative error = 3.7894516440605693867154208397767e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.029 Order of pole = 2.24e-28 TOP MAIN SOLVE Loop x[1] = -1.765 y[1] (analytic) = -1.0553187989641017443268210392272 y[1] (numeric) = -1.0553187989641017443268210392275 absolute error = 3e-31 relative error = 2.8427428782134767132630374264652e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.029 Order of pole = 8.2e-29 TOP MAIN SOLVE Loop x[1] = -1.764 y[1] (analytic) = -1.0550756946236438103395644780314 y[1] (numeric) = -1.0550756946236438103395644780317 absolute error = 3e-31 relative error = 2.8433978863195501761451931728028e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.763 y[1] (analytic) = -1.0548323816003951878575734588655 y[1] (numeric) = -1.0548323816003951878575734588659 absolute error = 4e-31 relative error = 3.7920716786596812030571677804760e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.762 y[1] (analytic) = -1.0545888596543839181831161712323 y[1] (numeric) = -1.0545888596543839181831161712327 absolute error = 4e-31 relative error = 3.7929473304989240972115401056360e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.026 Order of pole = 2.49e-28 TOP MAIN SOLVE Loop x[1] = -1.761 y[1] (analytic) = -1.0543451285453248757635367367935 y[1] (numeric) = -1.0543451285453248757635367367939 absolute error = 4e-31 relative error = 3.7938241394625511301066851748945e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.025 Order of pole = 1.60e-28 TOP MAIN SOLVE Loop x[1] = -1.76 y[1] (analytic) = -1.0541011880326193944180816008678 y[1] (numeric) = -1.0541011880326193944180816008681 absolute error = 3e-31 relative error = 2.8460265808059826761492516831447e-29 % Correct digits = 30 h = 0.001 NO POLE memory used=38.1MB, alloc=4.3MB, time=2.16 TOP MAIN SOLVE Loop x[1] = -1.759 y[1] (analytic) = -1.0538570378753548934878015369111 y[1] (numeric) = -1.0538570378753548934878015369115 absolute error = 4e-31 relative error = 3.7955812375312908691015353878470e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.758 y[1] (analytic) = -1.0536126778323045039108725489141 y[1] (numeric) = -1.0536126778323045039108725489145 absolute error = 4e-31 relative error = 3.7964615310339398742789472009923e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.023 Order of pole = 1.36e-28 TOP MAIN SOLVE Loop x[1] = -1.757 y[1] (analytic) = -1.0533681076619266942256938518897 y[1] (numeric) = -1.0533681076619266942256938518901 absolute error = 4e-31 relative error = 3.7973429904560773905093162026308e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.756 y[1] (analytic) = -1.053123327122364896504136076245 y[1] (numeric) = -1.0531233271223648965041360762454 absolute error = 4e-31 relative error = 3.7982256180099128270025099635819e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.755 y[1] (analytic) = -1.0528783359714471322173278781071 y[1] (numeric) = -1.0528783359714471322173278781075 absolute error = 4e-31 relative error = 3.7991094159130608883992369836028e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.02 Order of pole = 3.42e-28 TOP MAIN SOLVE Loop x[1] = -1.754 y[1] (analytic) = -1.0526331339666856380363842448938 y[1] (numeric) = -1.0526331339666856380363842448942 absolute error = 4e-31 relative error = 3.7999943863885576572092365430905e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.753 y[1] (analytic) = -1.0523877208652764915704949638652 y[1] (numeric) = -1.0523877208652764915704949638656 absolute error = 4e-31 relative error = 3.8008805316648767325814271866611e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.752 y[1] (analytic) = -1.0521420964240992370448069713523 y[1] (numeric) = -1.0521420964240992370448069713527 absolute error = 4e-31 relative error = 3.8017678539759454256332011881731e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.751 y[1] (analytic) = -1.0518962603997165109205496221103 y[1] (numeric) = -1.0518962603997165109205496221107 absolute error = 4e-31 relative error = 3.8026563555611610115670909960087e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.016 Order of pole = 2.34e-28 TOP MAIN SOLVE Loop x[1] = -1.75 y[1] (analytic) = -1.0516502125483736674598673120863 y[1] (numeric) = -1.0516502125483736674598673120867 absolute error = 4e-31 relative error = 3.8035460386654070388040776269875e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.016 Order of pole = 3.46e-28 TOP MAIN SOLVE Loop x[1] = -1.749 y[1] (analytic) = -1.0514039526259984042378393540978 y[1] (numeric) = -1.0514039526259984042378393540982 absolute error = 4e-31 relative error = 3.8044369055390696953638602974722e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.015 Order of pole = 5.89e-28 TOP MAIN SOLVE Loop x[1] = -1.748 y[1] (analytic) = -1.0511574803882003876041825447895 y[1] (numeric) = -1.0511574803882003876041825447899 absolute error = 4e-31 relative error = 3.8053289584380542327234612814242e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.747 y[1] (analytic) = -1.0509107955902708780971474730531 y[1] (numeric) = -1.0509107955902708780971474730536 absolute error = 5e-31 relative error = 4.7577777495297518092332501225537e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.746 y[1] (analytic) = -1.0506638979871823558121353051524 y[1] (numeric) = -1.0506638979871823558121353051528 absolute error = 4e-31 relative error = 3.8071166313633042203973366869802e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.012 Order of pole = 2.64e-28 TOP MAIN SOLVE Loop x[1] = -1.745 y[1] (analytic) = -1.0504167873335881457275775403811 y[1] (numeric) = -1.0504167873335881457275775403815 absolute error = 4e-31 relative error = 3.8080122559291241150325542579905e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.744 y[1] (analytic) = -1.0501694633838220429906370634934 y[1] (numeric) = -1.0501694633838220429906370634938 absolute error = 4e-31 relative error = 3.8089090755994080329089290354394e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.743 y[1] (analytic) = -1.0499219258918979381653047266663 y[1] (numeric) = -1.0499219258918979381653047266667 absolute error = 4e-31 relative error = 3.8098070926579049287411161878086e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.742 y[1] (analytic) = -1.0496741746115094424454816746877 y[1] (numeric) = -1.0496741746115094424454816746881 absolute error = 4e-31 relative error = 3.8107063093939825839889688697394e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.009 Order of pole = 3.59e-28 TOP MAIN SOLVE Loop x[1] = -1.741 y[1] (analytic) = -1.0494262092960295128356536826984 y[1] (numeric) = -1.0494262092960295128356536826988 absolute error = 4e-31 relative error = 3.8116067281026444396327005411097e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.008 Order of pole = 6.60e-28 TOP MAIN SOLVE Loop x[1] = -1.74 y[1] (analytic) = -1.0491780296985100773017799064475 y[1] (numeric) = -1.0491780296985100773017799064479 absolute error = 4e-31 relative error = 3.8125083510845464883159995961140e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.007 Order of pole = 6.29e-28 TOP MAIN SOLVE Loop x[1] = -1.739 y[1] (analytic) = -1.0489296355716816598950346509516 y[1] (numeric) = -1.048929635571681659895034650952 absolute error = 4e-31 relative error = 3.8134111806460142260982098675114e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.006 Order of pole = 1.76e-28 TOP MAIN SOLVE Loop x[1] = -1.738 y[1] (analytic) = -1.048681026667953005851057044964 y[1] (numeric) = -1.0486810266679530058510570449644 absolute error = 4e-31 relative error = 3.8143152190990596640578007995642e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.005 Order of pole = 7.47e-28 TOP MAIN SOLVE Loop x[1] = -1.737 y[1] (analytic) = -1.0484322027394107066673798660733 y[1] (numeric) = -1.0484322027394107066673798660737 absolute error = 4e-31 relative error = 3.8152204687613983999904670402652e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.004 Order of pole = 7.31e-28 TOP MAIN SOLVE Loop x[1] = -1.736 y[1] (analytic) = -1.0481831635378188251617251948455 y[1] (numeric) = -1.0481831635378188251617251948459 absolute error = 4e-31 relative error = 3.8161269319564667504463189221229e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.003 Order of pole = 2.1e-29 TOP MAIN SOLVE Loop x[1] = -1.735 y[1] (analytic) = -1.0479339088146185205138710865148 y[1] (numeric) = -1.0479339088146185205138710865152 absolute error = 4e-31 relative error = 3.8170346110134389433517528140051e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.003 Order of pole = 1.296e-27 TOP MAIN SOLVE Loop memory used=41.9MB, alloc=4.3MB, time=2.38 x[1] = -1.734 y[1] (analytic) = -1.0476844383209276732938100356012 y[1] (numeric) = -1.0476844383209276732938100356016 absolute error = 4e-31 relative error = 3.8179435082672443714627236676171e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.002 Order of pole = 3.393e-27 TOP MAIN SOLVE Loop x[1] = -1.733 y[1] (analytic) = -1.0474347518075405104789366728037 y[1] (numeric) = -1.0474347518075405104789366728041 absolute error = 4e-31 relative error = 3.8188536260585849068972812845094e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.001 Order of pole = 3.249e-27 TOP MAIN SOLVE Loop x[1] = -1.732 y[1] (analytic) = -1.0471848490249272304630188748779 y[1] (numeric) = -1.0471848490249272304630188748783 absolute error = 4e-31 relative error = 3.8197649667339522769963769267513e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2 Order of pole = 2.934e-26 TOP MAIN SOLVE Loop x[1] = -1.731 y[1] (analytic) = -1.0469347297232336280597232872656 y[1] (numeric) = -1.046934729723233628059723287266 absolute error = 4e-31 relative error = 3.8206775326456455017630979204307e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.999 Order of pole = 2.252e-27 TOP MAIN SOLVE Loop x[1] = -1.73 y[1] (analytic) = -1.0466843936522807195034831563044 y[1] (numeric) = -1.0466843936522807195034831563048 absolute error = 4e-31 relative error = 3.8215913261517883931316448900140e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.998 Order of pole = 2.31e-28 TOP MAIN SOLVE Loop x[1] = -1.729 y[1] (analytic) = -1.0464338405615643674505133432104 y[1] (numeric) = -1.0464338405615643674505133432108 absolute error = 4e-31 relative error = 3.8225063496163471163185292476433e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.728 y[1] (analytic) = -1.0461830702002549059827944460079 y[1] (numeric) = -1.0461830702002549059827944460084 absolute error = 5e-31 relative error = 4.7792782567614347668870469739315e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.727 y[1] (analytic) = -1.0459320823171967656178650884773 y[1] (numeric) = -1.0459320823171967656178650884777 absolute error = 4e-31 relative error = 3.8243400959058942901379846526326e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.996 Order of pole = 3.47e-28 TOP MAIN SOLVE Loop x[1] = -1.726 y[1] (analytic) = -1.0456808766609080983272786473166 y[1] (numeric) = -1.0456808766609080983272786473171 absolute error = 5e-31 relative error = 4.7815735293602322050101974513059e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.995 Order of pole = 6.12e-28 TOP MAIN SOLVE Loop x[1] = -1.725 y[1] (analytic) = -1.0454294529795804025665979803791 y[1] (numeric) = -1.0454294529795804025665979803796 absolute error = 5e-31 relative error = 4.7827234881794183469058050399155e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.724 y[1] (analytic) = -1.0451778110210781483198190903494 y[1] (numeric) = -1.0451778110210781483198190903499 absolute error = 5e-31 relative error = 4.7838749993317307166030252896632e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.723 y[1] (analytic) = -1.0449259505329384021611321098912 y[1] (numeric) = -1.0449259505329384021611321098918 absolute error = 6e-31 relative error = 5.7420336789796920499190932397685e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.722 y[1] (analytic) = -1.0446738712623704523369455264271 y[1] (numeric) = -1.0446738712623704523369455264277 absolute error = 6e-31 relative error = 5.7434192287681870230172340091213e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.991 Order of pole = 3.6e-29 TOP MAIN SOLVE Loop x[1] = -1.721 y[1] (analytic) = -1.0444215729562554338711171776211 y[1] (numeric) = -1.0444215729562554338711171776216 absolute error = 5e-31 relative error = 4.7873388768171490671404385032056e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.72 y[1] (analytic) = -1.0441690553611459536963532426421 y[1] (numeric) = -1.0441690553611459536963532426426 absolute error = 5e-31 relative error = 4.7884966273690746550011717184458e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.99 Order of pole = 1.29e-28 TOP MAIN SOLVE Loop x[1] = -1.719 y[1] (analytic) = -1.0439163182232657158147542296939 y[1] (numeric) = -1.0439163182232657158147542296944 absolute error = 5e-31 relative error = 4.7896559453251443827517487773139e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.718 y[1] (analytic) = -1.0436633612885091464905048174304 y[1] (numeric) = -1.043663361288509146490504817431 absolute error = 6e-31 relative error = 5.7489802004665435689014153575557e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.717 y[1] (analytic) = -1.0434101843024410194777223470474 y[1] (numeric) = -1.043410184302441019477722347048 absolute error = 6e-31 relative error = 5.7503751547252012213688962444618e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.716 y[1] (analytic) = -1.0431567870102960812864967833629 y[1] (numeric) = -1.0431567870102960812864967833635 absolute error = 6e-31 relative error = 5.7517720008284615493165304171181e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.986 Order of pole = 5.21e-28 TOP MAIN SOLVE Loop x[1] = -1.715 y[1] (analytic) = -1.0429031691569786764901730673983 y[1] (numeric) = -1.0429031691569786764901730673989 absolute error = 6e-31 relative error = 5.7531707424477821979161718333440e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.985 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = -1.714 y[1] (analytic) = -1.0426493304870623730769449701572 y[1] (numeric) = -1.0426493304870623730769449701578 absolute error = 6e-31 relative error = 5.7545713832637909104366471811133e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.713 y[1] (analytic) = -1.0423952707447895878488478277957 y[1] (numeric) = -1.0423952707447895878488478277964 absolute error = 7e-31 relative error = 6.7153029147940323154098600135898e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.712 y[1] (analytic) = -1.0421409896740712118712558925046 y[1] (numeric) = -1.0421409896740712118712558925053 absolute error = 7e-31 relative error = 6.7169414401301349671634699667004e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.711 y[1] (analytic) = -1.0418864870184862359760084715006 y[1] (numeric) = -1.0418864870184862359760084715013 absolute error = 7e-31 relative error = 6.7185821941424207223976352897077e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.982 Order of pole = 1.03e-28 TOP MAIN SOLVE Loop x[1] = -1.71 y[1] (analytic) = -1.0416317625212813763213075488757 y[1] (numeric) = -1.0416317625212813763213075488764 absolute error = 7e-31 relative error = 6.7202251811680755644734239599977e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.981 Order of pole = 1.93e-28 TOP MAIN SOLVE Loop memory used=45.7MB, alloc=4.3MB, time=2.61 x[1] = -1.709 y[1] (analytic) = -1.0413768159253707000115481919974 y[1] (numeric) = -1.041376815925370700011548191998 absolute error = 6e-31 relative error = 5.7616032047615552197799028329262e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.98 Order of pole = 3.14e-28 TOP MAIN SOLVE Loop x[1] = -1.708 y[1] (analytic) = -1.0411216469733352507802617360203 y[1] (numeric) = -1.041121646973335250780261736021 absolute error = 7e-31 relative error = 6.7235178716625809605535087668396e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.707 y[1] (analytic) = -1.0408662554074226747393705171791 y[1] (numeric) = -1.0408662554074226747393705171798 absolute error = 7e-31 relative error = 6.7251675838602474771488754777273e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.706 y[1] (analytic) = -1.0406106409695468461979717882109 y[1] (numeric) = -1.0406106409695468461979717882116 absolute error = 7e-31 relative error = 6.7268195465289816023022358730615e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.977 Order of pole = 4.8e-29 TOP MAIN SOLVE Loop x[1] = -1.705 y[1] (analytic) = -1.0403548034012874935538873978328 y[1] (numeric) = -1.0403548034012874935538873978335 absolute error = 7e-31 relative error = 6.7284737640606131058319593706494e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.704 y[1] (analytic) = -1.0400987424438898252612348509983 y[1] (numeric) = -1.040098742443889825261234850999 absolute error = 7e-31 relative error = 6.7301302408580008295021950822365e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.703 y[1] (analytic) = -1.0398424578382641558772944880061 y[1] (numeric) = -1.0398424578382641558772944880069 absolute error = 8e-31 relative error = 7.6934731215257901784438578874278e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.975 Order of pole = 2.60e-28 TOP MAIN SOLVE Loop x[1] = -1.702 y[1] (analytic) = -1.0395859493249855321919667287672 y[1] (numeric) = -1.039585949324985532191966728768 absolute error = 8e-31 relative error = 7.6953714170478035430006282420110e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.974 Order of pole = 1.66e-28 TOP MAIN SOLVE Loop x[1] = -1.701 y[1] (analytic) = -1.0393292166442933594431326239748 y[1] (numeric) = -1.0393292166442933594431326239756 absolute error = 8e-31 relative error = 7.6972723097593540226204367943251e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.7 y[1] (analytic) = -1.0390722595360910276212503379073 y[1] (numeric) = -1.0390722595360910276212503379081 absolute error = 8e-31 relative error = 7.6991758047430856596457476662046e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.972 Order of pole = 1.47e-28 TOP MAIN SOLVE Loop x[1] = -1.699 y[1] (analytic) = -1.0388150777399455378665396584461 y[1] (numeric) = -1.0388150777399455378665396584469 absolute error = 8e-31 relative error = 7.7010819070944412237296847526919e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.698 y[1] (analytic) = -1.038557670995087128962126188953 y[1] (numeric) = -1.0385576709950871289621261889538 absolute error = 8e-31 relative error = 7.7029906219217014473637763950644e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.971 Order of pole = 3.24e-28 TOP MAIN SOLVE Loop x[1] = -1.697 y[1] (analytic) = -1.038300039040408903926536524248 y[1] (numeric) = -1.0383000390404089039265365242489 absolute error = 9e-31 relative error = 8.6680146986392774534114016289536e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.696 y[1] (analytic) = -1.0380421816144664567089554494038 y[1] (numeric) = -1.0380421816144664567089554494047 absolute error = 9e-31 relative error = 8.6701678981891706504053602752383e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.969 Order of pole = 1.03e-28 TOP MAIN SOLVE Loop x[1] = -1.695 y[1] (analytic) = -1.037784098455477498990676025748 y[1] (numeric) = -1.0377840984554774989906760257489 absolute error = 9e-31 relative error = 8.6723240541020041043266583237422e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.694 y[1] (analytic) = -1.0375257893013214870961933436928 y[1] (numeric) = -1.0375257893013214870961933436937 absolute error = 9e-31 relative error = 8.6744831721828090682447329456986e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.967 Order of pole = 1.76e-28 TOP MAIN SOLVE Loop x[1] = -1.693 y[1] (analytic) = -1.0372672538895392490174127271123 y[1] (numeric) = -1.0372672538895392490174127271132 absolute error = 9e-31 relative error = 8.6766452582512826065132309356567e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.966 Order of pole = 2.5e-29 TOP MAIN SOLVE Loop x[1] = -1.692 y[1] (analytic) = -1.0370084919573326115544632693128 y[1] (numeric) = -1.0370084919573326115544632693137 absolute error = 9e-31 relative error = 8.6788103181418327007193782847749e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.691 y[1] (analytic) = -1.0367495032415640275766277665203 y[1] (numeric) = -1.0367495032415640275766277665212 absolute error = 9e-31 relative error = 8.6809783577036235189857361992371e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.965 Order of pole = 1.68e-28 TOP MAIN SOLVE Loop x[1] = -1.69 y[1] (analytic) = -1.0364902874787562034069203915875 y[1] (numeric) = -1.0364902874787562034069203915884 absolute error = 9e-31 relative error = 8.6831493828006208493058755591423e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.964 Order of pole = 3.14e-28 TOP MAIN SOLVE Loop x[1] = -1.689 y[1] (analytic) = -1.0362308444050917263338638186339 y[1] (numeric) = -1.0362308444050917263338638186348 absolute error = 9e-31 relative error = 8.6853233993116376975987275640567e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.688 y[1] (analytic) = -1.0359711737564126922540379689265 y[1] (numeric) = -1.0359711737564126922540379689274 absolute error = 9e-31 relative error = 8.6875004131303800511696111823296e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.962 Order of pole = 1.02e-28 TOP MAIN SOLVE Loop x[1] = -1.687 y[1] (analytic) = -1.0357112752682203334489930998183 y[1] (numeric) = -1.0357112752682203334489930998192 absolute error = 9e-31 relative error = 8.6896804301654928082691981132353e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.961 Order of pole = 1.05e-28 TOP MAIN SOLVE Loop x[1] = -1.686 y[1] (analytic) = -1.0354511486756746465001406023373 y[1] (numeric) = -1.0354511486756746465001406023382 absolute error = 9e-31 relative error = 8.6918634563406058744449533855470e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.96 Order of pole = 2.53e-28 TOP MAIN SOLVE Loop x[1] = -1.685 y[1] (analytic) = -1.0351907937135940203452556094 y[1] (numeric) = -1.0351907937135940203452556094008 absolute error = 8e-31 relative error = 7.7280439978616714901181196049292e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=49.5MB, alloc=4.3MB, time=2.84 x[1] = -1.684 y[1] (analytic) = -1.034930210116454864480246345955 y[1] (numeric) = -1.0349302101164548644802463459558 absolute error = 8e-31 relative error = 7.7299898310049380835028842974328e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.959 Order of pole = 7.9e-29 TOP MAIN SOLVE Loop x[1] = -1.683 y[1] (analytic) = -1.0346693976183912373098660749934 y[1] (numeric) = -1.0346693976183912373098660749942 absolute error = 8e-31 relative error = 7.7319383548159944987352582000105e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.682 y[1] (analytic) = -1.034408355953194474651064509632 y[1] (numeric) = -1.0344083559531944746510645096329 absolute error = 9e-31 relative error = 8.7006257714407300863845404765298e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.957 Order of pole = 1.20e-28 TOP MAIN SOLVE Loop x[1] = -1.681 y[1] (analytic) = -1.0341470848543128183926966717421 y[1] (numeric) = -1.034147084854312818392696671743 absolute error = 9e-31 relative error = 8.7028239326980164439368522511271e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.68 y[1] (analytic) = -1.0338855840548510453153283821921 y[1] (numeric) = -1.033885584054851045315328382193 absolute error = 9e-31 relative error = 8.7050251389543702851670104034777e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.955 Order of pole = 6.3e-29 TOP MAIN SOLVE Loop x[1] = -1.679 y[1] (analytic) = -1.0336238532875700960748988670659 y[1] (numeric) = -1.0336238532875700960748988670668 absolute error = 9e-31 relative error = 8.7072293962396214224916773582519e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.678 y[1] (analytic) = -1.0333618922848867043540223585378 y[1] (numeric) = -1.0333618922848867043540223585386 absolute error = 8e-31 relative error = 7.7417215205324084759155327089157e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.953 Order of pole = 2.09e-28 TOP MAIN SOLVE Loop x[1] = -1.677 y[1] (analytic) = -1.0330997007788730261847320588002 y[1] (numeric) = -1.0330997007788730261847320588011 absolute error = 9e-31 relative error = 8.7116470880929817997658988712602e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.676 y[1] (analytic) = -1.0328372785012562694464914208908 y[1] (numeric) = -1.0328372785012562694464914208917 absolute error = 9e-31 relative error = 8.7138605347977406910077425187299e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.675 y[1] (analytic) = -1.0325746251834183235433193818035 y[1] (numeric) = -1.0325746251834183235433193818044 absolute error = 9e-31 relative error = 8.7160770568047919620012700987214e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.674 y[1] (analytic) = -1.0323117405563953892638979612579 y[1] (numeric) = -1.0323117405563953892638979612588 absolute error = 9e-31 relative error = 8.7182966602212427963069179800391e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.673 y[1] (analytic) = -1.0320486243508776088285525142806 y[1] (numeric) = -1.0320486243508776088285525142815 absolute error = 9e-31 relative error = 8.7205193511698001375547789031812e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.672 y[1] (analytic) = -1.0317852762972086961270168976902 y[1] (numeric) = -1.0317852762972086961270168976911 absolute error = 9e-31 relative error = 8.7227451357888191956946728991485e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.948 Order of pole = 1.87e-28 TOP MAIN SOLVE Loop x[1] = -1.671 y[1] (analytic) = -1.0315216961253855671509178800198 y[1] (numeric) = -1.0315216961253855671509178800207 absolute error = 9e-31 relative error = 8.7249740202323521308621534548575e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.947 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = -1.67 y[1] (analytic) = -1.0312578835650579706249352917186 y[1] (numeric) = -1.0312578835650579706249352917196 absolute error = 1.0e-30 relative error = 9.6968955674113299062331856211358e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.947 Order of pole = 3.7e-29 TOP MAIN SOLVE Loop x[1] = -1.669 y[1] (analytic) = -1.0309938383455281188406166780065 y[1] (numeric) = -1.0309938383455281188406166780075 absolute error = 1.0e-30 relative error = 9.6993790147643848625080804012649e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.668 y[1] (analytic) = -1.0307295601957503186968475808608 y[1] (numeric) = -1.0307295601957503186968475808618 absolute error = 1.0e-30 relative error = 9.7018659269855971267948139373768e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.945 Order of pole = 6.5e-29 TOP MAIN SOLVE Loop x[1] = -1.667 y[1] (analytic) = -1.0304650488443306029510010396658 y[1] (numeric) = -1.0304650488443306029510010396668 absolute error = 1.0e-30 relative error = 9.7043563109831115637182458424735e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.944 Order of pole = 1.63e-28 TOP MAIN SOLVE Loop x[1] = -1.666 y[1] (analytic) = -1.0302003040195263616848124624 y[1] (numeric) = -1.0302003040195263616848124624011 absolute error = 1.1e-30 relative error = 1.0677535191051066304050735111573e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.943 Order of pole = 1.75e-28 TOP MAIN SOLVE Loop x[1] = -1.665 y[1] (analytic) = -1.0299353254492459739890486812413 y[1] (numeric) = -1.0299353254492459739890486812423 absolute error = 1.0e-30 relative error = 9.7093475220282542650610227557985e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.942 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = -1.664 y[1] (analytic) = -1.0296701128610484398710627684934 y[1] (numeric) = -1.0296701128610484398710627684944 absolute error = 1.0e-30 relative error = 9.7118483629809661978329853148130e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.941 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -1.663 y[1] (analytic) = -1.0294046659821430123893490511472 y[1] (numeric) = -1.0294046659821430123893490511482 absolute error = 1.0e-30 relative error = 9.7143527035202588404356958804048e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.941 Order of pole = 1.76e-28 TOP MAIN SOLVE Loop x[1] = -1.662 y[1] (analytic) = -1.0291389845393888300192357255379 y[1] (numeric) = -1.0291389845393888300192357255389 absolute error = 1.0e-30 relative error = 9.7168605506434045997895920567524e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.661 y[1] (analytic) = -1.0288730682592945492538755378225 y[1] (numeric) = -1.0288730682592945492538755378235 absolute error = 1.0e-30 relative error = 9.7193719113656689099103332099530e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.66 y[1] (analytic) = -1.0286069168680179774447181617342 y[1] (numeric) = -1.0286069168680179774447181617352 absolute error = 1.0e-30 relative error = 9.7218867927203665517998028665419e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.938 Order of pole = 1.94e-28 TOP MAIN SOLVE Loop x[1] = -1.659 memory used=53.4MB, alloc=4.3MB, time=3.06 y[1] (analytic) = -1.0283405300913657058856711726431 y[1] (numeric) = -1.0283405300913657058856711726441 absolute error = 1.0e-30 relative error = 9.7244052017589181809482933071420e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.658 y[1] (analytic) = -1.0280739076547927431451798867289 y[1] (numeric) = -1.0280739076547927431451798867299 absolute error = 1.0e-30 relative error = 9.7269271455509070633298420408727e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.936 Order of pole = 1.8e-29 TOP MAIN SOLVE Loop x[1] = -1.657 y[1] (analytic) = -1.0278070492834021486504798064199 y[1] (numeric) = -1.0278070492834021486504798064209 absolute error = 1.0e-30 relative error = 9.7294526311841360207769421554954e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.935 Order of pole = 5.0e-29 TOP MAIN SOLVE Loop x[1] = -1.656 y[1] (analytic) = -1.0275399547019446665282989885398 y[1] (numeric) = -1.0275399547019446665282989885408 absolute error = 1.0e-30 relative error = 9.7319816657646845866251238467509e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.655 y[1] (analytic) = -1.0272726236348183597063113302 y[1] (numeric) = -1.027272623634818359706311330201 absolute error = 1.0e-30 relative error = 9.7345142564169663725222028761654e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.934 Order of pole = 1.13e-28 TOP MAIN SOLVE Loop x[1] = -1.654 y[1] (analytic) = -1.0270050558060682442796655497461 y[1] (numeric) = -1.0270050558060682442796655497471 absolute error = 1.0e-30 relative error = 9.7370504102837866473013134289214e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.653 y[1] (analytic) = -1.0267372509393859241469385263886 y[1] (numeric) = -1.0267372509393859241469385263896 absolute error = 1.0e-30 relative error = 9.7395901345264001288211879822197e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.932 Order of pole = 9.1e-29 TOP MAIN SOLVE Loop x[1] = -1.652 y[1] (analytic) = -1.0264692087581092259198856528828 y[1] (numeric) = -1.0264692087581092259198856528838 absolute error = 1.0e-30 relative error = 9.7421334363245689896815154909437e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.651 y[1] (analytic) = -1.0262009289852218341113849511525 y[1] (numeric) = -1.0262009289852218341113849511535 absolute error = 1.0e-30 relative error = 9.7446803228766210777256015932192e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.65 y[1] (analytic) = -1.0259324113433529266059959014387 y[1] (numeric) = -1.0259324113433529266059959014397 absolute error = 1.0e-30 relative error = 9.7472308013995083522469707765860e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.649 y[1] (analytic) = -1.0256636555547768104175782417792 y[1] (numeric) = -1.0256636555547768104175782417802 absolute error = 1.0e-30 relative error = 9.7497848791288655368209906697059e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.648 y[1] (analytic) = -1.025394661341412557738440406758 y[1] (numeric) = -1.025394661341412557738440406759 absolute error = 1.0e-30 relative error = 9.7523425633190689896870629796178e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.928 Order of pole = 2.86e-28 TOP MAIN SOLVE Loop x[1] = -1.647 y[1] (analytic) = -1.0251254284248236422845117928801 y[1] (numeric) = -1.0251254284248236422845117928812 absolute error = 1.1e-30 relative error = 1.0730394247367625371872555648869e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.927 Order of pole = 1.27e-28 TOP MAIN SOLVE Loop x[1] = -1.646 y[1] (analytic) = -1.0248559565262175759410576630018 y[1] (numeric) = -1.0248559565262175759410576630029 absolute error = 1.1e-30 relative error = 1.0733215658212941365081535728946e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.926 Order of pole = 1.23e-28 TOP MAIN SOLVE Loop x[1] = -1.645 y[1] (analytic) = -1.0245862453664455457134802343583 y[1] (numeric) = -1.0245862453664455457134802343593 absolute error = 1.0e-30 relative error = 9.7600373274808874633558339411926e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.644 y[1] (analytic) = -1.0243162946660020509877743342532 y[1] (numeric) = -1.0243162946660020509877743342542 absolute error = 1.0e-30 relative error = 9.7626095104351449895587055214438e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.924 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = -1.643 y[1] (analytic) = -1.0240461041450245411052309547881 y[1] (numeric) = -1.0240461041450245411052309547891 absolute error = 1.0e-30 relative error = 9.7651853364053309046916568504042e-29 % Correct digits = 30 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.642 y[1] (analytic) = -1.0237756735232930532560070934894 y[1] (numeric) = -1.0237756735232930532560070934905 absolute error = 1.1e-30 relative error = 1.0744541294035471948950020036250e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.923 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = -1.641 y[1] (analytic) = -1.0235050025202298506962054307213 y[1] (numeric) = -1.0235050025202298506962054307224 absolute error = 1.1e-30 relative error = 1.0747382741573441456396784230304e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.64 y[1] (analytic) = -1.0232340908548990612931326677265 y[1] (numeric) = -1.0232340908548990612931326677276 absolute error = 1.1e-30 relative error = 1.0750228220806873220325624945279e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.921 Order of pole = 4.8e-29 TOP MAIN SOLVE Loop x[1] = -1.639 y[1] (analytic) = -1.0229629382460063164034307314038 y[1] (numeric) = -1.022962938246006316403430731405 absolute error = 1.2e-30 relative error = 1.1730630261713539088378233753015e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.92 Order of pole = 2.77e-28 TOP MAIN SOLVE Loop x[1] = -1.638 y[1] (analytic) = -1.022691544411898390088800543882 y[1] (numeric) = -1.0226915444118983900888005438832 absolute error = 1.2e-30 relative error = 1.1733743244059608698648345655191e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.919 Order of pole = 1.53e-28 TOP MAIN SOLVE Loop x[1] = -1.637 y[1] (analytic) = -1.0224199090705628386740636569746 y[1] (numeric) = -1.0224199090705628386740636569758 absolute error = 1.2e-30 relative error = 1.1736860651421268240692871100263e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.636 y[1] (analytic) = -1.0221480319396276406523327640814 y[1] (numeric) = -1.0221480319396276406523327640827 absolute error = 1.3e-30 relative error = 1.2718314367177527026997045257713e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.635 y[1] (analytic) = -1.0218759127363608369420879254161 y[1] (numeric) = -1.0218759127363608369420879254174 absolute error = 1.3e-30 relative error = 1.2721701175232553554191825692513e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.634 y[1] (analytic) = -1.0216035511776701715009812769787 y[1] (numeric) = -1.02160355117767017150098127698 absolute error = 1.3e-30 relative error = 1.2725092806318104290473006868527e-28 % Correct digits = 29 h = 0.001 memory used=57.2MB, alloc=4.3MB, time=3.29 Complex estimate of poles used Radius of convergence = 1.916 Order of pole = 1.49e-28 TOP MAIN SOLVE Loop x[1] = -1.633 y[1] (analytic) = -1.0213309469801027323012190398388 y[1] (numeric) = -1.0213309469801027323012190398401 absolute error = 1.3e-30 relative error = 1.2728489270239710222362449007390e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.915 Order of pole = 7.9e-29 TOP MAIN SOLVE Loop x[1] = -1.632 y[1] (analytic) = -1.0210580998598445926713958044295 y[1] (numeric) = -1.0210580998598445926713958044309 absolute error = 1.4e-30 relative error = 1.3711266775046109697232453997719e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.631 y[1] (analytic) = -1.0207850095327204530096823350723 y[1] (numeric) = -1.0207850095327204530096823350737 absolute error = 1.4e-30 relative error = 1.3714934946398466988415858830250e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.913 Order of pole = 8.5e-29 TOP MAIN SOLVE Loop x[1] = -1.63 y[1] (analytic) = -1.0205116757141932828732945232312 y[1] (numeric) = -1.0205116757141932828732945232326 absolute error = 1.4e-30 relative error = 1.3718608354188855373035156497589e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.629 y[1] (analytic) = -1.0202380981193639634491976144342 y[1] (numeric) = -1.0202380981193639634491976144355 absolute error = 1.3e-30 relative error = 1.2742123651296003276895416834180e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.628 y[1] (analytic) = -1.0199642764629709304110264437729 y[1] (numeric) = -1.0199642764629709304110264437742 absolute error = 1.3e-30 relative error = 1.2745544427380693319361400016283e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.911 Order of pole = 1.54e-28 TOP MAIN SOLVE Loop x[1] = -1.627 y[1] (analytic) = -1.0196902104593898171672291388033 y[1] (numeric) = -1.0196902104593898171672291388046 absolute error = 1.3e-30 relative error = 1.2748970095675678752154615819022e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.626 y[1] (analytic) = -1.0194158998226330985054685868957 y[1] (numeric) = -1.019415899822633098505468586897 absolute error = 1.3e-30 relative error = 1.2752400666167610091989880941140e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.909 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = -1.625 y[1] (analytic) = -1.0191413442663497346383429170231 y[1] (numeric) = -1.0191413442663497346383429170244 absolute error = 1.3e-30 relative error = 1.2755836148869343118964339065388e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.624 y[1] (analytic) = -1.0188665435038248156555133140183 y[1] (numeric) = -1.0188665435038248156555133140196 absolute error = 1.3e-30 relative error = 1.2759276553820022572253522241694e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.623 y[1] (analytic) = -1.0185914972479792063873546668637 y[1] (numeric) = -1.0185914972479792063873546668651 absolute error = 1.4e-30 relative error = 1.3744469728860948173045707541970e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.906 Order of pole = 9.9e-29 TOP MAIN SOLVE Loop x[1] = -1.622 y[1] (analytic) = -1.018316205211369191685271852 y[1] (numeric) = -1.0183162052113691916852718520013 absolute error = 1.3e-30 relative error = 1.2766172170756748889557476582648e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.621 y[1] (analytic) = -1.0180406671061861221238518683366 y[1] (numeric) = -1.018040667106186122123851868338 absolute error = 1.4e-30 relative error = 1.3751906433949694451615490816207e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.905 Order of pole = 7.3e-29 TOP MAIN SOLVE Loop x[1] = -1.62 y[1] (analytic) = -1.0177648826442560601300495730236 y[1] (numeric) = -1.017764882644256060130049573025 absolute error = 1.4e-30 relative error = 1.3755632797652228492974160066266e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.619 y[1] (analytic) = -1.0174888515370394265446324164765 y[1] (numeric) = -1.0174888515370394265446324164778 absolute error = 1.3e-30 relative error = 1.2776552765528521186305682270860e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.618 y[1] (analytic) = -1.0172125734956306476211373420518 y[1] (numeric) = -1.0172125734956306476211373420532 absolute error = 1.4e-30 relative error = 1.3763101602145243086425397765465e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.902 Order of pole = 8.2e-29 TOP MAIN SOLVE Loop x[1] = -1.617 y[1] (analytic) = -1.0169360482307578024676209005257 y[1] (numeric) = -1.016936048230757802467620900527 absolute error = 1.3e-30 relative error = 1.2783498060293077623065708313905e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.616 y[1] (analytic) = -1.016659275452782270936511632536 y[1] (numeric) = -1.0166592754527822709365116325374 absolute error = 1.4e-30 relative error = 1.3770591916121475525887027587768e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.9 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = -1.615 y[1] (analytic) = -1.0163822548716983819679018938144 y[1] (numeric) = -1.0163822548716983819679018938158 absolute error = 1.4e-30 relative error = 1.3774345166786949435900350176530e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.614 y[1] (analytic) = -1.0161049861971330623916445387347 y[1] (numeric) = -1.0161049861971330623916445387361 absolute error = 1.4e-30 relative error = 1.3778103828026959606348201617706e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.613 y[1] (analytic) = -1.0158274691383454861936482378634 y[1] (numeric) = -1.0158274691383454861936482378648 absolute error = 1.4e-30 relative error = 1.3781867910970362609086096703912e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.898 Order of pole = 1.89e-28 TOP MAIN SOLVE Loop x[1] = -1.612 y[1] (analytic) = -1.015549703404226724251793685188 y[1] (numeric) = -1.0155497034042267242517936851894 absolute error = 1.4e-30 relative error = 1.3785637426775434684216179327237e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.611 y[1] (analytic) = -1.015271688703299394546921550942 y[1] (numeric) = -1.0152716887032993945469215509434 absolute error = 1.4e-30 relative error = 1.3789412386629966399028871688824e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.896 Order of pole = 3.2e-29 TOP MAIN SOLVE Loop x[1] = -1.61 y[1] (analytic) = -1.0149934247437173128543717568226 y[1] (numeric) = -1.014993424743717312854371756824 absolute error = 1.4e-30 relative error = 1.3793192801751357665741110277636e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.895 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = -1.609 y[1] (analytic) = -1.0147149112332651439215824923232 y[1] (numeric) = -1.0147149112332651439215824923246 absolute error = 1.4e-30 relative error = 1.3796978683386713119599355762587e-28 % Correct digits = 29 h = 0.001 NO POLE memory used=61.0MB, alloc=4.3MB, time=3.51 TOP MAIN SOLVE Loop x[1] = -1.608 y[1] (analytic) = -1.0144361478793580531372863542673 y[1] (numeric) = -1.0144361478793580531372863542687 absolute error = 1.4e-30 relative error = 1.3800770042812937858923348199567e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.894 Order of pole = 2.1e-29 TOP MAIN SOLVE Loop x[1] = -1.607 y[1] (analytic) = -1.0141571343890413586978700768424 y[1] (numeric) = -1.0141571343890413586978700768439 absolute error = 1.5e-30 relative error = 1.4790607383575178802151149914799e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.893 Order of pole = 6.8e-29 TOP MAIN SOLVE Loop x[1] = -1.606 y[1] (analytic) = -1.0138778704689901842764935268911 y[1] (numeric) = -1.0138778704689901842764935268926 absolute error = 1.5e-30 relative error = 1.4794681328887708809792796158084e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.605 y[1] (analytic) = -1.0135983558255091122005929693204 y[1] (numeric) = -1.0135983558255091122005929693219 absolute error = 1.5e-30 relative error = 1.4798761179701685483571904321267e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.891 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -1.604 y[1] (analytic) = -1.0133185901645318371434230606528 y[1] (numeric) = -1.0133185901645318371434230606542 absolute error = 1.4e-30 relative error = 1.3815990485013039880719796069428e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.89 Order of pole = 7.9e-29 TOP MAIN SOLVE Loop x[1] = -1.603 y[1] (analytic) = -1.0130385731916208203353216053524 y[1] (numeric) = -1.0130385731916208203353216053538 absolute error = 1.4e-30 relative error = 1.3819809403596951470874505915554e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.889 Order of pole = 9.0e-29 TOP MAIN SOLVE Loop x[1] = -1.602 y[1] (analytic) = -1.0127583046119669443004108100369 y[1] (numeric) = -1.0127583046119669443004108100384 absolute error = 1.5e-30 relative error = 1.4811036287426121545048654929333e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.888 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = -1.601 y[1] (analytic) = -1.0124777841303891681244785954202 y[1] (numeric) = -1.0124777841303891681244785954216 absolute error = 1.4e-30 relative error = 1.3827463890503545592903573581796e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.6 y[1] (analytic) = -1.0121970114513341832598134752381 y[1] (numeric) = -1.0121970114513341832598134752395 absolute error = 1.4e-30 relative error = 1.3831299481833247327130182554885e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.887 Order of pole = 2.8e-29 TOP MAIN SOLVE Loop x[1] = -1.599 y[1] (analytic) = -1.0119159862788760698727965858925 y[1] (numeric) = -1.0119159862788760698727965858939 absolute error = 1.4e-30 relative error = 1.3835140653802963389818486513479e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.886 Order of pole = 6.2e-29 TOP MAIN SOLVE Loop x[1] = -1.598 y[1] (analytic) = -1.0116347083167159537400846505073 y[1] (numeric) = -1.0116347083167159537400846505087 absolute error = 1.4e-30 relative error = 1.3838987417992949982013993268947e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.597 y[1] (analytic) = -1.011353177268181663699247986941 y[1] (numeric) = -1.0113531772681816636992479869424 absolute error = 1.4e-30 relative error = 1.3842839786014341255057462450085e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.596 y[1] (analytic) = -1.0110713928362273896597581214427 y[1] (numeric) = -1.0110713928362273896597581214442 absolute error = 1.5e-30 relative error = 1.4835747610188481628289499893797e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.595 y[1] (analytic) = -1.0107893547234333411802501484831 y[1] (numeric) = -1.0107893547234333411802501484845 absolute error = 1.4e-30 relative error = 1.3850561380150865838596201021123e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.883 Order of pole = 5.5e-29 TOP MAIN SOLVE Loop x[1] = -1.594 y[1] (analytic) = -1.0105070626320054066180156832441 y[1] (numeric) = -1.0105070626320054066180156832456 absolute error = 1.5e-30 relative error = 1.4844032817475243931882971323650e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.593 y[1] (analytic) = -1.0102245162637748128567130867272 y[1] (numeric) = -1.0102245162637748128567130867287 absolute error = 1.5e-30 relative error = 1.4848184496131771675664712562815e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.592 y[1] (analytic) = -1.0099417153201977856183126048325 y[1] (numeric) = -1.009941715320197785618312604834 absolute error = 1.5e-30 relative error = 1.4852342241595905267657615121840e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.88 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = -1.591 y[1] (analytic) = -1.0096586595023552103653251525016 y[1] (numeric) = -1.0096586595023552103653251525032 absolute error = 1.6e-30 relative error = 1.5846939804276176886604799138806e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.879 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = -1.59 y[1] (analytic) = -1.0093753485109522937993946924935 y[1] (numeric) = -1.0093753485109522937993946924951 absolute error = 1.6e-30 relative error = 1.5851387715782312811861420427006e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.878 Order of pole = 5.1e-29 TOP MAIN SOLVE Loop x[1] = -1.589 y[1] (analytic) = -1.0090917820463182259623655059993 y[1] (numeric) = -1.0090917820463182259623655060008 absolute error = 1.5e-30 relative error = 1.4864852005415981502776741995469e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.877 Order of pole = 6.7e-29 TOP MAIN SOLVE Loop x[1] = -1.588 y[1] (analytic) = -1.008807959808405842945967129505 y[1] (numeric) = -1.0088079598084058429459671295065 absolute error = 1.5e-30 relative error = 1.4869034144862239254329945223074e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.877 Order of pole = 8.1e-29 TOP MAIN SOLVE Loop x[1] = -1.587 y[1] (analytic) = -1.0085238814967912902162913394908 y[1] (numeric) = -1.0085238814967912902162913394923 absolute error = 1.5e-30 relative error = 1.4873222414662001094395701636065e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.586 y[1] (analytic) = -1.0082395468106736865592673041213 y[1] (numeric) = -1.0082395468106736865592673041228 absolute error = 1.5e-30 relative error = 1.4877416827626864036801875947434e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.875 Order of pole = 4.2e-29 TOP MAIN SOLVE Loop x[1] = -1.585 y[1] (analytic) = -1.0079549554488747886533728894521 y[1] (numeric) = -1.0079549554488747886533728894536 absolute error = 1.5e-30 relative error = 1.4881617396602824514394643625479e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.874 Order of pole = 4.9e-29 TOP MAIN SOLVE Loop x[1] = -1.584 y[1] (analytic) = -1.0076701071098386562758521072564 y[1] (numeric) = -1.0076701071098386562758521072579 absolute error = 1.5e-30 relative error = 1.4885824134470390793790931666164e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.873 Order of pole = 4.0e-29 TOP MAIN SOLVE Loop memory used=64.8MB, alloc=4.3MB, time=3.74 x[1] = -1.583 y[1] (analytic) = -1.0073850014916313181487408227815 y[1] (numeric) = -1.007385001491631318148740822783 absolute error = 1.5e-30 relative error = 1.4890037054144695822989774161978e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.582 y[1] (analytic) = -1.0070996382919404384310351039872 y[1] (numeric) = -1.0070996382919404384310351039886 absolute error = 1.4e-30 relative error = 1.3901305757337236479514149816216e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.872 Order of pole = 6.1e-29 TOP MAIN SOLVE Loop x[1] = -1.581 y[1] (analytic) = -1.0068140172080749838633689895111 y[1] (numeric) = -1.0068140172080749838633689895125 absolute error = 1.4e-30 relative error = 1.3905249391364666963387812526720e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.871 Order of pole = 4.6e-29 TOP MAIN SOLVE Loop x[1] = -1.58 y[1] (analytic) = -1.0065281379369648915716009811645 y[1] (numeric) = -1.0065281379369648915716009811659 absolute error = 1.4e-30 relative error = 1.3909198831435716759357711401764e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.579 y[1] (analytic) = -1.0062420001751607375357412285954 y[1] (numeric) = -1.0062420001751607375357412285968 absolute error = 1.4e-30 relative error = 1.3913154089734836816783270409033e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.869 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = -1.578 y[1] (analytic) = -1.0059556036188334057306841692848 y[1] (numeric) = -1.0059556036188334057306841692862 absolute error = 1.4e-30 relative error = 1.3917115178479327199647238789628e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.868 Order of pole = 1.8e-29 TOP MAIN SOLVE Loop x[1] = -1.577 y[1] (analytic) = -1.0056689479637737579452443166746 y[1] (numeric) = -1.0056689479637737579452443166761 absolute error = 1.5e-30 relative error = 1.4915445117770833792504439656851e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.867 Order of pole = 4.3e-29 TOP MAIN SOLVE Loop x[1] = -1.576 y[1] (analytic) = -1.0053820329053923042860259533815 y[1] (numeric) = -1.0053820329053923042860259533829 absolute error = 1.4e-30 relative error = 1.3925054896338511906183207418525e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.866 Order of pole = 2.0e-29 TOP MAIN SOLVE Loop x[1] = -1.575 y[1] (analytic) = -1.0050948581387188743726906855402 y[1] (numeric) = -1.0050948581387188743726906855416 absolute error = 1.4e-30 relative error = 1.3929033550053024094604611731702e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.866 Order of pole = 5.1e-29 TOP MAIN SOLVE Loop x[1] = -1.574 y[1] (analytic) = -1.0048074233584022892312201487656 y[1] (numeric) = -1.004807423358402289231220148767 absolute error = 1.4e-30 relative error = 1.3933018083412760002077412369442e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.573 y[1] (analytic) = -1.0045197282587100338918046264291 y[1] (numeric) = -1.0045197282587100338918046264305 absolute error = 1.4e-30 relative error = 1.3937008508800890425456882794909e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.572 y[1] (analytic) = -1.004231772533527930698021947339 y[1] (numeric) = -1.0042317725335279306980219473404 absolute error = 1.4e-30 relative error = 1.3941004838634088283548594502460e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.863 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = -1.571 y[1] (analytic) = -1.0039435558763598133340047729067 y[1] (numeric) = -1.0039435558763598133340047729081 absolute error = 1.4e-30 relative error = 1.3945007085362638932156124836620e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.862 Order of pole = 2.2e-29 TOP MAIN SOLVE Loop x[1] = -1.57 y[1] (analytic) = -1.0036550779803272015763282638849 y[1] (numeric) = -1.0036550779803272015763282638863 absolute error = 1.4e-30 relative error = 1.3949015261470550907178921127193e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.569 y[1] (analytic) = -1.0033663385381689767773841342047 y[1] (numeric) = -1.003366338538168976777384134206 absolute error = 1.3e-30 relative error = 1.2956384423798833733556789835119e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.861 Order of pole = 1.8e-29 TOP MAIN SOLVE Loop x[1] = -1.568 y[1] (analytic) = -1.0030773372422410580870412547239 y[1] (numeric) = -1.0030773372422410580870412547252 absolute error = 1.3e-30 relative error = 1.2960117348220506611480591337277e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.86 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -1.567 y[1] (analytic) = -1.0027880737845160794194272632517 y[1] (numeric) = -1.0027880737845160794194272632531 absolute error = 1.4e-30 relative error = 1.3961075491418725510702726147951e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.566 y[1] (analytic) = -1.0024985478565830671717000694497 y[1] (numeric) = -1.0024985478565830671717000694511 absolute error = 1.4e-30 relative error = 1.3965107510562531892846525598510e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.565 y[1] (analytic) = -1.0022087591496471187017127145426 y[1] (numeric) = -1.002208759149647118701712714544 absolute error = 1.4e-30 relative error = 1.3969145522015496196541870792763e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.564 y[1] (analytic) = -1.001918707354529081571509756627 y[1] (numeric) = -1.0019187073545290815715097566285 absolute error = 1.5e-30 relative error = 1.4971274505499624132290265103813e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.563 y[1] (analytic) = -1.0016283921616652335636282031507 y[1] (numeric) = -1.0016283921616652335636282031522 absolute error = 1.5e-30 relative error = 1.4975613827826641612177568731801e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.856 Order of pole = 4.5e-29 TOP MAIN SOLVE Loop x[1] = -1.562 y[1] (analytic) = -1.0013378132611069634772110032747 y[1] (numeric) = -1.0013378132611069634772110032762 absolute error = 1.5e-30 relative error = 1.4979959611381047719268574988990e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.855 Order of pole = 4.5e-29 TOP MAIN SOLVE Loop x[1] = -1.561 y[1] (analytic) = -1.0010469703425204527109762447437 y[1] (numeric) = -1.0010469703425204527109762447453 absolute error = 1.6e-30 relative error = 1.5983265994527114442746498497754e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.56 y[1] (analytic) = -1.0007558630951863576401204729864 y[1] (numeric) = -1.0007558630951863576401204729879 absolute error = 1.5e-30 relative error = 1.4988670617034679354256225631317e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.853 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = -1.559 y[1] (analytic) = -1.0004644912079994927942699648733 y[1] (numeric) = -1.0004644912079994927942699648749 absolute error = 1.6e-30 relative error = 1.5992571591102630368692017763526e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=68.6MB, alloc=4.3MB, time=3.96 x[1] = -1.558 y[1] (analytic) = -1.0001728543694685148436293462945 y[1] (numeric) = -1.0001728543694685148436293462961 absolute error = 1.6e-30 relative error = 1.5997234808064012317074721774728e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.557 y[1] (analytic) = -0.99988095226771560740051264188759 y[1] (numeric) = -0.99988095226771560740051264188919 absolute error = 1.60e-30 relative error = 1.6001904990501349490556788548400e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.85 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -1.556 y[1] (analytic) = -0.99958878459047616664347768728934 y[1] (numeric) = -0.99958878459047616664347768729095 absolute error = 1.61e-30 relative error = 1.6106623291692939625011439359222e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.85 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = -1.555 y[1] (analytic) = -0.99929635102509848777132081959536 y[1] (numeric) = -0.99929635102509848777132081959696 absolute error = 1.60e-30 relative error = 1.6011266311126699419206450725263e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.849 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -1.554 y[1] (analytic) = -0.99900365125854345229422489073047 y[1] (numeric) = -0.99900365125854345229422489073207 absolute error = 1.60e-30 relative error = 1.6015957479077500450057706464663e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.553 y[1] (analytic) = -0.99871068497738421616938992156386 y[1] (numeric) = -0.99871068497738421616938992156546 absolute error = 1.60e-30 relative error = 1.6020655672030103177982190154784e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.847 Order of pole = 3.3e-29 TOP MAIN SOLVE Loop x[1] = -1.552 y[1] (analytic) = -0.99841745186780589878851213227124 y[1] (numeric) = -0.99841745186780589878851213227284 absolute error = 1.60e-30 relative error = 1.6025360904967893311045555018496e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.846 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = -1.551 y[1] (analytic) = -0.99812395161560527282451364706925 y[1] (numeric) = -0.99812395161560527282451364707085 absolute error = 1.60e-30 relative error = 1.6030073192915297970520752896770e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.845 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -1.55 y[1] (analytic) = -0.9978301839061904549449618794427 y[1] (numeric) = -0.99783018390619045494496187944431 absolute error = 1.61e-30 relative error = 1.6135010004381284529241597820835e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.549 y[1] (analytic) = -0.99753614842458059739965445777235 y[1] (numeric) = -0.99753614842458059739965445777395 absolute error = 1.60e-30 relative error = 1.6039518994142687893315113032413e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.548 y[1] (analytic) = -0.99724184485540558048988255126777 y[1] (numeric) = -0.99724184485540558048988255126937 absolute error = 1.60e-30 relative error = 1.6044252537677968559531589495527e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.843 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = -1.547 y[1] (analytic) = -0.99694727288290570592692260273558 y[1] (numeric) = -0.99694727288290570592692260273717 absolute error = 1.59e-30 relative error = 1.5948686989254145082955844787212e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.546 y[1] (analytic) = -0.99665243219093139108734376838494 y[1] (numeric) = -0.99665243219093139108734376838654 absolute error = 1.60e-30 relative error = 1.6053740986541672233920452628235e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.545 y[1] (analytic) = -0.9963573224629428641727558060101 y[1] (numeric) = -0.9963573224629428641727558060117 absolute error = 1.60e-30 relative error = 1.6058495922375360336227880499818e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.544 y[1] (analytic) = -0.99606194338200986028165974190967 y[1] (numeric) = -0.99606194338200986028165974191127 absolute error = 1.60e-30 relative error = 1.6063258019550373533630037941782e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.543 y[1] (analytic) = -0.99576629463081131840110138422489 y[1] (numeric) = -0.99576629463081131840110138422649 absolute error = 1.60e-30 relative error = 1.6068027293424441336764153856554e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.839 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = -1.542 y[1] (analytic) = -0.99547037589163507932586563642001 y[1] (numeric) = -0.99547037589163507932586563642161 absolute error = 1.60e-30 relative error = 1.6072803759397585633827086330784e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.838 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -1.541 y[1] (analytic) = -0.9951741868463775845129875998069 y[1] (numeric) = -0.9951741868463775845129875998085 absolute error = 1.60e-30 relative error = 1.6077587432912262440592841345728e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.54 y[1] (analytic) = -0.99487772717654357587939463874932 y[1] (numeric) = -0.99487772717654357587939463875092 absolute error = 1.60e-30 relative error = 1.6082378329453504210445544821359e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.836 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = -1.539 y[1] (analytic) = -0.99458099656324579655053191688854 y[1] (numeric) = -0.99458099656324579655053191689014 absolute error = 1.60e-30 relative error = 1.6087176464549062706981476748627e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.538 y[1] (analytic) = -0.99428399468720469256786239782779 y[1] (numeric) = -0.99428399468720469256786239782939 absolute error = 1.60e-30 relative error = 1.6091981853769552441747014861439e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.537 y[1] (analytic) = -0.99398672122874811556317093961612 y[1] (numeric) = -0.99398672122874811556317093961773 absolute error = 1.61e-30 relative error = 1.6197399478433148396440730184757e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.536 y[1] (analytic) = -0.99368917586781102640764089949904 y[1] (numeric) = -0.99368917586781102640764089950065 absolute error = 1.61e-30 relative error = 1.6202249547439730527529991657919e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.833 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = -1.535 y[1] (analytic) = -0.99339135828393519984371060417091 y[1] (numeric) = -0.99339135828393519984371060417252 absolute error = 1.61e-30 relative error = 1.6207106963173553041441823714637e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.534 y[1] (analytic) = -0.99309326815626893010775613158899 y[1] (numeric) = -0.9930932681562689301077561315906 absolute error = 1.61e-30 relative error = 1.6211971741476524157670845866080e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.831 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -1.533 y[1] (analytic) = -0.99279490516356673755168609370703 y[1] (numeric) = -0.99279490516356673755168609370864 absolute error = 1.61e-30 relative error = 1.6216843898234413028319106590675e-28 % Correct digits = 29 h = 0.001 memory used=72.4MB, alloc=4.3MB, time=4.19 NO POLE TOP MAIN SOLVE Loop x[1] = -1.532 y[1] (analytic) = -0.99249626898418907627157350567385 y[1] (numeric) = -0.99249626898418907627157350567546 absolute error = 1.61e-30 relative error = 1.6221723449376997539324480070386e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.531 y[1] (analytic) = -0.99219735929610204275148937653489 y[1] (numeric) = -0.9921973592961020427514893765365 absolute error = 1.61e-30 relative error = 1.6226610410878212698816886153014e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.829 Order of pole = 6.2e-29 TOP MAIN SOLVE Loop x[1] = -1.53 y[1] (analytic) = -0.99189817577687708553074235968741 y[1] (numeric) = -0.99189817577687708553074235968902 absolute error = 1.61e-30 relative error = 1.6231504798756299615294631599976e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.828 Order of pole = 2.0e-29 TOP MAIN SOLVE Loop x[1] = -1.529 y[1] (analytic) = -0.99159871810369071590276865868826 y[1] (numeric) = -0.99159871810369071590276865868988 absolute error = 1.62e-30 relative error = 1.6337253875217271559434831342807e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.827 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = -1.528 y[1] (analytic) = -0.9912989859533242196539563959113 y[1] (numeric) = -0.99129898595332421965395639591291 absolute error = 1.61e-30 relative error = 1.6241315917938481674505009651609e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.527 y[1] (analytic) = -0.99099897900216336985072881841382 y[1] (numeric) = -0.99099897900216336985072881841543 absolute error = 1.61e-30 relative error = 1.6246232681501938651370612057585e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.825 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = -1.526 y[1] (analytic) = -0.99069869692619814068325103761255 y[1] (numeric) = -0.99069869692619814068325103761416 absolute error = 1.61e-30 relative error = 1.6251156935961293182080590226054e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.525 y[1] (analytic) = -0.99039813940102242237416547740178 y[1] (numeric) = -0.99039813940102242237416547740339 absolute error = 1.61e-30 relative error = 1.6256088697558572383561161586224e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.824 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = -1.524 y[1] (analytic) = -0.99009730610183373716080183958421 y[1] (numeric) = -0.99009730610183373716080183958583 absolute error = 1.62e-30 relative error = 1.6362028156385866911251814406580e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.523 y[1] (analytic) = -0.98979619670343295635934818633987 y[1] (numeric) = -0.98979619670343295635934818634149 absolute error = 1.62e-30 relative error = 1.6367005706785832897791131225197e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.822 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = -1.522 y[1] (analytic) = -0.98949481088022401851951068734359 y[1] (numeric) = -0.98949481088022401851951068734522 absolute error = 1.63e-30 relative error = 1.6473052532231092250798714781341e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.521 y[1] (analytic) = -0.98919314830621364867823068446841 y[1] (numeric) = -0.98919314830621364867823068447004 absolute error = 1.63e-30 relative error = 1.6478076124880505325338848840615e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.52 y[1] (analytic) = -0.9888912086550110787210689901915 y[1] (numeric) = -0.98889120865501107872106899019313 absolute error = 1.63e-30 relative error = 1.6483107400832895301365860198905e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.819 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = -1.519 y[1] (analytic) = -0.98858899159982776885990875726318 y[1] (numeric) = -0.9885889915998277688599087572648 absolute error = 1.62e-30 relative error = 1.6386992104558675069847737452605e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.819 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = -1.518 y[1] (analytic) = -0.9882864968134771302356698373165 y[1] (numeric) = -0.98828649681347713023566983731812 absolute error = 1.62e-30 relative error = 1.6392007836020736750766286527804e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.818 Order of pole = 6.9e-29 TOP MAIN SOLVE Loop x[1] = -1.517 y[1] (analytic) = -0.98798372396837424865476928529662 y[1] (numeric) = -0.98798372396837424865476928529825 absolute error = 1.63e-30 relative error = 1.6498247495949406422548486447027e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.817 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -1.516 y[1] (analytic) = -0.98768067273653560946810456528295 y[1] (numeric) = -0.98768067273653560946810456528458 absolute error = 1.63e-30 relative error = 1.6503309672789389921271235897473e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.816 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = -1.515 y[1] (analytic) = -0.98737734278957882360137807187295 y[1] (numeric) = -0.98737734278957882360137807187458 absolute error = 1.63e-30 relative error = 1.6508379617004957606613032126865e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.514 y[1] (analytic) = -0.98707373379872235474562380020178 y[1] (numeric) = -0.98707373379872235474562380020341 absolute error = 1.63e-30 relative error = 1.6513457345552049518441849529639e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.513 y[1] (analytic) = -0.98676984543478524771683937729389 y[1] (numeric) = -0.98676984543478524771683937729551 absolute error = 1.62e-30 relative error = 1.6417202121597101205239995322559e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.512 y[1] (analytic) = -0.98646567736818685799366920818855 y[1] (numeric) = -0.98646567736818685799366920819017 absolute error = 1.62e-30 relative error = 1.6422264222329894742844163397107e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.511 y[1] (analytic) = -0.98616122926894658244212719255684 y[1] (numeric) = -0.98616122926894658244212719255847 absolute error = 1.63e-30 relative error = 1.6528737407455563802317643672053e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.812 Order of pole = 3.8e-29 TOP MAIN SOLVE Loop x[1] = -1.51 y[1] (analytic) = -0.98585650080668359123639033173802 y[1] (numeric) = -0.98585650080668359123639033173965 absolute error = 1.63e-30 relative error = 1.6533846443840880872349491979335e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.811 Order of pole = 3.0e-29 TOP MAIN SOLVE Loop x[1] = -1.509 y[1] (analytic) = -0.98555149165061656098473757267363 y[1] (numeric) = -0.98555149165061656098473757267526 absolute error = 1.63e-30 relative error = 1.6538963350053393144261040859491e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.508 y[1] (analytic) = -0.98524620146956340906975142451197 y[1] (numeric) = -0.9852462014695634090697514245136 absolute error = 1.63e-30 relative error = 1.6544088143336572552249226731848e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.809 Order of pole = 4.1e-29 memory used=76.2MB, alloc=4.3MB, time=4.42 TOP MAIN SOLVE Loop x[1] = -1.507 y[1] (analytic) = -0.98494062993194102921194323609649 y[1] (numeric) = -0.98494062993194102921194323609812 absolute error = 1.63e-30 relative error = 1.6549220840982387880355306825292e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.809 Order of pole = 5.5e-29 TOP MAIN SOLVE Loop x[1] = -1.506 y[1] (analytic) = -0.9846347767057650282660065385424 y[1] (numeric) = -0.98463477670576502826600653854403 absolute error = 1.63e-30 relative error = 1.6554361460331470778789017956323e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.505 y[1] (analytic) = -0.98432864145864946425894653704764 y[1] (numeric) = -0.98432864145864946425894653704926 absolute error = 1.62e-30 relative error = 1.6457917932768538386274590761773e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.504 y[1] (analytic) = -0.98402222385780658567937768037798 y[1] (numeric) = -0.9840222238578065856793776803796 absolute error = 1.62e-30 relative error = 1.6463042812680352905974205766580e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.806 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = -1.503 y[1] (analytic) = -0.9837155235700465720273252455123 y[1] (numeric) = -0.98371552357004657202732524551392 absolute error = 1.62e-30 relative error = 1.6468175617690616580411006200903e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.502 y[1] (analytic) = -0.98340854026177727563391104913087 y[1] (numeric) = -0.98340854026177727563391104913249 absolute error = 1.62e-30 relative error = 1.6473316365228697445778648181251e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.804 Order of pole = 1.17e-28 TOP MAIN SOLVE Loop x[1] = -1.501 y[1] (analytic) = -0.98310127359900396476034773737684 y[1] (numeric) = -0.98310127359900396476034773737846 absolute error = 1.62e-30 relative error = 1.6478465072773162901035083204430e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.804 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -1.5 y[1] (analytic) = -0.98279372324732906798571061101467 y[1] (numeric) = -0.98279372324732906798571061101629 absolute error = 1.62e-30 relative error = 1.6483621757851948748762507834179e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.803 Order of pole = 4.5e-29 TOP MAIN SOLVE Loop x[1] = -1.499 y[1] (analytic) = -0.98248588887195191989300061514712 y[1] (numeric) = -0.98248588887195191989300061514874 absolute error = 1.62e-30 relative error = 1.6488786438042528920927509415365e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.498 y[1] (analytic) = -0.98217777013766850806305696142897 y[1] (numeric) = -0.98217777013766850806305696143059 absolute error = 1.62e-30 relative error = 1.6493959130972085892746317604770e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.801 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = -1.497 y[1] (analytic) = -0.98186936670887122138592285662624 y[1] (numeric) = -0.98186936670887122138592285662787 absolute error = 1.63e-30 relative error = 1.6600986396628284761876375115173e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.496 y[1] (analytic) = -0.98156067824954859969931298480788 y[1] (numeric) = -0.9815606782495485996993129848095 absolute error = 1.62e-30 relative error = 1.6504328625806430178178672709912e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.495 y[1] (analytic) = -0.98125170442328508476387673181458 y[1] (numeric) = -0.9812517044232850847638767318162 absolute error = 1.62e-30 relative error = 1.6509525463215668581291324269437e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.494 y[1] (analytic) = -0.98094244489326077258499665031969 y[1] (numeric) = -0.98094244489326077258499665032131 absolute error = 1.62e-30 relative error = 1.6514730384373131659314700549497e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.493 y[1] (analytic) = -0.98063289932225116709090734216865 y[1] (numeric) = -0.98063289932225116709090734217027 absolute error = 1.62e-30 relative error = 1.6519943407157125121872824429063e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.492 y[1] (analytic) = -0.98032306737262693517696578214744 y[1] (numeric) = -0.98032306737262693517696578214905 absolute error = 1.61e-30 relative error = 1.6423157360919560211339512027615e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.491 y[1] (analytic) = -0.98001294870635366312595012427394 y[1] (numeric) = -0.98001294870635366312595012427556 absolute error = 1.62e-30 relative error = 1.6530393829371829652304355043048e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.49 y[1] (analytic) = -0.9797025429849916144143102185174 y[1] (numeric) = -0.97970254298499161441431021851902 absolute error = 1.62e-30 relative error = 1.6535631264813582432361931166835e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.489 y[1] (analytic) = -0.97939184986969548891433942291502 y[1] (numeric) = -0.97939184986969548891433942291664 absolute error = 1.62e-30 relative error = 1.6540876873904301811355903938587e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.488 y[1] (analytic) = -0.97908086902121418350228382375771 y[1] (numeric) = -0.97908086902121418350228382375933 absolute error = 1.62e-30 relative error = 1.6546130674777782168688761153822e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.793 Order of pole = 7.8e-29 TOP MAIN SOLVE Loop x[1] = -1.487 y[1] (analytic) = -0.97876960009989055408245167524115 y[1] (numeric) = -0.97876960009989055408245167524278 absolute error = 1.63e-30 relative error = 1.6653561776271419225445814635046e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.486 y[1] (analytic) = -0.97845804276566117903743274010727 y[1] (numeric) = -0.9784580427656611790374327401089 absolute error = 1.63e-30 relative error = 1.6658864547658298186908927029886e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.485 y[1] (analytic) = -0.97814619667805612411458425471556 y[1] (numeric) = -0.97814619667805612411458425471719 absolute error = 1.63e-30 relative error = 1.6664175616444102257643651069378e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.484 y[1] (analytic) = -0.9778340614961987087589874560637 y[1] (numeric) = -0.97783406149619870875898745606533 absolute error = 1.63e-30 relative error = 1.6669495001083438537326632962157e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.789 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = -1.483 y[1] (analytic) = -0.97752163687880527390312599490091 y[1] (numeric) = -0.97752163687880527390312599490255 absolute error = 1.64e-30 relative error = 1.6777122245973670182089842157568e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=80.1MB, alloc=4.3MB, time=4.65 x[1] = -1.482 y[1] (analytic) = -0.97720892248418495122358511862289 y[1] (numeric) = -0.97720892248418495122358511862453 absolute error = 1.64e-30 relative error = 1.6782491054532318716745215800436e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.788 Order of pole = 1.26e-28 TOP MAIN SOLVE Loop x[1] = -1.481 y[1] (analytic) = -0.97689591797023943387511824048 y[1] (numeric) = -0.97689591797023943387511824048164 absolute error = 1.64e-30 relative error = 1.6787868285984194750438949047764e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.787 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = -1.48 y[1] (analytic) = -0.97658262299446274871247541814507 y[1] (numeric) = -0.97658262299446274871247541814671 absolute error = 1.64e-30 relative error = 1.6793253959110214955265295888280e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.786 Order of pole = 2.8e-29 TOP MAIN SOLVE Loop x[1] = -1.479 y[1] (analytic) = -0.97626903721394103001043634524673 y[1] (numeric) = -0.97626903721394103001043634524837 absolute error = 1.64e-30 relative error = 1.6798648092745032867671778521982e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.785 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = -1.478 y[1] (analytic) = -0.97595516028535229469253871445058 y[1] (numeric) = -0.97595516028535229469253871445222 absolute error = 1.64e-30 relative error = 1.6804050705777226046918686122028e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.785 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = -1.477 y[1] (analytic) = -0.97564099186496621907904124043354 y[1] (numeric) = -0.97564099186496621907904124043517 absolute error = 1.63e-30 relative error = 1.6706965098752231051192868386308e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.476 y[1] (analytic) = -0.97532653160864391716470923601568 y[1] (numeric) = -0.97532653160864391716470923601731 absolute error = 1.63e-30 relative error = 1.6712351680945023741874820188495e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.783 Order of pole = 3.4e-29 TOP MAIN SOLVE Loop x[1] = -1.475 y[1] (analytic) = -0.9750117791718377204370594151553 y[1] (numeric) = -0.97501177917183772043705941515693 absolute error = 1.63e-30 relative error = 1.6717746747475202048887039042852e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.474 y[1] (analytic) = -0.97469673420959095924574955284289 y[1] (numeric) = -0.97469673420959095924574955284451 absolute error = 1.62e-30 relative error = 1.6620554303115662312677778871037e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.781 Order of pole = 8.1e-29 TOP MAIN SOLVE Loop x[1] = -1.473 y[1] (analytic) = -0.97438139637653774573384776451211 y[1] (numeric) = -0.97438139637653774573384776451373 absolute error = 1.62e-30 relative error = 1.6625933192324321219943165738637e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.472 y[1] (analytic) = -0.97406576532690275834176547678335 y[1] (numeric) = -0.97406576532690275834176547678498 absolute error = 1.63e-30 relative error = 1.6733983043259522405157244308578e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.78 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = -1.471 y[1] (analytic) = -0.9737498407145010278946876475282 y[1] (numeric) = -0.97374984071450102789468764752983 absolute error = 1.63e-30 relative error = 1.6739412237582162529438394074589e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.47 y[1] (analytic) = -0.9734336221927377252843834567511 y[1] (numeric) = -0.97343362219273772528438345675274 absolute error = 1.64e-30 relative error = 1.6847579152914070927291991617269e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.778 Order of pole = 1.20e-28 TOP MAIN SOLVE Loop x[1] = -1.469 y[1] (analytic) = -0.97311710941460795075633053098479 y[1] (numeric) = -0.97311710941460795075633053098643 absolute error = 1.64e-30 relative error = 1.6853058939499734732459994124511e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.468 y[1] (analytic) = -0.9728003020326965248131357831437 y[1] (numeric) = -0.97280030203269652481313578314534 absolute error = 1.64e-30 relative error = 1.6858547397376099999101631311708e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.467 y[1] (analytic) = -0.97248319969917778074528614742996 y[1] (numeric) = -0.9724831996991777807452861474316 absolute error = 1.64e-30 relative error = 1.6864044546037483532825399153172e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.466 y[1] (analytic) = -0.97216580206581535880031286529028 y[1] (numeric) = -0.97216580206581535880031286529192 absolute error = 1.64e-30 relative error = 1.6869550405034433094873147536126e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.775 Order of pole = 5.0e-29 TOP MAIN SOLVE Loop x[1] = -1.465 y[1] (analytic) = -0.97184810878396200200150353393055 y[1] (numeric) = -0.9718481087839620020015035339322 absolute error = 1.65e-30 relative error = 1.6977961731742058534602386551209e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.774 Order of pole = 6.5e-29 TOP MAIN SOLVE Loop x[1] = -1.464 y[1] (analytic) = -0.97153011950455935362734686385622 y[1] (numeric) = -0.97153011950455935362734686385787 absolute error = 1.65e-30 relative error = 1.6983518749181266255313257863039e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.463 y[1] (analytic) = -0.97121183387813775636294600666706 y[1] (numeric) = -0.97121183387813775636294600666871 absolute error = 1.65e-30 relative error = 1.6989084589418551056706175676954e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.772 Order of pole = 5.7e-29 TOP MAIN SOLVE Loop x[1] = -1.462 y[1] (analytic) = -0.97089325155481605313468740924006 y[1] (numeric) = -0.97089325155481605313468740924171 absolute error = 1.65e-30 relative error = 1.6994659272351961398220561038713e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.771 Order of pole = 4.2e-29 TOP MAIN SOLVE Loop x[1] = -1.461 y[1] (analytic) = -0.97057437218430138963950342582549 y[1] (numeric) = -0.97057437218430138963950342582714 absolute error = 1.65e-30 relative error = 1.7000242817937121076637289315299e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.46 y[1] (analytic) = -0.97025519541588901858011837580081 y[1] (numeric) = -0.97025519541588901858011837580245 absolute error = 1.64e-30 relative error = 1.6902769578028720319201953766925e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.459 y[1] (analytic) = -0.96993572089846210561771937221262 y[1] (numeric) = -0.96993572089846210561771937221426 absolute error = 1.64e-30 relative error = 1.6908336961555039926797775280365e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.458 y[1] (analytic) = -0.96961594828049153705354506512571 y[1] (numeric) = -0.96961594828049153705354506512735 absolute error = 1.64e-30 relative error = 1.6913913213869488133719806526328e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=83.9MB, alloc=4.3MB, time=4.88 x[1] = -1.457 y[1] (analytic) = -0.9692958772100357292509374445245 y[1] (numeric) = -0.96929587721003572925093744452614 absolute error = 1.64e-30 relative error = 1.6919498355037675275740005413378e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.456 y[1] (analytic) = -0.96897550733474043980945403040919 y[1] (numeric) = -0.96897550733474043980945403041084 absolute error = 1.65e-30 relative error = 1.7028294188141890065603705464523e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.766 Order of pole = 5.8e-29 TOP MAIN SOLVE Loop x[1] = -1.455 y[1] (analytic) = -0.96865483830183858050269014312584 y[1] (numeric) = -0.96865483830183858050269014312749 absolute error = 1.65e-30 relative error = 1.7033931331955524023700015449955e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.454 y[1] (analytic) = -0.96833386975815003199151349519579 y[1] (numeric) = -0.96833386975815003199151349519744 absolute error = 1.65e-30 relative error = 1.7039577479739525447305825762255e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.453 y[1] (analytic) = -0.96801260135008146032446607729074 y[1] (numeric) = -0.96801260135008146032446607729239 absolute error = 1.65e-30 relative error = 1.7045232651917493026153749900192e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.452 y[1] (analytic) = -0.96769103272362613523714122585889 y[1] (numeric) = -0.96769103272362613523714122586055 absolute error = 1.66e-30 relative error = 1.7154235637875320066433193999674e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.763 Order of pole = 3.4e-29 TOP MAIN SOLVE Loop x[1] = -1.451 y[1] (analytic) = -0.96736916352436375026239685856708 y[1] (numeric) = -0.96736916352436375026239685856874 absolute error = 1.66e-30 relative error = 1.7159943303880100812028184913002e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.762 Order of pole = 8.1e-29 TOP MAIN SOLVE Loop x[1] = -1.45 y[1] (analytic) = -0.96704699339746024466331914650202 y[1] (numeric) = -0.96704699339746024466331914650367 absolute error = 1.65e-30 relative error = 1.7062252519943912321245136184971e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.761 Order of pole = 3.0e-29 TOP MAIN SOLVE Loop x[1] = -1.449 y[1] (analytic) = -0.96672452198766762720090435928831 y[1] (numeric) = -0.96672452198766762720090435928997 absolute error = 1.66e-30 relative error = 1.7171386079944462125286893889022e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.761 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = -1.448 y[1] (analytic) = -0.96640174893932380174848027124549 y[1] (numeric) = -0.96640174893932380174848027124715 absolute error = 1.66e-30 relative error = 1.7177121231640323131535844296241e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.76 Order of pole = 6.0e-29 TOP MAIN SOLVE Loop x[1] = -1.447 y[1] (analytic) = -0.96607867389635239476494235373313 y[1] (numeric) = -0.96607867389635239476494235373479 absolute error = 1.66e-30 relative error = 1.7182865586970780051775994900330e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.446 y[1] (analytic) = -0.96575529650226258463893400123229 y[1] (numeric) = -0.96575529650226258463893400123394 absolute error = 1.65e-30 relative error = 1.7085073268310409494780398479311e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.758 Order of pole = 1.14e-28 TOP MAIN SOLVE Loop x[1] = -1.445 y[1] (analytic) = -0.96543161640014893291615424678885 y[1] (numeric) = -0.9654316164001489329161542467905 absolute error = 1.65e-30 relative error = 1.7090801378065843314877533810052e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.444 y[1] (analytic) = -0.96510763323269121742203081650588 y[1] (numeric) = -0.96510763323269121742203081650753 absolute error = 1.65e-30 relative error = 1.7096538698727487524171553609710e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.756 Order of pole = 1.59e-28 TOP MAIN SOLVE Loop x[1] = -1.443 y[1] (analytic) = -0.96478334664215426729205095311824 y[1] (numeric) = -0.96478334664215426729205095311989 absolute error = 1.65e-30 relative error = 1.7102285251322833826587566485187e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.442 y[1] (analytic) = -0.96445875627038779992209720561406 y[1] (numeric) = -0.96445875627038779992209720561571 absolute error = 1.65e-30 relative error = 1.7108041056940950637848557032467e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.755 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = -1.441 y[1] (analytic) = -0.96413386175882625985119033568029 y[1] (numeric) = -0.96413386175882625985119033568193 absolute error = 1.64e-30 relative error = 1.7010086099540383205500805967155e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.44 y[1] (analytic) = -0.96380866274848865958909663273718 y[1] (numeric) = -0.96380866274848865958909663273882 absolute error = 1.64e-30 relative error = 1.7015825478505450074271543387609e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.439 y[1] (analytic) = -0.96348315887997842240131225778168 y[1] (numeric) = -0.96348315887997842240131225778332 absolute error = 1.64e-30 relative error = 1.7021574117667536915209795711414e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.438 y[1] (analytic) = -0.96315734979348322706399275246901 y[1] (numeric) = -0.96315734979348322706399275247065 absolute error = 1.64e-30 relative error = 1.7027332038234904882619812150102e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.752 Order of pole = 2.5e-29 TOP MAIN SOLVE Loop x[1] = -1.437 y[1] (analytic) = -0.96283123512877485460145155411311 y[1] (numeric) = -0.96283123512877485460145155411475 absolute error = 1.64e-30 relative error = 1.7033099261478118872193695913760e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.751 Order of pole = 9.6e-29 TOP MAIN SOLVE Loop x[1] = -1.436 y[1] (analytic) = -0.96250481452520903701890724986093 y[1] (numeric) = -0.96250481452520903701890724986258 absolute error = 1.65e-30 relative error = 1.7142771392929845174659089804016e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.435 y[1] (analytic) = -0.9621780876217253080432153844745 y[1] (numeric) = -0.96217808762172530804321538447614 absolute error = 1.64e-30 relative error = 1.7044661701387201154595247736335e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.434 y[1] (analytic) = -0.96185105405684685588437690621414 y[1] (numeric) = -0.96185105405684685588437690621578 absolute error = 1.64e-30 relative error = 1.7050456960907728163055594397790e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.433 y[1] (analytic) = -0.96152371346868037803067179453142 y[1] (numeric) = -0.96152371346868037803067179453306 absolute error = 1.64e-30 relative error = 1.7056261608813869015200337120312e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.432 y[1] (analytic) = -0.96119606549491593809032306192131 y[1] (numeric) = -0.96119606549491593809032306192295 memory used=87.7MB, alloc=4.3MB, time=5.10 absolute error = 1.64e-30 relative error = 1.7062075666691068710993438633904e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.431 y[1] (analytic) = -0.96086810977282682469265316061909 y[1] (numeric) = -0.96086810977282682469265316062074 absolute error = 1.65e-30 relative error = 1.7171971712018844438605895436135e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.43 y[1] (analytic) = -0.96053984593926941246175185312283 y[1] (numeric) = -0.96053984593926941246175185312447 absolute error = 1.64e-30 relative error = 1.7073732099018927926748461281091e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.745 Order of pole = 2.1e-29 TOP MAIN SOLVE Loop x[1] = -1.429 y[1] (analytic) = -0.96021127363068302507573182403885 y[1] (numeric) = -0.96021127363068302507573182404049 absolute error = 1.64e-30 relative error = 1.7079574516959667350872161506254e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.428 y[1] (analytic) = -0.95988239248308980042470571974516 y[1] (numeric) = -0.9598823924830898004247057197468 absolute error = 1.64e-30 relative error = 1.7085426431852085432217808709501e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.743 Order of pole = 1.88e-28 TOP MAIN SOLVE Loop x[1] = -1.427 y[1] (analytic) = -0.95955320213209455788067590210031 y[1] (numeric) = -0.95955320213209455788067590210194 absolute error = 1.63e-30 relative error = 1.6987072695689988581348019490733e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.426 y[1] (analytic) = -0.95922370221288466769258599314654 y[1] (numeric) = -0.95922370221288466769258599314817 absolute error = 1.63e-30 relative error = 1.6992907871643136748318717124203e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.742 Order of pole = 1.30e-28 TOP MAIN SOLVE Loop x[1] = -1.425 y[1] (analytic) = -0.95889389236022992251984126971448 y[1] (numeric) = -0.95889389236022992251984126971611 absolute error = 1.63e-30 relative error = 1.6998752552150515403642664764845e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.424 y[1] (analytic) = -0.95856377220848241111766314027765 y[1] (numeric) = -0.95856377220848241111766314027928 absolute error = 1.63e-30 relative error = 1.7004606759178500001498861684346e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.423 y[1] (analytic) = -0.9582333413915763941877013015719 y[1] (numeric) = -0.95823334139157639418770130157354 absolute error = 1.64e-30 relative error = 1.7114829229573047055086254144444e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.739 Order of pole = 1.55e-28 TOP MAIN SOLVE Loop x[1] = -1.422 y[1] (analytic) = -0.95790259954302818240738572962541 y[1] (numeric) = -0.95790259954302818240738572962704 absolute error = 1.63e-30 relative error = 1.7016343840987580129542379106185e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.421 y[1] (analytic) = -0.95757154629593601665155940917519 y[1] (numeric) = -0.95757154629593601665155940917682 absolute error = 1.63e-30 relative error = 1.7022226760027923822725781123556e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.738 Order of pole = 3.6e-29 TOP MAIN SOLVE Loop x[1] = -1.42 y[1] (analytic) = -0.95724018128297995041999164720824 y[1] (numeric) = -0.95724018128297995041999164720987 absolute error = 1.63e-30 relative error = 1.7028119294107842769721405465350e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.737 Order of pole = 7.7e-29 TOP MAIN SOLVE Loop x[1] = -1.419 y[1] (analytic) = -0.95690850413642173448443095078695 y[1] (numeric) = -0.95690850413642173448443095078858 absolute error = 1.63e-30 relative error = 1.7034021465521628645102427673130e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.418 y[1] (analytic) = -0.95657651448810470376891577662537 y[1] (numeric) = -0.956576514488104703768915776627 absolute error = 1.63e-30 relative error = 1.7039933296629869386492582398646e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.417 y[1] (analytic) = -0.95624421196945366647712098029523 y[1] (numeric) = -0.95624421196945366647712098029687 absolute error = 1.64e-30 relative error = 1.7150430606239196534199963050747e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.416 y[1] (analytic) = -0.95591159621147479548057750667678 y[1] (numeric) = -0.95591159621147479548057750667842 absolute error = 1.64e-30 relative error = 1.7156398211924038838576886826258e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.734 Order of pole = 7.3e-29 TOP MAIN SOLVE Loop x[1] = -1.415 y[1] (analytic) = -0.95557866684475552198166277054223 y[1] (numeric) = -0.95557866684475552198166277054386 absolute error = 1.63e-30 relative error = 1.7057726972726692233764849237707e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.414 y[1] (analytic) = -0.95524542349946443146531927717988 y[1] (numeric) = -0.95524542349946443146531927718151 absolute error = 1.63e-30 relative error = 1.7063677667552980188493596613133e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.413 y[1] (analytic) = -0.95491186580535116195351932794021 y[1] (numeric) = -0.95491186580535116195351932794184 absolute error = 1.63e-30 relative error = 1.7069638134879544191178999129862e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.731 Order of pole = 7.9e-29 TOP MAIN SOLVE Loop x[1] = -1.412 y[1] (analytic) = -0.95457799339174630457655414471361 y[1] (numeric) = -0.95457799339174630457655414471524 absolute error = 1.63e-30 relative error = 1.7075608397469826765527392184513e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.73 Order of pole = 1.34e-28 TOP MAIN SOLVE Loop x[1] = -1.411 y[1] (analytic) = -0.95424380588756130647528643083196 y[1] (numeric) = -0.95424380588756130647528643083359 absolute error = 1.63e-30 relative error = 1.7081588478155268729939839635166e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.729 Order of pole = 4.3e-29 TOP MAIN SOLVE Loop x[1] = -1.41 y[1] (analytic) = -0.95390930292128837604856626391648 y[1] (numeric) = -0.95390930292128837604856626391811 absolute error = 1.63e-30 relative error = 1.7087578399835556531152205510308e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.409 y[1] (analytic) = -0.95357448412100039056007128896309 y[1] (numeric) = -0.95357448412100039056007128896472 absolute error = 1.63e-30 relative error = 1.7093578185478870640049489776891e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.728 Order of pole = 8.7e-29 TOP MAIN SOLVE Loop x[1] = -1.408 y[1] (analytic) = -0.95323934911435080611889344764967 y[1] (numeric) = -0.9532393491143508061188934476513 absolute error = 1.63e-30 relative error = 1.7099587858122135014930957556140e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.727 Order of pole = 7.8e-29 TOP MAIN SOLVE Loop x[1] = -1.407 y[1] (analytic) = -0.95290389752857357004825594264978 y[1] (numeric) = -0.95290389752857357004825594265141 absolute error = 1.63e-30 relative error = 1.7105607440871267637532458262942e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.726 Order of pole = 7.5e-29 memory used=91.5MB, alloc=4.3MB, time=5.33 TOP MAIN SOLVE Loop x[1] = -1.406 y[1] (analytic) = -0.95256812899048303565680579382206 y[1] (numeric) = -0.95256812899048303565680579382369 absolute error = 1.63e-30 relative error = 1.7111636956901432127142388513537e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.725 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = -1.405 y[1] (analytic) = -0.95223204312647387942698919668768 y[1] (numeric) = -0.95223204312647387942698919668932 absolute error = 1.64e-30 relative error = 1.7222692849269911851909155031021e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.725 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = -1.404 y[1] (analytic) = -0.95189563956252102063507894277933 y[1] (numeric) = -0.95189563956252102063507894278096 absolute error = 1.63e-30 relative error = 1.7123725881853256646619208695977e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.403 y[1] (analytic) = -0.95155891792417954341748540640907 y[1] (numeric) = -0.9515589179241795434174854064107 absolute error = 1.63e-30 relative error = 1.7129785337473751830727652006510e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.402 y[1] (analytic) = -0.95122187783658462129804504332064 y[1] (numeric) = -0.95122187783658462129804504332227 absolute error = 1.63e-30 relative error = 1.7135854819773460051509664789652e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.401 y[1] (analytic) = -0.95088451892445144419104298371945 y[1] (numeric) = -0.95088451892445144419104298372108 absolute error = 1.63e-30 relative error = 1.7141934352277585438412759147735e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.721 Order of pole = 4.3e-29 TOP MAIN SOLVE Loop x[1] = -1.4 y[1] (analytic) = -0.95054684081207514789478913546382 y[1] (numeric) = -0.95054684081207514789478913546545 absolute error = 1.63e-30 relative error = 1.7148023958582110385776512879773e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.399 y[1] (analytic) = -0.95020884312333074609063024290036 y[1] (numeric) = -0.95020884312333074609063024290199 absolute error = 1.63e-30 relative error = 1.7154123662354054865590153114414e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.72 Order of pole = 2.2e-29 TOP MAIN SOLVE Loop x[1] = -1.398 y[1] (analytic) = -0.9498705254816730648623435730781 y[1] (numeric) = -0.94987052548167306486234357307973 absolute error = 1.63e-30 relative error = 1.7160233487331736862140763932906e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.397 y[1] (analytic) = -0.94953188751013667975092132401762 y[1] (numeric) = -0.94953188751013667975092132401925 absolute error = 1.63e-30 relative error = 1.7166353457325033934167877079975e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.396 y[1] (analytic) = -0.94919292883133585535981846947726 y[1] (numeric) = -0.94919292883133585535981846947889 absolute error = 1.63e-30 relative error = 1.7172483596215645910172241062226e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.395 y[1] (analytic) = -0.94885364906746448752580057137631 y[1] (numeric) = -0.94885364906746448752580057137795 absolute error = 1.64e-30 relative error = 1.7284014258803722886500884425451e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.394 y[1] (analytic) = -0.94851404784029604807059210482947 y[1] (numeric) = -0.94851404784029604807059210483111 absolute error = 1.64e-30 relative error = 1.7290202540849783677040068573957e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.393 y[1] (analytic) = -0.94817412477118353214859005173646 y[1] (numeric) = -0.94817412477118353214859005173809 absolute error = 1.63e-30 relative error = 1.7190935266171252128049311443169e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.715 Order of pole = 1.16e-28 TOP MAIN SOLVE Loop x[1] = -1.392 y[1] (analytic) = -0.94783387948105940820597192716997 y[1] (numeric) = -0.9478338794810594082059719271716 absolute error = 1.63e-30 relative error = 1.7197106320913825670928582489572e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.714 Order of pole = 2.24e-28 TOP MAIN SOLVE Loop x[1] = -1.391 y[1] (analytic) = -0.94749331159043557056659200852302 y[1] (numeric) = -0.94749331159043557056659200852465 absolute error = 1.63e-30 relative error = 1.7203287665048821681724447109245e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.713 Order of pole = 3.67e-28 TOP MAIN SOLVE Loop x[1] = -1.39 y[1] (analytic) = -0.94715242071940329466012434061737 y[1] (numeric) = -0.947152420719403294660124340619 absolute error = 1.63e-30 relative error = 1.7209479322894454385413958727368e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.389 y[1] (analytic) = -0.94681120648763319490797609083768 y[1] (numeric) = -0.94681120648763319490797609083931 absolute error = 1.63e-30 relative error = 1.7215681318842631353451902706738e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.712 Order of pole = 1.83e-28 TOP MAIN SOLVE Loop x[1] = -1.388 y[1] (analytic) = -0.94646966851437518528256002693439 y[1] (numeric) = -0.94646966851437518528256002693602 absolute error = 1.63e-30 relative error = 1.7221893677359225471546542308507e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.387 y[1] (analytic) = -0.94612780641845844255558028652196 y[1] (numeric) = -0.94612780641845844255558028652359 absolute error = 1.63e-30 relative error = 1.7228116422984348092895765551727e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.71 Order of pole = 9.0e-29 TOP MAIN SOLVE Loop x[1] = -1.386 y[1] (analytic) = -0.94578561981829137225105120157037 y[1] (numeric) = -0.94578561981829137225105120157199 absolute error = 1.62e-30 relative error = 1.7128617374318312809962349694967e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.709 Order of pole = 2.61e-28 TOP MAIN SOLVE Loop x[1] = -1.385 y[1] (analytic) = -0.94544310833186157731883473342591 y[1] (numeric) = -0.94544310833186157731883473342753 absolute error = 1.62e-30 relative error = 1.7134822663822951812881793989726e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.384 y[1] (analytic) = -0.94510027157673582954454806417464 y[1] (numeric) = -0.94510027157673582954454806417626 absolute error = 1.62e-30 relative error = 1.7141038350325633361044750109859e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.707 Order of pole = 1.39e-28 TOP MAIN SOLVE Loop x[1] = -1.383 y[1] (analytic) = -0.94475710917006004371175907854566 y[1] (numeric) = -0.94475710917006004371175907854728 absolute error = 1.62e-30 relative error = 1.7147264458513786591308997057379e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.707 Order of pole = 3.01e-28 TOP MAIN SOLVE Loop x[1] = -1.382 y[1] (analytic) = -0.94441362072855925453245385710426 y[1] (numeric) = -0.94441362072855925453245385710588 absolute error = 1.62e-30 relative error = 1.7153501013149998926569636738894e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.706 Order of pole = 2.49e-28 memory used=95.3MB, alloc=4.3MB, time=5.55 TOP MAIN SOLVE Loop x[1] = -1.381 y[1] (analytic) = -0.94406980586853759636182688626266 y[1] (numeric) = -0.94406980586853759636182688626429 absolute error = 1.63e-30 relative error = 1.7265672409683852123331574479871e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.38 y[1] (analytic) = -0.9437256642058782857135114736899 y[1] (numeric) = -0.94372566420587828571351147369153 absolute error = 1.63e-30 relative error = 1.7271968558485738841029638620446e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.379 y[1] (analytic) = -0.9433811953560436065914348390769 y[1] (numeric) = -0.94338119535604360659143483907853 absolute error = 1.63e-30 relative error = 1.7278275293422804075345240252209e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.378 y[1] (analytic) = -0.94303639893407489865454952994837 y[1] (numeric) = -0.94303639893407489865454952995 absolute error = 1.63e-30 relative error = 1.7284592639715795870874005475290e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.703 Order of pole = 2.274e-27 TOP MAIN SOLVE Loop x[1] = -1.377 y[1] (analytic) = -0.94269127455459254823076019034216 y[1] (numeric) = -0.94269127455459254823076019034379 absolute error = 1.63e-30 relative error = 1.7290920622662498805119736484953e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.702 Order of pole = 4.477e-27 TOP MAIN SOLVE Loop x[1] = -1.376 y[1] (analytic) = -0.94234582183179598219643228672826 y[1] (numeric) = -0.94234582183179598219643228672989 absolute error = 1.63e-30 relative error = 1.7297259267638020584131917804315e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.701 Order of pole = 3.597e-27 TOP MAIN SOLVE Loop x[1] = -1.375 y[1] (analytic) = -0.94200004037946366473793717053459 y[1] (numeric) = -0.94200004037946366473793717053622 absolute error = 1.63e-30 relative error = 1.7303608600095079897679233923665e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.7 Order of pole = 5.821e-27 TOP MAIN SOLVE Loop x[1] = -1.374 y[1] (analytic) = -0.94165392981095309701175583010141 y[1] (numeric) = -0.94165392981095309701175583010304 absolute error = 1.63e-30 relative error = 1.7309968645564295540366450452583e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.699 Order of pole = 6.21e-28 TOP MAIN SOLVE Loop x[1] = -1.373 y[1] (analytic) = -0.94130748973920081971973185681078 y[1] (numeric) = -0.94130748973920081971973185681241 absolute error = 1.63e-30 relative error = 1.7316339429654476805139172464136e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.372 y[1] (analytic) = -0.94096071977672241861613252053503 y[1] (numeric) = -0.94096071977672241861613252053666 absolute error = 1.63e-30 relative error = 1.7322720978052915155658397967211e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.698 Order of pole = 5.26e-28 TOP MAIN SOLVE Loop x[1] = -1.371 y[1] (analytic) = -0.940613619535612532963245418417 y[1] (numeric) = -0.94061361953561253296324541841863 absolute error = 1.63e-30 relative error = 1.7329113316525677184064433148566e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.37 y[1] (analytic) = -0.94026618862754486695230692832585 y[1] (numeric) = -0.94026618862754486695230692832748 absolute error = 1.63e-30 relative error = 1.7335516470917898860687630959571e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.369 y[1] (analytic) = -0.9399184266637722041066276641107 y[1] (numeric) = -0.93991842666377220410662766411233 absolute error = 1.63e-30 relative error = 1.7341930467154081082301557577427e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.695 Order of pole = 6.5e-29 TOP MAIN SOLVE Loop x[1] = -1.368 y[1] (analytic) = -0.93957033325512642468384929397913 y[1] (numeric) = -0.93957033325512642468384929398076 absolute error = 1.63e-30 relative error = 1.7348355331238386525552584054652e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.367 y[1] (analytic) = -0.93922190801201852609433644593061 y[1] (numeric) = -0.93922190801201852609433644593224 absolute error = 1.63e-30 relative error = 1.7354791089254937812238544906308e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.366 y[1] (analytic) = -0.93887315054443864635277698514245 y[1] (numeric) = -0.93887315054443864635277698514408 absolute error = 1.63e-30 relative error = 1.7361237767368116993148003308826e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.693 Order of pole = 1.80e-28 TOP MAIN SOLVE Loop x[1] = -1.365 y[1] (analytic) = -0.93852406046195609058013370749675 y[1] (numeric) = -0.93852406046195609058013370749838 absolute error = 1.63e-30 relative error = 1.7367695391822866357210815849194e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.364 y[1] (analytic) = -0.9381746373737193605731604510041 y[1] (numeric) = -0.93817463737371936057316045100573 absolute error = 1.63e-30 relative error = 1.7374163988944990572750100235574e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.363 y[1] (analytic) = -0.93782488088845618745876578266884 y[1] (numeric) = -0.93782488088845618745876578267048 absolute error = 1.64e-30 relative error = 1.7487273300387726794460872064089e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.362 y[1] (analytic) = -0.93747479061447356745057777229134 y[1] (numeric) = -0.93747479061447356745057777229298 absolute error = 1.64e-30 relative error = 1.7493803741912377191952900479040e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.361 y[1] (analytic) = -0.93712436615965780072513391674665 y[1] (numeric) = -0.93712436615965780072513391674829 absolute error = 1.64e-30 relative error = 1.7500345303374529221165076561736e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.689 Order of pole = 2.66e-28 TOP MAIN SOLVE Loop x[1] = -1.36 y[1] (analytic) = -0.93677360713147453343519102834227 y[1] (numeric) = -0.93677360713147453343519102834391 absolute error = 1.64e-30 relative error = 1.7506898011589996420585247855285e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.688 Order of pole = 1.76e-28 TOP MAIN SOLVE Loop x[1] = -1.359 y[1] (analytic) = -0.93642251313696880287772084885798 y[1] (numeric) = -0.93642251313696880287772084885963 absolute error = 1.65e-30 relative error = 1.7620251295246866062569158391433e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.687 Order of pole = 2.1e-29 TOP MAIN SOLVE Loop x[1] = -1.358 y[1] (analytic) = -0.93607108378276508583422829672063 y[1] (numeric) = -0.93607108378276508583422829672228 absolute error = 1.65e-30 relative error = 1.7626866469714783780843731668270e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.357 y[1] (analytic) = -0.93571931867506735010110059836901 y[1] (numeric) = -0.93571931867506735010110059837065 absolute error = 1.64e-30 relative error = 1.7526623286159780728169035242291e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.686 Order of pole = 4.08e-28 memory used=99.1MB, alloc=4.3MB, time=5.77 TOP MAIN SOLVE Loop x[1] = -1.356 y[1] (analytic) = -0.93536721741965910922776709611739 y[1] (numeric) = -0.93536721741965910922776709611903 absolute error = 1.64e-30 relative error = 1.7533220851209310830152590483240e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.355 y[1] (analytic) = -0.93501477962190348048052126361934 y[1] (numeric) = -0.93501477962190348048052126362098 absolute error = 1.64e-30 relative error = 1.7539829698340970141570499509791e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.354 y[1] (analytic) = -0.9346620048867432460499283962494 y[1] (numeric) = -0.93466200488674324604992839625104 absolute error = 1.64e-30 relative error = 1.7546449854872675554956985991450e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.353 y[1] (analytic) = -0.93430889281870091751981457723414 y[1] (numeric) = -0.93430889281870091751981457723578 absolute error = 1.64e-30 relative error = 1.7553081348207136826567709915330e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.682 Order of pole = 1.26e-28 TOP MAIN SOLVE Loop x[1] = -1.352 y[1] (analytic) = -0.93395544302187880361590485104349 y[1] (numeric) = -0.93395544302187880361590485104513 absolute error = 1.64e-30 relative error = 1.7559724205832177202217073028583e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.682 Order of pole = 3.7e-29 TOP MAIN SOLVE Loop x[1] = -1.351 y[1] (analytic) = -0.93360165509995908125225106325821 y[1] (numeric) = -0.93360165509995908125225106325985 absolute error = 1.64e-30 relative error = 1.7566378455321055475931831003154e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.681 Order of pole = 9.2e-29 TOP MAIN SOLVE Loop x[1] = -1.35 y[1] (analytic) = -0.93324752865620386989366255071266 y[1] (numeric) = -0.9332475286562038698936625507143 absolute error = 1.64e-30 relative error = 1.7573044124332789488836165508628e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.68 Order of pole = 1.68e-28 TOP MAIN SOLVE Loop x[1] = -1.349 y[1] (analytic) = -0.93289306329345530925242578701804 y[1] (numeric) = -0.93289306329345530925242578701968 absolute error = 1.64e-30 relative error = 1.7579721240612481075727139421281e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.348 y[1] (analytic) = -0.93253825861413564033767220643751 y[1] (numeric) = -0.93253825861413564033767220643915 absolute error = 1.64e-30 relative error = 1.7586409831991642466843519429839e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.678 Order of pole = 1.37e-28 TOP MAIN SOLVE Loop x[1] = -1.347 y[1] (analytic) = -0.93218311422024728987582674333956 y[1] (numeric) = -0.93218311422024728987582674334121 absolute error = 1.65e-30 relative error = 1.7700384986915283445987349015001e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.346 y[1] (analytic) = -0.93182762971337295812064313492198 y[1] (numeric) = -0.93182762971337295812064313492363 absolute error = 1.65e-30 relative error = 1.7707137536880446925948057396708e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.345 y[1] (analytic) = -0.93147180469467571007140574138755 y[1] (numeric) = -0.9314718046946757100714057413892 absolute error = 1.65e-30 relative error = 1.7713901716443778417359722106960e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.344 y[1] (analytic) = -0.93111563876489907011795154007108 y[1] (numeric) = -0.93111563876489907011795154007274 absolute error = 1.66e-30 relative error = 1.7828075599739118066199858384347e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.675 Order of pole = 8.2e-29 TOP MAIN SOLVE Loop x[1] = -1.343 y[1] (analytic) = -0.93075913152436712013124004796093 y[1] (numeric) = -0.93075913152436712013124004796259 absolute error = 1.66e-30 relative error = 1.7834904260152740435793074209545e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.342 y[1] (analytic) = -0.93040228257298460101827322041664 y[1] (numeric) = -0.9304022825729846010182732204183 absolute error = 1.66e-30 relative error = 1.7841744706487032270503007611037e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.674 Order of pole = 2.13e-28 TOP MAIN SOLVE Loop x[1] = -1.341 y[1] (analytic) = -0.93004509151023701776024186243806 y[1] (numeric) = -0.93004509151023701776024186243971 absolute error = 1.65e-30 relative error = 1.7741075299055416064284213788359e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.673 Order of pole = 2.0e-29 TOP MAIN SOLVE Loop x[1] = -1.34 y[1] (analytic) = -0.92968755793519074795284977236147 y[1] (numeric) = -0.92968755793519074795284977236313 absolute error = 1.66e-30 relative error = 1.7855461072177970437079745590238e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.339 y[1] (analytic) = -0.92932968144649315386784171611018 y[1] (numeric) = -0.92932968144649315386784171611184 absolute error = 1.66e-30 relative error = 1.7862337049390536785585804682332e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.671 Order of pole = 8.5e-29 TOP MAIN SOLVE Loop x[1] = -1.338 y[1] (analytic) = -0.92897146164237269805483640286348 y[1] (numeric) = -0.92897146164237269805483640286514 absolute error = 1.66e-30 relative error = 1.7869224928236302159878844957318e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.337 y[1] (analytic) = -0.92861289812063906250264089997777 y[1] (numeric) = -0.92861289812063906250264089997942 absolute error = 1.65e-30 relative error = 1.7768437239449620900371970768263e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.67 Order of pole = 5.6e-29 TOP MAIN SOLVE Loop x[1] = -1.336 y[1] (analytic) = -0.9282539904786832713792983859323 y[1] (numeric) = -0.92825399047868327137929838593395 absolute error = 1.65e-30 relative error = 1.7775307371952430516804190099074e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.335 y[1] (analytic) = -0.92789473831347781737019679471032 y[1] (numeric) = -0.92789473831347781737019679471197 absolute error = 1.65e-30 relative error = 1.7782189421604067844225833563314e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.334 y[1] (analytic) = -0.9275351412215767916336417530827 y[1] (numeric) = -0.92753514122157679163364175308434 absolute error = 1.64e-30 relative error = 1.7681270790884504877373899882227e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.667 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = -1.333 y[1] (analytic) = -0.92717519879911601739337325344792 y[1] (numeric) = -0.92717519879911601739337325344956 absolute error = 1.64e-30 relative error = 1.7688134908312256295873016202328e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.332 y[1] (analytic) = -0.92681491064181318718758173890066 y[1] (numeric) = -0.9268149106418131871875817389023 absolute error = 1.64e-30 relative error = 1.7695010958167589923234267461084e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=103.0MB, alloc=4.3MB, time=6.00 x[1] = -1.331 y[1] (analytic) = -0.92645427634496800379405570374402 y[1] (numeric) = -0.92645427634496800379405570374565 absolute error = 1.63e-30 relative error = 1.7593960561449927990062269216088e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.33 y[1] (analytic) = -0.92609329550346232485116953141216 y[1] (numeric) = -0.92609329550346232485116953141379 absolute error = 1.63e-30 relative error = 1.7600818491120434041342511270530e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.329 y[1] (analytic) = -0.92573196771176031119449710240413 y[1] (numeric) = -0.92573196771176031119449710240577 absolute error = 1.64e-30 relative error = 1.7715710996280913812556418380230e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.663 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = -1.328 y[1] (analytic) = -0.92537029256390857892891370701149 y[1] (numeric) = -0.92537029256390857892891370701313 absolute error = 1.64e-30 relative error = 1.7722635070292546243353575870743e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.327 y[1] (analytic) = -0.92500826965353635525612599100731 y[1] (numeric) = -0.92500826965353635525612599100895 absolute error = 1.64e-30 relative error = 1.7729571224420136120684314932427e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.662 Order of pole = 1.04e-28 TOP MAIN SOLVE Loop x[1] = -1.326 y[1] (analytic) = -0.92464589857385563807764704669849 y[1] (numeric) = -0.92464589857385563807764704670013 absolute error = 1.64e-30 relative error = 1.7736519488481847233221195285690e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.661 Order of pole = 1.07e-28 TOP MAIN SOLVE Loop x[1] = -1.325 y[1] (analytic) = -0.92428317891766135939331133646255 y[1] (numeric) = -0.92428317891766135939331133646419 absolute error = 1.64e-30 relative error = 1.7743479892390180579031744902770e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.66 Order of pole = 2.86e-28 TOP MAIN SOLVE Loop x[1] = -1.324 y[1] (analytic) = -0.92392011027733155251550190072182 y[1] (numeric) = -0.92392011027733155251550190072346 absolute error = 1.64e-30 relative error = 1.7750452466152338062767518537561e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.323 y[1] (analytic) = -0.9235566922448275231193402568679 y[1] (numeric) = -0.92355669224482752311934025686955 absolute error = 1.65e-30 relative error = 1.7865714296211262167001665194703e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.322 y[1] (analytic) = -0.92319292441169402414916753954524 y[1] (numeric) = -0.92319292441169402414916753954689 absolute error = 1.65e-30 relative error = 1.7872753964741062072555230398948e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.321 y[1] (analytic) = -0.92282880636905943460172376553024 y[1] (numeric) = -0.92282880636905943460172376553189 absolute error = 1.65e-30 relative error = 1.7879805968476984146597346479589e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.657 Order of pole = 2.83e-28 TOP MAIN SOLVE Loop x[1] = -1.32 y[1] (analytic) = -0.92246433770763594220651062778974 y[1] (numeric) = -0.92246433770763594220651062779139 absolute error = 1.65e-30 relative error = 1.7886870337994007084577323430616e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.319 y[1] (analytic) = -0.92209951801771973002390193274498 y[1] (numeric) = -0.92209951801771973002390193274663 absolute error = 1.65e-30 relative error = 1.7893947103964242705802793586730e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.655 Order of pole = 5.9e-29 TOP MAIN SOLVE Loop x[1] = -1.318 y[1] (analytic) = -0.92173434688919116698164469187176 y[1] (numeric) = -0.92173434688919116698164469187341 absolute error = 1.65e-30 relative error = 1.7901036297157312010102648370014e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.317 y[1] (analytic) = -0.92136882391151500237047296308935 y[1] (numeric) = -0.921368823911515002370472963091 absolute error = 1.65e-30 relative error = 1.7908137948440722956257765179964e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.654 Order of pole = 4.12e-28 TOP MAIN SOLVE Loop x[1] = -1.316 y[1] (analytic) = -0.92100294867374056431963580847627 y[1] (numeric) = -0.92100294867374056431963580847792 absolute error = 1.65e-30 relative error = 1.7915252088780249971335227720463e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.315 y[1] (analytic) = -0.92063672076450196227322019223409 y[1] (numeric) = -0.92063672076450196227322019223574 absolute error = 1.65e-30 relative error = 1.7922378749240315200117063821713e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.652 Order of pole = 8.0e-29 TOP MAIN SOLVE Loop x[1] = -1.314 y[1] (analytic) = -0.92027013977201829348822928602602 y[1] (numeric) = -0.92027013977201829348822928602766 absolute error = 1.64e-30 relative error = 1.7820854215766284403846767103950e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.651 Order of pole = 3.46e-28 TOP MAIN SOLVE Loop x[1] = -1.313 y[1] (analytic) = -0.9199032052840938535754564773583 y[1] (numeric) = -0.91990320528409385357545647735994 absolute error = 1.64e-30 relative error = 1.7827962665849376386137802999230e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.65 Order of pole = 8.83e-28 TOP MAIN SOLVE Loop x[1] = -1.312 y[1] (analytic) = -0.9195359168881183511042753900523 y[1] (numeric) = -0.91953591688811835110427539005394 absolute error = 1.64e-30 relative error = 1.7835083653394061569141416963912e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.65 Order of pole = 1.98e-28 TOP MAIN SOLVE Loop x[1] = -1.311 y[1] (analytic) = -0.91916827417106712629254642356469 y[1] (numeric) = -0.91916827417106712629254642356634 absolute error = 1.65e-30 relative error = 1.7951011217048568516034567845224e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.31 y[1] (analytic) = -0.91880027671950137380292069943421 y[1] (numeric) = -0.91880027671950137380292069943586 absolute error = 1.65e-30 relative error = 1.7958200947557235765570946133667e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.648 Order of pole = 4.3e-29 TOP MAIN SOLVE Loop x[1] = -1.309 y[1] (analytic) = -0.91843192411956836966690286793426 y[1] (numeric) = -0.91843192411956836966690286793591 absolute error = 1.65e-30 relative error = 1.7965403386666147731432812570740e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.308 y[1] (analytic) = -0.91806321595700170235811497555074 y[1] (numeric) = -0.91806321595700170235811497555239 absolute error = 1.65e-30 relative error = 1.7972618566141083690375198703272e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.307 y[1] (analytic) = -0.91769415181712150803628452363023 y[1] (numeric) = -0.91769415181712150803628452363188 absolute error = 1.65e-30 relative error = 1.7979846517849584397180938896882e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.646 Order of pole = 2.54e-28 TOP MAIN SOLVE Loop memory used=106.8MB, alloc=4.3MB, time=6.22 x[1] = -1.306 y[1] (analytic) = -0.91732473128483470998356095989065 y[1] (numeric) = -0.91732473128483470998356095989229 absolute error = 1.64e-30 relative error = 1.7878074623617341239563172578276e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.645 Order of pole = 1.32e-28 TOP MAIN SOLVE Loop x[1] = -1.305 y[1] (analytic) = -0.91695495394463526225484613687955 y[1] (numeric) = -0.91695495394463526225484613688119 absolute error = 1.64e-30 relative error = 1.7885284254639856684012926277707e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.304 y[1] (analytic) = -0.91658481938060439756390574431597 y[1] (numeric) = -0.91658481938060439756390574431761 absolute error = 1.64e-30 relative error = 1.7892506676122499990506862516674e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.303 y[1] (analytic) = -0.91621432717641087942711037496135 y[1] (numeric) = -0.91621432717641087942711037496299 absolute error = 1.64e-30 relative error = 1.7899741920148221810493844086001e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.643 Order of pole = 1.580e-26 TOP MAIN SOLVE Loop x[1] = -1.302 y[1] (analytic) = -0.91584347691531125858673671562287 y[1] (numeric) = -0.91584347691531125858673671562451 absolute error = 1.64e-30 relative error = 1.7906990018903110500835911001220e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.301 y[1] (analytic) = -0.9154722681801501337358413654747 y[1] (numeric) = -0.91547226818015013373584136547633 absolute error = 1.63e-30 relative error = 1.7805017766843401168034212592392e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.641 Order of pole = 1.797e-27 TOP MAIN SOLVE Loop x[1] = -1.3 y[1] (analytic) = -0.91510070055336041656680197245527 y[1] (numeric) = -0.9151007005533604165668019724569 absolute error = 1.63e-30 relative error = 1.7812247318949059271395428901465e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.299 y[1] (analytic) = -0.91472877361696360116570274441395 y[1] (numeric) = -0.91472877361696360116570274441558 absolute error = 1.63e-30 relative error = 1.7819489743989963499937533567215e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.298 y[1] (analytic) = -0.91435648695257003777482393427902 y[1] (numeric) = -0.91435648695257003777482393428065 absolute error = 1.63e-30 relative error = 1.7826745074370016303581180113261e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.297 y[1] (analytic) = -0.91398384014137921094557761713002 y[1] (numeric) = -0.91398384014137921094557761713165 absolute error = 1.63e-30 relative error = 1.7834013342597656065374897872666e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.638 Order of pole = 2.1e-29 TOP MAIN SOLVE Loop x[1] = -1.296 y[1] (analytic) = -0.91361083276418002210431497099579 y[1] (numeric) = -0.91361083276418002210431497099742 absolute error = 1.63e-30 relative error = 1.7841294581286268191381365603640e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.295 y[1] (analytic) = -0.91323746440135107655351334176968 y[1] (numeric) = -0.91323746440135107655351334177131 absolute error = 1.63e-30 relative error = 1.7848588823154598113230598134474e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.636 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = -1.294 y[1] (analytic) = -0.91286373463286097493093461512522 y[1] (numeric) = -0.91286373463286097493093461512684 absolute error = 1.62e-30 relative error = 1.7746350726174238813574197425160e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.293 y[1] (analytic) = -0.91248964303826860914942983400763 y[1] (numeric) = -0.91248964303826860914942983400925 absolute error = 1.62e-30 relative error = 1.7753626162878643675068765093037e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.635 Order of pole = 3.79e-28 TOP MAIN SOLVE Loop x[1] = -1.292 y[1] (analytic) = -0.91211518919672346284014858843398 y[1] (numeric) = -0.9121151891967234628401485884356 absolute error = 1.62e-30 relative error = 1.7760914621175123718408118522802e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.634 Order of pole = 1.36e-28 TOP MAIN SOLVE Loop x[1] = -1.291 y[1] (analytic) = -0.91174037268696591632199546420924 y[1] (numeric) = -0.91174037268696591632199546421086 absolute error = 1.62e-30 relative error = 1.7768216134004693522660200862168e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.633 Order of pole = 9.4e-29 TOP MAIN SOLVE Loop x[1] = -1.29 y[1] (analytic) = -0.91136519308732755612025976799717 y[1] (numeric) = -0.91136519308732755612025976799879 absolute error = 1.62e-30 relative error = 1.7775530734415162531034864269470e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.632 Order of pole = 2.52e-28 TOP MAIN SOLVE Loop x[1] = -1.289 y[1] (analytic) = -0.91098964997573148905742884719871 y[1] (numeric) = -0.91098964997573148905742884720033 absolute error = 1.62e-30 relative error = 1.7782858455561557142848977043480e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.288 y[1] (analytic) = -0.91061374292969266093927959349981 y[1] (numeric) = -0.91061374292969266093927959350143 absolute error = 1.62e-30 relative error = 1.7790199330706544779548518507714e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.287 y[1] (analytic) = -0.91023747152631817985942715795435 y[1] (numeric) = -0.91023747152631817985942715795597 absolute error = 1.62e-30 relative error = 1.7797553393220859935493718344913e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.286 y[1] (analytic) = -0.90986083534230764414559451225186 y[1] (numeric) = -0.90986083534230764414559451225348 absolute error = 1.62e-30 relative error = 1.7804920676583732224279593166563e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.285 y[1] (analytic) = -0.90948383395395347497095126455629 y[1] (numeric) = -0.90948383395395347497095126455791 absolute error = 1.62e-30 relative error = 1.7812301214383316431430991840217e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.628 Order of pole = 8.4e-29 TOP MAIN SOLVE Loop x[1] = -1.284 y[1] (analytic) = -0.90910646693714125365395507814968 y[1] (numeric) = -0.9091064669371412536539550781513 absolute error = 1.62e-30 relative error = 1.7819695040317124584378486080358e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.283 y[1] (analytic) = -0.90872873386735006367021414621744 y[1] (numeric) = -0.90872873386735006367021414621906 absolute error = 1.62e-30 relative error = 1.7827102188192460050689137664055e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.627 Order of pole = 1.04e-28 TOP MAIN SOLVE Loop x[1] = -1.282 y[1] (analytic) = -0.9083506343196528373999744456014 y[1] (numeric) = -0.90835063431965283739997444560302 absolute error = 1.62e-30 relative error = 1.7834522691926853675594342019079e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.281 memory used=110.6MB, alloc=4.4MB, time=6.44 y[1] (analytic) = -0.90797216786871670763492092533866 y[1] (numeric) = -0.90797216786871670763492092534027 absolute error = 1.61e-30 relative error = 1.7731821051069807513321114566961e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.28 y[1] (analytic) = -0.90759333408880336386806738140148 y[1] (numeric) = -0.90759333408880336386806738140309 absolute error = 1.61e-30 relative error = 1.7739222397621419042603341171502e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.279 y[1] (analytic) = -0.90721413255376941339059552634412 y[1] (numeric) = -0.90721413255376941339059552634574 absolute error = 1.62e-30 relative error = 1.7856864679122320508172140950285e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.278 y[1] (analytic) = -0.90683456283706674721958968061981 y[1] (numeric) = -0.90683456283706674721958968062143 absolute error = 1.62e-30 relative error = 1.7864338947688184722970917775409e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.623 Order of pole = 1.14e-28 TOP MAIN SOLVE Loop x[1] = -1.277 y[1] (analytic) = -0.90645462451174291088069959021487 y[1] (numeric) = -0.90645462451174291088069959021649 absolute error = 1.62e-30 relative error = 1.7871826743369582457546728978254e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.622 Order of pole = 1.39e-28 TOP MAIN SOLVE Loop x[1] = -1.276 y[1] (analytic) = -0.90607431715044148006985011200152 y[1] (numeric) = -0.90607431715044148006985011200313 absolute error = 1.61e-30 relative error = 1.7768961877910519204996291938721e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.621 Order of pole = 8.3e-29 TOP MAIN SOLVE Loop x[1] = -1.275 y[1] (analytic) = -0.90569364032540244121820290286556 y[1] (numeric) = -0.90569364032540244121820290286717 absolute error = 1.61e-30 relative error = 1.7776430443097189174995856564639e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.274 y[1] (analytic) = -0.90531259360846257698466180023588 y[1] (numeric) = -0.90531259360846257698466180023748 absolute error = 1.60e-30 relative error = 1.7673453471166246062276601608472e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.273 y[1] (analytic) = -0.90493117657105585670030028912789 y[1] (numeric) = -0.9049311765710558567003002891295 absolute error = 1.61e-30 relative error = 1.7791408249415988868776648971806e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.619 Order of pole = 1.88e-28 TOP MAIN SOLVE Loop x[1] = -1.272 y[1] (analytic) = -0.90454938878421383178917631319944 y[1] (numeric) = -0.90454938878421383178917631320105 absolute error = 1.61e-30 relative error = 1.7798917560089977816116969892975e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.271 y[1] (analytic) = -0.90416722981856603619008670357256 y[1] (numeric) = -0.90416722981856603619008670357416 absolute error = 1.60e-30 relative error = 1.7695841512869944057397442712747e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.27 y[1] (analytic) = -0.90378469924434039180390066825438 y[1] (numeric) = -0.90378469924434039180390066825598 absolute error = 1.60e-30 relative error = 1.7703331350240485850101741809383e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.269 y[1] (analytic) = -0.90340179663136361899119910583233 y[1] (numeric) = -0.90340179663136361899119910583393 absolute error = 1.60e-30 relative error = 1.7710834824173875374998949571376e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.616 Order of pole = 4.6e-29 TOP MAIN SOLVE Loop x[1] = -1.268 y[1] (analytic) = -0.90301852154906165214503397864655 y[1] (numeric) = -0.90301852154906165214503397864815 absolute error = 1.60e-30 relative error = 1.7718351969739425083406073542697e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.267 y[1] (analytic) = -0.90263487356646006036370960176363 y[1] (numeric) = -0.90263487356646006036370960176523 absolute error = 1.60e-30 relative error = 1.7725882822122024690021825452589e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.614 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = -1.266 y[1] (analytic) = -0.90225085225218447324857547368169 y[1] (numeric) = -0.90225085225218447324857547368329 absolute error = 1.60e-30 relative error = 1.7733427416622605691977979560384e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.265 y[1] (analytic) = -0.90186645717446101185190819166293 y[1] (numeric) = -0.90186645717446101185190819166454 absolute error = 1.61e-30 relative error = 1.7851866949837724398797185362448e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.264 y[1] (analytic) = -0.90148168790111672480004805777634 y[1] (numeric) = -0.90148168790111672480004805777795 absolute error = 1.61e-30 relative error = 1.7859486461100477189796022005945e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.612 Order of pole = 1.55e-28 TOP MAIN SOLVE Loop x[1] = -1.263 y[1] (analytic) = -0.90109654399958002961704418998251 y[1] (numeric) = -0.90109654399958002961704418998413 absolute error = 1.62e-30 relative error = 1.7978095807686895609468867864345e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.611 Order of pole = 2.6e-29 TOP MAIN SOLVE Loop x[1] = -1.262 y[1] (analytic) = -0.9007110250368811592741503047328 y[1] (numeric) = -0.90071102503688115927415030473442 absolute error = 1.62e-30 relative error = 1.7985790724984923091843242143874e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.61 Order of pole = 1.22e-28 TOP MAIN SOLVE Loop x[1] = -1.261 y[1] (analytic) = -0.90032513057965261399060183239525 y[1] (numeric) = -0.90032513057965261399060183239686 absolute error = 1.61e-30 relative error = 1.7882428750638564792911716027696e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.609 Order of pole = 6.5e-29 TOP MAIN SOLVE Loop x[1] = -1.26 y[1] (analytic) = -0.89993886019412961831119366315553 y[1] (numeric) = -0.89993886019412961831119366315715 absolute error = 1.62e-30 relative error = 1.8001222879191403595270734483131e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.609 Order of pole = 9.0e-29 TOP MAIN SOLVE Loop x[1] = -1.259 y[1] (analytic) = -0.89955221344615058348626659764845 y[1] (numeric) = -0.89955221344615058348626659765006 absolute error = 1.61e-30 relative error = 1.7897793768214418107594907568981e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.608 Order of pole = 2.2e-29 TOP MAIN SOLVE Loop x[1] = -1.258 y[1] (analytic) = -0.89916518990115757517979949221502 y[1] (numeric) = -0.89916518990115757517979949221663 absolute error = 1.61e-30 relative error = 1.7905497433424688942786556231774e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.257 y[1] (analytic) = -0.89877778912419678653139314209609 y[1] (numeric) = -0.89877778912419678653139314209771 absolute error = 1.62e-30 relative error = 1.8024477458200091124841999879722e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.256 y[1] (analytic) = -0.89839001067991901659802113579054 y[1] (numeric) = -0.89839001067991901659802113579216 absolute error = 1.62e-30 relative error = 1.8032257491086221249965097642703e-28 % Correct digits = 29 h = 0.001 memory used=114.4MB, alloc=4.4MB, time=6.66 NO POLE TOP MAIN SOLVE Loop x[1] = -1.255 y[1] (analytic) = -0.89800185413258015420151223893491 y[1] (numeric) = -0.89800185413258015420151223893653 absolute error = 1.62e-30 relative error = 1.8040051838922202431658253537446e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.254 y[1] (analytic) = -0.89761331904604166720781832509275 y[1] (numeric) = -0.89761331904604166720781832509437 absolute error = 1.62e-30 relative error = 1.8047860538897647987390166829265e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.604 Order of pole = 1.52e-28 TOP MAIN SOLVE Loop x[1] = -1.253 y[1] (analytic) = -0.89722440498377109726421146245035 y[1] (numeric) = -0.89722440498377109726421146245197 absolute error = 1.62e-30 relative error = 1.8055683628325985998377152817378e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.252 y[1] (analytic) = -0.89683511150884256002064348825749 y[1] (numeric) = -0.89683511150884256002064348825911 absolute error = 1.62e-30 relative error = 1.8063521144644962119209261308147e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.251 y[1] (analytic) = -0.89644543818393725086159125556641 y[1] (numeric) = -0.89644543818393725086159125556803 absolute error = 1.62e-30 relative error = 1.8071373125417144805657127144261e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.602 Order of pole = 3.0e-29 TOP MAIN SOLVE Loop x[1] = -1.25 y[1] (analytic) = -0.89605538457134395617480071802994 y[1] (numeric) = -0.89605538457134395617480071803156 absolute error = 1.62e-30 relative error = 1.8079239608330432974156802571459e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.249 y[1] (analytic) = -0.89566495023295957018343312682384 y[1] (numeric) = -0.89566495023295957018343312682546 absolute error = 1.62e-30 relative error = 1.8087120631198566106555890528684e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.248 y[1] (analytic) = -0.89527413473028961736820684774343 y[1] (numeric) = -0.89527413473028961736820684774505 absolute error = 1.62e-30 relative error = 1.8095016231961636813790985952831e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.247 y[1] (analytic) = -0.89488293762444878050621866475726 y[1] (numeric) = -0.89488293762444878050621866475888 absolute error = 1.62e-30 relative error = 1.8102926448686605872253743849937e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.246 y[1] (analytic) = -0.89449135847616143435321891732852 y[1] (numeric) = -0.89449135847616143435321891733015 absolute error = 1.63e-30 relative error = 1.8222646698083670485867937107458e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.598 Order of pole = 3.2e-29 TOP MAIN SOLVE Loop x[1] = -1.245 y[1] (analytic) = -0.89409939684576218499620542116814 y[1] (numeric) = -0.89409939684576218499620542116977 absolute error = 1.63e-30 relative error = 1.8230635271093749938346743156721e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.597 Order of pole = 5.6e-29 TOP MAIN SOLVE Loop x[1] = -1.244 y[1] (analytic) = -0.89370705229319641490329184427196 y[1] (numeric) = -0.8937070522931964149032918442736 absolute error = 1.64e-30 relative error = 1.8350532154712917897698980268890e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.596 Order of pole = 6.2e-29 TOP MAIN SOLVE Loop x[1] = -1.243 y[1] (analytic) = -0.89331432437802083369789705061129 y[1] (numeric) = -0.89331432437802083369789705061292 absolute error = 1.63e-30 relative error = 1.8246656921514205495186592763440e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.595 Order of pole = 1.01e-28 TOP MAIN SOLVE Loop x[1] = -1.242 y[1] (analytic) = -0.89292121265940403468439288116255 y[1] (numeric) = -0.89292121265940403468439288116419 absolute error = 1.64e-30 relative error = 1.8366682040351098478358366570025e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.595 Order of pole = 3.9e-29 TOP MAIN SOLVE Loop x[1] = -1.241 y[1] (analytic) = -0.89252771669612705715243891453388 y[1] (numeric) = -0.89252771669612705715243891453551 absolute error = 1.63e-30 relative error = 1.8262738170572188507560101836708e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.24 y[1] (analytic) = -0.8921338360465839544873239357062 y[1] (numeric) = -0.89213383604658395448732393570783 absolute error = 1.63e-30 relative error = 1.8270801242369730976640714287687e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.239 y[1] (analytic) = -0.89173957026878236811372513977167 y[1] (numeric) = -0.8917395702687823681137251397733 absolute error = 1.63e-30 relative error = 1.8278879331425159844408968658199e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.238 y[1] (analytic) = -0.89134491892034410730038750641614 y[1] (numeric) = -0.89134491892034410730038750641777 absolute error = 1.63e-30 relative error = 1.8286972477213016028249381742000e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.237 y[1] (analytic) = -0.89094988155850573485331729863291 y[1] (numeric) = -0.89094988155850573485331729863454 absolute error = 1.63e-30 relative error = 1.8295080719340813850609630314894e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.236 y[1] (analytic) = -0.89055445774011915872517526412684 y[1] (numeric) = -0.89055445774011915872517526412847 absolute error = 1.63e-30 relative error = 1.8303204097549587561433560401547e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.235 y[1] (analytic) = -0.8901586470216522295686468484082 y[1] (numeric) = -0.89015864702165222956864684840983 absolute error = 1.63e-30 relative error = 1.8311342651714440521740979506765e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.234 y[1] (analytic) = -0.88976244895918934426165856299982 y[1] (numeric) = -0.88976244895918934426165856300145 absolute error = 1.63e-30 relative error = 1.8319496421845097063397983468867e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.233 y[1] (analytic) = -0.88936586310843205543240158878552 y[1] (numeric) = -0.88936586310843205543240158878716 absolute error = 1.64e-30 relative error = 1.8440105113412140825741568585373e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.588 Order of pole = 3.6e-29 TOP MAIN SOLVE Loop x[1] = -1.232 y[1] (analytic) = -0.88896888902469968701221573158732 y[1] (numeric) = -0.88896888902469968701221573158895 absolute error = 1.63e-30 relative error = 1.8335849770719153085637656476699e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.587 Order of pole = 6.0e-29 TOP MAIN SOLVE Loop x[1] = -1.231 y[1] (analytic) = -0.8885715262629299558444789828289 y[1] (numeric) = -0.88857152626292995584447898283053 absolute error = 1.63e-30 relative error = 1.8344049430160110592289069451264e-28 % Correct digits = 29 h = 0.001 NO POLE memory used=118.2MB, alloc=4.4MB, time=6.89 TOP MAIN SOLVE Loop x[1] = -1.23 y[1] (analytic) = -0.88817377437767959937774017085746 y[1] (numeric) = -0.88817377437767959937774017085909 absolute error = 1.63e-30 relative error = 1.8352264466963110428931710597927e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.229 y[1] (analytic) = -0.88777563292312500947142451636804 y[1] (numeric) = -0.88777563292312500947142451636966 absolute error = 1.62e-30 relative error = 1.8247853848679358370927550971972e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.228 y[1] (analytic) = -0.88737710145306287234253432659716 y[1] (numeric) = -0.88737710145306287234253432659879 absolute error = 1.63e-30 relative error = 1.8368740835558033535199905199407e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.584 Order of pole = 2.7e-29 TOP MAIN SOLVE Loop x[1] = -1.227 y[1] (analytic) = -0.88697817952091081468185957569679 y[1] (numeric) = -0.88697817952091081468185957569842 absolute error = 1.63e-30 relative error = 1.8377002249146899009548828004683e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.226 y[1] (analytic) = -0.88657886667970805596830572111477 y[1] (numeric) = -0.8865788666797080559683057211164 absolute error = 1.63e-30 relative error = 1.8385279203692836068600153774870e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.582 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = -1.225 y[1] (analytic) = -0.88617916248211606701003879602405 y[1] (numeric) = -0.88617916248211606701003879602568 absolute error = 1.63e-30 relative error = 1.8393571740442440615897596986744e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.581 Order of pole = 6.5e-29 TOP MAIN SOLVE Loop x[1] = -1.224 y[1] (analytic) = -0.88577906648041923474124059396521 y[1] (numeric) = -0.88577906648041923474124059396684 absolute error = 1.63e-30 relative error = 1.8401879900782598694047040785613e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.223 y[1] (analytic) = -0.88537857822652553330335962198217 y[1] (numeric) = -0.8853785782265255333033596219838 absolute error = 1.63e-30 relative error = 1.8410203726241068803778696529212e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.222 y[1] (analytic) = -0.88497769727196720143983644070145 y[1] (numeric) = -0.88497769727196720143983644070308 absolute error = 1.63e-30 relative error = 1.8418543258487067087511818232626e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.579 Order of pole = 2.9e-29 TOP MAIN SOLVE Loop x[1] = -1.221 y[1] (analytic) = -0.88457642316790142623337503207328 y[1] (numeric) = -0.88457642316790142623337503207492 absolute error = 1.64e-30 relative error = 1.8539946996628369844054637194590e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.22 y[1] (analytic) = -0.88417475546511103321492493587706 y[1] (numeric) = -0.88417475546511103321492493587869 absolute error = 1.63e-30 relative error = 1.8435269610729332239030024398222e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.577 Order of pole = 3.9e-29 TOP MAIN SOLVE Loop x[1] = -1.219 y[1] (analytic) = -0.88377269371400518287363207259055 y[1] (numeric) = -0.88377269371400518287363207259218 absolute error = 1.63e-30 relative error = 1.8443656514776626683246547320658e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.218 y[1] (analytic) = -0.88337023746462007359710942080753 y[1] (numeric) = -0.88337023746462007359710942080916 absolute error = 1.63e-30 relative error = 1.8452059293714695136299969620805e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.217 y[1] (analytic) = -0.88296738626661965107147204001199 y[1] (numeric) = -0.88296738626661965107147204001362 absolute error = 1.63e-30 relative error = 1.8460477989928921111603278987794e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.216 y[1] (analytic) = -0.88256413966929632417067432210968 y[1] (numeric) = -0.8825641396692963241706743221113 absolute error = 1.62e-30 relative error = 1.8355606433397879183717001159516e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.215 y[1] (analytic) = -0.88216049722157168736478081558392 y[1] (numeric) = -0.88216049722157168736478081558554 absolute error = 1.62e-30 relative error = 1.8364005247370599922209401595445e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.574 Order of pole = 2.8e-29 TOP MAIN SOLVE Loop x[1] = -1.214 y[1] (analytic) = -0.8817564584719972496768954923663 y[1] (numeric) = -0.88175645847199724967689549236792 absolute error = 1.62e-30 relative error = 1.8372420008210779995461905811842e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.213 y[1] (analytic) = -0.88135202296875517021856791735284 y[1] (numeric) = -0.88135202296875517021856791735446 absolute error = 1.62e-30 relative error = 1.8380850758623953998901880556684e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.572 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = -1.212 y[1] (analytic) = -0.88094719025965900033358843178966 y[1] (numeric) = -0.88094719025965900033358843179128 absolute error = 1.62e-30 relative error = 1.8389297541462222478451862528670e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.571 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = -1.211 y[1] (analytic) = -0.88054195989215443238017817231064 y[1] (numeric) = -0.88054195989215443238017817231226 absolute error = 1.62e-30 relative error = 1.8397760399724865937384526556082e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.571 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = -1.21 y[1] (analytic) = -0.88013633141332005518167351502311 y[1] (numeric) = -0.88013633141332005518167351502473 absolute error = 1.62e-30 relative error = 1.8406239376558961892454315641666e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.209 y[1] (analytic) = -0.87973030436986811617589835647002 y[1] (numeric) = -0.87973030436986811617589835647164 absolute error = 1.62e-30 relative error = 1.8414734515260004996896738895994e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.569 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = -1.208 y[1] (analytic) = -0.87932387830814529029351151829054 y[1] (numeric) = -0.87932387830814529029351151829216 absolute error = 1.62e-30 relative error = 1.8423245859272530248002354501853e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.568 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -1.207 y[1] (analytic) = -0.8789170527741334555957104876714 y[1] (numeric) = -0.87891705277413345559571048767302 absolute error = 1.62e-30 relative error = 1.8431773452190739297089328649283e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.206 y[1] (analytic) = -0.87850982731345047570176667892124 y[1] (numeric) = -0.87850982731345047570176667892286 absolute error = 1.62e-30 relative error = 1.8440317337759129879816205000985e-28 % Correct digits = 29 h = 0.001 NO POLE memory used=122.0MB, alloc=4.4MB, time=7.09 TOP MAIN SOLVE Loop x[1] = -1.205 y[1] (analytic) = -0.8781022014713509890369614203781 y[1] (numeric) = -0.87810220147135098903696142037972 absolute error = 1.62e-30 relative error = 1.8448877559873128384895139902128e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.566 Order of pole = 3.7e-29 TOP MAIN SOLVE Loop x[1] = -1.204 y[1] (analytic) = -0.87769417479272720493158593301797 y[1] (numeric) = -0.87769417479272720493158593301959 absolute error = 1.62e-30 relative error = 1.8457454162579725579385363514084e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.203 y[1] (analytic) = -0.8772857468221097066017626701898 y[1] (numeric) = -0.87728574682210970660176267019142 absolute error = 1.62e-30 relative error = 1.8466047190078115508867023672147e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.202 y[1] (analytic) = -0.87687691710366826104293952945143 y[1] (numeric) = -0.87687691710366826104293952945305 absolute error = 1.62e-30 relative error = 1.8474656686720337590916864953479e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.201 y[1] (analytic) = -0.87646768518121263586700262509067 y[1] (numeric) = -0.87646768518121263586700262509229 absolute error = 1.62e-30 relative error = 1.8483282697011921920429397672297e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.2 y[1] (analytic) = -0.87605805059819342311404752112834 y[1] (numeric) = -0.87605805059819342311404752112996 absolute error = 1.62e-30 relative error = 1.8491925265612537805450327841867e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.562 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = -1.199 y[1] (analytic) = -0.87564801289770287006994306693323 y[1] (numeric) = -0.87564801289770287006994306693485 absolute error = 1.62e-30 relative error = 1.8500584437336645552313057173835e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.561 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -1.198 y[1] (analytic) = -0.87523757162247571712091624852353 y[1] (numeric) = -0.87523757162247571712091624852514 absolute error = 1.61e-30 relative error = 1.8395005564208755521963202267964e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.561 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = -1.197 y[1] (analytic) = -0.87482672631489004267648076565183 y[1] (numeric) = -0.87482672631489004267648076565345 absolute error = 1.62e-30 relative error = 1.8517952770191066455728605469522e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.56 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -1.196 y[1] (analytic) = -0.87441547651696811519212636531058 y[1] (numeric) = -0.8744154765169681151921263653122 absolute error = 1.62e-30 relative error = 1.8526662021730167152055993818200e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.559 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = -1.195 y[1] (analytic) = -0.87400382177037725232328030376495 y[1] (numeric) = -0.87400382177037725232328030376657 absolute error = 1.62e-30 relative error = 1.8535388057211661409589576175765e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.558 Order of pole = 2.6e-29 TOP MAIN SOLVE Loop x[1] = -1.194 y[1] (analytic) = -0.87359176161643068724214666900907 y[1] (numeric) = -0.8735917616164306872421466690107 absolute error = 1.63e-30 relative error = 1.8658600866198262880678074167571e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.193 y[1] (analytic) = -0.87317929559608844214912367100827 y[1] (numeric) = -0.8731792955960884421491236710099 absolute error = 1.63e-30 relative error = 1.8667414678989347617375141996465e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.192 y[1] (analytic) = -0.87276642324995820901059339556994 y[1] (numeric) = -0.87276642324995820901059339557157 absolute error = 1.63e-30 relative error = 1.8676245517446675557335122032023e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.191 y[1] (analytic) = -0.87235314411829623755497291648526 y[1] (numeric) = -0.8723531441182962375549729164869 absolute error = 1.64e-30 relative error = 1.8799725902949302786735106402130e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.19 y[1] (analytic) = -0.87193945774100823055901006698341 y[1] (numeric) = -0.87193945774100823055901006698504 absolute error = 1.63e-30 relative error = 1.8693958456966150256072046134758e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.554 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -1.189 y[1] (analytic) = -0.87152536365765024645640158279211 y[1] (numeric) = -0.87152536365765024645640158279374 absolute error = 1.63e-30 relative error = 1.8702840651236528886055483043890e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.188 y[1] (analytic) = -0.87111086140742960930090574242953 y[1] (numeric) = -0.87111086140742960930090574243116 absolute error = 1.63e-30 relative error = 1.8711740057590997087792701209844e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.187 y[1] (analytic) = -0.87069595052920582611621604295923 y[1] (numeric) = -0.87069595052920582611621604296086 absolute error = 1.63e-30 relative error = 1.8720656723041975092963827030902e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.552 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = -1.186 y[1] (analytic) = -0.87028063056149151166495685849426 y[1] (numeric) = -0.87028063056149151166495685849589 absolute error = 1.63e-30 relative error = 1.8729590694766461489473424172243e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.185 y[1] (analytic) = -0.86986490104245332066925643137952 y[1] (numeric) = -0.86986490104245332066925643138115 absolute error = 1.63e-30 relative error = 1.8738542020106736858378048874010e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.551 Order of pole = 2.6e-29 TOP MAIN SOLVE Loop x[1] = -1.184 y[1] (analytic) = -0.86944876150991288751544693932856 y[1] (numeric) = -0.86944876150991288751544693933019 absolute error = 1.63e-30 relative error = 1.8747510746571070979407690261645e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.55 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = -1.183 y[1] (analytic) = -0.86903221150134777347553576292759 y[1] (numeric) = -0.86903221150134777347553576292922 absolute error = 1.63e-30 relative error = 1.8756496921834433626117417359178e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.182 y[1] (analytic) = -0.86861525055389242147818644390392 y[1] (numeric) = -0.86861525055389242147818644390554 absolute error = 1.62e-30 relative error = 1.8650374823225471493492475697853e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.181 y[1] (analytic) = -0.86819787820433911846204217241719 y[1] (numeric) = -0.86819787820433911846204217241882 absolute error = 1.63e-30 relative error = 1.8774521810295913627812102124218e-28 % Correct digits = 29 h = 0.001 NO POLE memory used=125.8MB, alloc=4.4MB, time=7.30 TOP MAIN SOLVE Loop x[1] = -1.18 y[1] (analytic) = -0.86778009398913896534431896837048 y[1] (numeric) = -0.86778009398913896534431896837211 absolute error = 1.63e-30 relative error = 1.8783560619683918334784333634504e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.547 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = -1.179 y[1] (analytic) = -0.86736189744440285463769002432538 y[1] (numeric) = -0.867361897444402854637690024327 absolute error = 1.62e-30 relative error = 1.8677324940986822573357439836970e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.178 y[1] (analytic) = -0.86694328810590245574857695298421 y[1] (numeric) = -0.86694328810590245574857695298584 absolute error = 1.63e-30 relative error = 1.8801691210519937410922667048108e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.545 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -1.177 y[1] (analytic) = -0.86652426550907120799005792728567 y[1] (numeric) = -0.8665242655090712079900579272873 absolute error = 1.63e-30 relative error = 1.8810783089177510718125650025019e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.544 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = -1.176 y[1] (analytic) = -0.86610482918900532134269691283129 y[1] (numeric) = -0.86610482918900532134269691283292 absolute error = 1.63e-30 relative error = 1.8819892755086971258752436152665e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.544 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = -1.175 y[1] (analytic) = -0.86568497868046478499669236747438 y[1] (numeric) = -0.86568497868046478499669236747601 absolute error = 1.63e-30 relative error = 1.8829020257282915193348331277863e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.174 y[1] (analytic) = -0.86526471351787438370883791828302 y[1] (numeric) = -0.86526471351787438370883791828465 absolute error = 1.63e-30 relative error = 1.8838165644973200908060722462571e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.173 y[1] (analytic) = -0.8648440332353247220078816185301 y[1] (numeric) = -0.86484403323532472200788161853174 absolute error = 1.64e-30 relative error = 1.8962956752616627550626819850816e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.541 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = -1.172 y[1] (analytic) = -0.86442293736657325628196443362994 y[1] (numeric) = -0.86442293736657325628196443363157 absolute error = 1.63e-30 relative error = 1.8856510274539033462213540690517e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.171 y[1] (analytic) = -0.86400142544504533478191260176575 y[1] (numeric) = -0.86400142544504533478191260176738 absolute error = 1.63e-30 relative error = 1.8865709615703358299647423811645e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.17 y[1] (analytic) = -0.86357949700383524557425245904025 y[1] (numeric) = -0.86357949700383524557425245904188 absolute error = 1.63e-30 relative error = 1.8874927040941095918123554754936e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.539 Order of pole = 1.8e-29 TOP MAIN SOLVE Loop x[1] = -1.169 y[1] (analytic) = -0.86315715157570727247791020700319 y[1] (numeric) = -0.86315715157570727247791020700482 absolute error = 1.63e-30 relative error = 1.8884162600337710990394396986912e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.168 y[1] (analytic) = -0.86273438869309675901865292900854 y[1] (numeric) = -0.86273438869309675901865292901017 absolute error = 1.63e-30 relative error = 1.8893416344156475613992913667518e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.167 y[1] (analytic) = -0.86231120788811118043542092763953 y[1] (numeric) = -0.86231120788811118043542092764115 absolute error = 1.62e-30 relative error = 1.8786720909815686897680300333768e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.166 y[1] (analytic) = -0.86188760869253122377279515499178 y[1] (numeric) = -0.8618876086925312237727951549934 absolute error = 1.62e-30 relative error = 1.8795954178497963566019181779470e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.536 Order of pole = 2.3e-29 TOP MAIN SOLVE Loop x[1] = -1.165 y[1] (analytic) = -0.86146359063781187609393713747144 y[1] (numeric) = -0.86146359063781187609393713747306 absolute error = 1.62e-30 relative error = 1.8805205670974227118134594944215e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.535 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = -1.164 y[1] (analytic) = -0.86103915325508352084843235346227 y[1] (numeric) = -0.86103915325508352084843235346389 absolute error = 1.62e-30 relative error = 1.8814475437913956698297268711221e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.163 y[1] (analytic) = -0.86061429607515304242956150222843 y[1] (numeric) = -0.86061429607515304242956150223005 absolute error = 1.62e-30 relative error = 1.8823763530167220114053636985056e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.162 y[1] (analytic) = -0.86018901862850493895561750220035 y[1] (numeric) = -0.86018901862850493895561750220196 absolute error = 1.61e-30 relative error = 1.8716816480254562376468413173065e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.533 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = -1.161 y[1] (analytic) = -0.85976332044530244330997937275969 y[1] (numeric) = -0.8597633204453024433099793727613 absolute error = 1.61e-30 relative error = 1.8726083815324000008989406810406e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.16 y[1] (analytic) = -0.85933720105538865247474738218528 y[1] (numeric) = -0.85933720105538865247474738218689 absolute error = 1.61e-30 relative error = 1.8735369515280967254357380242022e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.532 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = -1.159 y[1] (analytic) = -0.85891065998828766519283698189882 y[1] (numeric) = -0.85891065998828766519283698190043 absolute error = 1.61e-30 relative error = 1.8744673631387394695301382557871e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.158 y[1] (analytic) = -0.85848369677320572799352208988201 y[1] (numeric) = -0.85848369677320572799352208988362 absolute error = 1.61e-30 relative error = 1.8753996215088635420892878280936e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.157 y[1] (analytic) = -0.85805631093903238961651123041341 y[1] (numeric) = -0.85805631093903238961651123041503 absolute error = 1.62e-30 relative error = 1.8879879785828020271818113969928e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.529 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = -1.156 y[1] (analytic) = -0.85762850201434166386973287935281 y[1] (numeric) = -0.85762850201434166386973287935443 absolute error = 1.62e-30 relative error = 1.8889297594413549519796121473132e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.529 Order of pole = 3.5e-29 TOP MAIN SOLVE Loop memory used=129.7MB, alloc=4.4MB, time=7.51 x[1] = -1.155 y[1] (analytic) = -0.8572002695273932009560991003046 y[1] (numeric) = -0.85720026952739320095609910030621 absolute error = 1.61e-30 relative error = 1.8782075288982977667199982384650e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.154 y[1] (analytic) = -0.85677161300613346730460918331194 y[1] (numeric) = -0.85677161300613346730460918331355 absolute error = 1.61e-30 relative error = 1.8791472261213611332942675256704e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.527 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -1.153 y[1] (analytic) = -0.85634253197819693394124751042508 y[1] (numeric) = -0.85634253197819693394124751042669 absolute error = 1.61e-30 relative error = 1.8800887961045378745917383437546e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.152 y[1] (analytic) = -0.85591302597090727343522226767391 y[1] (numeric) = -0.85591302597090727343522226767552 absolute error = 1.61e-30 relative error = 1.8810322441041157337606067462420e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.525 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -1.151 y[1] (analytic) = -0.85548309451127856545618389674488 y[1] (numeric) = -0.8554830945112785654561838967465 absolute error = 1.62e-30 relative error = 1.8936668771058247418989231804569e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.525 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = -1.15 y[1] (analytic) = -0.85505273712601651097815432807059 y[1] (numeric) = -0.8550527371260165109781543280722 absolute error = 1.61e-30 relative error = 1.8829247952722714772919706012614e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.149 y[1] (analytic) = -0.85462195334151965516599005610624 y[1] (numeric) = -0.85462195334151965516599005610786 absolute error = 1.62e-30 relative error = 1.8955749892287448451927653039953e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.148 y[1] (analytic) = -0.8541907426838806189802940032773 y[1] (numeric) = -0.85419074268388061898029400327891 absolute error = 1.61e-30 relative error = 1.8848249220558805420006999046630e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.522 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = -1.147 y[1] (analytic) = -0.85375910467888733953678286738632 y[1] (numeric) = -0.85375910467888733953678286738793 absolute error = 1.61e-30 relative error = 1.8857778396466379578247777261733e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.146 y[1] (analytic) = -0.8533270388520243192562082540819 y[1] (numeric) = -0.85332703885202431925620825408351 absolute error = 1.61e-30 relative error = 1.8867326671916118092318279772432e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.145 y[1] (analytic) = -0.85289454472847388384102135719752 y[1] (numeric) = -0.85289454472847388384102135719913 absolute error = 1.61e-30 relative error = 1.8876894100812392627435463805514e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.144 y[1] (analytic) = -0.85246162183311744911506226121002 y[1] (numeric) = -0.85246162183311744911506226121163 absolute error = 1.61e-30 relative error = 1.8886480737254614006156736451814e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.519 Order of pole = 5.6e-29 TOP MAIN SOLVE Loop x[1] = -1.143 y[1] (analytic) = -0.85202826969053679676264609755514 y[1] (numeric) = -0.85202826969053679676264609755675 absolute error = 1.61e-30 relative error = 1.8896086635538094879039837931277e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.142 y[1] (analytic) = -0.85159448782501535900350928584565 y[1] (numeric) = -0.85159448782501535900350928584726 absolute error = 1.61e-30 relative error = 1.8905711850154916926708030061612e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.518 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = -1.141 y[1] (analytic) = -0.8511602757605395122401699279044 y[1] (numeric) = -0.85116027576053951224016992790601 absolute error = 1.61e-30 relative error = 1.8915356435794802621012431167571e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.14 y[1] (analytic) = -0.85072563302079987971434709265195 y[1] (numeric) = -0.85072563302079987971434709265356 absolute error = 1.61e-30 relative error = 1.8925020447345991573176970640548e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.139 y[1] (analytic) = -0.85029055912919264320917422894271 y[1] (numeric) = -0.85029055912919264320917422894432 absolute error = 1.61e-30 relative error = 1.8934703939896121497006595390725e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.138 y[1] (analytic) = -0.84985505360882086383403226705359 y[1] (numeric) = -0.8498550536088208638340322670552 absolute error = 1.61e-30 relative error = 1.8944406968733113815436059939613e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.515 Order of pole = 5.3e-29 TOP MAIN SOLVE Loop x[1] = -1.137 y[1] (analytic) = -0.84941911598249581192891811328848 y[1] (numeric) = -0.84941911598249581192891811329009 absolute error = 1.61e-30 relative error = 1.8954129589346063938894885422418e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.514 Order of pole = 2.2e-29 TOP MAIN SOLVE Loop x[1] = -1.136 y[1] (analytic) = -0.84898274577273830612535420162564 y[1] (numeric) = -0.84898274577273830612535420162725 absolute error = 1.61e-30 relative error = 1.8963871857426136244163893981309e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.135 y[1] (analytic) = -0.84854594250178006160093453702301 y[1] (numeric) = -0.84854594250178006160093453702462 absolute error = 1.61e-30 relative error = 1.8973633828867463782600127739055e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.134 y[1] (analytic) = -0.84810870569156504756469224238946 y[1] (numeric) = -0.84810870569156504756469224239107 absolute error = 1.61e-30 relative error = 1.8983415559768052746809959688360e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.512 Order of pole = 2.7e-29 TOP MAIN SOLVE Loop x[1] = -1.133 y[1] (analytic) = -0.84767103486375085401056300077308 y[1] (numeric) = -0.84767103486375085401056300077469 absolute error = 1.61e-30 relative error = 1.8993217106430691725054811491523e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.132 y[1] (analytic) = -0.84723292953971006777630796141679 y[1] (numeric) = -0.8472329295397100677763079614184 absolute error = 1.61e-30 relative error = 1.9003038525363865772880124570784e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.131 y[1] (analytic) = -0.84679438924053165794534864835617 y[1] (numeric) = -0.84679438924053165794534864835778 absolute error = 1.61e-30 relative error = 1.9012879873282675331666100333023e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=133.5MB, alloc=4.4MB, time=7.72 x[1] = -1.13 y[1] (analytic) = -0.8463554134870223706290551685152 y[1] (numeric) = -0.8463554134870223706290551685168 absolute error = 1.60e-30 relative error = 1.8904587535015910582865339035381e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.509 Order of pole = 4.8e-29 TOP MAIN SOLVE Loop x[1] = -1.129 y[1] (analytic) = -0.84591600179970813316711755808518 y[1] (numeric) = -0.84591600179970813316711755808679 absolute error = 1.61e-30 relative error = 1.9032622583976227356046962982701e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.508 Order of pole = 6.7e-29 TOP MAIN SOLVE Loop x[1] = -1.128 y[1] (analytic) = -0.84547615369883546778371842660505 y[1] (numeric) = -0.84547615369883546778371842660665 absolute error = 1.60e-30 relative error = 1.8924247514258470913866580496733e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.507 Order of pole = 2.7e-29 TOP MAIN SOLVE Loop x[1] = -1.127 y[1] (analytic) = -0.84503586870437291473731315281279 y[1] (numeric) = -0.8450358687043729147373131528144 absolute error = 1.61e-30 relative error = 1.9052445696399686186992212887437e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.126 y[1] (analytic) = -0.84459514633601246500191175018609 y[1] (numeric) = -0.8445951463360124650019117501877 absolute error = 1.61e-30 relative error = 1.9062387547269659742302349304926e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.125 y[1] (analytic) = -0.84415398611317100251784414827165 y[1] (numeric) = -0.84415398611317100251784414827325 absolute error = 1.60e-30 relative error = 1.8953887872603102898630035699231e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.505 Order of pole = 2.2e-29 TOP MAIN SOLVE Loop x[1] = -1.124 y[1] (analytic) = -0.8437123875549917560500780235181 y[1] (numeric) = -0.8437123875549917560500780235197 absolute error = 1.60e-30 relative error = 1.8963808326160372842395122852729e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.504 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = -1.123 y[1] (analytic) = -0.84327035018034576069224545543492 y[1] (numeric) = -0.84327035018034576069224545543652 absolute error = 1.60e-30 relative error = 1.8973749043326573495199380159645e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.122 y[1] (analytic) = -0.84282787350783332905462157552018 y[1] (numeric) = -0.84282787350783332905462157552178 absolute error = 1.60e-30 relative error = 1.8983710082354430287179367352801e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.503 Order of pole = 4.1e-29 TOP MAIN SOLVE Loop x[1] = -1.121 y[1] (analytic) = -0.84238495705578553217438501251365 y[1] (numeric) = -0.84238495705578553217438501251525 absolute error = 1.60e-30 relative error = 1.8993691501711404387793377067100e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.502 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = -1.12 y[1] (analytic) = -0.84194160034226569018657631307918 y[1] (numeric) = -0.84194160034226569018657631308079 absolute error = 1.61e-30 relative error = 1.9122466443581165041159680422205e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.501 Order of pole = 2.9e-29 TOP MAIN SOLVE Loop x[1] = -1.119 y[1] (analytic) = -0.84149780288507087279425662690147 y[1] (numeric) = -0.84149780288507087279425662690308 absolute error = 1.61e-30 relative error = 1.9132551439589305069369251507507e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.501 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = -1.118 y[1] (analytic) = -0.84105356420173340957645478425806 y[1] (numeric) = -0.84105356420173340957645478425967 absolute error = 1.61e-30 relative error = 1.9142657121108503513345529853185e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.117 y[1] (analytic) = -0.84060888380952241017257645721684 y[1] (numeric) = -0.84060888380952241017257645721845 absolute error = 1.61e-30 relative error = 1.9152783547845749449252773441197e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.499 Order of pole = 4.8e-29 TOP MAIN SOLVE Loop x[1] = -1.116 y[1] (analytic) = -0.84016376122544529438203437749157 y[1] (numeric) = -0.84016376122544529438203437749318 absolute error = 1.61e-30 relative error = 1.9162930779729033598655108439827e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.498 Order of pole = 9.3e-29 TOP MAIN SOLVE Loop x[1] = -1.115 y[1] (analytic) = -0.83971819596624933221794357940112 y[1] (numeric) = -0.83971819596624933221794357940273 absolute error = 1.61e-30 relative error = 1.9173098876908349013014662310023e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.498 Order of pole = 4.5e-29 TOP MAIN SOLVE Loop x[1] = -1.114 y[1] (analytic) = -0.83927218754842319395381034001953 y[1] (numeric) = -0.83927218754842319395381034002114 absolute error = 1.61e-30 relative error = 1.9183287899756697143450018647044e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.497 Order of pole = 2.5e-29 TOP MAIN SOLVE Loop x[1] = -1.113 y[1] (analytic) = -0.83882573548819851020222789512899 y[1] (numeric) = -0.8388257354881985102022278951306 absolute error = 1.61e-30 relative error = 1.9193497908871099329492499229302e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.496 Order of pole = 4.6e-29 TOP MAIN SOLVE Loop x[1] = -1.112 y[1] (analytic) = -0.83837883930155144206467611361151 y[1] (numeric) = -0.83837883930155144206467611361312 absolute error = 1.61e-30 relative error = 1.9203728965073613740819693546672e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.111 y[1] (analytic) = -0.83793149850420426139160610900939 y[1] (numeric) = -0.837931498504204261391606109011 absolute error = 1.61e-30 relative error = 1.9213981129412357806189527415753e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.11 y[1] (analytic) = -0.83748371261162694119207424968141 y[1] (numeric) = -0.83748371261162694119207424968302 absolute error = 1.61e-30 relative error = 1.9224254463162536164044007781834e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.109 y[1] (analytic) = -0.83703548113903875623227319276935 y[1] (numeric) = -0.83703548113903875623227319277096 absolute error = 1.61e-30 relative error = 1.9234549027827474169499618254150e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.108 y[1] (analytic) = -0.83658680360140989386239040651503 y[1] (numeric) = -0.83658680360140989386239040651664 absolute error = 1.61e-30 relative error = 1.9244864885139656992691187296133e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.493 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = -1.107 y[1] (analytic) = -0.83613767951346307511130715473607 y[1] (numeric) = -0.83613767951346307511130715473768 absolute error = 1.61e-30 relative error = 1.9255202097061774343687926448823e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.492 Order of pole = 7.7e-29 TOP MAIN SOLVE Loop x[1] = -1.106 y[1] (analytic) = -0.83568810838967518608873309084051 y[1] (numeric) = -0.83568810838967518608873309084212 absolute error = 1.61e-30 relative error = 1.9265560725787770859454257836396e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.491 Order of pole = 4.6e-29 TOP MAIN SOLVE Loop memory used=137.3MB, alloc=4.4MB, time=7.93 x[1] = -1.105 y[1] (analytic) = -0.83523808974427891973445344095598 y[1] (numeric) = -0.83523808974427891973445344095759 absolute error = 1.61e-30 relative error = 1.9275940833743902188584037004126e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.104 y[1] (analytic) = -0.83478762309126442795444724084365 y[1] (numeric) = -0.83478762309126442795444724084527 absolute error = 1.62e-30 relative error = 1.9406133430692839026004753456820e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.49 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = -1.103 y[1] (analytic) = -0.83433670794438098418371622349463 y[1] (numeric) = -0.83433670794438098418371622349625 absolute error = 1.62e-30 relative error = 1.9416621426034551717450516616979e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.489 Order of pole = 2.4e-29 TOP MAIN SOLVE Loop x[1] = -1.102 y[1] (analytic) = -0.83388534381713865641574472785561 y[1] (numeric) = -0.83388534381713865641574472785723 absolute error = 1.62e-30 relative error = 1.9427131223872992445331972281517e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.488 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -1.101 y[1] (analytic) = -0.83343353022280999073859140814839 y[1] (numeric) = -0.83343353022280999073859140815001 absolute error = 1.62e-30 relative error = 1.9437662887967915704029818404506e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.1 y[1] (analytic) = -0.83298126667443170541769356183636 y[1] (numeric) = -0.83298126667443170541769356183798 absolute error = 1.62e-30 relative error = 1.9448216482318230420439754153001e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.099 y[1] (analytic) = -0.83252855268480639556554455650889 y[1] (numeric) = -0.8325285526848063955655445565105 absolute error = 1.61e-30 relative error = 1.9338676070723819385593844743037e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.486 Order of pole = 4.1e-29 TOP MAIN SOLVE Loop x[1] = -1.098 y[1] (analytic) = -0.8320753877665042484384841158165 y[1] (numeric) = -0.83207538776650424843848411581811 absolute error = 1.61e-30 relative error = 1.9349208300964621170064047191721e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.485 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = -1.097 y[1] (analytic) = -0.83162177143186476940092011606585 y[1] (numeric) = -0.83162177143186476940092011606746 absolute error = 1.61e-30 relative error = 1.9359762518337438552172806933111e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.484 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = -1.096 y[1] (analytic) = -0.83116770319299851859737904209964 y[1] (numeric) = -0.83116770319299851859737904210125 absolute error = 1.61e-30 relative error = 1.9370338787407808252266680669758e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.095 y[1] (analytic) = -0.83071318256178885837286034752405 y[1] (numeric) = -0.83071318256178885837286034752566 absolute error = 1.61e-30 relative error = 1.9380937172984460274753324717121e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.483 Order of pole = 3.0e-29 TOP MAIN SOLVE Loop x[1] = -1.094 y[1] (analytic) = -0.83025820904989371148204765404158 y[1] (numeric) = -0.83025820904989371148204765404319 absolute error = 1.61e-30 relative error = 1.9391557740120439101767391003810e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.482 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = -1.093 y[1] (analytic) = -0.829802782168747330128007001391 y[1] (numeric) = -0.82980278216874733012800700139261 absolute error = 1.61e-30 relative error = 1.9402200554114231034097792991822e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.092 y[1] (analytic) = -0.82934690142956207587107921693591 y[1] (numeric) = -0.82934690142956207587107921693752 absolute error = 1.61e-30 relative error = 1.9412865680510897718629454287201e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.091 y[1] (analytic) = -0.8288905663433302104487499059786 y[1] (numeric) = -0.82889056634333021044874990598021 absolute error = 1.61e-30 relative error = 1.9423553185103215901839599833449e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.09 y[1] (analytic) = -0.82843377642082569754735656406296 y[1] (numeric) = -0.82843377642082569754735656406457 absolute error = 1.61e-30 relative error = 1.9434263133932823449177962689364e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.479 Order of pole = 7.0e-29 TOP MAIN SOLVE Loop x[1] = -1.089 y[1] (analytic) = -0.82797653117260601556656787447792 y[1] (numeric) = -0.82797653117260601556656787447953 absolute error = 1.61e-30 relative error = 1.9444995593291371670451980213864e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.088 y[1] (analytic) = -0.82751883010901398141764537144525 y[1] (numeric) = -0.82751883010901398141764537144686 absolute error = 1.61e-30 relative error = 1.9455750629721683991632163956380e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.087 y[1] (analytic) = -0.82706067274017958539657231559006 y[1] (numeric) = -0.82706067274017958539657231559168 absolute error = 1.62e-30 relative error = 1.9587438423745746610148310034022e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.477 Order of pole = 3.5e-29 TOP MAIN SOLVE Loop x[1] = -1.086 y[1] (analytic) = -0.82660205857602183717320883672012 y[1] (numeric) = -0.82660205857602183717320883672174 absolute error = 1.62e-30 relative error = 1.9598305898133812571604348273217e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.085 y[1] (analytic) = -0.82614298712625062293770614310606 y[1] (numeric) = -0.82614298712625062293770614310768 absolute error = 1.62e-30 relative error = 1.9609196292220449185752648293789e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.084 y[1] (analytic) = -0.82568345790036857374548586973706 y[1] (numeric) = -0.82568345790036857374548586973868 absolute error = 1.62e-30 relative error = 1.9620109673984505948633243151282e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.475 Order of pole = 6.7e-29 TOP MAIN SOLVE Loop x[1] = -1.083 y[1] (analytic) = -0.82522347040767294510216343375631 y[1] (numeric) = -0.82522347040767294510216343375793 absolute error = 1.62e-30 relative error = 1.9631046111663491122255369986281e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.474 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = -1.082 y[1] (analytic) = -0.82476302415725750782986657674292 y[1] (numeric) = -0.82476302415725750782986657674454 absolute error = 1.62e-30 relative error = 1.9642005673754776789029795865305e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.473 Order of pole = 2.65e-28 TOP MAIN SOLVE Loop x[1] = -1.081 y[1] (analytic) = -0.8243021186580144502564720939379 y[1] (numeric) = -0.82430211865801445025647209393953 absolute error = 1.63e-30 relative error = 1.9774303172405803243131522878573e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.08 y[1] (analytic) = -0.82384075341863629176935507310251 y[1] (numeric) = -0.82384075341863629176935507310414 absolute error = 1.63e-30 relative error = 1.9785377128238669552410393746263e-28 % memory used=141.1MB, alloc=4.4MB, time=8.13 Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.079 y[1] (analytic) = -0.82337892794761780777531578358861 y[1] (numeric) = -0.82337892794761780777531578359023 absolute error = 1.62e-30 relative error = 1.9675023795399608378702470640787e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.078 y[1] (analytic) = -0.82291664175325796610841966248861 y[1] (numeric) = -0.82291664175325796610841966249023 absolute error = 1.62e-30 relative error = 1.9686076545353645389208077211149e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.077 y[1] (analytic) = -0.8224538943436618749275556324629 y[1] (numeric) = -0.82245389434366187492755563246452 absolute error = 1.62e-30 relative error = 1.9697152766147447469743853447558e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.47 Order of pole = 4.7e-29 TOP MAIN SOLVE Loop x[1] = -1.076 y[1] (analytic) = -0.82199068522674274214558724801428 y[1] (numeric) = -0.8219906852267427421455872480159 absolute error = 1.62e-30 relative error = 1.9708252527863252828631001340234e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.469 Order of pole = 2.62e-28 TOP MAIN SOLVE Loop x[1] = -1.075 y[1] (analytic) = -0.82152701391022384643203989654275 y[1] (numeric) = -0.82152701391022384643203989654437 absolute error = 1.62e-30 relative error = 1.9719375900851788324929266118743e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.468 Order of pole = 4.5e-29 TOP MAIN SOLVE Loop x[1] = -1.074 y[1] (analytic) = -0.82106287990164051983133547037153 y[1] (numeric) = -0.82106287990164051983133547037315 absolute error = 1.62e-30 relative error = 1.9730522955733529180349563875542e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.073 y[1] (analytic) = -0.82059828270834214203865356894012 y[1] (numeric) = -0.82059828270834214203865356894174 absolute error = 1.62e-30 relative error = 1.9741693763399965724230141826319e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.467 Order of pole = 9.8e-29 TOP MAIN SOLVE Loop x[1] = -1.072 y[1] (analytic) = -0.82013322183749414637556537931749 y[1] (numeric) = -0.82013322183749414637556537931911 absolute error = 1.62e-30 relative error = 1.9752888395014877217326139413746e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.466 Order of pole = 3.61e-28 TOP MAIN SOLVE Loop x[1] = -1.071 y[1] (analytic) = -0.81966769679608003750765291085383 y[1] (numeric) = -0.81966769679608003750765291085545 absolute error = 1.62e-30 relative error = 1.9764106922015612800503179080770e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.465 Order of pole = 3.76e-28 TOP MAIN SOLVE Loop x[1] = -1.07 y[1] (analytic) = -0.81920170709090342094639221886951 y[1] (numeric) = -0.81920170709090342094639221887113 absolute error = 1.62e-30 relative error = 1.9775349416114379614769238962295e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.465 Order of pole = 8.5e-29 TOP MAIN SOLVE Loop x[1] = -1.069 y[1] (analytic) = -0.81873525222859004437764463543247 y[1] (numeric) = -0.81873525222859004437764463543409 absolute error = 1.62e-30 relative error = 1.9786615949299538139425572750242e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.068 y[1] (analytic) = -0.8182683317155898508591648251087 y[1] (numeric) = -0.81826833171558985085916482511032 absolute error = 1.62e-30 relative error = 1.9797906593836904795466871632767e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.067 y[1] (analytic) = -0.81780094505817904392959869264274 y[1] (numeric) = -0.81780094505817904392959869264437 absolute error = 1.63e-30 relative error = 1.9931500566852981996662083970059e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.462 Order of pole = 1.69e-28 TOP MAIN SOLVE Loop x[1] = -1.066 y[1] (analytic) = -0.81733309176246216467150778034594 y[1] (numeric) = -0.81733309176246216467150778034757 absolute error = 1.63e-30 relative error = 1.9942909646361407311706394210782e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.462 Order of pole = 2.54e-28 TOP MAIN SOLVE Loop x[1] = -1.065 y[1] (analytic) = -0.81686477133437418077101979799745 y[1] (numeric) = -0.81686477133437418077101979799908 absolute error = 1.63e-30 relative error = 1.9954343205881482233378888772348e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.461 Order of pole = 2.52e-28 TOP MAIN SOLVE Loop x[1] = -1.064 y[1] (analytic) = -0.81639598327968258761676731970674 y[1] (numeric) = -0.81639598327968258761676731970837 absolute error = 1.63e-30 relative error = 1.9965801319255037323215840079883e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.46 Order of pole = 2.833e-27 TOP MAIN SOLVE Loop x[1] = -1.063 y[1] (analytic) = -0.81592672710398952148083845280427 y[1] (numeric) = -0.8159267271039895214808384528059 absolute error = 1.63e-30 relative error = 1.9977284060609736332427326151212e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.459 Order of pole = 1.209e-27 TOP MAIN SOLVE Loop x[1] = -1.062 y[1] (analytic) = -0.81545700231273388482452442572805 y[1] (numeric) = -0.81545700231273388482452442572968 absolute error = 1.63e-30 relative error = 1.9988791504360431722547049041539e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.061 y[1] (analytic) = -0.8149868084111934837717095473155 y[1] (numeric) = -0.81498680841119348377170954731713 absolute error = 1.63e-30 relative error = 2.0000323725210527838223250580256e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.06 y[1] (analytic) = -0.8145161449044871777928088510994 y[1] (numeric) = -0.81451614490448717779280885110104 absolute error = 1.64e-30 relative error = 2.0134653072988648419195962883450e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.059 y[1] (analytic) = -0.81404501129757704164221794730035 y[1] (numeric) = -0.81404501129757704164221794730199 absolute error = 1.64e-30 relative error = 2.0146306128525516904439196445165e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.058 y[1] (analytic) = -0.81357340709527053959229815431042 y[1] (numeric) = -0.81357340709527053959229815431206 absolute error = 1.64e-30 relative error = 2.0157984340409417972527337474341e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.456 Order of pole = 6.05e-28 TOP MAIN SOLVE Loop x[1] = -1.057 y[1] (analytic) = -0.81310133180222271200697786262905 y[1] (numeric) = -0.81310133180222271200697786263069 absolute error = 1.64e-30 relative error = 2.0169687784977218743233814004114e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.455 Order of pole = 6.5e-29 TOP MAIN SOLVE Loop x[1] = -1.056 y[1] (analytic) = -0.81262878492293837429810828944388 y[1] (numeric) = -0.81262878492293837429810828944552 absolute error = 1.64e-30 relative error = 2.0181416538863083428003148863821e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.454 Order of pole = 2.04e-28 TOP MAIN SOLVE Loop x[1] = -1.055 y[1] (analytic) = -0.81215576596177432830776830329865 y[1] (numeric) = -0.81215576596177432830776830330028 absolute error = 1.63e-30 relative error = 2.0070041589493795234163769780494e-28 % Correct digits = 29 h = 0.001 memory used=144.9MB, alloc=4.4MB, time=8.34 NO POLE TOP MAIN SOLVE Loop x[1] = -1.054 y[1] (analytic) = -0.8116822744229415861597688274566 y[1] (numeric) = -0.81168227442294158615976882745824 absolute error = 1.64e-30 relative error = 2.0204950282620667750579884327642e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.053 y[1] (analytic) = -0.8112083098105076066236624594993 y[1] (numeric) = -0.81120830981050760662366245950094 absolute error = 1.64e-30 relative error = 2.0216755427260010899315813114534e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.052 y[1] (analytic) = -0.81073387162839854403461836519281 y[1] (numeric) = -0.81073387162839854403461836519445 absolute error = 1.64e-30 relative error = 2.0228586190755543121807513403176e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.451 Order of pole = 4.79e-28 TOP MAIN SOLVE Loop x[1] = -1.051 y[1] (analytic) = -0.81025895938040150981257620845091 y[1] (numeric) = -0.81025895938040150981257620845255 absolute error = 1.64e-30 relative error = 2.0240442651249358239048957240427e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.451 Order of pole = 1.09e-28 TOP MAIN SOLVE Loop x[1] = -1.05 y[1] (analytic) = -0.80978357257016684662414585801889 y[1] (numeric) = -0.80978357257016684662414585802052 absolute error = 1.63e-30 relative error = 2.0128835101291985167709637404983e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.049 y[1] (analytic) = -0.80930771070121041523077185693212 y[1] (numeric) = -0.80930771070121041523077185693376 absolute error = 1.64e-30 relative error = 2.0264232977331340114914252740816e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.048 y[1] (analytic) = -0.8088313732769158940667331444573 y[1] (numeric) = -0.80883137327691589406673314445893 absolute error = 1.63e-30 relative error = 2.0152531836100580669362715745975e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.449 Order of pole = 8.6e-29 TOP MAIN SOLVE Loop x[1] = -1.047 y[1] (analytic) = -0.80835455980053709159059927363556 y[1] (numeric) = -0.80835455980053709159059927363719 absolute error = 1.63e-30 relative error = 2.0164418945100097720949685253641e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.046 y[1] (analytic) = -0.80787726977520027145381436219776 y[1] (numeric) = -0.80787726977520027145381436219939 absolute error = 1.63e-30 relative error = 2.0176331987327275532592832747623e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.045 y[1] (analytic) = -0.80739950270390649053012924194074 y[1] (numeric) = -0.80739950270390649053012924194237 absolute error = 1.63e-30 relative error = 2.0188271042294183853419898037761e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.446 Order of pole = 1.12e-28 TOP MAIN SOLVE Loop x[1] = -1.044 y[1] (analytic) = -0.80692125808953394984965072301643 y[1] (numeric) = -0.80692125808953394984965072301806 absolute error = 1.63e-30 relative error = 2.0200236189825839321274931264159e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.043 y[1] (analytic) = -0.80644253543484035848132455631469 y[1] (numeric) = -0.80644253543484035848132455631632 absolute error = 1.63e-30 relative error = 2.0212227510061715363040310926840e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.445 Order of pole = 1.88e-28 TOP MAIN SOLVE Loop x[1] = -1.042 y[1] (analytic) = -0.80596333424246531040771555048592 y[1] (numeric) = -0.80596333424246531040771555048755 absolute error = 1.63e-30 relative error = 2.0224245083457260771713741729437e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.444 Order of pole = 1.30e-28 TOP MAIN SOLVE Loop x[1] = -1.041 y[1] (analytic) = -0.80548365401493267443599437136622 y[1] (numeric) = -0.80548365401493267443599437136785 absolute error = 1.63e-30 relative error = 2.0236288990785427018371131485508e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.04 y[1] (analytic) = -0.80500349425465299718908581179884 y[1] (numeric) = -0.80500349425465299718908581180047 absolute error = 1.63e-30 relative error = 2.0248359313138204357592288073748e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.039 y[1] (analytic) = -0.80452285446392591922097776019939 y[1] (numeric) = -0.80452285446392591922097776020102 absolute error = 1.63e-30 relative error = 2.0260456131928166785376279398345e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.442 Order of pole = 1.25e-28 TOP MAIN SOLVE Loop x[1] = -1.038 y[1] (analytic) = -0.80404173414494260430023370774418 y[1] (numeric) = -0.80404173414494260430023370774581 absolute error = 1.63e-30 relative error = 2.0272579528890025909027098707318e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.441 Order of pole = 5.7e-29 TOP MAIN SOLVE Loop x[1] = -1.037 y[1] (analytic) = -0.80356013279978818190579440777151 y[1] (numeric) = -0.80356013279978818190579440777314 absolute error = 1.63e-30 relative error = 2.0284729586082193788948012033550e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.036 y[1] (analytic) = -0.80307804993044420297919622782263 y[1] (numeric) = -0.80307804993044420297919622782425 absolute error = 1.62e-30 relative error = 2.0172385487815420120641943889942e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.44 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = -1.035 y[1] (analytic) = -0.80259548503879110897737480560451 y[1] (numeric) = -0.80259548503879110897737480560613 absolute error = 1.62e-30 relative error = 2.0184514244080279505064133062647e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.034 y[1] (analytic) = -0.80211243762661071427026282587016 y[1] (numeric) = -0.80211243762661071427026282587178 absolute error = 1.62e-30 relative error = 2.0196669743626666078069412581995e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.438 Order of pole = 9.9e-29 TOP MAIN SOLVE Loop x[1] = -1.033 y[1] (analytic) = -0.80162890719558870192743006656715 y[1] (numeric) = -0.80162890719558870192743006656878 absolute error = 1.63e-30 relative error = 2.0333598069739989987693217928312e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.032 y[1] (analytic) = -0.80114489324731713293805231033253 y[1] (numeric) = -0.80114489324731713293805231033415 absolute error = 1.62e-30 relative error = 2.0221061304323867284828374572277e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.437 Order of pole = 3.6e-29 TOP MAIN SOLVE Loop x[1] = -1.031 y[1] (analytic) = -0.80066039528329696890853327218613 y[1] (numeric) = -0.80066039528329696890853327218776 absolute error = 1.63e-30 relative error = 2.0358194430527046645514549325951e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.436 Order of pole = 8.0e-29 TOP MAIN SOLVE Loop x[1] = -1.03 y[1] (analytic) = -0.80017541280494060828214034671685 y[1] (numeric) = -0.80017541280494060828214034671848 absolute error = 1.63e-30 relative error = 2.0370533434490149550121169538137e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.436 Order of pole = 4.5e-29 memory used=148.7MB, alloc=4.4MB, time=8.56 TOP MAIN SOLVE Loop x[1] = -1.029 y[1] (analytic) = -0.79968994531357443612505071873144 y[1] (numeric) = -0.79968994531357443612505071873306 absolute error = 1.62e-30 relative error = 2.0257851302166436143970817768296e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.435 Order of pole = 5.2e-29 TOP MAIN SOLVE Loop x[1] = -1.028 y[1] (analytic) = -0.79920399231044138752323920075595 y[1] (numeric) = -0.79920399231044138752323920075757 absolute error = 1.62e-30 relative error = 2.0270169013003754623728839363517e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.027 y[1] (analytic) = -0.79871755329670352463467304940031 y[1] (numeric) = -0.79871755329670352463467304940193 absolute error = 1.62e-30 relative error = 2.0282514054104062730789932797226e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.433 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -1.026 y[1] (analytic) = -0.7982306277734446274413119608184 y[1] (numeric) = -0.79823062777344462744131196082002 absolute error = 1.62e-30 relative error = 2.0294886510666332856448980254145e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.433 Order of pole = 7.7e-29 TOP MAIN SOLVE Loop x[1] = -1.025 y[1] (analytic) = -0.79774321524167279824544344366491 y[1] (numeric) = -0.79774321524167279824544344366653 absolute error = 1.62e-30 relative error = 2.0307286468230608836266793357865e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.024 y[1] (analytic) = -0.7972553152023230799549148063568 y[1] (numeric) = -0.79725531520232307995491480635842 absolute error = 1.62e-30 relative error = 2.0319714012679680758417529241027e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.023 y[1] (analytic) = -0.7967669271562600882018530643258 y[1] (numeric) = -0.79676692715626008820185306432743 absolute error = 1.63e-30 relative error = 2.0457676447711391607342213225271e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.022 y[1] (analytic) = -0.79627805060428065733949316247976 y[1] (numeric) = -0.79627805060428065733949316248139 absolute error = 1.63e-30 relative error = 2.0470236480372945158723593818806e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.43 Order of pole = 2.7e-29 TOP MAIN SOLVE Loop x[1] = -1.021 y[1] (analytic) = -0.79578868504711650036176300839759 y[1] (numeric) = -0.79578868504711650036176300839922 absolute error = 1.63e-30 relative error = 2.0482824531533670889716238642570e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.02 y[1] (analytic) = -0.79529882998543688279030091293498 y[1] (numeric) = -0.7952988299854368827903009129366 absolute error = 1.62e-30 relative error = 2.0369701789070463431564271695399e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.428 Order of pole = 1.62e-28 TOP MAIN SOLVE Loop x[1] = -1.019 y[1] (analytic) = -0.79480848491985131057360712692719 y[1] (numeric) = -0.79480848491985131057360712692882 absolute error = 1.63e-30 relative error = 2.0508085040943789293689607926633e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.428 Order of pole = 2.39e-28 TOP MAIN SOLVE Loop x[1] = -1.018 y[1] (analytic) = -0.79431764935091223204305623549979 y[1] (numeric) = -0.79431764935091223204305623550142 absolute error = 1.63e-30 relative error = 2.0520757675874094950072476880044e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.017 y[1] (analytic) = -0.79382632277911775397052121503755 y[1] (numeric) = -0.79382632277911775397052121503918 absolute error = 1.63e-30 relative error = 2.0533458682668899696566763070627e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.426 Order of pole = 8.9e-29 TOP MAIN SOLVE Loop x[1] = -1.016 y[1] (analytic) = -0.79333450470491437177238296196316 y[1] (numeric) = -0.79333450470491437177238296196479 absolute error = 1.63e-30 relative error = 2.0546188150561892978663996509589e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.015 y[1] (analytic) = -0.79284219462869971390472105692811 y[1] (numeric) = -0.79284219462869971390472105692974 absolute error = 1.63e-30 relative error = 2.0558946169147244483401657141201e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.014 y[1] (analytic) = -0.79234939205082530049450242255327 y[1] (numeric) = -0.7923493920508253004945024225549 absolute error = 1.63e-30 relative error = 2.0571732828381390992857473623981e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.013 y[1] (analytic) = -0.79185609647159931625160435715196 y[1] (numeric) = -0.79185609647159931625160435715359 absolute error = 1.63e-30 relative error = 2.0584548218584833796325553414542e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.423 Order of pole = 2.23e-28 TOP MAIN SOLVE Loop x[1] = -1.012 y[1] (analytic) = -0.79136230739128939770652717054556 y[1] (numeric) = -0.79136230739128939770652717054719 absolute error = 1.63e-30 relative error = 2.0597392430443946733953562240706e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.423 Order of pole = 1.63e-28 TOP MAIN SOLVE Loop x[1] = -1.011 y[1] (analytic) = -0.79086802431012543481866930070553 y[1] (numeric) = -0.79086802431012543481866930070716 absolute error = 1.63e-30 relative error = 2.0610265555012794945194818500831e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.01 y[1] (analytic) = -0.79037324672830238700005434103398 y[1] (numeric) = -0.7903732467283023870000543410356 absolute error = 1.62e-30 relative error = 2.0496645182587878724867773773962e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.421 Order of pole = 7.3e-29 TOP MAIN SOLVE Loop x[1] = -1.009 y[1] (analytic) = -0.78987797414598311359941484708087 y[1] (numeric) = -0.78987797414598311359941484708249 absolute error = 1.62e-30 relative error = 2.0509497074551872184118945397933e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.421 Order of pole = 2.32e-28 TOP MAIN SOLVE Loop x[1] = -1.008 y[1] (analytic) = -0.78938220606330121889155210778431 y[1] (numeric) = -0.78938220606330121889155210778593 absolute error = 1.62e-30 relative error = 2.0522377975544217498607901833853e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.42 Order of pole = 1.19e-28 TOP MAIN SOLVE Loop x[1] = -1.007 y[1] (analytic) = -0.78888594198036391161690424925101 y[1] (numeric) = -0.78888594198036391161690424925263 absolute error = 1.62e-30 relative error = 2.0535287977540399280811758803576e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.006 y[1] (analytic) = -0.78838918139725487911626707794983 y[1] (numeric) = -0.78838918139725487911626707795146 absolute error = 1.63e-30 relative error = 2.0675068081365170748857203289189e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.005 y[1] (analytic) = -0.78789192381403717610562295419854 y[1] (numeric) = -0.78789192381403717610562295420017 absolute error = 1.63e-30 relative error = 2.0688116615150405560965682152577e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.418 Order of pole = 3.05e-28 memory used=152.5MB, alloc=4.4MB, time=8.78 TOP MAIN SOLVE Loop x[1] = -1.004 y[1] (analytic) = -0.78739416873075612813604270515221 y[1] (numeric) = -0.78739416873075612813604270515384 absolute error = 1.63e-30 relative error = 2.0701194709474245313834060618266e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -1.003 y[1] (analytic) = -0.78689591564744224978363412826506 y[1] (numeric) = -0.7868959156474422497836341282667 absolute error = 1.64e-30 relative error = 2.0841384068573297155873676675068e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.416 Order of pole = 8.4e-29 TOP MAIN SOLVE Loop x[1] = -1.002 y[1] (analytic) = -0.7863971640641141776145179904516 y[1] (numeric) = -0.78639716406411417761451799045324 absolute error = 1.64e-30 relative error = 2.0854602164693112159713681829092e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.416 Order of pole = 3.78e-28 TOP MAIN SOLVE Loop x[1] = -1.001 y[1] (analytic) = -0.78589791348078161796981858391858 y[1] (numeric) = -0.78589791348078161796981858392022 absolute error = 1.64e-30 relative error = 2.0867850287785560228465085628218e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.415 Order of pole = 1.288e-27 TOP MAIN SOLVE Loop x[1] = -1 y[1] (analytic) = -0.78539816339744830961566084581988 y[1] (numeric) = -0.78539816339744830961566084582151 absolute error = 1.63e-30 relative error = 2.0753804579183151784262442743776e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.415 Order of pole = 1.288e-27 TOP MAIN SOLVE Loop x[1] = -0.999 y[1] (analytic) = -0.78489791331411500130316977438783 y[1] (numeric) = -0.78489791331411500130316977438946 absolute error = 1.63e-30 relative error = 2.0767031894855813878669846526114e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.414 Order of pole = 2.90e-28 TOP MAIN SOLVE Loop x[1] = -0.998 y[1] (analytic) = -0.78439716273078244428347036784842 y[1] (numeric) = -0.78439716273078244428347036785005 absolute error = 1.63e-30 relative error = 2.0780289341248444448457496447696e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.997 y[1] (analytic) = -0.78389591114745439982268756300563 y[1] (numeric) = -0.78389591114745439982268756300726 absolute error = 1.63e-30 relative error = 2.0793577014759929754400445173824e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.412 Order of pole = 2.7e-29 TOP MAIN SOLVE Loop x[1] = -0.996 y[1] (analytic) = -0.78339415806414066176194564660061 y[1] (numeric) = -0.78339415806414066176194564660224 absolute error = 1.63e-30 relative error = 2.0806895012185464861109033385727e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.995 y[1] (analytic) = -0.78289190298086009416736534307272 y[1] (numeric) = -0.78289190298086009416736534307435 absolute error = 1.63e-30 relative error = 2.0820243430718554127997519286933e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.994 y[1] (analytic) = -0.78238914539764368411505423577632 y[1] (numeric) = -0.78238914539764368411505423577795 absolute error = 1.63e-30 relative error = 2.0833622367953023745166300331321e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.41 Order of pole = 2.62e-28 TOP MAIN SOLVE Loop x[1] = -0.993 y[1] (analytic) = -0.78188588481453760965608234358511 y[1] (numeric) = -0.78188588481453760965608234358674 absolute error = 1.63e-30 relative error = 2.0847031921885046398821685305353e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.992 y[1] (analytic) = -0.78138212073160632300642953963571 y[1] (numeric) = -0.78138212073160632300642953963735 absolute error = 1.64e-30 relative error = 2.0988450547914657772099873279492e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.409 Order of pole = 1.75e-28 TOP MAIN SOLVE Loop x[1] = -0.991 y[1] (analytic) = -0.7808778526489356490068850521564 y[1] (numeric) = -0.78087785264893564900688505215804 absolute error = 1.64e-30 relative error = 2.1002004275530471473806454917924e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.99 y[1] (analytic) = -0.78037308006663589889787151727255 y[1] (numeric) = -0.78037308006663589889787151727419 absolute error = 1.64e-30 relative error = 2.1015589105917912146660471595093e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.407 Order of pole = 4.6e-29 TOP MAIN SOLVE Loop x[1] = -0.989 y[1] (analytic) = -0.77986780248484499945415694869755 y[1] (numeric) = -0.77986780248484499945415694869919 absolute error = 1.64e-30 relative error = 2.1029205139314233472749316007296e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.988 y[1] (analytic) = -0.77936201940373163752440753756922 y[1] (numeric) = -0.77936201940373163752440753757086 absolute error = 1.64e-30 relative error = 2.1042852476371875534686337363143e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.406 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = -0.987 y[1] (analytic) = -0.7788557303234984200205223855848 y[1] (numeric) = -0.77885573032349842002052238558644 absolute error = 1.64e-30 relative error = 2.1056531218160576952823147101628e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.405 Order of pole = 9.3e-29 TOP MAIN SOLVE Loop x[1] = -0.986 y[1] (analytic) = -0.77834893474438504940167809417195 y[1] (numeric) = -0.77834893474438504940167809417359 absolute error = 1.64e-30 relative error = 2.1070241466169499841956654599807e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.985 y[1] (analytic) = -0.77784163216667151469799656980282 y[1] (numeric) = -0.77784163216667151469799656980446 absolute error = 1.64e-30 relative error = 2.1083983322309367678334038664464e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.984 y[1] (analytic) = -0.77733382209068129811873344875008 y[1] (numeric) = -0.77733382209068129811873344875172 absolute error = 1.64e-30 relative error = 2.1097756888914616168495716578195e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.983 y[1] (analytic) = -0.77682550401678459728986718157898 y[1] (numeric) = -0.77682550401678459728986718158062 absolute error = 1.64e-30 relative error = 2.1111562268745557212239971813646e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.402 Order of pole = 1.8e-29 TOP MAIN SOLVE Loop x[1] = -0.982 y[1] (analytic) = -0.77631667744540156316595003639188 y[1] (numeric) = -0.77631667744540156316595003639352 absolute error = 1.64e-30 relative error = 2.1125399564990556052743312929326e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.402 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = -0.981 y[1] (analytic) = -0.77580734187700555366106206815972 y[1] (numeric) = -0.77580734187700555366106206816136 absolute error = 1.64e-30 relative error = 2.1139268881268221707627929076195e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.98 y[1] (analytic) = -0.77529749681212640304368744720001 y[1] (numeric) = -0.77529749681212640304368744720166 absolute error = 1.65e-30 relative error = 2.1282153067493205963187534241359e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=156.4MB, alloc=4.4MB, time=9.00 x[1] = -0.979 y[1] (analytic) = -0.77478714175135370714030943074885 y[1] (numeric) = -0.7747871417513537071403094307505 absolute error = 1.65e-30 relative error = 2.1296171697819959620298390822993e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.399 Order of pole = 3.3e-29 TOP MAIN SOLVE Loop x[1] = -0.978 y[1] (analytic) = -0.77427627619534012439249568532425 y[1] (numeric) = -0.7742762761953401243924956853259 absolute error = 1.65e-30 relative error = 2.1310222858794214709907156037814e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.399 Order of pole = 6.7e-29 TOP MAIN SOLVE Loop x[1] = -0.977 y[1] (analytic) = -0.77376489964480469281221961183374 y[1] (numeric) = -0.77376489964480469281221961183539 absolute error = 1.65e-30 relative error = 2.1324306656420178342793263624109e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.976 y[1] (analytic) = -0.77325301160053616288013577772672 y[1] (numeric) = -0.77325301160053616288013577772837 absolute error = 1.65e-30 relative error = 2.1338423197146147564465640978239e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.397 Order of pole = 4.5e-29 TOP MAIN SOLVE Loop x[1] = -0.975 y[1] (analytic) = -0.7727406115633963464314985084645 y[1] (numeric) = -0.77274061156339634643149850846615 absolute error = 1.65e-30 relative error = 2.1352572587866795339273918848790e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.397 Order of pole = 6.4e-29 TOP MAIN SOLVE Loop x[1] = -0.974 y[1] (analytic) = -0.77222769903432348157438212165215 y[1] (numeric) = -0.7722276990343234815743821216538 absolute error = 1.65e-30 relative error = 2.1366754935925470578921080452269e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.973 y[1] (analytic) = -0.77171427351433561368482918876728 y[1] (numeric) = -0.77171427351433561368482918876893 absolute error = 1.65e-30 relative error = 2.1380970349116512316093993055169e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.395 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = -0.972 y[1] (analytic) = -0.77120033450453399252351956889503 y[1] (numeric) = -0.77120033450453399252351956889668 absolute error = 1.65e-30 relative error = 2.1395218935687578124755764369624e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.971 y[1] (analytic) = -0.77068588150610648551851776354492 y[1] (numeric) = -0.77068588150610648551851776354657 absolute error = 1.65e-30 relative error = 2.1409500804341986889479032511002e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.394 Order of pole = 3.0e-29 TOP MAIN SOLVE Loop x[1] = -0.97 y[1] (analytic) = -0.77017091402033100725861937873632 y[1] (numeric) = -0.77017091402033100725861937873797 absolute error = 1.65e-30 relative error = 2.1423816064241076027042210831804e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.969 y[1] (analytic) = -0.76965543154857896524177913729363 y[1] (numeric) = -0.76965543154857896524177913729528 absolute error = 1.65e-30 relative error = 2.1438164825006573264361447640965e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.392 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = -0.968 y[1] (analytic) = -0.7691394335923187219230629478318 y[1] (numeric) = -0.76913943359231872192306294783345 absolute error = 1.65e-30 relative error = 2.1452547196722983077689706514125e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.967 y[1] (analytic) = -0.76862291965311907310652499432522 y[1] (numeric) = -0.76862291965311907310652499432687 absolute error = 1.65e-30 relative error = 2.1466963289939987898881007391885e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.966 y[1] (analytic) = -0.76810588923265274272536764847069 y[1] (numeric) = -0.76810588923265274272536764847234 absolute error = 1.65e-30 relative error = 2.1481413215674864195392574674536e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.39 Order of pole = 3.3e-29 TOP MAIN SOLVE Loop x[1] = -0.965 y[1] (analytic) = -0.76758834183269989405469721325594 y[1] (numeric) = -0.76758834183269989405469721325759 absolute error = 1.65e-30 relative error = 2.1495897085414913531580499721562e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.964 y[1] (analytic) = -0.76707027695515165740114206715144 y[1] (numeric) = -0.76707027695515165740114206715308 absolute error = 1.64e-30 relative error = 2.1380048859537363818403895108205e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.389 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = -0.963 y[1] (analytic) = -0.76655169410201367431355168102381 y[1] (numeric) = -0.76655169410201367431355168102545 absolute error = 1.64e-30 relative error = 2.1394512759132285138871212383828e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.388 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = -0.962 y[1] (analytic) = -0.76603259277540965835894521103788 y[1] (numeric) = -0.76603259277540965835894521103952 absolute error = 1.64e-30 relative error = 2.1409010732273446535398660144864e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.961 y[1] (analytic) = -0.76551297247758497250782691723027 y[1] (numeric) = -0.7655129724775849725078269172319 absolute error = 1.63e-30 relative error = 2.1292911532570117480786347448675e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.387 Order of pole = 6.0e-29 TOP MAIN SOLVE Loop x[1] = -0.96 y[1] (analytic) = -0.76499283271091022317293250580695 y[1] (numeric) = -0.76499283271091022317293250580858 absolute error = 1.63e-30 relative error = 2.1307389171526719885445167300788e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.386 Order of pole = 5.6e-29 TOP MAIN SOLVE Loop x[1] = -0.959 y[1] (analytic) = -0.76447217297788487094541563019121 y[1] (numeric) = -0.76447217297788487094541563019284 absolute error = 1.63e-30 relative error = 2.1321901013748915871406257946379e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.386 Order of pole = 8.2e-29 TOP MAIN SOLVE Loop x[1] = -0.958 y[1] (analytic) = -0.76395099278114085807242719802459 y[1] (numeric) = -0.76395099278114085807242719802622 absolute error = 1.63e-30 relative error = 2.1336447172691451060131337148792e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.957 y[1] (analytic) = -0.76342929162344625271998180524668 y[1] (numeric) = -0.7634292916234462527199818052483 absolute error = 1.62e-30 relative error = 2.1220039861910990870696042728695e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.384 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = -0.956 y[1] (analytic) = -0.76290706900770891006494554053962 y[1] (numeric) = -0.76290706900770891006494554054124 absolute error = 1.62e-30 relative error = 2.1234565333194343026304026124331e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.383 Order of pole = 3.7e-29 TOP MAIN SOLVE Loop x[1] = -0.955 y[1] (analytic) = -0.76238432443698015025991756025857 y[1] (numeric) = -0.7623843244369801502599175602602 absolute error = 1.63e-30 relative error = 2.1380292691665098411697100991625e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.954 y[1] (analytic) = -0.7618610574144584533147142118633 y[1] (numeric) = -0.76186105741445845331471421186492 absolute error = 1.62e-30 relative error = 2.1263719732543136940956155094268e-28 % Correct digits = 29 h = 0.001 NO POLE memory used=160.2MB, alloc=4.4MB, time=9.23 TOP MAIN SOLVE Loop x[1] = -0.953 y[1] (analytic) = -0.7613372674434931709380990691512 y[1] (numeric) = -0.76133726744349317093809906915282 absolute error = 1.62e-30 relative error = 2.1278348890496644476260034410756e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.952 y[1] (analytic) = -0.76081295402758825538333502154699 y[1] (numeric) = -0.76081295402758825538333502154861 absolute error = 1.62e-30 relative error = 2.1293012841383038443705695166684e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.381 Order of pole = 2.7e-29 TOP MAIN SOLVE Loop x[1] = -0.951 y[1] (analytic) = -0.76028811667040600534106551855479 y[1] (numeric) = -0.76028811667040600534106551855642 absolute error = 1.63e-30 relative error = 2.1439240785958838040209600644260e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.38 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.95 y[1] (analytic) = -0.75976275487577082892296119539998 y[1] (numeric) = -0.75976275487577082892296119540161 absolute error = 1.63e-30 relative error = 2.1454065621662673880890027554943e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.379 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = -0.949 y[1] (analytic) = -0.75923686814767302377949538300192 y[1] (numeric) = -0.75923686814767302377949538300355 absolute error = 1.63e-30 relative error = 2.1468925817271585403655385737756e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.948 y[1] (analytic) = -0.75871045599027257439513742079615 y[1] (numeric) = -0.75871045599027257439513742079778 absolute error = 1.63e-30 relative error = 2.1483821491197403868734571103167e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.378 Order of pole = 2.2e-29 TOP MAIN SOLVE Loop x[1] = -0.947 y[1] (analytic) = -0.75818351790790296660417623058367 y[1] (numeric) = -0.75818351790790296660417623058529 absolute error = 1.62e-30 relative error = 2.1366858573636026057242780267066e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.946 y[1] (analytic) = -0.75765605340507501937030825949417 y[1] (numeric) = -0.75765605340507501937030825949579 absolute error = 1.62e-30 relative error = 2.1381733739463431425019020945744e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.945 y[1] (analytic) = -0.75712806198648073387304364622577 y[1] (numeric) = -0.75712806198648073387304364622739 absolute error = 1.62e-30 relative error = 2.1396644522058762275169237151261e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.944 y[1] (analytic) = -0.75659954315699715994390229283119 y[1] (numeric) = -0.75659954315699715994390229283281 absolute error = 1.62e-30 relative error = 2.1411591041151925486503823772905e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.375 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = -0.943 y[1] (analytic) = -0.75607049642169027989528742027612 y[1] (numeric) = -0.75607049642169027989528742027775 absolute error = 1.63e-30 relative error = 2.1558836215861078015027957031600e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.374 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = -0.942 y[1] (analytic) = -0.75554092128581890978483813556302 y[1] (numeric) = -0.75554092128581890978483813556465 absolute error = 1.63e-30 relative error = 2.1573947275099025258587704182741e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.374 Order of pole = 2.5e-29 TOP MAIN SOLVE Loop x[1] = -0.941 y[1] (analytic) = -0.75501081725483861815797452710932 y[1] (numeric) = -0.75501081725483861815797452711095 absolute error = 1.63e-30 relative error = 2.1589094655975326179451989779020e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.94 y[1] (analytic) = -0.75448018383440566231125881895763 y[1] (numeric) = -0.75448018383440566231125881895926 absolute error = 1.63e-30 relative error = 2.1604278481060207919674519197385e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.372 Order of pole = 2.3e-29 TOP MAIN SOLVE Loop x[1] = -0.939 y[1] (analytic) = -0.75394902053038094211910413889271 y[1] (numeric) = -0.75394902053038094211910413889434 absolute error = 1.63e-30 relative error = 2.1619498873456231588912169814197e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.938 y[1] (analytic) = -0.75341732684883397146626847621346 y[1] (numeric) = -0.75341732684883397146626847621509 absolute error = 1.63e-30 relative error = 2.1634755956801137036082684537466e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.371 Order of pole = 3.9e-29 TOP MAIN SOLVE Loop x[1] = -0.937 y[1] (analytic) = -0.75288510229604686732847540727496 y[1] (numeric) = -0.75288510229604686732847540727659 absolute error = 1.63e-30 relative error = 2.1650049855270705785385291329121e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.936 y[1] (analytic) = -0.75235234637851835654340513644584 y[1] (numeric) = -0.75235234637851835654340513644747 absolute error = 1.63e-30 relative error = 2.1665380693581642272141273901766e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.935 y[1] (analytic) = -0.75181905860296780031419932224089 y[1] (numeric) = -0.75181905860296780031419932224252 absolute error = 1.63e-30 relative error = 2.1680748596994473515068939869319e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.934 y[1] (analytic) = -0.75128523847633923648752101846173 y[1] (numeric) = -0.75128523847633923648752101846336 absolute error = 1.63e-30 relative error = 2.1696153691316467362776004867945e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.933 y[1] (analytic) = -0.75075088550580543964810684353473 y[1] (numeric) = -0.75075088550580543964810684353636 absolute error = 1.63e-30 relative error = 2.1711596102904569453432254101367e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.368 Order of pole = 2.3e-29 TOP MAIN SOLVE Loop x[1] = -0.932 y[1] (analytic) = -0.75021599919877199907164218315471 y[1] (numeric) = -0.75021599919877199907164218315633 absolute error = 1.62e-30 relative error = 2.1593781014136651303679788554848e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.931 y[1] (analytic) = -0.7496805790628814145776818170566 y[1] (numeric) = -0.74968057906288141457768181705822 absolute error = 1.62e-30 relative error = 2.1609203242600183100393043069157e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.93 y[1] (analytic) = -0.74914462460601721032422782543075 y[1] (numeric) = -0.74914462460601721032422782543237 absolute error = 1.62e-30 relative error = 2.1624662939442093748826776536074e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.929 y[1] (analytic) = -0.74860813533630806658546395930997 y[1] (numeric) = -0.74860813533630806658546395931159 absolute error = 1.62e-30 relative error = 2.1640160232458921317522278671819e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.365 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = -0.928 y[1] (analytic) = -0.7480711107621319695540308372817 y[1] (numeric) = -0.74807111076213196955403083728332 absolute error = 1.62e-30 relative error = 2.1655695250008388008794026291247e-28 % Correct digits = 29 h = 0.001 memory used=164.0MB, alloc=4.4MB, time=9.46 NO POLE TOP MAIN SOLVE Loop x[1] = -0.927 y[1] (analytic) = -0.74753355039212037920910934316415 y[1] (numeric) = -0.74753355039212037920910934316577 absolute error = 1.62e-30 relative error = 2.1671268121012433657922540075993e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.926 y[1] (analytic) = -0.7469954537351624152914604308347 y[1] (numeric) = -0.74699545373516241529146043083631 absolute error = 1.61e-30 relative error = 2.1553009351658044949619844646150e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.363 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = -0.925 y[1] (analytic) = -0.74645682030040906142644817817025 y[1] (numeric) = -0.74645682030040906142644817817186 absolute error = 1.61e-30 relative error = 2.1568561720047796759847438528311e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.924 y[1] (analytic) = -0.7459176495972773874359493569671 y[1] (numeric) = -0.74591764959727738743594935696872 absolute error = 1.62e-30 relative error = 2.1718215152498960637870055732911e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.923 y[1] (analytic) = -0.74537794113545478987992698462241 y[1] (numeric) = -0.74537794113545478987992698462403 absolute error = 1.62e-30 relative error = 2.1733940737932347295049061108965e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.361 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = -0.922 y[1] (analytic) = -0.7448376944249032508683172811079 y[1] (numeric) = -0.74483769442490325086831728110952 absolute error = 1.62e-30 relative error = 2.1749704830000829297860837807918e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.921 y[1] (analytic) = -0.74429690897586361518374915613281 y[1] (numeric) = -0.74429690897586361518374915613444 absolute error = 1.63e-30 relative error = 2.1899862546021380171866024755725e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.92 y[1] (analytic) = -0.74375558429885988575548278111912 y[1] (numeric) = -0.74375558429885988575548278112075 absolute error = 1.63e-30 relative error = 2.1915801836118041121178274693119e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.359 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = -0.919 y[1] (analytic) = -0.74321371990470353752481894339661 y[1] (numeric) = -0.74321371990470353752481894339824 absolute error = 1.63e-30 relative error = 2.1931780271884675481628049288709e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.358 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.918 y[1] (analytic) = -0.74267131530449784974209372052736 y[1] (numeric) = -0.74267131530449784974209372052899 absolute error = 1.63e-30 relative error = 2.1947797988288995254909166227858e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.917 y[1] (analytic) = -0.74212837000964225673523353550388 y[1] (numeric) = -0.74212837000964225673523353550551 absolute error = 1.63e-30 relative error = 2.1963855120898044727799352622784e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.916 y[1] (analytic) = -0.74158488353183671718970384330967 y[1] (numeric) = -0.74158488353183671718970384331129 absolute error = 1.62e-30 relative error = 2.1845105475784045637154917168256e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.356 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = -0.915 y[1] (analytic) = -0.74104085538308610197954054051997 y[1] (numeric) = -0.74104085538308610197954054052159 absolute error = 1.62e-30 relative error = 2.1861142853757098182307781625498e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.355 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = -0.914 y[1] (analytic) = -0.74049628507570460058900666675088 y[1] (numeric) = -0.7404962850757046005890066667525 absolute error = 1.62e-30 relative error = 2.1877219813930320814490652460853e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.913 y[1] (analytic) = -0.73995117212232014616426806429228 y[1] (numeric) = -0.7399511721223201461642680642939 absolute error = 1.62e-30 relative error = 2.1893336493454467938996852390512e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.912 y[1] (analytic) = -0.73940551603587885923433036460311 y[1] (numeric) = -0.73940551603587885923433036460474 absolute error = 1.63e-30 relative error = 2.2044736814228824323491283777634e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.353 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -0.911 y[1] (analytic) = -0.73885931632964951014032596188535 y[1] (numeric) = -0.73885931632964951014032596188698 absolute error = 1.63e-30 relative error = 2.2061033324952474675490198770707e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.91 y[1] (analytic) = -0.73831257251722800021208349902745 y[1] (numeric) = -0.73831257251722800021208349902908 absolute error = 1.63e-30 relative error = 2.2077370217909503445715207767911e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.909 y[1] (analytic) = -0.73776528411254186173075381412421 y[1] (numeric) = -0.73776528411254186173075381412584 absolute error = 1.63e-30 relative error = 2.2093747633581425754247484893917e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.351 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = -0.908 y[1] (analytic) = -0.73721745062985477671610526080511 y[1] (numeric) = -0.73721745062985477671610526080674 absolute error = 1.63e-30 relative error = 2.2110165713079372323094503108693e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.907 y[1] (analytic) = -0.73666907158377111457693780696961 y[1] (numeric) = -0.73666907158377111457693780697123 absolute error = 1.62e-30 relative error = 2.1990878434968746482764102815126e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.906 y[1] (analytic) = -0.73612014648924048866289931843169 y[1] (numeric) = -0.73612014648924048866289931843331 absolute error = 1.62e-30 relative error = 2.2007277042018557967605243673335e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.349 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -0.905 y[1] (analytic) = -0.73557067486156233175581893057822 y[1] (numeric) = -0.73557067486156233175581893057984 absolute error = 1.62e-30 relative error = 2.2023716487948506044864439335628e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.349 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = -0.904 y[1] (analytic) = -0.73502065621639049053850138657306 y[1] (numeric) = -0.73502065621639049053850138657469 absolute error = 1.63e-30 relative error = 2.2176247513785885933236480843420e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.903 y[1] (analytic) = -0.73447009006973783907875265898499 y[1] (numeric) = -0.73447009006973783907875265898661 absolute error = 1.62e-30 relative error = 2.2056718468224910447827193822888e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.347 Order of pole = 3e-30 TOP MAIN SOLVE Loop memory used=167.8MB, alloc=4.4MB, time=9.69 x[1] = -0.902 y[1] (analytic) = -0.73391897593798091136623105704051 y[1] (numeric) = -0.73391897593798091136623105704213 absolute error = 1.62e-30 relative error = 2.2073281290071132850456554028885e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.901 y[1] (analytic) = -0.73336731333786455293953933803141 y[1] (numeric) = -0.73336731333786455293953933803304 absolute error = 1.63e-30 relative error = 2.2226242843864709304315577743560e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.346 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = -0.9 y[1] (analytic) = -0.73281510178650659164079207273428 y[1] (numeric) = -0.73281510178650659164079207273591 absolute error = 1.63e-30 relative error = 2.2242991390683337806132581681816e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.899 y[1] (analytic) = -0.73226234080140252753470864499028 y[1] (numeric) = -0.73226234080140252753470864499191 absolute error = 1.63e-30 relative error = 2.2259781900242137978548222068134e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.345 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = -0.898 y[1] (analytic) = -0.73170902990043024202909577878 y[1] (numeric) = -0.73170902990043024202909577878163 absolute error = 1.63e-30 relative error = 2.2276614520143447069638888701379e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.344 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.897 y[1] (analytic) = -0.73115516860185472623339436611259 y[1] (numeric) = -0.73115516860185472623339436611423 absolute error = 1.64e-30 relative error = 2.2430259272270154351618821779478e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.896 y[1] (analytic) = -0.73060075642433282859177359970418 y[1] (numeric) = -0.73060075642433282859177359970582 absolute error = 1.64e-30 relative error = 2.2447280345374953371735248275396e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.343 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = -0.895 y[1] (analytic) = -0.73004579288691802182706097959097 y[1] (numeric) = -0.73004579288691802182706097959261 absolute error = 1.64e-30 relative error = 2.2464344236746135847740054043368e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.894 y[1] (analytic) = -0.72949027750906518923159964632426 y[1] (numeric) = -0.7294902775090651892315996463259 absolute error = 1.64e-30 relative error = 2.2481451097607262341613917666008e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.893 y[1] (analytic) = -0.72893420981063543034092467901531 y[1] (numeric) = -0.72893420981063543034092467901695 absolute error = 1.64e-30 relative error = 2.2498601079870346476701725200774e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.892 y[1] (analytic) = -0.72837758931190088602594746799975 y[1] (numeric) = -0.72837758931190088602594746800139 absolute error = 1.64e-30 relative error = 2.2515794336139718594472038454725e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.891 y[1] (analytic) = -0.72782041553354958303913201300904 y[1] (numeric) = -0.72782041553354958303913201301068 absolute error = 1.64e-30 relative error = 2.2533031019715915353683429890576e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.89 y[1] (analytic) = -0.72726268799669029804993899218082 y[1] (numeric) = -0.72726268799669029804993899218246 absolute error = 1.64e-30 relative error = 2.2550311284599595475511486753776e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.889 y[1] (analytic) = -0.72670440622285744120460267869537 y[1] (numeric) = -0.726704406222857441204602678697 absolute error = 1.63e-30 relative error = 2.2430027753266850853190955425691e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.338 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -0.888 y[1] (analytic) = -0.7261455697340159592450922339541 y[1] (numeric) = -0.72614556973401595924509223395573 absolute error = 1.63e-30 relative error = 2.2447289743805254957423371791811e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.887 y[1] (analytic) = -0.72558617805256625822189256265554 y[1] (numeric) = -0.72558617805256625822189256265717 absolute error = 1.63e-30 relative error = 2.2464595513310784527371380273017e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.337 Order of pole = 3.3e-29 TOP MAIN SOLVE Loop x[1] = -0.886 y[1] (analytic) = -0.72502623070134914583502075949023 y[1] (numeric) = -0.72502623070134914583502075949186 absolute error = 1.63e-30 relative error = 2.2481945217667927579501322493836e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.336 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -0.885 y[1] (analytic) = -0.72446572720365079343747219306286 y[1] (numeric) = -0.72446572720365079343747219306449 absolute error = 1.63e-30 relative error = 2.2499339013476881506206518191030e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.335 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = -0.884 y[1] (analytic) = -0.72390466708320771773506544363048 y[1] (numeric) = -0.72390466708320771773506544363211 absolute error = 1.63e-30 relative error = 2.2516777058057605215369809873366e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.883 y[1] (analytic) = -0.72334304986421178221642762087224 y[1] (numeric) = -0.72334304986421178221642762087386 absolute error = 1.62e-30 relative error = 2.2396012518598353333676250225241e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.882 y[1] (analytic) = -0.72278087507131521834663101971347 y[1] (numeric) = -0.72278087507131521834663101971509 absolute error = 1.62e-30 relative error = 2.2413432007870409136740583049458e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.881 y[1] (analytic) = -0.72221814222963566655775860972884 y[1] (numeric) = -0.72221814222963566655775860973045 absolute error = 1.61e-30 relative error = 2.2292433627180833328924790217619e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.333 Order of pole = 3.0e-29 TOP MAIN SOLVE Loop x[1] = -0.88 y[1] (analytic) = -0.7216548508647612370694394803436 y[1] (numeric) = -0.72165485086476123706943948034522 absolute error = 1.62e-30 relative error = 2.2448404497783795059731554610522e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.879 y[1] (analytic) = -0.72109100050275559057215606341951 y[1] (numeric) = -0.72109100050275559057215606342113 absolute error = 1.62e-30 relative error = 2.2465957817675042553028171988095e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.331 Order of pole = 3.9e-29 TOP MAIN SOLVE Loop x[1] = -0.878 y[1] (analytic) = -0.72052659067016303880588271031575 y[1] (numeric) = -0.72052659067016303880588271031737 absolute error = 1.62e-30 relative error = 2.2483556068253292001530338216849e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.331 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = -0.877 y[1] (analytic) = -0.71996162089401366506636999560608 y[1] (numeric) = -0.7199616208940136650663699956077 absolute error = 1.62e-30 relative error = 2.2501199410995853148653051145604e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.33 Order of pole = 5e-30 TOP MAIN SOLVE Loop memory used=171.6MB, alloc=4.4MB, time=9.92 x[1] = -0.876 y[1] (analytic) = -0.71939609070182846467114093774452 y[1] (numeric) = -0.71939609070182846467114093774614 absolute error = 1.62e-30 relative error = 2.2518888008128600480930800159422e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.875 y[1] (analytic) = -0.7188299996216245054170141515259 y[1] (numeric) = -0.71882999962162450541701415152753 absolute error = 1.63e-30 relative error = 2.2675736973387230906249171718834e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.874 y[1] (analytic) = -0.71826334718192010806071476159228 y[1] (numeric) = -0.7182633471819201080607147615939 absolute error = 1.62e-30 relative error = 2.2554401618236689474794572197591e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.873 y[1] (analytic) = -0.71769613291174004685387669388919 y[1] (numeric) = -0.71769613291174004685387669389082 absolute error = 1.63e-30 relative error = 2.2711561693762841231536630338615e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.872 y[1] (analytic) = -0.71712835634062077016347970626342 y[1] (numeric) = -0.71712835634062077016347970626504 absolute error = 1.62e-30 relative error = 2.2590098211519254649475422488228e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.871 y[1] (analytic) = -0.71656001699861564120850120369166 y[1] (numeric) = -0.71656001699861564120850120369329 absolute error = 1.63e-30 relative error = 2.2747571191976639132189896681862e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.326 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = -0.87 y[1] (analytic) = -0.71599111441630019894329649130695 y[1] (numeric) = -0.71599111441630019894329649130858 absolute error = 1.63e-30 relative error = 2.2765645650907697140015809101297e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.869 y[1] (analytic) = -0.7154216481247774391179516328036 y[1] (numeric) = -0.71542164812477743911795163280523 absolute error = 1.63e-30 relative error = 2.2783766807622656568374146736256e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.325 Order of pole = 3.4e-29 TOP MAIN SOLVE Loop x[1] = -0.868 y[1] (analytic) = -0.71485161765568311554558048630709 y[1] (numeric) = -0.71485161765568311554558048630871 absolute error = 1.62e-30 relative error = 2.2662045660786242995236132971371e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.324 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -0.867 y[1] (analytic) = -0.71428102254119106160626176773712 y[1] (numeric) = -0.71428102254119106160626176773874 absolute error = 1.62e-30 relative error = 2.2680148973250623617686327351938e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.324 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = -0.866 y[1] (analytic) = -0.7137098623140185320170331264127 y[1] (numeric) = -0.71370986231401853201703312641432 absolute error = 1.62e-30 relative error = 2.2698299204491465195029348344950e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.865 y[1] (analytic) = -0.71313813650743156489707719248401 y[1] (numeric) = -0.71313813650743156489707719248564 absolute error = 1.63e-30 relative error = 2.2856721812450902053975809624405e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.864 y[1] (analytic) = -0.7125658446552503641569493540621 y[1] (numeric) = -0.71256584465525036415694935406372 absolute error = 1.62e-30 relative error = 2.2734741107101188266551238838191e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.863 y[1] (analytic) = -0.71199298629185470224040862698539 y[1] (numeric) = -0.71199298629185470224040862698701 absolute error = 1.62e-30 relative error = 2.2753033122378849239115911700162e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.862 y[1] (analytic) = -0.71141956095218934324712137534374 y[1] (numeric) = -0.71141956095218934324712137534536 absolute error = 1.62e-30 relative error = 2.2771372744259859177624810761962e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.32 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = -0.861 y[1] (analytic) = -0.71084556817176948646421280950628 y[1] (numeric) = -0.7108455681717694864642128095079 absolute error = 1.62e-30 relative error = 2.2789760146729105868116994883067e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.32 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.86 y[1] (analytic) = -0.71027100748668623033434311380219 y[1] (numeric) = -0.71027100748668623033434311380381 absolute error = 1.62e-30 relative error = 2.2808195504592186330282404505134e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.859 y[1] (analytic) = -0.70969587843361205688768372151701 y[1] (numeric) = -0.70969587843361205688768372151863 absolute error = 1.62e-30 relative error = 2.2826678993480185846200130615892e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.858 y[1] (analytic) = -0.70912018054980633666486464382927 y[1] (numeric) = -0.70912018054980633666486464383089 absolute error = 1.62e-30 relative error = 2.2845210789854490314030357692393e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.318 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = -0.857 y[1] (analytic) = -0.7085439133731208541576558550652 y[1] (numeric) = -0.70854391337312085415765585506681 absolute error = 1.61e-30 relative error = 2.2722656558227609777325196870988e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.317 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = -0.856 y[1] (analytic) = -0.70796707644200535379383452253935 y[1] (numeric) = -0.70796707644200535379383452254096 absolute error = 1.61e-30 relative error = 2.2741170508822193990786840344552e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.316 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = -0.855 y[1] (analytic) = -0.70738966929551310649237532863155 y[1] (numeric) = -0.70738966929551310649237532863316 absolute error = 1.61e-30 relative error = 2.2759732999824458276453632890987e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.316 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = -0.854 y[1] (analytic) = -0.70681169147330649681478324898522 y[1] (numeric) = -0.70681169147330649681478324898683 absolute error = 1.61e-30 relative error = 2.2778344209955720297705936514914e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.853 y[1] (analytic) = -0.70623314251566263073806690717074 y[1] (numeric) = -0.70623314251566263073806690717235 absolute error = 1.61e-30 relative error = 2.2797004318786892586849567715151e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.314 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = -0.852 y[1] (analytic) = -0.70565402196347896407452600621932 y[1] (numeric) = -0.70565402196347896407452600622093 absolute error = 1.61e-30 relative error = 2.2815713506743469666846312528728e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.851 y[1] (analytic) = -0.7050743293582789515631983244893 y[1] (numeric) = -0.70507432935827895156319832449091 absolute error = 1.61e-30 relative error = 2.2834471955110550235936524398295e-28 % Correct digits = 29 h = 0.001 NO POLE memory used=175.4MB, alloc=4.4MB, time=10.14 TOP MAIN SOLVE Loop x[1] = -0.85 y[1] (analytic) = -0.704494064242217716657480340782 y[1] (numeric) = -0.7044940642422177166574803407836 absolute error = 1.60e-30 relative error = 2.2711334008484864301453384460056e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.312 Order of pole = 4.2e-29 TOP MAIN SOLVE Loop x[1] = -0.849 y[1] (analytic) = -0.70391322615808774203310070489447 y[1] (numeric) = -0.70391322615808774203310070489607 absolute error = 1.60e-30 relative error = 2.2730074397560266700039680236964e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.848 y[1] (analytic) = -0.70333181464932458084028747831459 y[1] (numeric) = -0.70333181464932458084028747831619 absolute error = 1.60e-30 relative error = 2.2748864286734231579098894141959e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.847 y[1] (analytic) = -0.70274982926001258872362831897636 y[1] (numeric) = -0.70274982926001258872362831897797 absolute error = 1.61e-30 relative error = 2.2910002008756249829040887008790e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.31 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = -0.846 y[1] (analytic) = -0.70216726953489067663277755736639 y[1] (numeric) = -0.70216726953489067663277755736799 absolute error = 1.60e-30 relative error = 2.2786593300764726604193279792665e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.31 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = -0.845 y[1] (analytic) = -0.70158413501935808444681539228811 y[1] (numeric) = -0.70158413501935808444681539228972 absolute error = 1.61e-30 relative error = 2.2948067375491279280216378535686e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.309 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = -0.844 y[1] (analytic) = -0.70100042525948017543471220675283 y[1] (numeric) = -0.70100042525948017543471220675444 absolute error = 1.61e-30 relative error = 2.2967175795992524819390778098339e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.309 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = -0.843 y[1] (analytic) = -0.70041613980199425157399525129839 y[1] (numeric) = -0.7004161398019942515739952513 absolute error = 1.61e-30 relative error = 2.2986334958745277424756653445518e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.842 y[1] (analytic) = -0.69983127819431538974935564708506 y[1] (numeric) = -0.69983127819431538974935564708667 absolute error = 1.61e-30 relative error = 2.3005545053003001884447583908815e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.841 y[1] (analytic) = -0.69924583998454229885257080795234 y[1] (numeric) = -0.69924583998454229885257080795396 absolute error = 1.62e-30 relative error = 2.3167817487992665353529417243284e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.84 y[1] (analytic) = -0.69865982472146319780475095283515 y[1] (numeric) = -0.69865982472146319780475095283676 absolute error = 1.61e-30 relative error = 2.3044118797611749264807381927009e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.839 y[1] (analytic) = -0.69807323195456171452154836115342 y[1] (numeric) = -0.69807323195456171452154836115503 absolute error = 1.61e-30 relative error = 2.3063482831050546738346561826237e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.838 y[1] (analytic) = -0.6974860612340228058415943976546 y[1] (numeric) = -0.69748606123402280584159439765621 absolute error = 1.61e-30 relative error = 2.3082898562180836631115894920771e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.837 y[1] (analytic) = -0.69689831211073869843805208337957 y[1] (numeric) = -0.69689831211073869843805208338118 absolute error = 1.61e-30 relative error = 2.3102366184869843733885018460435e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.304 Order of pole = 1.28e-28 TOP MAIN SOLVE Loop x[1] = -0.836 y[1] (analytic) = -0.69630998413631485073279109964804 y[1] (numeric) = -0.69630998413631485073279109964964 absolute error = 1.60e-30 relative error = 2.2978271695825232234047738223735e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.303 Order of pole = 9.6e-29 TOP MAIN SOLVE Loop x[1] = -0.835 y[1] (analytic) = -0.69572107686307593583230756595716 y[1] (numeric) = -0.69572107686307593583230756595877 absolute error = 1.61e-30 relative error = 2.3141457885095268522952534602291e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.834 y[1] (analytic) = -0.69513158984407184550412271423008 y[1] (numeric) = -0.69513158984407184550412271423169 absolute error = 1.61e-30 relative error = 2.3161082355085408832816093087310e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.833 y[1] (analytic) = -0.69454152263308371521200267474446 y[1] (numeric) = -0.69454152263308371521200267474607 absolute error = 1.61e-30 relative error = 2.3180759501553081592896966955610e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.301 Order of pole = 7.1e-29 TOP MAIN SOLVE Loop x[1] = -0.832 y[1] (analytic) = -0.69395087478462997022794597715901 y[1] (numeric) = -0.69395087478462997022794597716061 absolute error = 1.60e-30 relative error = 2.3056387103720641287417235315938e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.301 Order of pole = 7.9e-29 TOP MAIN SOLVE Loop x[1] = -0.831 y[1] (analytic) = -0.69335964585397239283848603721595 y[1] (numeric) = -0.69335964585397239283848603721755 absolute error = 1.60e-30 relative error = 2.3076047323598841189859205125351e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.3 Order of pole = 1.53e-28 TOP MAIN SOLVE Loop x[1] = -0.83 y[1] (analytic) = -0.69276783539712221066245282985001 y[1] (numeric) = -0.69276783539712221066245282985161 absolute error = 1.60e-30 relative error = 2.3095760487823688491751247144878e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.829 y[1] (analytic) = -0.69217544297084620609693112653644 y[1] (numeric) = -0.69217544297084620609693112653804 absolute error = 1.60e-30 relative error = 2.3115526796685136522809903124751e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.828 y[1] (analytic) = -0.69158246813267284690774208276376 y[1] (numeric) = -0.69158246813267284690774208276536 absolute error = 1.60e-30 relative error = 2.3135346451452508079034859724081e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.827 y[1] (analytic) = -0.69098891044089843798036058456422 y[1] (numeric) = -0.69098891044089843798036058456581 absolute error = 1.59e-30 relative error = 2.3010499531540537603412416556237e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.826 y[1] (analytic) = -0.69039476945459329424676258516441 y[1] (numeric) = -0.690394769454593294246762585166 absolute error = 1.59e-30 relative error = 2.3030301942410254809595909789259e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.297 Order of pole = 2.77e-28 TOP MAIN SOLVE Loop x[1] = -0.825 y[1] (analytic) = -0.68980004473360793480327466816595 y[1] (numeric) = -0.68980004473360793480327466816754 absolute error = 1.59e-30 relative error = 2.3050157971706683761079930108191e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.296 Order of pole = 1.06e-28 memory used=179.2MB, alloc=4.4MB, time=10.36 TOP MAIN SOLVE Loop x[1] = -0.824 y[1] (analytic) = -0.68920473583857929823407224641217 y[1] (numeric) = -0.68920473583857929823407224641376 absolute error = 1.59e-30 relative error = 2.3070067823393463358092365571283e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.296 Order of pole = 8.2e-29 TOP MAIN SOLVE Loop x[1] = -0.823 y[1] (analytic) = -0.68860884233093697915454313007522 y[1] (numeric) = -0.68860884233093697915454313007681 absolute error = 1.59e-30 relative error = 2.3090031702437324584648245182253e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.822 y[1] (analytic) = -0.68801236377290948598829965778962 y[1] (numeric) = -0.68801236377290948598829965779121 absolute error = 1.59e-30 relative error = 2.3110049814814190012553545790315e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.294 Order of pole = 1.59e-28 TOP MAIN SOLVE Loop x[1] = -0.821 y[1] (analytic) = -0.68741529972753051999118516519992 y[1] (numeric) = -0.68741529972753051999118516520151 absolute error = 1.59e-30 relative error = 2.3130122367515317762082333241993e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.82 y[1] (analytic) = -0.6868176497586452755351792504699 y[1] (numeric) = -0.68681764975864527553517925047149 absolute error = 1.59e-30 relative error = 2.3150249568553490298203698006922e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.293 Order of pole = 1.97e-28 TOP MAIN SOLVE Loop x[1] = -0.819 y[1] (analytic) = -0.68621941343091676166466107056475 y[1] (numeric) = -0.68621941343091676166466107056633 absolute error = 1.58e-30 relative error = 2.3024705641893970152827779261519e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.293 Order of pole = 4.0e-29 TOP MAIN SOLVE Loop x[1] = -0.818 y[1] (analytic) = -0.68562059030983214493704074996715 y[1] (numeric) = -0.68562059030983214493704074996874 absolute error = 1.59e-30 relative error = 2.3190668752837171004132258607485e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.292 Order of pole = 9.4e-29 TOP MAIN SOLVE Loop x[1] = -0.817 y[1] (analytic) = -0.68502117996170911355931588948628 y[1] (numeric) = -0.68502117996170911355931588948787 absolute error = 1.59e-30 relative error = 2.3210961157272200368829821680919e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.291 Order of pole = 1.13e-28 TOP MAIN SOLVE Loop x[1] = -0.816 y[1] (analytic) = -0.68442118195370226283165311158532 y[1] (numeric) = -0.68442118195370226283165311158691 absolute error = 1.59e-30 relative error = 2.3231309052436014525024329832307e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.815 y[1] (analytic) = -0.68382059585380950190863355487523 y[1] (numeric) = -0.68382059585380950190863355487681 absolute error = 1.58e-30 relative error = 2.3105475465055751211790565933138e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.29 Order of pole = 8.8e-29 TOP MAIN SOLVE Loop x[1] = -0.814 y[1] (analytic) = -0.68321942123087848188833621884604 y[1] (numeric) = -0.68321942123087848188833621884763 absolute error = 1.59e-30 relative error = 2.3272172168868947036866430925464e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.813 y[1] (analytic) = -0.68261765765461304523896404534848 y[1] (numeric) = -0.68261765765461304523896404535007 absolute error = 1.59e-30 relative error = 2.3292687819753104766979231584448e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.289 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.812 y[1] (analytic) = -0.68201530469557969657224459067786 y[1] (numeric) = -0.68201530469557969657224459067945 absolute error = 1.59e-30 relative error = 2.3313259820609201179847352054592e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.288 Order of pole = 1.27e-28 TOP MAIN SOLVE Loop x[1] = -0.811 y[1] (analytic) = -0.68141236192521409477236007630161 y[1] (numeric) = -0.6814123619252140947723600763032 absolute error = 1.59e-30 relative error = 2.3333888388929823914240689157559e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.81 y[1] (analytic) = -0.68080882891582756648868049233182 y[1] (numeric) = -0.68080882891582756648868049233341 absolute error = 1.59e-30 relative error = 2.3354573743293524922240076551757e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.809 y[1] (analytic) = -0.68020470524061364100008825087016 y[1] (numeric) = -0.68020470524061364100008825087175 absolute error = 1.59e-30 relative error = 2.3375316103371528550129304453770e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.286 Order of pole = 6.3e-29 TOP MAIN SOLVE Loop x[1] = -0.808 y[1] (analytic) = -0.6795999904736546064581936315132 y[1] (numeric) = -0.67959999047365460645819363151479 absolute error = 1.59e-30 relative error = 2.3396115689934489301910834478703e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.286 Order of pole = 1.00e-28 TOP MAIN SOLVE Loop x[1] = -0.807 y[1] (analytic) = -0.67899468418992808751624691384673 y[1] (numeric) = -0.67899468418992808751624691384832 absolute error = 1.59e-30 relative error = 2.3416972724859299715735853920160e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.285 Order of pole = 9.2e-29 TOP MAIN SOLVE Loop x[1] = -0.806 y[1] (analytic) = -0.67838878596531364435005563700132 y[1] (numeric) = -0.67838878596531364435005563700291 absolute error = 1.59e-30 relative error = 2.3437887431135948787808739499683e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.284 Order of pole = 4.3e-29 TOP MAIN SOLVE Loop x[1] = -0.805 y[1] (analytic) = -0.67778229537659939307671384969174 y[1] (numeric) = -0.67778229537659939307671384969333 absolute error = 1.59e-30 relative error = 2.3458860032874431382643168089209e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.804 y[1] (analytic) = -0.67717521200148864757644450110429 y[1] (numeric) = -0.67717521200148864757644450110588 absolute error = 1.59e-30 relative error = 2.3479890755311709072912615085200e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.283 Order of pole = 6.2e-29 TOP MAIN SOLVE Loop x[1] = -0.803 y[1] (analytic) = -0.67656753541860658272234625909796 y[1] (numeric) = -0.67656753541860658272234625909956 absolute error = 1.60e-30 relative error = 2.3648784729377331176404953019929e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.802 y[1] (analytic) = -0.67595926520750691902232201310071 y[1] (numeric) = -0.67595926520750691902232201310231 absolute error = 1.60e-30 relative error = 2.3670065377516939072437337763713e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.801 y[1] (analytic) = -0.67535040094867862867694811055325 y[1] (numeric) = -0.67535040094867862867694811055485 absolute error = 1.60e-30 relative error = 2.3691405198730126175447270886310e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.281 Order of pole = 2.5e-29 TOP MAIN SOLVE Loop x[1] = -0.8 y[1] (analytic) = -0.67474094222355266305652097360981 y[1] (numeric) = -0.67474094222355266305652097361141 absolute error = 1.60e-30 relative error = 2.3712804424277754027877347099429e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.799 memory used=183.1MB, alloc=4.4MB, time=10.59 y[1] (analytic) = -0.67413088861450870159999113297004 y[1] (numeric) = -0.67413088861450870159999113297164 absolute error = 1.60e-30 relative error = 2.3734263286590554035442595535363e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.28 Order of pole = 3.8e-29 TOP MAIN SOLVE Loop x[1] = -0.798 y[1] (analytic) = -0.67352023970488192213796388420386 y[1] (numeric) = -0.67352023970488192213796388420546 absolute error = 1.60e-30 relative error = 2.3755782019276452223081500224930e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.797 y[1] (analytic) = -0.67290899507896979264141070485116 y[1] (numeric) = -0.67290899507896979264141070485276 absolute error = 1.60e-30 relative error = 2.3777360857127948993388935696624e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.796 y[1] (analytic) = -0.6722971543220388843971962541381 y[1] (numeric) = -0.6722971543220388843971962541397 absolute error = 1.60e-30 relative error = 2.3799000036129554370530631406650e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.278 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = -0.795 y[1] (analytic) = -0.67168471702033170661098219765699 y[1] (numeric) = -0.67168471702033170661098219765859 absolute error = 1.60e-30 relative error = 2.3820699793465279217497782835817e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.278 Order of pole = 4.7e-29 TOP MAIN SOLVE Loop x[1] = -0.794 y[1] (analytic) = -0.67107168276107356243752124321432 y[1] (numeric) = -0.67107168276107356243752124321593 absolute error = 1.61e-30 relative error = 2.3991475744823221562721234615475e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.793 y[1] (analytic) = -0.67045805113247942643780262777169 y[1] (numeric) = -0.67045805113247942643780262777329 absolute error = 1.60e-30 relative error = 2.3864281997917978031060809361198e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.276 Order of pole = 5.2e-29 TOP MAIN SOLVE Loop x[1] = -0.792 y[1] (analytic) = -0.66984382172376084346195384560104 y[1] (numeric) = -0.66984382172376084346195384560265 absolute error = 1.61e-30 relative error = 2.4035453456252871717558006390341e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.276 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.791 y[1] (analytic) = -0.66922899412513284895624264117225 y[1] (numeric) = -0.66922899412513284895624264117386 absolute error = 1.61e-30 relative error = 2.4057535075937866638639923594455e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.275 Order of pole = 3.3e-29 TOP MAIN SOLVE Loop x[1] = -0.79 y[1] (analytic) = -0.66861356792782091069195819371662 y[1] (numeric) = -0.66861356792782091069195819371823 absolute error = 1.61e-30 relative error = 2.4079678864276426546063712072839e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.789 y[1] (analytic) = -0.66799754272406789191338098080874 y[1] (numeric) = -0.66799754272406789191338098081035 absolute error = 1.61e-30 relative error = 2.4101885067338464679790156284709e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.788 y[1] (analytic) = -0.6673809181071410359014770127346 y[1] (numeric) = -0.66738091810714103590147701273621 absolute error = 1.61e-30 relative error = 2.4124153932455277598197752554168e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.787 y[1] (analytic) = -0.6667636936713389719493739650383 y[1] (numeric) = -0.66676369367133897194937396503991 absolute error = 1.61e-30 relative error = 2.4146485708227552078856615360085e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.786 y[1] (analytic) = -0.66614586901199874274509419075016 y[1] (numeric) = -0.66614586901199874274509419075177 absolute error = 1.61e-30 relative error = 2.4168880644533432990048846286551e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.785 y[1] (analytic) = -0.66552744372550285315643265380409 y[1] (numeric) = -0.6655274437255028531564326538057 absolute error = 1.61e-30 relative error = 2.4191338992536652676004222141163e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.784 y[1] (analytic) = -0.6649084174092863404122764785805 y[1] (numeric) = -0.66490841740928634041227647858212 absolute error = 1.62e-30 relative error = 2.4364257656897795214324253760568e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.783 y[1] (analytic) = -0.66428878966184386567406704501692 y[1] (numeric) = -0.66428878966184386567406704501854 absolute error = 1.62e-30 relative error = 2.4386983872250212432621365526131e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.782 y[1] (analytic) = -0.66366856008273682699050536209043 y[1] (numeric) = -0.66366856008273682699050536209206 absolute error = 1.63e-30 relative error = 2.4560452280529826678631937699518e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.269 Order of pole = 4.9e-29 TOP MAIN SOLVE Loop x[1] = -0.781 y[1] (analytic) = -0.66304772827260049362799681260274 y[1] (numeric) = -0.66304772827260049362799681260437 absolute error = 1.63e-30 relative error = 2.4583448981064210316822352492984e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.269 Order of pole = 1.40e-28 TOP MAIN SOLVE Loop x[1] = -0.78 y[1] (analytic) = -0.66242629383315116176872226712701 y[1] (numeric) = -0.66242629383315116176872226712864 absolute error = 1.63e-30 relative error = 2.4606511172253630080111937914683e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.779 y[1] (analytic) = -0.66180425636719333156760900287767 y[1] (numeric) = -0.6618042563671933315676090028793 absolute error = 1.63e-30 relative error = 2.4629639116367605767638153897892e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.778 y[1] (analytic) = -0.66118161547862690555885682244484 y[1] (numeric) = -0.66118161547862690555885682244647 absolute error = 1.63e-30 relative error = 2.4652833077036618435131371263297e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.777 y[1] (analytic) = -0.66055837077245440840205223623725 y[1] (numeric) = -0.66055837077245440840205223623888 absolute error = 1.63e-30 relative error = 2.4676093319260859465601078226168e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.266 Order of pole = 4.5e-29 TOP MAIN SOLVE Loop x[1] = -0.776 y[1] (analytic) = -0.65993452185478822795727653968384 y[1] (numeric) = -0.65993452185478822795727653968547 absolute error = 1.63e-30 relative error = 2.4699420109419047125581980720406e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.266 Order of pole = 2.34e-28 TOP MAIN SOLVE Loop x[1] = -0.775 y[1] (analytic) = -0.65931006833285787767798207047818 y[1] (numeric) = -0.65931006833285787767798207047981 absolute error = 1.63e-30 relative error = 2.4722813715277311215736944110690e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.265 Order of pole = 2.3e-29 TOP MAIN SOLVE Loop x[1] = -0.774 y[1] (analytic) = -0.65868500981501728030977486128001 y[1] (numeric) = -0.65868500981501728030977486128164 absolute error = 1.63e-30 relative error = 2.4746274405998146430905035656469e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=186.9MB, alloc=4.4MB, time=10.82 x[1] = -0.773 y[1] (analytic) = -0.65805934591075207288260129832832 y[1] (numeric) = -0.65805934591075207288260129832996 absolute error = 1.64e-30 relative error = 2.4921764430383480664857610352787e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.264 Order of pole = 1.71e-28 TOP MAIN SOLVE Loop x[1] = -0.772 y[1] (analytic) = -0.65743307623068693298319124553388 y[1] (numeric) = -0.65743307623068693298319124553552 absolute error = 1.64e-30 relative error = 2.4945504862681107318535357752389e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.263 Order of pole = 1.40e-28 TOP MAIN SOLVE Loop x[1] = -0.771 y[1] (analytic) = -0.65680620038659292629396038611918 y[1] (numeric) = -0.65680620038659292629396038612082 absolute error = 1.64e-30 relative error = 2.4969313612366996509843274869826e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.77 y[1] (analytic) = -0.65617871799139487538392025922877 y[1] (numeric) = -0.65617871799139487538392025923041 absolute error = 1.64e-30 relative error = 2.4993190955966160308676097529968e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.262 Order of pole = 3.36e-28 TOP MAIN SOLVE Loop x[1] = -0.769 y[1] (analytic) = -0.65555062865917874973648561676434 y[1] (numeric) = -0.65555062865917874973648561676598 absolute error = 1.64e-30 relative error = 2.5017137171454642855340790418674e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.261 Order of pole = 6.53e-28 TOP MAIN SOLVE Loop x[1] = -0.768 y[1] (analytic) = -0.65492193200519907699840528578902 y[1] (numeric) = -0.65492193200519907699840528579066 absolute error = 1.64e-30 relative error = 2.5041152538268956795028705388851e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.261 Order of pole = 1.707e-27 TOP MAIN SOLVE Loop x[1] = -0.767 y[1] (analytic) = -0.65429262764588637543337468413477 y[1] (numeric) = -0.65429262764588637543337468413641 absolute error = 1.64e-30 relative error = 2.5065237337315593358847278987690e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.766 y[1] (analytic) = -0.65366271519885460756321549144051 y[1] (numeric) = -0.65366271519885460756321549144215 absolute error = 1.64e-30 relative error = 2.5089391850980606763647999589666e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.765 y[1] (analytic) = -0.65303219428290865497883071501561 y[1] (numeric) = -0.65303219428290865497883071501725 absolute error = 1.64e-30 relative error = 2.5113616363139273609916257554557e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.764 y[1] (analytic) = -0.65240106451805181430246150010213 y[1] (numeric) = -0.65240106451805181430246150010377 absolute error = 1.64e-30 relative error = 2.5137911159165827964100392358880e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.258 Order of pole = 8.9e-29 TOP MAIN SOLVE Loop x[1] = -0.763 y[1] (analytic) = -0.6517693255254933142820855079063 y[1] (numeric) = -0.65176932552549331428208550790794 absolute error = 1.64e-30 relative error = 2.5162276525943272818952854273194e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.258 Order of pole = 1.33e-28 TOP MAIN SOLVE Loop x[1] = -0.762 y[1] (analytic) = -0.65113697692765585399810551296651 y[1] (numeric) = -0.65113697692765585399810551296815 absolute error = 1.64e-30 relative error = 2.5186712751873268632737006149458e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.257 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.761 y[1] (analytic) = -0.65050401834818316216178104497632 y[1] (numeric) = -0.65050401834818316216178104497796 absolute error = 1.64e-30 relative error = 2.5211220126886099655519820433820e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.257 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = -0.76 y[1] (analytic) = -0.64987044941194757748415541022072 y[1] (numeric) = -0.64987044941194757748415541022236 absolute error = 1.64e-30 relative error = 2.5235798942450718758224710993762e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.256 Order of pole = 8.0e-29 TOP MAIN SOLVE Loop x[1] = -0.759 y[1] (analytic) = -0.64923626974505765009352526562472 y[1] (numeric) = -0.64923626974505765009352526562636 absolute error = 1.64e-30 relative error = 2.5260449491584871487661128533395e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.255 Order of pole = 1.04e-28 TOP MAIN SOLVE Loop x[1] = -0.758 y[1] (analytic) = -0.6486014789748657639787900755522 y[1] (numeric) = -0.64860147897486576397879007555385 absolute error = 1.65e-30 relative error = 2.5439349947333990932515969161556e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.255 Order of pole = 1.87e-28 TOP MAIN SOLVE Loop x[1] = -0.757 y[1] (analytic) = -0.6479660767299757804353042496109 y[1] (numeric) = -0.64796607672997578043530424961255 absolute error = 1.65e-30 relative error = 2.5464296037330942965776065585295e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.756 y[1] (analytic) = -0.64733006264025070248913553068554 y[1] (numeric) = -0.64733006264025070248913553068719 absolute error = 1.65e-30 relative error = 2.5489315192163048411384629380647e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.755 y[1] (analytic) = -0.6466934363368203602749092682959 y[1] (numeric) = -0.64669343633682036027490926829755 absolute error = 1.65e-30 relative error = 2.5514407712971170472675288660879e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.754 y[1] (analytic) = -0.64605619745208911734168956541143 y[1] (numeric) = -0.64605619745208911734168956541308 absolute error = 1.65e-30 relative error = 2.5539573902506559467508612932762e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.753 y[1] (analytic) = -0.64541834561974359786061491949861 y[1] (numeric) = -0.64541834561974359786061491950026 absolute error = 1.65e-30 relative error = 2.5564814065141532586328226976857e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.252 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -0.752 y[1] (analytic) = -0.64477988047476043470726788347657 y[1] (numeric) = -0.64477988047476043470726788347822 absolute error = 1.65e-30 relative error = 2.5590128506880238672861023322710e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.251 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = -0.751 y[1] (analytic) = -0.64414080165341403839101544225916 y[1] (numeric) = -0.64414080165341403839101544226082 absolute error = 1.66e-30 relative error = 2.5770763096189930084712005440869e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.251 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = -0.75 y[1] (analytic) = -0.64350110879328438680280922871732 y[1] (numeric) = -0.64350110879328438680280922871898 absolute error = 1.66e-30 relative error = 2.5796381347545610505741125700808e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.749 y[1] (analytic) = -0.64286080153326483575218238246156 y[1] (numeric) = -0.64286080153326483575218238246321 absolute error = 1.65e-30 relative error = 2.5666520591466187580570457684167e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.748 y[1] (analytic) = -0.64221987951356995026342277928661 y[1] (numeric) = -0.64221987951356995026342277928826 absolute error = 1.65e-30 relative error = 2.5692135242679542439476458267498e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.249 Order of pole = 2.1e-29 memory used=190.7MB, alloc=4.4MB, time=11.06 TOP MAIN SOLVE Loop x[1] = -0.747 y[1] (analytic) = -0.64157834237574335660014052211505 y[1] (numeric) = -0.6415783423757433566001405221167 absolute error = 1.65e-30 relative error = 2.5717825727877668658194500993491e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.248 Order of pole = 3.8e-29 TOP MAIN SOLVE Loop x[1] = -0.746 y[1] (analytic) = -0.64093618976266561498668097971591 y[1] (numeric) = -0.64093618976266561498668097971756 absolute error = 1.65e-30 relative error = 2.5743592363086627487093123677792e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.248 Order of pole = 3.9e-29 TOP MAIN SOLVE Loop x[1] = -0.745 y[1] (analytic) = -0.64029342131856211299406328146577 y[1] (numeric) = -0.64029342131856211299406328146743 absolute error = 1.66e-30 relative error = 2.5925613862806005103707507838668e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.247 Order of pole = 2.3e-29 TOP MAIN SOLVE Loop x[1] = -0.744 y[1] (analytic) = -0.63965003668901097955734801929148 y[1] (numeric) = -0.63965003668901097955734801929313 absolute error = 1.65e-30 relative error = 2.5795355356200928812257761060547e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.246 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = -0.743 y[1] (analytic) = -0.63900603552095101959055696623484 y[1] (numeric) = -0.63900603552095101959055696623649 absolute error = 1.65e-30 relative error = 2.5821352354752549658759686442895e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.246 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = -0.742 y[1] (analytic) = -0.63836141746268966916448188958658 y[1] (numeric) = -0.63836141746268966916448188958824 absolute error = 1.66e-30 relative error = 2.6004077856052791204101711129149e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.245 Order of pole = 1.8e-29 TOP MAIN SOLVE Loop x[1] = -0.741 y[1] (analytic) = -0.63771618216391097121192901025105 y[1] (numeric) = -0.63771618216391097121192901025271 absolute error = 1.66e-30 relative error = 2.6030388540043874460406183757230e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.245 Order of pole = 3.0e-29 TOP MAIN SOLVE Loop x[1] = -0.74 y[1] (analytic) = -0.63707032927568357172415033415913 y[1] (numeric) = -0.63707032927568357172415033416079 absolute error = 1.66e-30 relative error = 2.6056777779736425982663817184328e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.739 y[1] (analytic) = -0.63642385845046873640141295161108 y[1] (numeric) = -0.63642385845046873640141295161274 absolute error = 1.66e-30 relative error = 2.6083245905357484533155709551892e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.738 y[1] (analytic) = -0.63577676934212838771985246210598 y[1] (numeric) = -0.63577676934212838771985246210764 absolute error = 1.66e-30 relative error = 2.6109793248936874149993578684715e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.243 Order of pole = 5.0e-29 TOP MAIN SOLVE Loop x[1] = -0.737 y[1] (analytic) = -0.63512906160593316237594693144324 y[1] (numeric) = -0.6351290616059331623759469314449 absolute error = 1.66e-30 relative error = 2.6136420144319417764393766110245e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.242 Order of pole = 2.0e-29 TOP MAIN SOLVE Loop x[1] = -0.736 y[1] (analytic) = -0.6344807348985704890691332208467 y[1] (numeric) = -0.63448073489857048906913322084836 absolute error = 1.66e-30 relative error = 2.6163126927177250178676866940729e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.735 y[1] (analytic) = -0.63383178887815268658226814099248 y[1] (numeric) = -0.63383178887815268658226814099414 absolute error = 1.66e-30 relative error = 2.6189913935022231350444426700472e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.734 y[1] (analytic) = -0.63318222320422508211881267379345 y[1] (numeric) = -0.6331822232042250821188126737951 absolute error = 1.65e-30 relative error = 2.6058849088500277439057672417946e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.733 y[1] (analytic) = -0.63253203753777414985478846853174 y[1] (numeric) = -0.6325320375377741498547884685334 absolute error = 1.66e-30 relative error = 2.6243729984994895078019186192840e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.24 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = -0.732 y[1] (analytic) = -0.63188123154123566966272195361638 y[1] (numeric) = -0.63188123154123566966272195361804 absolute error = 1.66e-30 relative error = 2.6270759711458066357759148713262e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.731 y[1] (analytic) = -0.63122980487850290596395270830971 y[1] (numeric) = -0.63122980487850290596395270831137 absolute error = 1.66e-30 relative error = 2.6297871031604907993333339995308e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.239 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -0.73 y[1] (analytic) = -0.63057775721493480666483920791007 y[1] (numeric) = -0.63057775721493480666483920791173 absolute error = 1.66e-30 relative error = 2.6325064292335683188215228712492e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.238 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -0.729 y[1] (analytic) = -0.6299250882173642221315466890534 y[1] (numeric) = -0.62992508821736422213154668905506 absolute error = 1.66e-30 relative error = 2.6352339842467020695635463292976e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.728 y[1] (analytic) = -0.62927179755410614415724867722518 y[1] (numeric) = -0.62927179755410614415724867722684 absolute error = 1.66e-30 relative error = 2.6379698032745057600353695458500e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.237 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = -0.727 y[1] (analytic) = -0.62861788489496596487471567474472 y[1] (numeric) = -0.62861788489496596487471567474638 absolute error = 1.66e-30 relative error = 2.6407139215858690352020090640707e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.236 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = -0.726 y[1] (analytic) = -0.62796334991124775556640162315481 y[1] (numeric) = -0.62796334991124775556640162315646 absolute error = 1.65e-30 relative error = 2.6275418784124905363543614230076e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.236 Order of pole = 2.2e-29 TOP MAIN SOLVE Loop x[1] = -0.725 y[1] (analytic) = -0.62730819227576256532327102815488 y[1] (numeric) = -0.62730819227576256532327102815654 absolute error = 1.66e-30 relative error = 2.6462271981142398335199892837005e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.235 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = -0.724 y[1] (analytic) = -0.62665241166283673950273706726331 y[1] (numeric) = -0.62665241166283673950273706726496 absolute error = 1.65e-30 relative error = 2.6330386180461456286162763477843e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.723 y[1] (analytic) = -0.6259960077483202579352035898733 y[1] (numeric) = -0.62599600774832025793520358987495 absolute error = 1.65e-30 relative error = 2.6357995571488969505980283970563e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.722 memory used=194.5MB, alloc=4.4MB, time=11.29 y[1] (analytic) = -0.62533898020959509282782166614858 y[1] (numeric) = -0.62533898020959509282782166615023 absolute error = 1.65e-30 relative error = 2.6385689237651056095860954975971e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.233 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = -0.721 y[1] (analytic) = -0.62468132872558358631318424544497 y[1] (numeric) = -0.62468132872558358631318424544662 absolute error = 1.65e-30 relative error = 2.6413467541381069572096827977912e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.72 y[1] (analytic) = -0.62402305297675684758979054708821 y[1] (numeric) = -0.62402305297675684758979054708986 absolute error = 1.65e-30 relative error = 2.6441330847138719221017012454833e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.232 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = -0.719 y[1] (analytic) = -0.62336415264514316960021502712216 y[1] (numeric) = -0.62336415264514316960021502712382 absolute error = 1.66e-30 relative error = 2.6629699397311559432306727707848e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.718 y[1] (analytic) = -0.62270462741433646519201414509621 y[1] (numeric) = -0.62270462741433646519201414509787 absolute error = 1.66e-30 relative error = 2.6657903714202943293093737669632e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.231 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = -0.717 y[1] (analytic) = -0.62204447696950472270549769641355 y[1] (numeric) = -0.62204447696950472270549769641521 absolute error = 1.66e-30 relative error = 2.6686194660665402718642027685335e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.23 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = -0.716 y[1] (analytic) = -0.62138370099739848093158017984252 y[1] (numeric) = -0.62138370099739848093158017984418 absolute error = 1.66e-30 relative error = 2.6714572611664782739536214207205e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.23 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = -0.715 y[1] (analytic) = -0.62072229918635932338201153843224 y[1] (numeric) = -0.6207222991863593233820115384339 absolute error = 1.66e-30 relative error = 2.6743037944277535200205491165278e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.229 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -0.714 y[1] (analytic) = -0.62006027122632839181336564751054 y[1] (numeric) = -0.6200602712263283918133656475122 absolute error = 1.66e-30 relative error = 2.6771591037705476302239991017510e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.229 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = -0.713 y[1] (analytic) = -0.61939761680885491894523912822447 y[1] (numeric) = -0.61939761680885491894523912822613 absolute error = 1.66e-30 relative error = 2.6800232273290668101108569447084e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.228 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = -0.712 y[1] (analytic) = -0.61873433562710478031218244207203 y[1] (numeric) = -0.61873433562710478031218244207369 absolute error = 1.66e-30 relative error = 2.6828962034530425174048106497475e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.228 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = -0.711 y[1] (analytic) = -0.61807042737586906518794977424468 y[1] (numeric) = -0.61807042737586906518794977424634 absolute error = 1.66e-30 relative error = 2.6857780707092447690596607362615e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.227 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.71 y[1] (analytic) = -0.61740589175157266651971394484851 y[1] (numeric) = -0.61740589175157266651971394485017 absolute error = 1.66e-30 relative error = 2.6886688678830082131118296010117e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.226 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = -0.709 y[1] (analytic) = -0.61674072845228288980894750101495 y[1] (numeric) = -0.61674072845228288980894750101661 absolute error = 1.66e-30 relative error = 2.6915686339797710912720974753148e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.708 y[1] (analytic) = -0.61607493717771808087472124369114 y[1] (numeric) = -0.6160749371777180808747212436928 absolute error = 1.66e-30 relative error = 2.6944774082266272196196661316735e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.707 y[1] (analytic) = -0.6154085176292562724342167349853 y[1] (numeric) = -0.61540851762925627243421673498695 absolute error = 1.65e-30 relative error = 2.6811458612180243022498147299503e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.706 y[1] (analytic) = -0.61474146950994384943428982013514 y[1] (numeric) = -0.61474146950994384943428982013679 absolute error = 1.65e-30 relative error = 2.6840551383581422105944891076963e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.224 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -0.705 y[1] (analytic) = -0.61407379252450423306695788760219 y[1] (numeric) = -0.61407379252450423306695788760384 absolute error = 1.65e-30 relative error = 2.6869734876922919250178737722085e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.704 y[1] (analytic) = -0.61340548637934658340071448694449 y[1] (numeric) = -0.61340548637934658340071448694614 absolute error = 1.65e-30 relative error = 2.6899009491082302861397194367811e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.223 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = -0.703 y[1] (analytic) = -0.6127365507825745205586010327978 y[1] (numeric) = -0.61273655078257452055860103279945 absolute error = 1.65e-30 relative error = 2.6928375627219462188287628682198e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.222 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = -0.702 y[1] (analytic) = -0.61206698544399486437298665065737 y[1] (numeric) = -0.61206698544399486437298665065902 absolute error = 1.65e-30 relative error = 2.6957833688792837417223040922890e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.701 y[1] (analytic) = -0.61139679007512639244602377270172 y[1] (numeric) = -0.61139679007512639244602377270337 absolute error = 1.65e-30 relative error = 2.6987384081575788437482575720952e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.7 y[1] (analytic) = -0.61072596438920861654375887649024 y[1] (numeric) = -0.61072596438920861654375887649189 absolute error = 1.65e-30 relative error = 2.7017027213673103662318189379208e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.699 y[1] (analytic) = -0.61005450810121057725088478320319 y[1] (numeric) = -0.61005450810121057725088478320484 absolute error = 1.65e-30 relative error = 2.7046763495537650307550019925798e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.698 y[1] (analytic) = -0.60938242092783965681212320273872 y[1] (numeric) = -0.60938242092783965681212320274038 absolute error = 1.66e-30 relative error = 2.7240693905684059469956495031811e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.697 y[1] (analytic) = -0.6087097025875504100852237383574 y[1] (numeric) = -0.60870970258755041008522373835906 absolute error = 1.66e-30 relative error = 2.7270799084416483991903501439231e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.219 Order of pole = 7e-30 TOP MAIN SOLVE Loop memory used=198.3MB, alloc=4.4MB, time=11.51 x[1] = -0.696 y[1] (analytic) = -0.60803635280055341352955835195498 y[1] (numeric) = -0.60803635280055341352955835195663 absolute error = 1.65e-30 relative error = 2.7136535379838200809258355001863e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.695 y[1] (analytic) = -0.60736237128882413215327835109793 y[1] (numeric) = -0.60736237128882413215327835109958 absolute error = 1.65e-30 relative error = 2.7166648412852722396667171427988e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.694 y[1] (analytic) = -0.60668775777611180434098429969133 y[1] (numeric) = -0.60668775777611180434098429969298 absolute error = 1.65e-30 relative error = 2.7196856683712835310768390598829e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.693 y[1] (analytic) = -0.60601251198794834448283788495535 y[1] (numeric) = -0.60601251198794834448283788495701 absolute error = 1.66e-30 relative error = 2.7392173711968047685198458038235e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.217 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = -0.692 y[1] (analytic) = -0.60533663365165726332501870402994 y[1] (numeric) = -0.6053366336516572633250187040316 absolute error = 1.66e-30 relative error = 2.7422757978253334261809179844080e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.691 y[1] (analytic) = -0.60466012249636260596039817414992 y[1] (numeric) = -0.60466012249636260596039817415158 absolute error = 1.66e-30 relative error = 2.7453439349474975467158164548908e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.69 y[1] (analytic) = -0.60398297825299790737726733146002 y[1] (numeric) = -0.60398297825299790737726733146168 absolute error = 1.66e-30 relative error = 2.7484218260612222575194874894987e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.689 y[1] (analytic) = -0.60330520065431516548291517607949 y[1] (numeric) = -0.60330520065431516548291517608114 absolute error = 1.65e-30 relative error = 2.7349341563946259784828197868585e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.688 y[1] (analytic) = -0.60262678943489383151780945627653 y[1] (numeric) = -0.60262678943489383151780945627818 absolute error = 1.65e-30 relative error = 2.7380130271793393902113782924774e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.214 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -0.687 y[1] (analytic) = -0.60194774433114981777508237426087 y[1] (numeric) = -0.60194774433114981777508237426252 absolute error = 1.65e-30 relative error = 2.7411017244252429052273626414577e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.686 y[1] (analytic) = -0.60126806508134452253896965223023 y[1] (numeric) = -0.60126806508134452253896965223188 absolute error = 1.65e-30 relative error = 2.7442002923883448515835764077012e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.213 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = -0.685 y[1] (analytic) = -0.60058775142559387215479273239255 y[1] (numeric) = -0.6005877514255938721547927323942 absolute error = 1.65e-30 relative error = 2.7473087755843395817012232451644e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.212 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = -0.684 y[1] (analytic) = -0.59990680310587738014201061160889 y[1] (numeric) = -0.59990680310587738014201061161054 absolute error = 1.65e-30 relative error = 2.7504272187905026504645004983542e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.212 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -0.683 y[1] (analytic) = -0.59922521986604722326079994334617 y[1] (numeric) = -0.59922521986604722326079994334782 absolute error = 1.65e-30 relative error = 2.7535556670476026151018586959988e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.211 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -0.682 y[1] (analytic) = -0.59854300145183733444154959048228 y[1] (numeric) = -0.59854300145183733444154959048393 absolute error = 1.65e-30 relative error = 2.7566941656618296273700598759053e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.681 y[1] (analytic) = -0.59786014761087251248557879626971 y[1] (numeric) = -0.59786014761087251248557879627136 absolute error = 1.65e-30 relative error = 2.7598427602067409905604117251323e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.68 y[1] (analytic) = -0.59717665809267754844430657194869 y[1] (numeric) = -0.59717665809267754844430657195034 absolute error = 1.65e-30 relative error = 2.7630014965252238558763159320873e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.679 y[1] (analytic) = -0.59649253264868636858301379303678 y[1] (numeric) = -0.59649253264868636858301379303843 absolute error = 1.65e-30 relative error = 2.7661704207314752347879384975882e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.678 y[1] (analytic) = -0.59580777103225119383424886755647 y[1] (numeric) = -0.59580777103225119383424886755812 absolute error = 1.65e-30 relative error = 2.7693495792129995060537839384692e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.677 y[1] (analytic) = -0.59512237299865171564483270416632 y[1] (numeric) = -0.59512237299865171564483270416797 absolute error = 1.65e-30 relative error = 2.7725390186326235982106376869764e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.208 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = -0.676 y[1] (analytic) = -0.59443633830510428811931908253125 y[1] (numeric) = -0.59443633830510428811931908253289 absolute error = 1.64e-30 relative error = 2.7589161266218601515005769587250e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.675 y[1] (analytic) = -0.59374966671077113636166242892846 y[1] (numeric) = -0.5937496667107711363616624289301 absolute error = 1.64e-30 relative error = 2.7621068136091788577759190252103e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.206 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = -0.674 y[1] (analytic) = -0.59306235797676958091573644409534 y[1] (numeric) = -0.59306235797676958091573644409698 absolute error = 1.64e-30 relative error = 2.7653078600281679999752443703380e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.206 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = -0.673 y[1] (analytic) = -0.59237441186618127820423403517565 y[1] (numeric) = -0.59237441186618127820423403517729 absolute error = 1.64e-30 relative error = 2.7685193133738526771183030144729e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.672 y[1] (analytic) = -0.59168582814406147686436158724269 y[1] (numeric) = -0.59168582814406147686436158724434 absolute error = 1.65e-30 relative error = 2.7886420825314479277073553609073e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.205 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.671 y[1] (analytic) = -0.59099660657744828987761879064397 y[1] (numeric) = -0.59099660657744828987761879064561 absolute error = 1.64e-30 relative error = 2.7749736322472150061778213773123e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.204 Order of pole = 1e-30 memory used=202.1MB, alloc=4.4MB, time=11.74 TOP MAIN SOLVE Loop x[1] = -0.67 y[1] (analytic) = -0.59030674693537198238982903713835 y[1] (numeric) = -0.59030674693537198238982903714 absolute error = 1.65e-30 relative error = 2.7951569392796478605977319969179e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.204 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.669 y[1] (analytic) = -0.58961624898886427511645482974902 y[1] (numeric) = -0.58961624898886427511645482975067 absolute error = 1.65e-30 relative error = 2.7984303397838727988814281102679e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.668 y[1] (analytic) = -0.58892511251096766322709773814752 y[1] (numeric) = -0.58892511251096766322709773814917 absolute error = 1.65e-30 relative error = 2.8017144539226483391143969081944e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.667 y[1] (analytic) = -0.58823333727674475060194319338716 y[1] (numeric) = -0.58823333727674475060194319338881 absolute error = 1.65e-30 relative error = 2.8050093312268841916953313830475e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.666 y[1] (analytic) = -0.58754092306328759935176687354266 y[1] (numeric) = -0.58754092306328759935176687354431 absolute error = 1.65e-30 relative error = 2.8083150215262001146839286360705e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.201 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = -0.665 y[1] (analytic) = -0.58684786964972709449197160637497 y[1] (numeric) = -0.58684786964972709449197160637663 absolute error = 1.66e-30 relative error = 2.8286717663145085255494062173638e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.201 Order of pole = 2.0e-29 TOP MAIN SOLVE Loop x[1] = -0.664 y[1] (analytic) = -0.58615417681724232365997162807491 y[1] (numeric) = -0.58615417681724232365997162807657 absolute error = 1.66e-30 relative error = 2.8320193997654874424805512829391e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.663 y[1] (analytic) = -0.585459844349069971764084710463 y[1] (numeric) = -0.58545984434906997176408471046466 absolute error = 1.66e-30 relative error = 2.8353780639654846409433045664645e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.2 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = -0.662 y[1] (analytic) = -0.58476487203051373045093212522176 y[1] (numeric) = -0.58476487203051373045093212522342 absolute error = 1.66e-30 relative error = 2.8387478102709617182668559205697e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.661 y[1] (analytic) = -0.584069259648953722277181675768 y[1] (numeric) = -0.58406925964895372227718167576966 absolute error = 1.66e-30 relative error = 2.8421286903503853251183451960971e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.199 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -0.66 y[1] (analytic) = -0.58337300699385593947030011867094 y[1] (numeric) = -0.58337300699385593947030011867261 absolute error = 1.67e-30 relative error = 2.8626624474889157347547119305253e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.198 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = -0.659 y[1] (analytic) = -0.58267611385678169716180824099949 y[1] (numeric) = -0.58267611385678169716180824100116 absolute error = 1.67e-30 relative error = 2.8660862532121507369236627955155e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.198 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.658 y[1] (analytic) = -0.58197858003139710097535468203206 y[1] (numeric) = -0.58197858003139710097535468203372 absolute error = 1.66e-30 relative error = 2.8523386546467824215182415237389e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.657 y[1] (analytic) = -0.58128040531348252885074331226501 y[1] (numeric) = -0.58128040531348252885074331226668 absolute error = 1.67e-30 relative error = 2.8729679939914278169007264065418e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.656 y[1] (analytic) = -0.58058158950094212698386363497623 y[1] (numeric) = -0.58058158950094212698386363497789 absolute error = 1.66e-30 relative error = 2.8592019278925245160765083570401e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.196 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -0.655 y[1] (analytic) = -0.57988213239381331976128428159638 y[1] (numeric) = -0.57988213239381331976128428159804 absolute error = 1.66e-30 relative error = 2.8626507134257587699370483222374e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.195 Order of pole = 2.5e-29 TOP MAIN SOLVE Loop x[1] = -0.654 y[1] (analytic) = -0.57918203379427633356707625816345 y[1] (numeric) = -0.57918203379427633356707625816511 absolute error = 1.66e-30 relative error = 2.8661110033492973713558995406415e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.653 y[1] (analytic) = -0.5784812935066637343382351930325 y[1] (numeric) = -0.57848129350666373433823519303416 absolute error = 1.66e-30 relative error = 2.8695828519144290397236275441937e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.194 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = -0.652 y[1] (analytic) = -0.57777991133746997874387046313095 y[1] (numeric) = -0.57777991133746997874387046313261 absolute error = 1.66e-30 relative error = 2.8730663137064770190387338208177e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.651 y[1] (analytic) = -0.57707788709536097886212376523933 y[1] (numeric) = -0.57707788709536097886212376524099 absolute error = 1.66e-30 relative error = 2.8765614436473603518561851374302e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.65 y[1] (analytic) = -0.57637522059118368022757047839377 y[1] (numeric) = -0.57637522059118368022757047839543 absolute error = 1.66e-30 relative error = 2.8800682969981787643019510878131e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.193 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = -0.649 y[1] (analytic) = -0.57567191163797565312064406241416 y[1] (numeric) = -0.57567191163797565312064406241582 absolute error = 1.66e-30 relative error = 2.8835869293618214167309606094522e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.648 y[1] (analytic) = -0.57496796005097469696940678513601 y[1] (numeric) = -0.57496796005097469696940678513767 absolute error = 1.66e-30 relative error = 2.8871173966855997777490922275397e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.647 y[1] (analytic) = -0.57426336564762845773276929705423 y[1] (numeric) = -0.57426336564762845773276929705589 absolute error = 1.66e-30 relative error = 2.8906597552639048825067448560987e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.191 Order of pole = 9.8e-29 TOP MAIN SOLVE Loop x[1] = -0.646 y[1] (analytic) = -0.57355812824760405813303700718107 y[1] (numeric) = -0.57355812824760405813303700718273 absolute error = 1.66e-30 relative error = 2.8942140617408892394028730473852e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.645 y[1] (analytic) = -0.57285224767279774060443288890464 y[1] (numeric) = -0.57285224767279774060443288890631 absolute error = 1.67e-30 relative error = 2.9152368813849397589558541263460e-28 % Correct digits = 29 h = 0.001 NO POLE memory used=206.0MB, alloc=4.4MB, time=11.97 TOP MAIN SOLVE Loop x[1] = -0.644 y[1] (analytic) = -0.57214572374734452282301429095948 y[1] (numeric) = -0.57214572374734452282301429096114 absolute error = 1.66e-30 relative error = 2.9013587467325792311913547256858e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.189 Order of pole = 1.42e-28 TOP MAIN SOLVE Loop x[1] = -0.643 y[1] (analytic) = -0.57143855629762786568216557826183 y[1] (numeric) = -0.57143855629762786568216557826349 absolute error = 1.66e-30 relative error = 2.9049492403088848588155789064456e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.642 y[1] (analytic) = -0.57073074515228935357660901282491 y[1] (numeric) = -0.57073074515228935357660901282657 absolute error = 1.66e-30 relative error = 2.9085519119126104017592714804545e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.188 Order of pole = 8.2e-29 TOP MAIN SOLVE Loop x[1] = -0.641 y[1] (analytic) = -0.57002229014223838685663323928788 y[1] (numeric) = -0.57002229014223838685663323928954 absolute error = 1.66e-30 relative error = 2.9121668199778259360154891253953e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.188 Order of pole = 7.6e-29 TOP MAIN SOLVE Loop x[1] = -0.64 y[1] (analytic) = -0.56931319110066188631299209633831 y[1] (numeric) = -0.56931319110066188631299209633997 absolute error = 1.66e-30 relative error = 2.9157940233049872781078271968842e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.639 y[1] (analytic) = -0.56860344786303400955167626858668 y[1] (numeric) = -0.56860344786303400955167626858834 absolute error = 1.66e-30 relative error = 2.9194335810637981076373981426306e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.187 Order of pole = 1.12e-28 TOP MAIN SOLVE Loop x[1] = -0.638 y[1] (analytic) = -0.56789306026712587911650655791082 y[1] (numeric) = -0.56789306026712587911650655791248 absolute error = 1.66e-30 relative error = 2.9230855527960989732408114263043e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.186 Order of pole = 4.1e-29 TOP MAIN SOLVE Loop x[1] = -0.637 y[1] (analytic) = -0.56718202815301532221624032411637 y[1] (numeric) = -0.56718202815301532221624032411804 absolute error = 1.67e-30 relative error = 2.9443810225056436187253729207280e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.186 Order of pole = 6.0e-29 TOP MAIN SOLVE Loop x[1] = -0.636 y[1] (analytic) = -0.56647035136309662191162195769052 y[1] (numeric) = -0.56647035136309662191162195769219 absolute error = 1.67e-30 relative error = 2.9480801527943729139597367679501e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.635 y[1] (analytic) = -0.56575802974209027961654413874205 y[1] (numeric) = -0.56575802974209027961654413874372 absolute error = 1.67e-30 relative error = 2.9517919538168920685739970682896e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.185 Order of pole = 2.1e-29 TOP MAIN SOLVE Loop x[1] = -0.634 y[1] (analytic) = -0.56504506313705278876621914275387 y[1] (numeric) = -0.56504506313705278876621914275554 absolute error = 1.67e-30 relative error = 2.9555164870008575284410429549610e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.184 Order of pole = 5.15e-28 TOP MAIN SOLVE Loop x[1] = -0.633 y[1] (analytic) = -0.56433145139738641950398861290861 y[1] (numeric) = -0.56433145139738641950398861291029 absolute error = 1.68e-30 relative error = 2.9769738968827930913262366547861e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.184 Order of pole = 3.92e-28 TOP MAIN SOLVE Loop x[1] = -0.632 y[1] (analytic) = -0.56361719437484901423712606842608 y[1] (numeric) = -0.56361719437484901423712606842775 absolute error = 1.67e-30 relative error = 2.9630039975134627854369796505749e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.631 y[1] (analytic) = -0.56290229192356379391070899707045 y[1] (numeric) = -0.56290229192356379391070899707213 absolute error = 1.68e-30 relative error = 2.9845321721094116919805938852887e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.63 y[1] (analytic) = -0.56218674390002917484735672680714 y[1] (numeric) = -0.56218674390002917484735672680882 absolute error = 1.68e-30 relative error = 2.9883308673296393175646599637750e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.629 y[1] (analytic) = -0.56147055016312859599934642613475 y[1] (numeric) = -0.56147055016312859599934642613643 absolute error = 1.68e-30 relative error = 2.9921426858664198231321259449253e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.181 Order of pole = 7.7e-29 TOP MAIN SOLVE Loop x[1] = -0.628 y[1] (analytic) = -0.56075371057414035645833258507828 y[1] (numeric) = -0.56075371057414035645833258507996 absolute error = 1.68e-30 relative error = 2.9959676919121837667875454169604e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.627 y[1] (analytic) = -0.56003622499674746306660521996036 y[1] (numeric) = -0.56003622499674746306660521996204 absolute error = 1.68e-30 relative error = 2.9998059500700280230008696019495e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.626 y[1] (analytic) = -0.55931809329704748797252886619788 y[1] (numeric) = -0.55931809329704748797252886619956 absolute error = 1.68e-30 relative error = 3.0036575253569905119499210317165e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.18 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = -0.625 y[1] (analytic) = -0.55859931534356243597150821640166 y[1] (numeric) = -0.55859931534356243597150821640334 absolute error = 1.68e-30 relative error = 3.0075224832073563309511062425436e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.624 y[1] (analytic) = -0.5578798910072486214725270684647 y[1] (numeric) = -0.55787989100724862147252706846638 absolute error = 1.68e-30 relative error = 3.0114008894759956401621889338376e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.179 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = -0.623 y[1] (analytic) = -0.55715982016150655492900511316377 y[1] (numeric) = -0.55715982016150655492900511316545 absolute error = 1.68e-30 relative error = 3.0152928104417336592637960510508e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.178 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = -0.622 y[1] (analytic) = -0.55643910268219083857141205670568 y[1] (numeric) = -0.55643910268219083857141205670736 absolute error = 1.68e-30 relative error = 3.0191983128107531364146293675326e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.621 y[1] (analytic) = -0.55571773844762007127777068484036 y[1] (numeric) = -0.55571773844762007127777068484204 absolute error = 1.68e-30 relative error = 3.0231174637200296554301583104477e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.177 Order of pole = 2.6e-29 TOP MAIN SOLVE Loop x[1] = -0.62 y[1] (analytic) = -0.55499572733858676241686977644094 y[1] (numeric) = -0.55499572733858676241686977644261 absolute error = 1.67e-30 relative error = 3.0090321740102001509530382496687e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.177 Order of pole = 3.5e-29 TOP MAIN SOLVE Loop x[1] = -0.619 memory used=209.8MB, alloc=4.4MB, time=12.20 y[1] (analytic) = -0.5542730692383672544976943112058 y[1] (numeric) = -0.55427306923836725449769431120748 absolute error = 1.68e-30 relative error = 3.0309969818820650134058280499649e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.176 Order of pole = 6.3e-29 TOP MAIN SOLVE Loop x[1] = -0.618 y[1] (analytic) = -0.55354976403273165445726423434827 y[1] (numeric) = -0.55354976403273165445726423434994 absolute error = 1.67e-30 relative error = 3.0168922624655876918234622646448e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.176 Order of pole = 5.1e-29 TOP MAIN SOLVE Loop x[1] = -0.617 y[1] (analytic) = -0.55282581160995377341775418737637 y[1] (numeric) = -0.55282581160995377341775418737804 absolute error = 1.67e-30 relative error = 3.0208430303508846021206390410615e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.175 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -0.616 y[1] (analytic) = -0.5521012118608210747424451354934 y[1] (numeric) = -0.55210121186082107474244513549507 absolute error = 1.67e-30 relative error = 3.0248077057671619195783323784575e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.615 y[1] (analytic) = -0.55137596467864463021873476652808 y[1] (numeric) = -0.55137596467864463021873476652975 absolute error = 1.67e-30 relative error = 3.0287863580947289932994871363140e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.614 y[1] (analytic) = -0.55065006995926908419510695199093 y[1] (numeric) = -0.5506500699592690841951069519926 absolute error = 1.67e-30 relative error = 3.0327790571669733346847861309879e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.173 Order of pole = 2.8e-29 TOP MAIN SOLVE Loop x[1] = -0.613 y[1] (analytic) = -0.54992352760108262549763149680776 y[1] (numeric) = -0.54992352760108262549763149680943 absolute error = 1.67e-30 relative error = 3.0367858732740502921205555303113e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.173 Order of pole = 6.1e-29 TOP MAIN SOLVE Loop x[1] = -0.612 y[1] (analytic) = -0.5491963375050269669502339100622 y[1] (numeric) = -0.54919633750502696695023391006387 absolute error = 1.67e-30 relative error = 3.0408068771666088620382314044131e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.172 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.611 y[1] (analytic) = -0.5484684995746073323216410548511 y[1] (numeric) = -0.54846849957460733232164105485277 absolute error = 1.67e-30 relative error = 3.0448421400595540502680047050102e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.61 y[1] (analytic) = -0.54774001371590245052057233188898 y[1] (numeric) = -0.54774001371590245052057233189065 absolute error = 1.67e-30 relative error = 3.0488917336358462030382681134633e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.171 Order of pole = 8.5e-29 TOP MAIN SOLVE Loop x[1] = -0.609 y[1] (analytic) = -0.54701087983757455685940757016806 y[1] (numeric) = -0.54701087983757455685940757016973 absolute error = 1.67e-30 relative error = 3.0529557300503377324817323245108e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.171 Order of pole = 2.2e-29 TOP MAIN SOLVE Loop x[1] = -0.608 y[1] (analytic) = -0.54628109785087940120522209077634 y[1] (numeric) = -0.54628109785087940120522209077801 absolute error = 1.67e-30 relative error = 3.0570342019336476670998811455806e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.607 y[1] (analytic) = -0.54555066766967626283573652949589 y[1] (numeric) = -0.54555066766967626283573652949757 absolute error = 1.68e-30 relative error = 3.0794573255241946696782704970742e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.606 y[1] (analytic) = -0.54481958921043797181638400325995 y[1] (numeric) = -0.54481958921043797181638400326162 absolute error = 1.67e-30 relative error = 3.0652348650315475199660884052057e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.169 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = -0.605 y[1] (analytic) = -0.54408786239226093671335013876632 y[1] (numeric) = -0.54408786239226093671335013876799 absolute error = 1.67e-30 relative error = 3.0693572039216178435567396037797e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.169 Order of pole = 3.1e-29 TOP MAIN SOLVE Loop x[1] = -0.604 y[1] (analytic) = -0.54335548713687517845609240297155 y[1] (numeric) = -0.54335548713687517845609240297322 absolute error = 1.67e-30 relative error = 3.0734943136394883177775101802700e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.603 y[1] (analytic) = -0.54262246336865437016149413988553 y[1] (numeric) = -0.5426224633686543701614941398872 absolute error = 1.67e-30 relative error = 3.0776462692540840371148870817116e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.602 y[1] (analytic) = -0.5418887910146258827304557817339 y[1] (numeric) = -0.54188879101462588273045578173556 absolute error = 1.66e-30 relative error = 3.0633591753980304566575961566834e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.167 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = -0.601 y[1] (analytic) = -0.54115447000448083602637092145812 y[1] (numeric) = -0.54115447000448083602637092145978 absolute error = 1.66e-30 relative error = 3.0675160088509570359015441364425e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.167 Order of pole = 2.6e-29 TOP MAIN SOLVE Loop x[1] = -0.6 y[1] (analytic) = -0.5404195002705841554435783646086 y[1] (numeric) = -0.54041950027058415544357836461026 absolute error = 1.66e-30 relative error = 3.0716878261588450153491644236192e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.166 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = -0.599 y[1] (analytic) = -0.53968388174798463367252297950538 y[1] (numeric) = -0.53968388174798463367252297950704 absolute error = 1.66e-30 relative error = 3.0758747039533926460568896109874e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.166 Order of pole = 2.0e-29 TOP MAIN SOLVE Loop x[1] = -0.598 y[1] (analytic) = -0.5389476143744249974669981932726 y[1] (numeric) = -0.53894761437442499746699819327426 absolute error = 1.66e-30 relative error = 3.0800767193798955795136380225053e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.597 y[1] (analytic) = -0.53821069809035197921748139680147 y[1] (numeric) = -0.53821069809035197921748139680313 absolute error = 1.66e-30 relative error = 3.0842939501015417146535833048707e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.165 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = -0.596 y[1] (analytic) = -0.53747313283892639313321038329677 y[1] (numeric) = -0.53747313283892639313321038329843 absolute error = 1.66e-30 relative error = 3.0885264743037492426987488297034e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.595 y[1] (analytic) = -0.53673491856603321583428431287756 y[1] (numeric) = -0.53673491856603321583428431287922 absolute error = 1.66e-30 relative error = 3.0927743706985483979703472799215e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.594 y[1] (analytic) = -0.53599605522029167115370663043049 y[1] (numeric) = -0.53599605522029167115370663043215 absolute error = 1.66e-30 relative error = 3.0970377185290074296520373817291e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.163 Order of pole = 3.8e-29 TOP MAIN SOLVE Loop memory used=213.6MB, alloc=4.4MB, time=12.43 x[1] = -0.593 y[1] (analytic) = -0.53525654275306531894791992688144 y[1] (numeric) = -0.5352565427530653189479199268831 absolute error = 1.66e-30 relative error = 3.1013165975737033164364038378477e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.163 Order of pole = 8.0e-29 TOP MAIN SOLVE Loop x[1] = -0.592 y[1] (analytic) = -0.53451638111847214771301398722078 y[1] (numeric) = -0.53451638111847214771301398722244 absolute error = 1.66e-30 relative error = 3.1056110881512377530397379121111e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.591 y[1] (analytic) = -0.53377557027339467080241827458693 y[1] (numeric) = -0.5337755702733946708024182745886 absolute error = 1.67e-30 relative error = 3.1286557366135025528321837847963e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.59 y[1] (analytic) = -0.53303411017749002604051892171453 y[1] (numeric) = -0.5330341101774900260405189217162 absolute error = 1.67e-30 relative error = 3.1330077533760876433745122249477e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.589 y[1] (analytic) = -0.53229200079320007852526800295814 y[1] (numeric) = -0.53229200079320007852526800295981 absolute error = 1.67e-30 relative error = 3.1373757214300296292231165353472e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.161 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -0.588 y[1] (analytic) = -0.53154924208576152641147950641846 y[1] (numeric) = -0.53154924208576152641147950642014 absolute error = 1.68e-30 relative error = 3.1605726562750783955844018011436e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.16 Order of pole = 6.8e-29 TOP MAIN SOLVE Loop x[1] = -0.587 y[1] (analytic) = -0.53080583402321600946513208157198 y[1] (numeric) = -0.53080583402321600946513208157365 absolute error = 1.67e-30 relative error = 3.1461598440663685758987658626899e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.16 Order of pole = 3.5e-29 TOP MAIN SOLVE Loop x[1] = -0.586 y[1] (analytic) = -0.53006177657642022017762336902401 y[1] (numeric) = -0.53006177657642022017762336902568 absolute error = 1.67e-30 relative error = 3.1505761663975260734114233890092e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.585 y[1] (analytic) = -0.52931706971905601722754459199737 y[1] (numeric) = -0.52931706971905601722754459199903 absolute error = 1.66e-30 relative error = 3.1361165074103373655232823753614e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.159 Order of pole = 1.66e-28 TOP MAIN SOLVE Loop x[1] = -0.584 y[1] (analytic) = -0.52857171342764054107616717100159 y[1] (numeric) = -0.52857171342764054107616717100325 absolute error = 1.66e-30 relative error = 3.1405388480502706503120410161403e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.583 y[1] (analytic) = -0.52782570768153633148145548151349 y[1] (numeric) = -0.52782570768153633148145548151515 absolute error = 1.66e-30 relative error = 3.1449775481598199976182929593545e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.158 Order of pole = 1.06e-28 TOP MAIN SOLVE Loop x[1] = -0.582 y[1] (analytic) = -0.52707905246296144671404157779054 y[1] (numeric) = -0.5270790524629614467140415777922 absolute error = 1.66e-30 relative error = 3.1494326937165662273151343064208e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.157 Order of pole = 1.92e-28 TOP MAIN SOLVE Loop x[1] = -0.581 y[1] (analytic) = -0.52633174775699958425721882313211 y[1] (numeric) = -0.52633174775699958425721882313376 absolute error = 1.65e-30 relative error = 3.1349049473674979711168849169776e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.157 Order of pole = 1.23e-28 TOP MAIN SOLVE Loop x[1] = -0.58 y[1] (analytic) = -0.52558379355161020277163196763958 y[1] (numeric) = -0.52558379355161020277163196764123 absolute error = 1.65e-30 relative error = 3.1393662061955810163766723705295e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.579 y[1] (analytic) = -0.52483518983763864510396136909014 y[1] (numeric) = -0.52483518983763864510396136909179 absolute error = 1.65e-30 relative error = 3.1438440713368301066171383509041e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.578 y[1] (analytic) = -0.52408593660882626211751883185905 y[1] (numeric) = -0.5240859366088262621175188318607 absolute error = 1.65e-30 relative error = 3.1483386306386377817780067434947e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.577 y[1] (analytic) = -0.52333603386182053712129201447699 y[1] (numeric) = -0.52333603386182053712129201447863 absolute error = 1.64e-30 relative error = 3.1337417909064116870423801077353e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.576 y[1] (analytic) = -0.52258548159618521067259360061084 y[1] (numeric) = -0.52258548159618521067259360061248 absolute error = 1.64e-30 relative error = 3.1382425607974864455701380506181e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.154 Order of pole = 5.8e-29 TOP MAIN SOLVE Loop x[1] = -0.575 y[1] (analytic) = -0.52183427981441040552709051387444 y[1] (numeric) = -0.52183427981441040552709051387608 absolute error = 1.64e-30 relative error = 3.1427601892755370326634179305931e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.574 y[1] (analytic) = -0.52108242852192275150860745741986 y[1] (numeric) = -0.5210824285219227515086074574215 absolute error = 1.64e-30 relative error = 3.1472947661120425574246452721618e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.153 Order of pole = 1.24e-28 TOP MAIN SOLVE Loop x[1] = -0.573 y[1] (analytic) = -0.52032992772709551006971804888762 y[1] (numeric) = -0.52032992772709551006971804888927 absolute error = 1.65e-30 relative error = 3.1710649572042257478635950993259e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.572 y[1] (analytic) = -0.51957677744125869831275587480688 y[1] (numeric) = -0.51957677744125869831275587480852 absolute error = 1.64e-30 relative error = 3.1564151270894933968263139672816e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.571 y[1] (analytic) = -0.51882297767870921223949698138323 y[1] (numeric) = -0.51882297767870921223949698138487 absolute error = 1.64e-30 relative error = 3.1610010939330457556981218937883e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.152 Order of pole = 2.1e-29 TOP MAIN SOLVE Loop x[1] = -0.57 y[1] (analytic) = -0.51806852845672094899638472688591 y[1] (numeric) = -0.51806852845672094899638472688755 absolute error = 1.64e-30 relative error = 3.1656043745513955750421104292163e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.151 Order of pole = 7.0e-29 TOP MAIN SOLVE Loop x[1] = -0.569 y[1] (analytic) = -0.51731342979555492788078762128681 y[1] (numeric) = -0.51731342979555492788078762128844 absolute error = 1.63e-30 relative error = 3.1508944212876608233429775228835e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.151 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -0.568 y[1] (analytic) = -0.51655768171846940987240084879645 y[1] (numeric) = -0.51655768171846940987240084879809 absolute error = 1.64e-30 relative error = 3.1748632496260526510602735321700e-28 % Correct digits = 29 h = 0.001 NO POLE memory used=217.4MB, alloc=4.4MB, time=12.67 TOP MAIN SOLVE Loop x[1] = -0.567 y[1] (analytic) = -0.51580128425173001545252268651617 y[1] (numeric) = -0.5158012842517300154525226865178 absolute error = 1.63e-30 relative error = 3.1601317208130486024298539106919e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.566 y[1] (analytic) = -0.51504423742461984047255807625541 y[1] (numeric) = -0.51504423742461984047255807625704 absolute error = 1.63e-30 relative error = 3.1647766959795591775971859898863e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.565 y[1] (analytic) = -0.51428654126944956983172325596836 y[1] (numeric) = -0.51428654126944956983172325596999 absolute error = 1.63e-30 relative error = 3.1694393479101292116020555536208e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.149 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -0.564 y[1] (analytic) = -0.5135281958215675887225476922058 y[1] (numeric) = -0.51352819582156758872254769220743 absolute error = 1.63e-30 relative error = 3.1741197723179465780650710804167e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.563 y[1] (analytic) = -0.51276920111937009120139265606366 y[1] (numeric) = -0.51276920111937009120139265606529 absolute error = 1.63e-30 relative error = 3.1788180655970095941800731944529e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.148 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = -0.562 y[1] (analytic) = -0.51200955720431118583982973358653 y[1] (numeric) = -0.51200955720431118583982973358816 absolute error = 1.63e-30 relative error = 3.1835343248281756719876104249828e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.561 y[1] (analytic) = -0.51124926412091299821134743934316 y[1] (numeric) = -0.51124926412091299821134743934479 absolute error = 1.63e-30 relative error = 3.1882686477852746183964070625809e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.56 y[1] (analytic) = -0.51048832191677576996647999146307 y[1] (numeric) = -0.5104883219167757699664799914647 absolute error = 1.63e-30 relative error = 3.1930211329412873920155932069372e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.146 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = -0.559 y[1] (analytic) = -0.50972673064258795424807929098041 y[1] (numeric) = -0.50972673064258795424807929098204 absolute error = 1.63e-30 relative error = 3.1977918794745911364257902356713e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.146 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = -0.558 y[1] (analytic) = -0.50896449035213630719707931168446 y[1] (numeric) = -0.50896449035213630719707931168608 absolute error = 1.62e-30 relative error = 3.1829332511570181229790193550959e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.145 Order of pole = 2.5e-29 TOP MAIN SOLVE Loop x[1] = -0.557 y[1] (analytic) = -0.50820160110231597529773153327486 y[1] (numeric) = -0.50820160110231597529773153327649 absolute error = 1.63e-30 relative error = 3.2073885569515018344791152069227e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.556 y[1] (analytic) = -0.50743806295314057830992082555081 y[1] (numeric) = -0.50743806295314057830992082555244 absolute error = 1.63e-30 relative error = 3.2122146898359938811095684785946e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.555 y[1] (analytic) = -0.50667387596775228753480340034943 y[1] (numeric) = -0.50667387596775228753480340035106 absolute error = 1.63e-30 relative error = 3.2170594879925145565472477650753e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.554 y[1] (analytic) = -0.50590904021243189915864217734826 y[1] (numeric) = -0.50590904021243189915864217734989 absolute error = 1.63e-30 relative error = 3.2219230542224759744330849903352e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.143 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = -0.553 y[1] (analytic) = -0.50514355575660890241835024665051 y[1] (numeric) = -0.50514355575660890241835024665214 absolute error = 1.63e-30 relative error = 3.2268054920715958423466479560112e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.143 Order of pole = 3.4e-29 TOP MAIN SOLVE Loop x[1] = -0.552 y[1] (analytic) = -0.50437742267287154233089014290409 y[1] (numeric) = -0.50437742267287154233089014290572 absolute error = 1.63e-30 relative error = 3.2317069058366303912555343301140e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.142 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -0.551 y[1] (analytic) = -0.50361064103697687672731546082092 y[1] (numeric) = -0.50361064103697687672731546082255 absolute error = 1.63e-30 relative error = 3.2366274005721805778857460646252e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.142 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = -0.55 y[1] (analytic) = -0.50284321092786082733088202924528 y[1] (numeric) = -0.50284321092786082733088202924691 absolute error = 1.63e-30 relative error = 3.2415670820975724925397584633199e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.549 y[1] (analytic) = -0.50207513242764822461729850988092 y[1] (numeric) = -0.50207513242764822461729850988255 absolute error = 1.63e-30 relative error = 3.2465260570038129184787446252293e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.141 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = -0.548 y[1] (analytic) = -0.5013064056216628461938309875637 y[1] (numeric) = -0.50130640562166284619383098756534 absolute error = 1.64e-30 relative error = 3.2714523126155941377848527824054e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.547 y[1] (analytic) = -0.50053703059843744843262296232195 y[1] (numeric) = -0.50053703059843744843262296232358 absolute error = 1.63e-30 relative error = 3.2565023172235370127677114823257e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.14 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -0.546 y[1] (analytic) = -0.49976700744972379109224123078388 y[1] (numeric) = -0.49976700744972379109224123078551 absolute error = 1.63e-30 relative error = 3.2615198196411091658728034523678e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.545 y[1] (analytic) = -0.49899633627050265466010954777656 y[1] (numeric) = -0.49899633627050265466010954777819 absolute error = 1.63e-30 relative error = 3.2665570496621595363130893714961e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.544 y[1] (analytic) = -0.49822501715899385014714578083503 y[1] (numeric) = -0.49822501715899385014714578083666 absolute error = 1.63e-30 relative error = 3.2716141178431300554471411508283e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.138 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = -0.543 y[1] (analytic) = -0.49745305021666622106457460404516 y[1] (numeric) = -0.49745305021666622106457460404679 absolute error = 1.63e-30 relative error = 3.2766911355555096386752437404945e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.542 y[1] (analytic) = -0.49668043554824763731154671703126 y[1] (numeric) = -0.49668043554824763731154671703289 memory used=221.2MB, alloc=4.4MB, time=12.89 absolute error = 1.63e-30 relative error = 3.2817882149933434864874858991191e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.541 y[1] (analytic) = -0.49590717326173498070085721443614 y[1] (numeric) = -0.49590717326173498070085721443777 absolute error = 1.63e-30 relative error = 3.2869054691808256229002248732582e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.54 y[1] (analytic) = -0.49513326346840412184872016600183 y[1] (numeric) = -0.49513326346840412184872016600346 absolute error = 1.63e-30 relative error = 3.2920430119799757502563581503654e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.136 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -0.539 y[1] (analytic) = -0.49435870628281988815322379302575 y[1] (numeric) = -0.49435870628281988815322379302738 absolute error = 1.63e-30 relative error = 3.2972009580984015153804285450838e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.136 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = -0.538 y[1] (analytic) = -0.49358350182284602258476093982638 y[1] (numeric) = -0.49358350182284602258476093982801 absolute error = 1.63e-30 relative error = 3.3023794230971472983631090433881e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.537 y[1] (analytic) = -0.49280765020965513301040293579342 y[1] (numeric) = -0.49280765020965513301040293579505 absolute error = 1.63e-30 relative error = 3.3075785233986306518060503964724e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.536 y[1] (analytic) = -0.49203115156773863177286152210769 y[1] (numeric) = -0.49203115156773863177286152210932 absolute error = 1.63e-30 relative error = 3.3127983762946675351925191529808e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.535 y[1] (analytic) = -0.49125400602491666524336337537996 y[1] (numeric) = -0.49125400602491666524336337538159 absolute error = 1.63e-30 relative error = 3.3180390999545875061669030601005e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.134 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = -0.534 y[1] (analytic) = -0.49047621371234803306644499695386 y[1] (numeric) = -0.49047621371234803306644499695548 absolute error = 1.62e-30 relative error = 3.3029124648847686365754326222692e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.134 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = -0.533 y[1] (analytic) = -0.48969777476454009681336245071409 y[1] (numeric) = -0.48969777476454009681336245071572 absolute error = 1.63e-30 relative error = 3.3285836366802932295156288557294e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.133 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -0.532 y[1] (analytic) = -0.48891868931935867775950072379414 y[1] (numeric) = -0.48891868931935867775950072379577 absolute error = 1.63e-30 relative error = 3.3338876905466259142087203526921e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.531 y[1] (analytic) = -0.48813895751803794349986145402698 y[1] (numeric) = -0.4881389575180379434998614540286 absolute error = 1.62e-30 relative error = 3.3187271268758281551292825803625e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.132 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -0.53 y[1] (analytic) = -0.48735857950519028311540551635107 y[1] (numeric) = -0.48735857950519028311540551635269 absolute error = 1.62e-30 relative error = 3.3240412052348968344314478458692e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.529 y[1] (analytic) = -0.4865775554288161706017285892706 y[1] (numeric) = -0.48657755542881617060172858927222 absolute error = 1.62e-30 relative error = 3.3293767497604968886764087014189e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.131 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = -0.528 y[1] (analytic) = -0.48579588544031401627025343404732 y[1] (numeric) = -0.48579588544031401627025343404895 absolute error = 1.63e-30 relative error = 3.3553186612986772507903175295066e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.527 y[1] (analytic) = -0.48501356969449000583083231631739 y[1] (numeric) = -0.48501356969449000583083231631902 absolute error = 1.63e-30 relative error = 3.3607307132184710225726629319496e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.526 y[1] (analytic) = -0.48423060834956792686336688559064 y[1] (numeric) = -0.48423060834956792686336688559227 absolute error = 1.63e-30 relative error = 3.3661647402993095600702022736180e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.13 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = -0.525 y[1] (analytic) = -0.48344700156719898238477100647878 y[1] (numeric) = -0.48344700156719898238477100648041 absolute error = 1.63e-30 relative error = 3.3716208699526508668436234327335e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.129 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = -0.524 y[1] (analytic) = -0.48266274951247159121632461094724 y[1] (numeric) = -0.48266274951247159121632461094887 absolute error = 1.63e-30 relative error = 3.3770992305630211036193784908805e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.129 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = -0.523 y[1] (analytic) = -0.48187785235392117485519371838436 y[1] (numeric) = -0.48187785235392117485519371838599 absolute error = 1.63e-30 relative error = 3.3825999514973065230251586395910e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.129 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = -0.522 y[1] (analytic) = -0.48109231026353993055262345537446 y[1] (numeric) = -0.48109231026353993055262345537609 absolute error = 1.63e-30 relative error = 3.3881231631141521611292465427524e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.521 y[1] (analytic) = -0.48030612341678659030004730583775 y[1] (numeric) = -0.48030612341678659030004730583939 absolute error = 1.64e-30 relative error = 3.4144890519683979760825376338791e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.52 y[1] (analytic) = -0.47951929199259616542309704129544 y[1] (numeric) = -0.47951929199259616542309704129707 absolute error = 1.63e-30 relative error = 3.3992375848460490986164354011422e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.519 y[1] (analytic) = -0.47873181617338967648224392760468 y[1] (numeric) = -0.47873181617338967648224392760632 absolute error = 1.64e-30 relative error = 3.4257175825682242448639779738508e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.127 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = -0.518 y[1] (analytic) = -0.47794369614508386817755298629518 y[1] (numeric) = -0.47794369614508386817755298629681 absolute error = 1.63e-30 relative error = 3.4104435588270624585958547656384e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.517 y[1] (analytic) = -0.47715493209710090895378841386356 y[1] (numeric) = -0.47715493209710090895378841386519 absolute error = 1.63e-30 relative error = 3.4160812146196057950428451599409e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.126 Order of pole = 4e-30 TOP MAIN SOLVE Loop memory used=225.0MB, alloc=4.4MB, time=13.12 x[1] = -0.516 y[1] (analytic) = -0.47636552422237807500086983981014 y[1] (numeric) = -0.47636552422237807500086983981177 absolute error = 1.63e-30 relative error = 3.4217421646136582383823082769647e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.125 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = -0.515 y[1] (analytic) = -0.47557547271737741834344604311808 y[1] (numeric) = -0.47557547271737741834344604311971 absolute error = 1.63e-30 relative error = 3.4274265463826140987234240127809e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.514 y[1] (analytic) = -0.47478477778209541871212515708092 y[1] (numeric) = -0.47478477778209541871212515708255 absolute error = 1.63e-30 relative error = 3.4331344985708361008491224077773e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.513 y[1] (analytic) = -0.47399343962007261888767838419311 y[1] (numeric) = -0.47399343962007261888767838419473 absolute error = 1.62e-30 relative error = 3.4177688224936276712550012652621e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.124 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -0.512 y[1] (analytic) = -0.4732014584384032432083179270488 y[1] (numeric) = -0.47320145843840324320831792705042 absolute error = 1.62e-30 relative error = 3.4234890258920785234791640691604e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.511 y[1] (analytic) = -0.47240883444774479892893932916842 y[1] (numeric) = -0.47240883444774479892893932917004 absolute error = 1.62e-30 relative error = 3.4292330749779728428268960415054e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.51 y[1] (analytic) = -0.47161556786232766012001382320594 y[1] (numeric) = -0.47161556786232766012001382320757 absolute error = 1.63e-30 relative error = 3.4562048224748675069492346494034e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.509 y[1] (analytic) = -0.47082165889996463379261771539125 y[1] (numeric) = -0.47082165889996463379261771539288 absolute error = 1.63e-30 relative error = 3.4620327446455170691978788092485e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.508 y[1] (analytic) = -0.47002710778206050793489340712344 y[1] (numeric) = -0.47002710778206050793489340712507 absolute error = 1.63e-30 relative error = 3.4678850921844897412402925648379e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.122 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = -0.507 y[1] (analytic) = -0.46923191473362158114405048062601 y[1] (numeric) = -0.46923191473362158114405048062764 absolute error = 1.63e-30 relative error = 3.4737620115318354509490536428035e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.121 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = -0.506 y[1] (analytic) = -0.46843607998326517353683546925015 y[1] (numeric) = -0.46843607998326517353683546925178 absolute error = 1.63e-30 relative error = 3.4796636502855022767198237861509e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.121 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -0.505 y[1] (analytic) = -0.46763960376322911862022560858391 y[1] (numeric) = -0.46763960376322911862022560858554 absolute error = 1.63e-30 relative error = 3.4855901572127887048076842670185e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.504 y[1] (analytic) = -0.4668424863093812358029351366709 y[1] (numeric) = -0.46684248630938123580293513667252 absolute error = 1.62e-30 relative error = 3.4701211811437608114180986148990e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.12 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = -0.503 y[1] (analytic) = -0.46604472786122878322716269549778 y[1] (numeric) = -0.4660447278612287832271626954994 absolute error = 1.62e-30 relative error = 3.4760612086193950969808479703403e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.502 y[1] (analytic) = -0.4652463286619278905988551970611 y[1] (numeric) = -0.46524632866192789059885519706272 absolute error = 1.62e-30 relative error = 3.4820264023559356463722909410393e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.119 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.501 y[1] (analytic) = -0.46444728895829297169361727180093 y[1] (numeric) = -0.46444728895829297169361727180255 absolute error = 1.62e-30 relative error = 3.4880169149732615194701493367052e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.5 y[1] (analytic) = -0.46364760900080611621425623146121 y[1] (numeric) = -0.46364760900080611621425623146284 absolute error = 1.63e-30 relative error = 3.5156010046353242749652742593187e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.118 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = -0.499 y[1] (analytic) = -0.46284728904362646067482046940466 y[1] (numeric) = -0.46284728904362646067482046940628 absolute error = 1.62e-30 relative error = 3.5000745134477910637176240540846e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.498 y[1] (analytic) = -0.46204632934459953798486450640014 y[1] (numeric) = -0.46204632934459953798486450640176 absolute error = 1.62e-30 relative error = 3.5061419106995764432608572663418e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.497 y[1] (analytic) = -0.46124473016526660540655658665868 y[1] (numeric) = -0.46124473016526660540655658666031 absolute error = 1.63e-30 relative error = 3.5339157141501903905319652405975e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.117 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = -0.496 y[1] (analytic) = -0.46044249177087395055613495557731 y[1] (numeric) = -0.46044249177087395055613495557893 absolute error = 1.62e-30 relative error = 3.5183546891370458277866092133853e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.495 y[1] (analytic) = -0.45963961443038217512011682582162 y[1] (numeric) = -0.45963961443038217512011682582324 absolute error = 1.62e-30 relative error = 3.5245003893052565661564260663446e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.494 y[1] (analytic) = -0.45883609841647545595556968100047 y[1] (numeric) = -0.45883609841647545595556968100209 absolute error = 1.62e-30 relative error = 3.5306725115807291079997360406150e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.493 y[1] (analytic) = -0.45803194400557078324266809561153 y[1] (numeric) = -0.45803194400557078324266809561314 absolute error = 1.61e-30 relative error = 3.5150386803161887796680931895183e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.492 y[1] (analytic) = -0.45722715147782717535668078590424 y[1] (numeric) = -0.45722715147782717535668078590585 absolute error = 1.61e-30 relative error = 3.5212257076077764820673271933638e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.114 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = -0.491 y[1] (analytic) = -0.45642172111715487012546226893092 y[1] (numeric) = -0.45642172111715487012546226893253 absolute error = 1.61e-30 relative error = 3.5274394830712784711780984869313e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=228.8MB, alloc=4.4MB, time=13.34 x[1] = -0.49 y[1] (analytic) = -0.4556156532112244921374614168227 y[1] (numeric) = -0.45561565321122449213746141682431 absolute error = 1.61e-30 relative error = 3.5336801724272633807048639796409e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.489 y[1] (analytic) = -0.45480894805147619576420547108282 y[1] (numeric) = -0.45480894805147619576420547108443 absolute error = 1.61e-30 relative error = 3.5399479427519463550743605589687e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.488 y[1] (analytic) = -0.45400160593312878356017284863738 y[1] (numeric) = -0.45400160593312878356017284863899 absolute error = 1.61e-30 relative error = 3.5462429624910656829107205660068e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.113 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = -0.487 y[1] (analytic) = -0.45319362715518879970193144907309 y[1] (numeric) = -0.45319362715518879970193144907469 absolute error = 1.60e-30 relative error = 3.5304997778622910271543060403194e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.112 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = -0.486 y[1] (analytic) = -0.45238501202045959812739128281232 y[1] (numeric) = -0.45238501202045959812739128281393 absolute error = 1.61e-30 relative error = 3.5589154309276409460573572163105e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.112 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = -0.485 y[1] (analytic) = -0.45157576083555038503500120514868 y[1] (numeric) = -0.45157576083555038503500120515029 absolute error = 1.61e-30 relative error = 3.5652932234914865101461775598726e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.484 y[1] (analytic) = -0.4507658739108852354017094836356 y[1] (numeric) = -0.45076587391088523540170948363721 absolute error = 1.61e-30 relative error = 3.5716989532315197211073425854214e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.483 y[1] (analytic) = -0.4499553515607120831775069691474 y[1] (numeric) = -0.44995535156071208317750696914901 absolute error = 1.61e-30 relative error = 3.5781327956553131563099301875942e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.111 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = -0.482 y[1] (analytic) = -0.44914419410311168481337990718263 y[1] (numeric) = -0.44914419410311168481337990718424 absolute error = 1.61e-30 relative error = 3.5845949277268991651010491418852e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.481 y[1] (analytic) = -0.44833240186000655577851703912131 y[1] (numeric) = -0.44833240186000655577851703912292 absolute error = 1.61e-30 relative error = 3.5910855278818960569843196605521e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.11 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = -0.48 y[1] (analytic) = -0.44751997515716987972164272693692 y[1] (numeric) = -0.44751997515716987972164272693853 absolute error = 1.61e-30 relative error = 3.5976047760428233176928963658326e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.479 y[1] (analytic) = -0.44670691432423438993038451334011 y[1] (numeric) = -0.44670691432423438993038451334172 absolute error = 1.61e-30 relative error = 3.6041528536346086156300868168896e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.478 y[1] (analytic) = -0.44589321969470122274162992680622 y[1] (numeric) = -0.44589321969470122274162992680783 absolute error = 1.61e-30 relative error = 3.6107299436002894073862614298824e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.108 Order of pole = 1.46e-28 TOP MAIN SOLVE Loop x[1] = -0.477 y[1] (analytic) = -0.44507889160594874255488358198993 y[1] (numeric) = -0.44507889160594874255488358199154 absolute error = 1.61e-30 relative error = 3.6173362304169119981487721339751e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.108 Order of pole = 2.3e-29 TOP MAIN SOLVE Loop x[1] = -0.476 y[1] (analytic) = -0.44426393039924133809970183549022 y[1] (numeric) = -0.44426393039924133809970183549183 absolute error = 1.61e-30 relative error = 3.6239719001116309608203246561875e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.108 Order of pole = 7.7e-29 TOP MAIN SOLVE Loop x[1] = -0.475 y[1] (analytic) = -0.44344833641973818960735855987661 y[1] (numeric) = -0.44344833641973818960735855987822 absolute error = 1.61e-30 relative error = 3.6306371402780118665694345905762e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.107 Order of pole = 4.3e-29 TOP MAIN SOLVE Loop x[1] = -0.474 y[1] (analytic) = -0.44263211001650200653598212064039 y[1] (numeric) = -0.44263211001650200653598212064199 absolute error = 1.60e-30 relative error = 3.6147400149987978428555798385293e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.107 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.473 y[1] (analytic) = -0.44181525154250773549750050683741 y[1] (numeric) = -0.44181525154250773549750050683901 absolute error = 1.60e-30 relative error = 3.6214231953603383035026567767089e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.472 y[1] (analytic) = -0.44099776135465123803383890240663 y[1] (numeric) = -0.44099776135465123803383890240823 absolute error = 1.60e-30 relative error = 3.6281363313163781762218429015865e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.106 Order of pole = 1.78e-28 TOP MAIN SOLVE Loop x[1] = -0.471 y[1] (analytic) = -0.44017963981375793788893191745446 y[1] (numeric) = -0.44017963981375793788893191745607 absolute error = 1.61e-30 relative error = 3.6575976132862449564249523457117e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.105 Order of pole = 6.52e-28 TOP MAIN SOLVE Loop x[1] = -0.47 y[1] (analytic) = -0.43936088728459143742224135336384 y[1] (numeric) = -0.43936088728459143742224135336545 absolute error = 1.61e-30 relative error = 3.6644135757062491390595342642414e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.469 y[1] (analytic) = -0.43854150413586210280860987878256 y[1] (numeric) = -0.43854150413586210280860987878417 absolute error = 1.61e-30 relative error = 3.6712602679932772338755255257565e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.468 y[1] (analytic) = -0.43772149074023561766843147191357 y[1] (numeric) = -0.43772149074023561766843147191518 absolute error = 1.61e-30 relative error = 3.6781378891799699569998361096530e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.467 y[1] (analytic) = -0.43690084747434150477128106478589 y[1] (numeric) = -0.4369008474743415047712810647875 absolute error = 1.61e-30 relative error = 3.6850466400034912993162283238693e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.466 y[1] (analytic) = -0.43607957471878161545531863420582 y[1] (numeric) = -0.43607957471878161545531863420743 absolute error = 1.61e-30 relative error = 3.6919867229238024779790336631303e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.465 y[1] (analytic) = -0.43525767285813858640396714890097 y[1] (numeric) = -0.43525767285813858640396714890258 absolute error = 1.61e-30 relative error = 3.6989583421421716309390061027530e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.103 Order of pole = 2.0e-29 memory used=232.7MB, alloc=4.4MB, time=13.57 TOP MAIN SOLVE Loop x[1] = -0.464 y[1] (analytic) = -0.43443514228098426342055943014255 y[1] (numeric) = -0.43443514228098426342055943014417 absolute error = 1.62e-30 relative error = 3.7289800992945807166994507821192e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.102 Order of pole = 3.0e-29 TOP MAIN SOLVE Loop x[1] = -0.463 y[1] (analytic) = -0.43361198337988809184085624116206 y[1] (numeric) = -0.43361198337988809184085624116367 absolute error = 1.61e-30 relative error = 3.7129970150974278977060539938296e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.462 y[1] (analytic) = -0.43278819655142547322255691638437 y[1] (numeric) = -0.43278819655142547322255691638598 absolute error = 1.61e-30 relative error = 3.7200644861133451068672877160750e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.102 Order of pole = 4.6e-29 TOP MAIN SOLVE Loop x[1] = -0.461 y[1] (analytic) = -0.4319637821961860879501547024079 y[1] (numeric) = -0.43196378219618608795015470240951 absolute error = 1.61e-30 relative error = 3.7271643280241078436932083522705e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.101 Order of pole = 1.32e-28 TOP MAIN SOLVE Loop x[1] = -0.46 y[1] (analytic) = -0.43113874071878218339273183639798 y[1] (numeric) = -0.43113874071878218339273183639959 absolute error = 1.61e-30 relative error = 3.7342967540236677077696076893485e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.101 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = -0.459 y[1] (analytic) = -0.43031307252785682725154436183623 y[1] (numeric) = -0.43031307252785682725154436183785 absolute error = 1.62e-30 relative error = 3.7647008734440141325586429294662e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.1 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = -0.458 y[1] (analytic) = -0.42948677803609212573351390417567 y[1] (numeric) = -0.42948677803609212573351390417729 absolute error = 1.62e-30 relative error = 3.7719438242260918431260312840109e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.1 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -0.457 y[1] (analytic) = -0.42865985766021740618602322774456 y[1] (numeric) = -0.42865985766021740618602322774618 absolute error = 1.62e-30 relative error = 3.7792202163331870643691314011931e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.099 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = -0.456 y[1] (analytic) = -0.42783231182101736382770449813268 y[1] (numeric) = -0.42783231182101736382770449813429 absolute error = 1.61e-30 relative error = 3.7631566282294725173767566296296e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.099 Order of pole = 5.6e-29 TOP MAIN SOLVE Loop x[1] = -0.455 y[1] (analytic) = -0.42700414094334017220921390923532 y[1] (numeric) = -0.42700414094334017220921390923693 absolute error = 1.61e-30 relative error = 3.7704552383102845470895048136441e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.454 y[1] (analytic) = -0.42617534545610555703730382911058 y[1] (numeric) = -0.42617534545610555703730382911219 absolute error = 1.61e-30 relative error = 3.7777877513701080321590011598367e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.453 y[1] (analytic) = -0.42534592579231283299483400183079 y[1] (numeric) = -0.4253459257923128329948340018324 absolute error = 1.61e-30 relative error = 3.7851543940405062038267377630613e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.098 Order of pole = 4.1e-29 TOP MAIN SOLVE Loop x[1] = -0.452 y[1] (analytic) = -0.42451588238904890318870674159748 y[1] (numeric) = -0.42451588238904890318870674159909 absolute error = 1.61e-30 relative error = 3.7925553949581337060768095828580e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.097 Order of pole = 2.3e-29 TOP MAIN SOLVE Loop x[1] = -0.451 y[1] (analytic) = -0.42368521568749622085706759855491 y[1] (numeric) = -0.42368521568749622085706759855652 absolute error = 1.61e-30 relative error = 3.7999909847869498081684189845823e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.45 y[1] (analytic) = -0.42285392613294071296648279098114 y[1] (numeric) = -0.42285392613294071296648279098275 absolute error = 1.61e-30 relative error = 3.8074613962407277433942935972725e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.097 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -0.449 y[1] (analytic) = -0.42202201417477966532918791383329 y[1] (numeric) = -0.4220220141747796653291879138349 absolute error = 1.61e-30 relative error = 3.8149668641058647908581267610850e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.448 y[1] (analytic) = -0.42118948026652956886989917691197 y[1] (numeric) = -0.42118948026652956886989917691357 absolute error = 1.60e-30 relative error = 3.7987653418777617883319521597923e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.447 y[1] (analytic) = -0.42035632486583392667108882507671 y[1] (numeric) = -0.42035632486583392667108882507831 absolute error = 1.60e-30 relative error = 3.8062945776078796897150905804752e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.095 Order of pole = 3.3e-29 TOP MAIN SOLVE Loop x[1] = -0.446 y[1] (analytic) = -0.41952254843447102142505057581581 y[1] (numeric) = -0.41952254843447102142505057581741 absolute error = 1.60e-30 relative error = 3.8138593645817307209401319156988e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.445 y[1] (analytic) = -0.41868815143836164292051900380119 y[1] (numeric) = -0.41868815143836164292051900380279 absolute error = 1.60e-30 relative error = 3.8214599445992407373633109983747e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.095 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -0.444 y[1] (analytic) = -0.417853134347576775191058935508 y[1] (numeric) = -0.41785313434757677519105893550959 absolute error = 1.59e-30 relative error = 3.8051647081278397727132960680775e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.094 Order of pole = 5.2e-29 TOP MAIN SOLVE Loop x[1] = -0.443 y[1] (analytic) = -0.41701749763634524295190721711507 y[1] (numeric) = -0.41701749763634524295190721711667 absolute error = 1.60e-30 relative error = 3.8367694618782146798762478875979e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.094 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.442 y[1] (analytic) = -0.41618124178306131695142981318172 y[1] (numeric) = -0.41618124178306131695142981318331 absolute error = 1.59e-30 relative error = 3.8204509006410327042966283055214e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.441 y[1] (analytic) = -0.41534436727029227786285220934857 y[1] (numeric) = -0.41534436727029227786285220935016 absolute error = 1.59e-30 relative error = 3.8281487009194974049828644682410e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.44 y[1] (analytic) = -0.41450687458478593834143065673049 y[1] (numeric) = -0.41450687458478593834143065673208 absolute error = 1.59e-30 relative error = 3.8358833049336339405463193654636e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.093 Order of pole = 2.7e-29 TOP MAIN SOLVE Loop x[1] = -0.439 y[1] (analytic) = -0.41366876421747812287175603580052 y[1] (numeric) = -0.41366876421747812287175603580212 absolute error = 1.60e-30 relative error = 3.8678288969355970805311072644347e-28 % memory used=236.5MB, alloc=4.4MB, time=13.80 Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.092 Order of pole = 2.4e-29 TOP MAIN SOLVE Loop x[1] = -0.438 y[1] (analytic) = -0.41283003666350010502942116028857 y[1] (numeric) = -0.41283003666350010502942116029016 absolute error = 1.59e-30 relative error = 3.8514639410698141900294045819601e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.437 y[1] (analytic) = -0.41199069242218600178083631364152 y[1] (numeric) = -0.41199069242218600178083631364312 absolute error = 1.60e-30 relative error = 3.8835828804608179621537267333918e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.436 y[1] (analytic) = -0.41115073199708012444454683843121 y[1] (numeric) = -0.4111507319970801244445468384328 absolute error = 1.59e-30 relative error = 3.8671948661672131663817531677394e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.091 Order of pole = 3.4e-29 TOP MAIN SOLVE Loop x[1] = -0.435 y[1] (analytic) = -0.41031015589594428593699080906606 y[1] (numeric) = -0.41031015589594428593699080906765 absolute error = 1.59e-30 relative error = 3.8751173402669274945254440628893e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.434 y[1] (analytic) = -0.40946896463076506392523433636331 y[1] (numeric) = -0.40946896463076506392523433636491 absolute error = 1.60e-30 relative error = 3.9075000505661901174438233828519e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.09 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = -0.433 y[1] (analytic) = -0.40862715871776101950883700483963 y[1] (numeric) = -0.40862715871776101950883700484122 absolute error = 1.59e-30 relative error = 3.8910776390617095176014436155165e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.432 y[1] (analytic) = -0.40778473867738987105263045560879 y[1] (numeric) = -0.40778473867738987105263045561038 absolute error = 1.59e-30 relative error = 3.8991160021265394049648211579979e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.431 y[1] (analytic) = -0.40694170503435562279183932490758 y[1] (numeric) = -0.40694170503435562279183932490918 absolute error = 1.60e-30 relative error = 3.9317670816386875197218980526405e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.43 y[1] (analytic) = -0.40609805831761564783063575560739 y[1] (numeric) = -0.40609805831761564783063575560898 absolute error = 1.59e-30 relative error = 3.9153105202892551449734455206953e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.089 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -0.429 y[1] (analytic) = -0.40525379906038772515489664142896 y[1] (numeric) = -0.40525379906038772515489664143056 absolute error = 1.60e-30 relative error = 3.9481431234197526133264769466599e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.088 Order of pole = 2.1e-29 TOP MAIN SOLVE Loop x[1] = -0.428 y[1] (analytic) = -0.40440892780015703027962676548326 y[1] (numeric) = -0.40440892780015703027962676548485 absolute error = 1.59e-30 relative error = 3.9316639438427912216617980779171e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.427 y[1] (analytic) = -0.4035634450786830791512211804215 y[1] (numeric) = -0.40356344507868307915122118042309 absolute error = 1.59e-30 relative error = 3.9399009483874250846234619622227e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.087 Order of pole = 2.6e-29 TOP MAIN SOLVE Loop x[1] = -0.426 y[1] (analytic) = -0.40271735144200662492446667077956 y[1] (numeric) = -0.40271735144200662492446667078115 absolute error = 1.59e-30 relative error = 3.9481785284560012266218832608380e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.425 y[1] (analytic) = -0.40187064744045650723392506258874 y[1] (numeric) = -0.40187064744045650723392506259033 absolute error = 1.59e-30 relative error = 3.9564969726622884267025607047779e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.424 y[1] (analytic) = -0.40102333362865645357910062419067 y[1] (numeric) = -0.40102333362865645357910062419226 absolute error = 1.59e-30 relative error = 3.9648565723418076730258744540377e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.423 y[1] (analytic) = -0.40017541056553183244256995826032 y[1] (numeric) = -0.4001754105655318324425699582619 absolute error = 1.58e-30 relative error = 3.9482685799388034237580589753133e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.086 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = -0.422 y[1] (analytic) = -0.39932687881431635776004574075014 y[1] (numeric) = -0.39932687881431635776004574075173 absolute error = 1.59e-30 relative error = 3.9817004172647657804824787729267e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.421 y[1] (analytic) = -0.39847773894255874436115553986372 y[1] (numeric) = -0.39847773894255874436115553986531 absolute error = 1.59e-30 relative error = 3.9901852590796828716023829798616e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.42 y[1] (analytic) = -0.39762799152212931399954386888093 y[1] (numeric) = -0.39762799152212931399954386888251 absolute error = 1.58e-30 relative error = 3.9735633146744091071176553700585e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.419 y[1] (analytic) = -0.396777637129226551590749711896 y[1] (numeric) = -0.39677763712922655159074971189758 absolute error = 1.58e-30 relative error = 3.9820792608969784981940454628881e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.418 y[1] (analytic) = -0.39592667634438361127617313205893 y[1] (numeric) = -0.39592667634438361127617313206051 absolute error = 1.58e-30 relative error = 3.9906378993914764887223755961424e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.084 Order of pole = 3.7e-29 TOP MAIN SOLVE Loop x[1] = -0.417 y[1] (analytic) = -0.3950751097524747719313233480394 y[1] (numeric) = -0.39507510975247477193132334804097 absolute error = 1.57e-30 relative error = 3.9739278968590236145185313423824e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.416 y[1] (analytic) = -0.39422293794272184173643696599993 y[1] (numeric) = -0.3942229379427218417364369660015 absolute error = 1.57e-30 relative error = 3.9825181360403521321319698213375e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.415 y[1] (analytic) = -0.39337016150870051142746900072409 y[1] (numeric) = -0.39337016150870051142746900072566 absolute error = 1.57e-30 relative error = 3.9911517283836357750241702652605e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.414 y[1] (analytic) = -0.39251678104834665584539102954872 y[1] (numeric) = -0.39251678104834665584539102955029 absolute error = 1.57e-30 relative error = 3.9998289902581812021116360994534e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=240.3MB, alloc=4.4MB, time=14.03 x[1] = -0.413 y[1] (analytic) = -0.39166279716396258340168041473383 y[1] (numeric) = -0.39166279716396258340168041473541 absolute error = 1.58e-30 relative error = 4.0340824082369034061976658630339e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.412 y[1] (analytic) = -0.39080821046222323307785212167521 y[1] (numeric) = -0.39080821046222323307785212167679 absolute error = 1.58e-30 relative error = 4.0429038021777381123458609284484e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.082 Order of pole = 7.4e-29 TOP MAIN SOLVE Loop x[1] = -0.411 y[1] (analytic) = -0.3899530215541823185768703691828 y[1] (numeric) = -0.38995302155418231857687036918438 absolute error = 1.58e-30 relative error = 4.0517701175972698564873184477218e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.41 y[1] (analytic) = -0.38909723105527841924428129061132 y[1] (numeric) = -0.3890972310552784192442812906129 absolute error = 1.58e-30 relative error = 4.0606816854359262591999738690271e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.409 y[1] (analytic) = -0.38824083958534101737693007705868 y[1] (numeric) = -0.38824083958534101737693007706026 absolute error = 1.58e-30 relative error = 4.0696388398693767018007850861327e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.408 y[1] (analytic) = -0.38738384776859648153716683167276 y[1] (numeric) = -0.38738384776859648153716683167434 absolute error = 1.58e-30 relative error = 4.0786419183481601702086550953852e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.08 Order of pole = 4.6e-29 TOP MAIN SOLVE Loop x[1] = -0.407 y[1] (analytic) = -0.38652625623367399549050470224825 y[1] (numeric) = -0.38652625623367399549050470224983 absolute error = 1.58e-30 relative error = 4.0876912616378972469116057195923e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.08 Order of pole = 3.2e-29 TOP MAIN SOLVE Loop x[1] = -0.406 y[1] (analytic) = -0.38566806561361143238477189205102 y[1] (numeric) = -0.3856680656136114323847718920526 absolute error = 1.58e-30 relative error = 4.0967872138600963227994713020942e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.405 y[1] (analytic) = -0.38480927654586117378889598983605 y[1] (numeric) = -0.38480927654586117378889598983763 absolute error = 1.58e-30 relative error = 4.1059301225335642995743248438472e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.404 y[1] (analytic) = -0.38394988967229587320957482233077 y[1] (numeric) = -0.38394988967229587320957482233235 absolute error = 1.58e-30 relative error = 4.1151203386164322568338714897017e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.403 y[1] (analytic) = -0.38308990563921416370422282837193 y[1] (numeric) = -0.38308990563921416370422282837351 absolute error = 1.58e-30 relative error = 4.1243582165488067658481225863747e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.402 y[1] (analytic) = -0.38222932509734630920873589505817 y[1] (numeric) = -0.38222932509734630920873589505974 absolute error = 1.57e-30 relative error = 4.1074818097751966196637727817662e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.401 y[1] (analytic) = -0.38136814870185979919879079365685 y[1] (numeric) = -0.38136814870185979919879079365843 absolute error = 1.58e-30 relative error = 4.1429783933927539662500414435911e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.077 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = -0.4 y[1] (analytic) = -0.38050637711236488630358791681043 y[1] (numeric) = -0.38050637711236488630358791681201 absolute error = 1.58e-30 relative error = 4.1523614189872575545930779929903e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.077 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = -0.399 y[1] (analytic) = -0.37964401099292006649115805831544 y[1] (numeric) = -0.37964401099292006649115805831702 absolute error = 1.58e-30 relative error = 4.1617935598869890289972900054526e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.077 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -0.398 y[1] (analytic) = -0.37878105101203750144458560114141 y[1] (numeric) = -0.37878105101203750144458560114299 absolute error = 1.58e-30 relative error = 4.1712751886043746916247158409022e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.397 y[1] (analytic) = -0.37791749784268838274875179639149 y[1] (numeric) = -0.37791749784268838274875179639307 absolute error = 1.58e-30 relative error = 4.1808066814034883890621194688931e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.076 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -0.396 y[1] (analytic) = -0.37705335216230823750747293277759 y[1] (numeric) = -0.37705335216230823750747293277918 absolute error = 1.59e-30 relative error = 4.2169098640331429602060751354900e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.076 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.395 y[1] (analytic) = -0.3761886146528021750111992192848 y[1] (numeric) = -0.37618861465280217501119921928638 absolute error = 1.58e-30 relative error = 4.2000207833462426312013049882489e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.394 y[1] (analytic) = -0.3753232860005500740757512386144 y[1] (numeric) = -0.37532328600055007407575123861598 absolute error = 1.58e-30 relative error = 4.2097041642060129220777637468758e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.393 y[1] (analytic) = -0.37445736689641171067290198047233 y[1] (numeric) = -0.37445736689641171067290198047391 absolute error = 1.58e-30 relative error = 4.2194389526781147906433044054579e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.392 y[1] (analytic) = -0.37359085803573182547396383571233 y[1] (numeric) = -0.37359085803573182547396383571391 absolute error = 1.58e-30 relative error = 4.2292255445096626292540356085322e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.391 y[1] (analytic) = -0.37272376011834513092791162779101 y[1] (numeric) = -0.37272376011834513092791162779259 absolute error = 1.58e-30 relative error = 4.2390643394945559030920796564863e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.39 y[1] (analytic) = -0.37185607384858125749596487910426 y[1] (numeric) = -0.37185607384858125749596487910584 absolute error = 1.58e-30 relative error = 4.2489557415253395466576861566557e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.389 y[1] (analytic) = -0.37098779993526963866496515781415 y[1] (numeric) = -0.37098779993526963866496515781573 absolute error = 1.58e-30 relative error = 4.2589001586458642202222930367769e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.388 y[1] (analytic) = -0.37011893909174433436231762609371 y[1] (numeric) = -0.37011893909174433436231762609529 absolute error = 1.58e-30 relative error = 4.2688980031047608570079868094063e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.073 Order of pole = 5e-30 TOP MAIN SOLVE Loop memory used=244.1MB, alloc=4.4MB, time=14.25 x[1] = -0.387 y[1] (analytic) = -0.36924949203584879239571991273415 y[1] (numeric) = -0.36924949203584879239571991273572 absolute error = 1.57e-30 relative error = 4.2518677313375306590949087995128e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.072 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = -0.386 y[1] (analytic) = -0.36837945948994054754137626025184 y[1] (numeric) = -0.36837945948994054754137626025341 absolute error = 1.57e-30 relative error = 4.2619097225828696842345757039985e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.385 y[1] (analytic) = -0.36750884218089585790489064651353 y[1] (numeric) = -0.3675088421808958579048906465151 absolute error = 1.57e-30 relative error = 4.2720060575500705891712677134314e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.384 y[1] (analytic) = -0.36663764084011427817954935000224 y[1] (numeric) = -0.36663764084011427817954935000382 absolute error = 1.58e-30 relative error = 4.3094320495287516152087845458961e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.383 y[1] (analytic) = -0.36576585620352316942724131171394 y[1] (numeric) = -0.36576585620352316942724131171552 absolute error = 1.58e-30 relative error = 4.3197033654252306155201547858916e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.382 y[1] (analytic) = -0.364893489011582145007823739832 y[1] (numeric) = -0.36489348901158214500782373983358 absolute error = 1.58e-30 relative error = 4.3300306735532048828927777398000e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.381 y[1] (analytic) = -0.36402054000928745228332079927382 y[1] (numeric) = -0.3640205400092874522833207992754 absolute error = 1.58e-30 relative error = 4.3404144171636265585748407503074e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.07 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = -0.38 y[1] (analytic) = -0.36314700994617628972394501939422 y[1] (numeric) = -0.3631470099461762897239450193958 absolute error = 1.58e-30 relative error = 4.3508550441711723341755769238247e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.07 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.379 y[1] (analytic) = -0.36227289957633105904355433095675 y[1] (numeric) = -0.36227289957633105904355433095833 absolute error = 1.58e-30 relative error = 4.3613530072157476027169168134599e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.069 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -0.378 y[1] (analytic) = -0.36139820965838355199280249826068 y[1] (numeric) = -0.36139820965838355199280249826226 absolute error = 1.58e-30 relative error = 4.3719087637249668250300997246657e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.069 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -0.377 y[1] (analytic) = -0.3605229409555190714389072332569 y[1] (numeric) = -0.36052294095551907143890723325848 absolute error = 1.58e-30 relative error = 4.3825227759776282378535873558922e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.376 y[1] (analytic) = -0.35964709423548048636164855370809 y[1] (numeric) = -0.35964709423548048636164855370966 absolute error = 1.57e-30 relative error = 4.3653904762873900142936697040076e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.068 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -0.375 y[1] (analytic) = -0.35877067027057222039592006392646 y[1] (numeric) = -0.35877067027057222039592006392803 absolute error = 1.57e-30 relative error = 4.3760544829820152856030180322504e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.374 y[1] (analytic) = -0.35789366983766417355188788019004 y[1] (numeric) = -0.35789366983766417355188788019161 absolute error = 1.57e-30 relative error = 4.3867777843406149012502844138553e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.068 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = -0.373 y[1] (analytic) = -0.3570160937181955767445659782684 y[1] (numeric) = -0.35701609371819557674456597826997 absolute error = 1.57e-30 relative error = 4.3975608596492350336008194555648e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.372 y[1] (analytic) = -0.3561379426981787787653928910759 y[1] (numeric) = -0.35613794269817877876539289107747 absolute error = 1.57e-30 relative error = 4.4084041933452452645047847739349e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.067 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = -0.371 y[1] (analytic) = -0.35525921756820296532919301261312 y[1] (numeric) = -0.3552592175682029653291930126147 absolute error = 1.58e-30 relative error = 4.4474567354376111647824103672680e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.37 y[1] (analytic) = -0.35437991912343780983072635114399 y[1] (numeric) = -0.35437991912343780983072635114557 absolute error = 1.58e-30 relative error = 4.4584919030066529371965671080231e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.066 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = -0.369 y[1] (analytic) = -0.35350004816363705544587349984586 y[1] (numeric) = -0.35350004816363705544587349984744 absolute error = 1.58e-30 relative error = 4.4695892071522705510041292209505e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.368 y[1] (analytic) = -0.35261960549314202821336793557796 y[1] (numeric) = -0.35261960549314202821336793557954 absolute error = 1.58e-30 relative error = 4.4807491568438296925626002805051e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.367 y[1] (analytic) = -0.35173859192088508073387559329219 y[1] (numeric) = -0.35173859192088508073387559329377 absolute error = 1.58e-30 relative error = 4.4919722665955916012121299720295e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.366 y[1] (analytic) = -0.35085700826039296612413207103548 y[1] (numeric) = -0.35085700826039296612413207103706 absolute error = 1.58e-30 relative error = 4.5032590565424391267725617092629e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.065 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.365 y[1] (analytic) = -0.34997485532979014186478087324435 y[1] (numeric) = -0.34997485532979014186478087324594 absolute error = 1.59e-30 relative error = 4.5431835338618909002761084128427e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.065 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -0.364 y[1] (analytic) = -0.34909213395180200318151187157945 y[1] (numeric) = -0.34909213395180200318151187158103 absolute error = 1.58e-30 relative error = 4.5260257861271241833256270442054e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.363 y[1] (analytic) = -0.34820884495375804560007772503169 y[1] (numeric) = -0.34820884495375804560007772503327 absolute error = 1.58e-30 relative error = 4.5375067948369409809110027127983e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.362 y[1] (analytic) = -0.34732498916759495631676742525021 y[1] (numeric) = -0.34732498916759495631676742525179 absolute error = 1.58e-30 relative error = 4.5490536220461855594575053683056e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.064 Order of pole = 1.1e-29 memory used=247.9MB, alloc=4.4MB, time=14.48 TOP MAIN SOLVE Loop x[1] = -0.361 y[1] (analytic) = -0.34644056742985963402694048843014 y[1] (numeric) = -0.34644056742985963402694048843172 absolute error = 1.58e-30 relative error = 4.5606668171731557957273974309188e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.063 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = -0.36 y[1] (analytic) = -0.34555558058171213685527266971645 y[1] (numeric) = -0.34555558058171213685527266971803 absolute error = 1.58e-30 relative error = 4.5723469357381243664712853647097e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.359 y[1] (analytic) = -0.34467002946892855803243449659233 y[1] (numeric) = -0.34467002946892855803243449659391 absolute error = 1.58e-30 relative error = 4.5840945394482998628585482001381e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.358 y[1] (analytic) = -0.34378391494190382896401746938312 y[1] (numeric) = -0.3437839149419038289640174693847 absolute error = 1.58e-30 relative error = 4.5959101962842117986507414478797e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.357 y[1] (analytic) = -0.34289723785565444933863952364844 y[1] (numeric) = -0.34289723785565444933863952365002 absolute error = 1.58e-30 relative error = 4.6077944805875474320233136722961e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.062 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -0.356 y[1] (analytic) = -0.34200999906982114392330135324171 y[1] (numeric) = -0.34200999906982114392330135324329 absolute error = 1.58e-30 relative error = 4.6197479731504689483575051611114e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.355 y[1] (analytic) = -0.34112219944867144569522851511548 y[1] (numeric) = -0.34112219944867144569522851511706 absolute error = 1.58e-30 relative error = 4.6317712613064401946471605435123e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.061 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -0.354 y[1] (analytic) = -0.34023383986110220496062093699477 y[1] (numeric) = -0.34023383986110220496062093699635 absolute error = 1.58e-30 relative error = 4.6438649390225928158437110409861e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.353 y[1] (analytic) = -0.33934492118064202411194158478934 y[1] (numeric) = -0.33934492118064202411194158479092 absolute error = 1.58e-30 relative error = 4.6560296069936623199601002730697e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.06 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = -0.352 y[1] (analytic) = -0.33845544428545361767660967452334 y[1] (numeric) = -0.33845544428545361767660967452492 absolute error = 1.58e-30 relative error = 4.6682658727375252925487523281547e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.06 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = -0.351 y[1] (analytic) = -0.33756541005833609731122098855611 y[1] (numeric) = -0.33756541005833609731122098855769 absolute error = 1.58e-30 relative error = 4.6805743506923696927525984608757e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.35 y[1] (analytic) = -0.33667481938672718139669863134177 y[1] (numeric) = -0.33667481938672718139669863134335 absolute error = 1.58e-30 relative error = 4.6929556623155308930099631747026e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.349 y[1] (analytic) = -0.33578367316270532889108198776164 y[1] (numeric) = -0.33578367316270532889108198776323 absolute error = 1.59e-30 relative error = 4.7351915148940523597372837661345e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.059 Order of pole = 1.8e-29 TOP MAIN SOLVE Loop x[1] = -0.348 y[1] (analytic) = -0.33489197228299179709798977742652 y[1] (numeric) = -0.33489197228299179709798977742811 absolute error = 1.59e-30 relative error = 4.7477996834645281831811308675863e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.059 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = -0.347 y[1] (analytic) = -0.33399971764895262301014497996033 y[1] (numeric) = -0.33399971764895262301014497996192 absolute error = 1.59e-30 relative error = 4.7604830662496400479342870604247e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.058 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -0.346 y[1] (analytic) = -0.3331069101666005278887250862171 y[1] (numeric) = -0.33310691016660052788872508621869 absolute error = 1.59e-30 relative error = 4.7732423179236219089334497855093e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.345 y[1] (analytic) = -0.33221355074659674474070065410268 y[1] (numeric) = -0.33221355074659674474070065410427 absolute error = 1.59e-30 relative error = 4.7860781007479365905058219238781e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.058 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = -0.344 y[1] (analytic) = -0.33131964030425276835774855899215 y[1] (numeric) = -0.33131964030425276835774855899375 absolute error = 1.60e-30 relative error = 4.8291734185474504877745424875600e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.343 y[1] (analytic) = -0.33042517975953202758177366982368 y[1] (numeric) = -0.33042517975953202758177366982528 absolute error = 1.60e-30 relative error = 4.8422459848986238698239325333576e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.057 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = -0.342 y[1] (analytic) = -0.32953017003705147946354399331424 y[1] (numeric) = -0.32953017003705147946354399331584 absolute error = 1.60e-30 relative error = 4.8553976099368999663007558984203e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.057 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = -0.341 y[1] (analytic) = -0.32863461206608312498243964920775 y[1] (numeric) = -0.32863461206608312498243964920935 absolute error = 1.60e-30 relative error = 4.8686289917577695128611169554258e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.057 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = -0.34 y[1] (analytic) = -0.32773850678055544599683540615889 y[1] (numeric) = -0.32773850678055544599683540616048 absolute error = 1.59e-30 relative error = 4.8514287064370486339044312176245e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.056 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.339 y[1] (analytic) = -0.32684185511905476309617995619504 y[1] (numeric) = -0.32684185511905476309617995619664 absolute error = 1.60e-30 relative error = 4.8953338592977548334640233140351e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.338 y[1] (analytic) = -0.32594465802482651402740266937482 y[1] (numeric) = -0.32594465802482651402740266937641 absolute error = 1.59e-30 relative error = 4.8781287278495390119587954134502e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.056 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = -0.337 y[1] (analytic) = -0.32504691644577645236987028122436 y[1] (numeric) = -0.32504691644577645236987028122596 absolute error = 1.60e-30 relative error = 4.9223663386664003798283217832370e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.055 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = -0.336 y[1] (analytic) = -0.32414863133447176613473185397701 y[1] (numeric) = -0.32414863133447176613473185397861 absolute error = 1.60e-30 relative error = 4.9360072674471512162674523547157e-28 % Correct digits = 29 h = 0.001 memory used=251.7MB, alloc=4.4MB, time=14.71 NO POLE TOP MAIN SOLVE Loop x[1] = -0.335 y[1] (analytic) = -0.32324980364814211596613044698888 y[1] (numeric) = -0.32324980364814211596613044699048 absolute error = 1.60e-30 relative error = 4.9497323182958599413401066936631e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.334 y[1] (analytic) = -0.32235043434868059262342425859152 y[1] (numeric) = -0.32235043434868059262342425859312 absolute error = 1.60e-30 relative error = 4.9635422493934323257963838476284e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.333 y[1] (analytic) = -0.32145052440264459342524858590824 y[1] (numeric) = -0.32145052440264459342524858590984 absolute error = 1.60e-30 relative error = 4.9774378280243885041408975860396e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.054 Order of pole = 3.7e-29 TOP MAIN SOLVE Loop x[1] = -0.332 y[1] (analytic) = -0.32055007478125661733796281382548 y[1] (numeric) = -0.32055007478125661733796281382707 absolute error = 1.59e-30 relative error = 4.9602234567719756661853382506969e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.331 y[1] (analytic) = -0.31964908646040497839276381056737 y[1] (numeric) = -0.31964908646040497839276381056897 absolute error = 1.60e-30 relative error = 5.0054890433675381294322005700287e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.053 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.33 y[1] (analytic) = -0.31874756042064443711750859451907 y[1] (numeric) = -0.31874756042064443711750859452067 absolute error = 1.60e-30 relative error = 5.0196462614129931656227426123677e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.053 Order of pole = 3.5e-29 TOP MAIN SOLVE Loop x[1] = -0.329 y[1] (analytic) = -0.31784549764719674967107496257369 y[1] (numeric) = -0.31784549764719674967107496257529 absolute error = 1.60e-30 relative error = 5.0338922899451404584574644040436e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.053 Order of pole = 4.3e-29 TOP MAIN SOLVE Loop x[1] = -0.328 y[1] (analytic) = -0.31694289912995113436989894995901 y[1] (numeric) = -0.31694289912995113436989894996061 absolute error = 1.60e-30 relative error = 5.0482279438731866087205090921148e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.052 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = -0.327 y[1] (analytic) = -0.31603976586346465529816253896612 y[1] (numeric) = -0.31603976586346465529816253896772 absolute error = 1.60e-30 relative error = 5.0626540480707456781229614652034e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.052 Order of pole = 4.3e-29 TOP MAIN SOLVE Loop x[1] = -0.326 y[1] (analytic) = -0.31513609884696252269496396108787 y[1] (numeric) = -0.31513609884696252269496396108947 absolute error = 1.60e-30 relative error = 5.0771714375286390425381457123872e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.325 y[1] (analytic) = -0.31423189908433830981368625370098 y[1] (numeric) = -0.31423189908433830981368625370258 absolute error = 1.60e-30 relative error = 5.0917809575105161430541144608457e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.324 y[1] (analytic) = -0.31332716758415408595068744658613 y[1] (numeric) = -0.31332716758415408595068744658773 absolute error = 1.60e-30 relative error = 5.1064834637113570807391616164662e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.051 Order of pole = 4.7e-29 TOP MAIN SOLVE Loop x[1] = -0.323 y[1] (analytic) = -0.31242190535964046534236787132933 y[1] (numeric) = -0.31242190535964046534236787133094 absolute error = 1.61e-30 relative error = 5.1532878213090377574557730530358e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.322 y[1] (analytic) = -0.31151611342869657163162661208564 y[1] (numeric) = -0.31151611342869657163162661208724 absolute error = 1.60e-30 relative error = 5.1361709106781938412224884957720e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.051 Order of pole = 1.71e-28 TOP MAIN SOLVE Loop x[1] = -0.321 y[1] (analytic) = -0.31060979281388991760670005144684 y[1] (numeric) = -0.31060979281388991760670005144844 absolute error = 1.60e-30 relative error = 5.1511576164589323441584035109488e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.05 Order of pole = 3.1e-29 TOP MAIN SOLVE Loop x[1] = -0.32 y[1] (analytic) = -0.30970294454245619991738081039242 y[1] (numeric) = -0.30970294454245619991738081039402 absolute error = 1.60e-30 relative error = 5.1662408388263194124247425396488e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.05 Order of pole = 3.4e-29 TOP MAIN SOLVE Loop x[1] = -0.319 y[1] (analytic) = -0.30879556964629900847564513467882 y[1] (numeric) = -0.30879556964629900847564513468043 absolute error = 1.61e-30 relative error = 5.2138053724155697241330090620123e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.318 y[1] (analytic) = -0.30788766916198945024977093769348 y[1] (numeric) = -0.30788766916198945024977093769509 absolute error = 1.61e-30 relative error = 5.2291798641436595778384249158212e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.049 Order of pole = 1.38e-28 TOP MAIN SOLVE Loop x[1] = -0.317 y[1] (analytic) = -0.30697924413076568716310726590472 y[1] (numeric) = -0.30697924413076568716310726590632 absolute error = 1.60e-30 relative error = 5.2120787662062225242459813038896e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.049 Order of pole = 8.7e-29 TOP MAIN SOLVE Loop x[1] = -0.316 y[1] (analytic) = -0.30607029559853238781075889968589 y[1] (numeric) = -0.30607029559853238781075889968749 absolute error = 1.60e-30 relative error = 5.2275572736359066226704556775297e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.049 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = -0.315 y[1] (analytic) = -0.30516082461586009270957712954771 y[1] (numeric) = -0.30516082461586009270957712954931 absolute error = 1.60e-30 relative error = 5.2431369656118151728063776413979e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.314 y[1] (analytic) = -0.30425083223798449279899944368794 y[1] (numeric) = -0.30425083223798449279899944368954 absolute error = 1.60e-30 relative error = 5.2588188115406128861914507436234e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.048 Order of pole = 3.3e-29 TOP MAIN SOLVE Loop x[1] = -0.313 y[1] (analytic) = -0.30334031952480562091245691320838 y[1] (numeric) = -0.30334031952480562091245691320998 absolute error = 1.60e-30 relative error = 5.2746037932130554700037153202107e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.312 y[1] (analytic) = -0.30242928754088695594126845022163 y[1] (numeric) = -0.30242928754088695594126845022323 absolute error = 1.60e-30 relative error = 5.2904929050024225900594122024941e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.311 y[1] (analytic) = -0.30151773735545443941516582315162 y[1] (numeric) = -0.30151773735545443941516582315323 absolute error = 1.61e-30 relative error = 5.3396526987796964769723835389321e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.047 Order of pole = 2.5e-29 TOP MAIN SOLVE Loop memory used=255.5MB, alloc=4.4MB, time=14.93 x[1] = -0.31 y[1] (analytic) = -0.3006056700423954042258423224989 y[1] (numeric) = -0.30060567004239540422584232250051 absolute error = 1.61e-30 relative error = 5.3558537328086207290204872833187e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.047 Order of pole = 5.7e-29 TOP MAIN SOLVE Loop x[1] = -0.309 y[1] (analytic) = -0.29969308668025741522219125675657 y[1] (numeric) = -0.29969308668025741522219125675817 absolute error = 1.60e-30 relative error = 5.3387951578177048954081557321459e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.047 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = -0.308 y[1] (analytic) = -0.29877998835224702140819799746658 y[1] (numeric) = -0.29877998835224702140819799746818 absolute error = 1.60e-30 relative error = 5.3551109926200214705788758135762e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.307 y[1] (analytic) = -0.29786637614622841947677105790348 y[1] (numeric) = -0.29786637614622841947677105790508 absolute error = 1.60e-30 relative error = 5.3715361253615572985183151783616e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.306 y[1] (analytic) = -0.29695225115472202841514365272399 y[1] (numeric) = -0.29695225115472202841514365272559 absolute error = 1.60e-30 relative error = 5.3880716302983897169183040142150e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.305 y[1] (analytic) = -0.29603761447490297491984731513142 y[1] (numeric) = -0.29603761447490297491984731513302 absolute error = 1.60e-30 relative error = 5.4047185957703437653839624428826e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.304 y[1] (analytic) = -0.29512246720859948936165341051156 y[1] (numeric) = -0.29512246720859948936165341051316 absolute error = 1.60e-30 relative error = 5.4214781244326018447724103177992e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.303 y[1] (analytic) = -0.29420681046229121204329674576447 y[1] (numeric) = -0.29420681046229121204329674576607 absolute error = 1.60e-30 relative error = 5.4383513334918996964167844452580e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.045 Order of pole = 2.8e-29 TOP MAIN SOLVE Loop x[1] = -0.302 y[1] (analytic) = -0.29329064534710740949523789416054 y[1] (numeric) = -0.29329064534710740949523789416214 absolute error = 1.60e-30 relative error = 5.4553393549474150073446109113968e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.045 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = -0.301 y[1] (analytic) = -0.29237397297882510055718729677063 y[1] (numeric) = -0.29237397297882510055718729677223 absolute error = 1.60e-30 relative error = 5.4724433358364577730139731031142e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.044 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = -0.3 y[1] (analytic) = -0.29145679447786709199560462143289 y[1] (numeric) = -0.29145679447786709199560462143449 absolute error = 1.60e-30 relative error = 5.4896644384850744592677216375330e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.044 Order of pole = 2.6e-29 TOP MAIN SOLVE Loop x[1] = -0.299 y[1] (analytic) = -0.29053911096929992340990121468515 y[1] (numeric) = -0.29053911096929992340990121468675 absolute error = 1.60e-30 relative error = 5.5070038407636810029800538007088e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.044 Order of pole = 4.0e-29 TOP MAIN SOLVE Loop x[1] = -0.298 y[1] (analytic) = -0.28962092358283172118261172474643 y[1] (numeric) = -0.28962092358283172118261172474803 absolute error = 1.60e-30 relative error = 5.5244627363478427791806528763492e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.043 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = -0.297 y[1] (analytic) = -0.28870223345280996123136305587949 y[1] (numeric) = -0.28870223345280996123136305588109 absolute error = 1.60e-30 relative error = 5.5420423349843228443375981328437e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.043 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = -0.296 y[1] (analytic) = -0.28778304171821914032305468546916 y[1] (numeric) = -0.28778304171821914032305468547075 absolute error = 1.59e-30 relative error = 5.5249954636202572750973253548408e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.295 y[1] (analytic) = -0.28686334952267835571327398182198 y[1] (numeric) = -0.28686334952267835571327398182357 absolute error = 1.59e-30 relative error = 5.5427087588764994154511864492320e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.294 y[1] (analytic) = -0.28594315801443879287660344768433 y[1] (numeric) = -0.28594315801443879287660344768592 absolute error = 1.59e-30 relative error = 5.5605457078980446604802967077495e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.293 y[1] (analytic) = -0.28502246834638112109613372417645 y[1] (numeric) = -0.28502246834638112109613372417804 absolute error = 1.59e-30 relative error = 5.5785075795067155567791397043484e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.292 y[1] (analytic) = -0.28410128167601279668317666236213 y[1] (numeric) = -0.28410128167601279668317666236372 absolute error = 1.59e-30 relative error = 5.5965956598999978322733217154699e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.291 y[1] (analytic) = -0.28317959916546527360087674284891 y[1] (numeric) = -0.28317959916546527360087674285051 absolute error = 1.60e-30 relative error = 5.6501245312699966022424678638684e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.29 y[1] (analytic) = -0.28225742198149112126814653318423 y[1] (numeric) = -0.28225742198149112126814653318583 absolute error = 1.60e-30 relative error = 5.6685843325845976868345833577560e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.289 y[1] (analytic) = -0.28133475129546104932310265162365 y[1] (numeric) = -0.28133475129546104932310265162525 absolute error = 1.60e-30 relative error = 5.6871751272549379056873290142945e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.041 Order of pole = 2.6e-29 TOP MAIN SOLVE Loop x[1] = -0.288 y[1] (analytic) = -0.28041158828336083912795278504169 y[1] (numeric) = -0.28041158828336083912795278504329 absolute error = 1.60e-30 relative error = 5.7058982825744415194102520281133e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.287 y[1] (analytic) = -0.27948793412578818180008161696429 y[1] (numeric) = -0.27948793412578818180008161696589 absolute error = 1.60e-30 relative error = 5.7247551848871352494324752553493e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.04 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -0.286 y[1] (analytic) = -0.27856379000794942255690398524164 y[1] (numeric) = -0.27856379000794942255690398524324 absolute error = 1.60e-30 relative error = 5.7437472399206678159060789518877e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.04 Order of pole = 6.2e-29 TOP MAIN SOLVE Loop x[1] = -0.285 y[1] (analytic) = -0.27763915711965621116489713174288 y[1] (numeric) = -0.27763915711965621116489713174448 absolute error = 1.60e-30 relative error = 5.7628758731263404160534303864426e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=259.4MB, alloc=4.4MB, time=15.16 x[1] = -0.284 y[1] (analytic) = -0.27671403665532205828609045030453 y[1] (numeric) = -0.27671403665532205828609045030613 absolute error = 1.60e-30 relative error = 5.7821425300263209486041712811850e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.04 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = -0.283 y[1] (analytic) = -0.27578842981395879751818060333197 y[1] (numeric) = -0.27578842981395879751818060333357 absolute error = 1.60e-30 relative error = 5.8015486765682196749354550747809e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.282 y[1] (analytic) = -0.27486233779917295292735217892747 y[1] (numeric) = -0.27486233779917295292735217892908 absolute error = 1.61e-30 relative error = 5.8574776482340041049526137608156e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.039 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -0.281 y[1] (analytic) = -0.27393576181916201187581911384407 y[1] (numeric) = -0.27393576181916201187581911384568 absolute error = 1.61e-30 relative error = 5.8772903154675998684351886810869e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.28 y[1] (analytic) = -0.27300870308671060294905982523562 y[1] (numeric) = -0.27300870308671060294905982523723 absolute error = 1.61e-30 relative error = 5.8972478964842599876963448851440e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.279 y[1] (analytic) = -0.27208116281918657879069928603027 y[1] (numeric) = -0.27208116281918657879069928603188 absolute error = 1.61e-30 relative error = 5.9173519523287859917009495448566e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.278 y[1] (analytic) = -0.27115314223853700365599405237651 y[1] (numeric) = -0.27115314223853700365599405237813 absolute error = 1.62e-30 relative error = 5.9744835948641324793839856811281e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.038 Order of pole = 3.9e-29 TOP MAIN SOLVE Loop x[1] = -0.277 y[1] (analytic) = -0.27022464257128404549790141221517 y[1] (numeric) = -0.27022464257128404549790141221679 absolute error = 1.62e-30 relative error = 5.9950120928466073748734935397938e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.038 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = -0.276 y[1] (analytic) = -0.26929566504852077240276127446637 y[1] (numeric) = -0.26929566504852077240276127446799 absolute error = 1.62e-30 relative error = 6.0156928248663562319123684737340e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.037 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = -0.275 y[1] (analytic) = -0.2683662109059068531956890590657 y[1] (numeric) = -0.26836621090590685319568905906732 absolute error = 1.62e-30 relative error = 6.0365274545236839222160886292597e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.274 y[1] (analytic) = -0.2674362813836641620388695772418 y[1] (numeric) = -0.26743628138366416203886957724342 absolute error = 1.62e-30 relative error = 6.0575176696984787909890475594241e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.037 Order of pole = 4.1e-29 TOP MAIN SOLVE Loop x[1] = -0.273 y[1] (analytic) = -0.26650587772657228684905560472492 y[1] (numeric) = -0.26650587772657228684905560472654 absolute error = 1.62e-30 relative error = 6.0786651829948588225755800355801e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.037 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -0.272 y[1] (analytic) = -0.26557500118396394136371044135735 y[1] (numeric) = -0.26557500118396394136371044135897 absolute error = 1.62e-30 relative error = 6.0999717321956261912546226890902e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.271 y[1] (analytic) = -0.26464365300972028068839110980497 y[1] (numeric) = -0.26464365300972028068839110980659 absolute error = 1.62e-30 relative error = 6.1214390807267835511568033637985e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.036 Order of pole = 7.5e-29 TOP MAIN SOLVE Loop x[1] = -0.27 y[1] (analytic) = -0.26371183446226612016114786232071 y[1] (numeric) = -0.26371183446226612016114786232233 absolute error = 1.62e-30 relative error = 6.1430690181323729260697336802568e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.036 Order of pole = 4.0e-29 TOP MAIN SOLVE Loop x[1] = -0.269 y[1] (analytic) = -0.26277954680456505737291622397537 y[1] (numeric) = -0.26277954680456505737291622397699 absolute error = 1.62e-30 relative error = 6.1648633605599058178406711228974e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.268 y[1] (analytic) = -0.26184679130411449718609978724919 y[1] (numeric) = -0.26184679130411449718609978725081 absolute error = 1.62e-30 relative error = 6.1868239512566611705570275602100e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.035 Order of pole = 3.702e-27 TOP MAIN SOLVE Loop x[1] = -0.267 y[1] (analytic) = -0.26091356923294057959678526777799 y[1] (numeric) = -0.26091356923294057959678526777961 absolute error = 1.62e-30 relative error = 6.2089526610771361164420301686663e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.035 Order of pole = 1.06e-28 TOP MAIN SOLVE Loop x[1] = -0.266 y[1] (analytic) = -0.25997988186759301028929581338912 y[1] (numeric) = -0.25997988186759301028929581339074 absolute error = 1.62e-30 relative error = 6.2312513890019429986062976887713e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.265 y[1] (analytic) = -0.25904573048913979373507410496906 y[1] (numeric) = -0.25904573048913979373507410497068 absolute error = 1.62e-30 relative error = 6.2537220626684550260290711334908e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.035 Order of pole = 4.1e-29 TOP MAIN SOLVE Loop x[1] = -0.264 y[1] (analytic) = -0.25811111638316186869119327240872 y[1] (numeric) = -0.25811111638316186869119327241033 absolute error = 1.61e-30 relative error = 6.2376236349696015100438133392418e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.263 y[1] (analytic) = -0.25717604083974764595712094371203 y[1] (numeric) = -0.25717604083974764595712094371365 absolute error = 1.62e-30 relative error = 6.2991871043285076545104376163768e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.034 Order of pole = 2.0e-29 TOP MAIN SOLVE Loop x[1] = -0.262 y[1] (analytic) = -0.25624050515348744825170971977317 y[1] (numeric) = -0.25624050515348744825170971977479 absolute error = 1.62e-30 relative error = 6.3221854758271877583962134615386e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.261 y[1] (analytic) = -0.25530451062346785207575588837784 y[1] (numeric) = -0.25530451062346785207575588837946 absolute error = 1.62e-30 relative error = 6.3453638012265026583747335692124e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.033 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -0.26 y[1] (analytic) = -0.25436805855326593142885712332461 y[1] (numeric) = -0.25436805855326593142885712332623 absolute error = 1.62e-30 relative error = 6.3687241598408629423596080208888e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.259 y[1] (analytic) = -0.25343115025094340325270912045762 y[1] (numeric) = -0.25343115025094340325270912045924 absolute error = 1.62e-30 relative error = 6.3922686630901621492800297945203e-28 % Correct digits = 29 h = 0.001 NO POLE memory used=263.2MB, alloc=4.4MB, time=15.39 TOP MAIN SOLVE Loop x[1] = -0.258 y[1] (analytic) = -0.25249378702904067447641046172953 y[1] (numeric) = -0.25249378702904067447641046173115 absolute error = 1.62e-30 relative error = 6.4159994551219394890812773233854e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.033 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -0.257 y[1] (analytic) = -0.25155597020457079054279432865903 y[1] (numeric) = -0.25155597020457079054279432866065 absolute error = 1.62e-30 relative error = 6.4399187134480677908721219908355e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.256 y[1] (analytic) = -0.25061770109901328529827486280961 y[1] (numeric) = -0.25061770109901328529827486281123 absolute error = 1.62e-30 relative error = 6.4640286495963638543683426098781e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.255 y[1] (analytic) = -0.24967898103830793213218484590961 y[1] (numeric) = -0.24967898103830793213218484591124 absolute error = 1.63e-30 relative error = 6.5283829388502316478358739978982e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.032 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = -0.254 y[1] (analytic) = -0.24873981135284839625508979628847 y[1] (numeric) = -0.2487398113528483962550897962901 absolute error = 1.63e-30 relative error = 6.5530322272688913798372732541812e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.032 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -0.253 y[1] (analytic) = -0.24780019337747578800909139937062 y[1] (numeric) = -0.24780019337747578800909139937224 absolute error = 1.62e-30 relative error = 6.5375251646080942998308909340765e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.252 y[1] (analytic) = -0.24686012845147211710668025362079 y[1] (numeric) = -0.24686012845147211710668025362242 absolute error = 1.63e-30 relative error = 6.6029294006481333606998853879116e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.251 y[1] (analytic) = -0.24591961791855364769826406277119 y[1] (numeric) = -0.24591961791855364769826406277282 absolute error = 1.63e-30 relative error = 6.6281820612613396759649218453897e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.25 y[1] (analytic) = -0.24497866312686415417208248121128 y[1] (numeric) = -0.24497866312686415417208248121291 absolute error = 1.63e-30 relative error = 6.6536406852538480149200393755753e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.031 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = -0.249 y[1] (analytic) = -0.24403726542896807759382366054851 y[1] (numeric) = -0.24403726542896807759382366055014 absolute error = 1.63e-30 relative error = 6.6793077570951722958433002108105e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.248 y[1] (analytic) = -0.24309542618184358269687998765299 y[1] (numeric) = -0.24309542618184358269687998765462 absolute error = 1.63e-30 relative error = 6.7051858013186352228608745986429e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.03 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = -0.247 y[1] (analytic) = -0.24215314674687551533782138172501 y[1] (numeric) = -0.24215314674687551533782138172664 absolute error = 1.63e-30 relative error = 6.7312773833323385170549790317760e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.246 y[1] (analytic) = -0.24121042848984826033532366146249 y[1] (numeric) = -0.24121042848984826033532366146413 absolute error = 1.64e-30 relative error = 6.7990426876134093486495865321626e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.245 y[1] (analytic) = -0.24026727278093849961446673229958 y[1] (numeric) = -0.24026727278093849961446673230122 absolute error = 1.64e-30 relative error = 6.8257319485007643211901228258376e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.244 y[1] (analytic) = -0.23932368099470787058201250463952 y[1] (numeric) = -0.23932368099470787058201250464116 absolute error = 1.64e-30 relative error = 6.8526440558812275630973860478811e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.029 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = -0.243 y[1] (analytic) = -0.23837965451009552466198536138191 y[1] (numeric) = -0.23837965451009552466198536138356 absolute error = 1.65e-30 relative error = 6.9217316527745931748372820905427e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.242 y[1] (analytic) = -0.23743519471041058592460846888223 y[1] (numeric) = -0.23743519471041058592460846888388 absolute error = 1.65e-30 relative error = 6.9492646278174281273864761743965e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.241 y[1] (analytic) = -0.23649030298332450974539708949449 y[1] (numeric) = -0.23649030298332450974539708949614 absolute error = 1.65e-30 relative error = 6.9770302595296915835862284275836e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.24 y[1] (analytic) = -0.23554498072086334143497512343376 y[1] (numeric) = -0.23554498072086334143497512343541 absolute error = 1.65e-30 relative error = 7.0050314591732314375083046328573e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.239 y[1] (analytic) = -0.23459922931939987478396319794222 y[1] (numeric) = -0.23459922931939987478396319794387 absolute error = 1.65e-30 relative error = 7.0332711867248892946635136430086e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.238 y[1] (analytic) = -0.23365305017964571047108554543775 y[1] (numeric) = -0.2336530501796457104710855454394 absolute error = 1.65e-30 relative error = 7.0617524518998851656655659960181e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.237 y[1] (analytic) = -0.23270644470664321428645847996177 y[1] (numeric) = -0.23270644470664321428645847996342 absolute error = 1.65e-30 relative error = 7.0904783152011106856922898461645e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.236 y[1] (analytic) = -0.23175941430975737512585530103053 y[1] (numeric) = -0.23175941430975737512585530103219 absolute error = 1.66e-30 relative error = 7.1626000822617362997059067095610e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.235 y[1] (analytic) = -0.23081196040266756271559073186302 y[1] (numeric) = -0.23081196040266756271559073186467 absolute error = 1.65e-30 relative error = 7.1486763386154682889357050458055e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.027 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = -0.234 y[1] (analytic) = -0.22986408440335918503153233857194 y[1] (numeric) = -0.22986408440335918503153233857359 absolute error = 1.65e-30 relative error = 7.1781548834946537196453992946477e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.027 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = -0.233 y[1] (analytic) = -0.22891578773411524537962657966637 y[1] (numeric) = -0.22891578773411524537962657966802 absolute error = 1.65e-30 relative error = 7.2078907983247895345821850673410e-28 % Correct digits = 29 h = 0.001 NO POLE memory used=267.0MB, alloc=4.4MB, time=15.62 TOP MAIN SOLVE Loop x[1] = -0.232 y[1] (analytic) = -0.22796707182150779910922300027972 y[1] (numeric) = -0.22796707182150779910922300028138 absolute error = 1.66e-30 relative error = 7.2817533985773883627192148355701e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.231 y[1] (analytic) = -0.22701793809638930993439140982068 y[1] (numeric) = -0.22701793809638930993439140982234 absolute error = 1.66e-30 relative error = 7.3121975026272255570296894803249e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.23 y[1] (analytic) = -0.2260683879938839058423534599328 y[1] (numeric) = -0.22606838799388390584235345993446 absolute error = 1.66e-30 relative error = 7.3429107657675248855874118967621e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.026 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = -0.229 y[1] (analytic) = -0.22511842295337853457209166420795 y[1] (numeric) = -0.2251184229533785345720916642096 absolute error = 1.65e-30 relative error = 7.3294756526510977546460914926278e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.026 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = -0.228 y[1] (analytic) = -0.22416804441851401865015536228796 y[1] (numeric) = -0.22416804441851401865015536228961 absolute error = 1.65e-30 relative error = 7.3605495568293704944747613098138e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.227 y[1] (analytic) = -0.22321725383717600997465421687039 y[1] (numeric) = -0.22321725383717600997465421687204 absolute error = 1.65e-30 relative error = 7.3919017084744664498425510516444e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = -0.226 y[1] (analytic) = -0.22226605266148584394241532858389 y[1] (numeric) = -0.22226605266148584394241532858554 absolute error = 1.65e-30 relative error = 7.4235358042416488933473114097760e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = -0.225 y[1] (analytic) = -0.22131444234779129311827974442012 y[1] (numeric) = -0.22131444234779129311827974442178 absolute error = 1.66e-30 relative error = 7.5006401859275982112423843065277e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = -0.224 y[1] (analytic) = -0.22036242435665722044952780194386 y[1] (numeric) = -0.22036242435665722044952780194552 absolute error = 1.66e-30 relative error = 7.5330447323146400143551846512505e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = -0.223 y[1] (analytic) = -0.21941000015285613203245017324312 y[1] (numeric) = -0.21941000015285613203245017324477 absolute error = 1.65e-30 relative error = 7.5201677172895321566921373009209e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = -0.222 y[1] (analytic) = -0.21845717120535862944212242678504 y[1] (numeric) = -0.2184571712053586294421224267867 absolute error = 1.66e-30 relative error = 7.5987434554827795444616416944497e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.221 y[1] (analytic) = -0.2175039389873237616404951871435 y[1] (numeric) = -0.21750393898732376164049518714515 absolute error = 1.65e-30 relative error = 7.5860695106591279955113233286753e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.024 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -0.22 y[1] (analytic) = -0.21655030497608927648197931498645 y[1] (numeric) = -0.21655030497608927648197931498811 absolute error = 1.66e-30 relative error = 7.6656553320637962861766390840256e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.219 y[1] (analytic) = -0.21559627065316177183978572368475 y[1] (numeric) = -0.2155962706531617718397857236864 absolute error = 1.65e-30 relative error = 7.6531936058134331553787056421950e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.024 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = -0.218 y[1] (analytic) = -0.21464183750420674638037226327621 y[1] (numeric) = -0.21464183750420674638037226327786 absolute error = 1.65e-30 relative error = 7.6872245373302946868523567152677e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.217 y[1] (analytic) = -0.2136870070190385500174553040726 y[1] (numeric) = -0.21368700701903855001745530407425 absolute error = 1.65e-30 relative error = 7.7215738243410954346504016432302e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = -0.216 y[1] (analytic) = -0.21273178069161023408116100566043 y[1] (numeric) = -0.21273178069161023408116100566208 absolute error = 1.65e-30 relative error = 7.7562458915903442509913594655216e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.215 y[1] (analytic) = -0.21177616002000330124202052511406 y[1] (numeric) = -0.21177616002000330124202052511571 absolute error = 1.65e-30 relative error = 7.7912452461322812458737358664959e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.214 y[1] (analytic) = -0.21082014650641735523365436158161 y[1] (numeric) = -0.21082014650641735523365436158326 absolute error = 1.65e-30 relative error = 7.8265764792539600975434455087455e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.213 y[1] (analytic) = -0.20986374165715965042214341168905 y[1] (numeric) = -0.2098637416571596504221434116907 absolute error = 1.65e-30 relative error = 7.8622442684525017830986500311042e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.212 y[1] (analytic) = -0.20890694698263454127424787811166 y[1] (numeric) = -0.20890694698263454127424787811331 absolute error = 1.65e-30 relative error = 7.8982533794683084094215838661207e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.211 y[1] (analytic) = -0.2079497639973328317808096868911 y[1] (numeric) = -0.20794976399733283178080968689275 absolute error = 1.65e-30 relative error = 7.9346086683760936418855694750612e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.21 y[1] (analytic) = -0.20699219421982102489585928037958 y[1] (numeric) = -0.20699219421982102489585928038122 absolute error = 1.64e-30 relative error = 7.9230040832281681219858277425460e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.022 Order of pole = 2.0e-29 TOP MAIN SOLVE Loop x[1] = -0.209 y[1] (analytic) = -0.20603423917273047205614331288115 y[1] (numeric) = -0.20603423917273047205614331288279 absolute error = 1.64e-30 relative error = 7.9598420465692244763442447690553e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.208 y[1] (analytic) = -0.20507590038274642284999563402438 y[1] (numeric) = -0.20507590038274642284999563402602 absolute error = 1.64e-30 relative error = 7.9970391300935989044311601144950e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = -0.207 y[1] (analytic) = -0.20411717938059697490868974762712 y[1] (numeric) = -0.20411717938059697490868974762877 absolute error = 1.65e-30 relative error = 8.0835920083111149367821197575031e-28 % memory used=270.8MB, alloc=4.4MB, time=15.85 Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.206 y[1] (analytic) = -0.20315807770104192409763642640581 y[1] (numeric) = -0.20315807770104192409763642640745 absolute error = 1.64e-30 relative error = 8.0725315899737371594921084813493e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.205 y[1] (analytic) = -0.20219859688286151508902508857327 y[1] (numeric) = -0.20219859688286151508902508857491 absolute error = 1.64e-30 relative error = 8.1108376877120034522169268917107e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -0.204 y[1] (analytic) = -0.20123873846884509240175164255016 y[1] (numeric) = -0.2012387384688450924017516425518 absolute error = 1.64e-30 relative error = 8.1495243534032473484221968677221e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = -0.203 y[1] (analytic) = -0.20027850400577965199872852024381 y[1] (numeric) = -0.20027850400577965199872852024545 absolute error = 1.64e-30 relative error = 8.1885972143704087071829799276131e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.202 y[1] (analytic) = -0.19931789504443829353593428537757 y[1] (numeric) = -0.19931789504443829353593428537921 absolute error = 1.64e-30 relative error = 8.2280620093562545660857871551524e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.201 y[1] (analytic) = -0.19835691313956857336183025714339 y[1] (numeric) = -0.19835691313956857336183025714503 absolute error = 1.64e-30 relative error = 8.2679245912949732189559084580364e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = -0.2 y[1] (analytic) = -0.19739555984988075837004976519479 y[1] (numeric) = -0.19739555984988075837004976519643 absolute error = 1.64e-30 relative error = 8.3081909301669162252357058806598e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = -0.199 y[1] (analytic) = -0.19643383673803598081255168214006 y[1] (numeric) = -0.1964338367380359808125516821417 absolute error = 1.64e-30 relative error = 8.3488671159394131539232150071080e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -0.198 y[1] (analytic) = -0.1954717453706342941847234949532 y[1] (numeric) = -0.19547174537063429418472349495484 absolute error = 1.64e-30 relative error = 8.3899593615967020388347840825724e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.197 y[1] (analytic) = -0.1945092873182026302982201061027 y[1] (numeric) = -0.19450928731820263029822010610433 absolute error = 1.63e-30 relative error = 8.3800625793946900086725559773982e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.196 y[1] (analytic) = -0.19354646415518265766163252603031 y[1] (numeric) = -0.19354646415518265766163252603195 absolute error = 1.64e-30 relative error = 8.4734175184160044898343859959359e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -0.195 y[1] (analytic) = -0.19258327745991854129339535655458 y[1] (numeric) = -0.19258327745991854129339535655622 absolute error = 1.64e-30 relative error = 8.5157964992122721856627716270633e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.194 y[1] (analytic) = -0.19161972881464460409566319384601 y[1] (numeric) = -0.19161972881464460409566319384765 absolute error = 1.64e-30 relative error = 8.5586176858980213335104270873346e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 2.4e-29 TOP MAIN SOLVE Loop x[1] = -0.193 y[1] (analytic) = -0.19065581980547288992221352222369 y[1] (numeric) = -0.19065581980547288992221352222533 absolute error = 1.64e-30 relative error = 8.6018879553391048076320759286974e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.192 y[1] (analytic) = -0.18969155202238062847776704695925 y[1] (numeric) = -0.18969155202238062847776704696089 absolute error = 1.64e-30 relative error = 8.6456143276560134727068447625520e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.191 y[1] (analytic) = -0.18872692705919760219045544477445 y[1] (numeric) = -0.1887269270591976021904554447761 absolute error = 1.65e-30 relative error = 8.7427905795469650244319262178114e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 7.27e-28 TOP MAIN SOLVE Loop x[1] = -0.19 y[1] (analytic) = -0.18776194651359341520351091246245 y[1] (numeric) = -0.18776194651359341520351091246409 absolute error = 1.64e-30 relative error = 8.7344642002913449853122280420894e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.189 y[1] (analytic) = -0.18679661198706466463660138320294 y[1] (numeric) = -0.18679661198706466463660138320458 absolute error = 1.64e-30 relative error = 8.7796024914711360106708422985596e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.188 y[1] (analytic) = -0.18583092508492201427158957132817 y[1] (numeric) = -0.18583092508492201427158957132981 absolute error = 1.64e-30 relative error = 8.8252264753594913834148495057422e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 5.5e-29 TOP MAIN SOLVE Loop x[1] = -0.187 y[1] (analytic) = -0.18486488741627717082185281270067 y[1] (numeric) = -0.18486488741627717082185281270231 absolute error = 1.64e-30 relative error = 8.8713439470366378464289951161278e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.186 y[1] (analytic) = -0.18389850059402976294866370120209 y[1] (numeric) = -0.18389850059402976294866370120373 absolute error = 1.64e-30 relative error = 8.9179628692048310933545917649231e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 5.1e-29 TOP MAIN SOLVE Loop x[1] = -0.185 y[1] (analytic) = -0.18293176623485412319249849239243 y[1] (numeric) = -0.18293176623485412319249849239407 absolute error = 1.64e-30 relative error = 8.9650913767186357637859113313371e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 5.0e-29 TOP MAIN SOLVE Loop x[1] = -0.184 y[1] (analytic) = -0.18196468595918597299151086206316 y[1] (numeric) = -0.18196468595918597299151086206479 absolute error = 1.63e-30 relative error = 8.9577820630844995883371035906470e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.183 y[1] (analytic) = -0.18099726139120901096378257767923 y[1] (numeric) = -0.18099726139120901096378257768087 absolute error = 1.64e-30 relative error = 9.0609105761843000213117184125994e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.182 y[1] (analytic) = -0.18002949415884140463433967073478 y[1] (numeric) = -0.18002949415884140463433967073642 absolute error = 1.64e-30 relative error = 9.1096184414816797245020629208278e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 4.0e-29 TOP MAIN SOLVE Loop x[1] = -0.181 y[1] (analytic) = -0.17906138589372218579230249265557 y[1] (numeric) = -0.17906138589372218579230249265721 absolute error = 1.64e-30 relative error = 9.1588702489624687182508542864716e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=274.6MB, alloc=4.4MB, time=16.06 x[1] = -0.18 y[1] (analytic) = -0.17809293823119754966792029959123 y[1] (numeric) = -0.17809293823119754966792029959287 absolute error = 1.64e-30 relative error = 9.2086750675704888909723785549851e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.179 y[1] (analytic) = -0.17712415281030705812362544449479 y[1] (numeric) = -0.17712415281030705812362544449643 absolute error = 1.64e-30 relative error = 9.2590421688925448127598640015736e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.178 y[1] (analytic) = -0.17615503127376974705762855928587 y[1] (numeric) = -0.17615503127376974705762855928752 absolute error = 1.65e-30 relative error = 9.3667492098801733233430204261085e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 2.6e-29 TOP MAIN SOLVE Loop x[1] = -0.177 y[1] (analytic) = -0.17518557526797013822296398541092 y[1] (numeric) = -0.17518557526797013822296398541257 absolute error = 1.65e-30 relative error = 9.4185836789136367517528775732481e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.176 y[1] (analytic) = -0.17421578644294415566928385633262 y[1] (numeric) = -0.17421578644294415566928385633427 absolute error = 1.65e-30 relative error = 9.4710131250957366628748754261536e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = -0.175 y[1] (analytic) = -0.17324566645236494701908934781572 y[1] (numeric) = -0.17324566645236494701908934781738 absolute error = 1.66e-30 relative error = 9.5817692528339696508922883711110e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.174 y[1] (analytic) = -0.1722752169535286097944783876051 y[1] (numeric) = -0.17227521695352860979447838760675 absolute error = 1.65e-30 relative error = 9.5776979949767756832673600328634e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.173 y[1] (analytic) = -0.17130443960733982301488025038005 y[1] (numeric) = -0.1713044396073398230148802503817 absolute error = 1.65e-30 relative error = 9.6319745348228733917212883501995e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 1.8e-29 TOP MAIN SOLVE Loop x[1] = -0.172 y[1] (analytic) = -0.17033333607829738429063865080129 y[1] (numeric) = -0.17033333607829738429063865080294 absolute error = 1.65e-30 relative error = 9.6868882979051263597539813373694e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.171 y[1] (analytic) = -0.1693619080344796526416958800731 y[1] (numeric) = -0.16936190803447965264169588007475 absolute error = 1.65e-30 relative error = 9.7424504668669869497661683953084e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.17 y[1] (analytic) = -0.16839015714752989727502090172968 y[1] (numeric) = -0.16839015714752989727502090173133 absolute error = 1.65e-30 relative error = 9.7986724874566323641704870676790e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 2.6e-29 TOP MAIN SOLVE Loop x[1] = -0.169 y[1] (analytic) = -0.16741808509264155255881382133079 y[1] (numeric) = -0.16741808509264155255881382133245 absolute error = 1.66e-30 relative error = 9.9152967798038755026827707094225e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.168 y[1] (analytic) = -0.1664456935485433794359074624614 y[1] (numeric) = -0.16644569354854337943590746246306 absolute error = 1.66e-30 relative error = 9.9732228849517578975205575944993e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.167 y[1] (analytic) = -0.16547298419748453352317360698024 y[1] (numeric) = -0.16547298419748453352317360698189 absolute error = 1.65e-30 relative error = 9.9714162284690503771623921785514e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -0.166 y[1] (analytic) = -0.16449995872521954014812647905254 y[1] (numeric) = -0.1644999587252195401481264790542 absolute error = 1.66e-30 relative error = 1.0091187942319555613033610658783e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 3.4e-29 TOP MAIN SOLVE Loop x[1] = -0.165 y[1] (analytic) = -0.16352661882099317657829895745621 y[1] (numeric) = -0.16352661882099317657829895745786 absolute error = 1.65e-30 relative error = 1.0090100387914195293468359111860e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = -0.164 y[1] (analytic) = -0.16255296617752526170334747544429 y[1] (numeric) = -0.16255296617752526170334747544594 absolute error = 1.65e-30 relative error = 1.0150537629673414577144970188966e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.163 y[1] (analytic) = -0.16157900249099535343421929774144 y[1] (numeric) = -0.16157900249099535343421929774309 absolute error = 1.65e-30 relative error = 1.0211722900640836395483748941201e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = -0.162 y[1] (analytic) = -0.16060472946102735408809053492158 y[1] (numeric) = -0.16060472946102735408809053492323 absolute error = 1.65e-30 relative error = 1.0273670056524656114368800839890e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = -0.161 y[1] (analytic) = -0.15963014879067402403215455058094 y[1] (numeric) = -0.15963014879067402403215455058259 absolute error = 1.65e-30 relative error = 1.0336393297256620457929523818941e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 2.0e-29 TOP MAIN SOLVE Loop x[1] = -0.16 y[1] (analytic) = -0.15865526218640140386370801978126 y[1] (numeric) = -0.15865526218640140386370801978291 absolute error = 1.65e-30 relative error = 1.0399907177748965565449314895078e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = -0.159 y[1] (analytic) = -0.15768007135807314540834549089928 y[1] (numeric) = -0.15768007135807314540834549090093 absolute error = 1.65e-30 relative error = 1.0464226619057277442806478538917e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.158 y[1] (analytic) = -0.15670457801893475182243256932571 y[1] (numeric) = -0.15670457801893475182243256932736 absolute error = 1.65e-30 relative error = 1.0529366919967258713546254779772e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = -0.157 y[1] (analytic) = -0.15572878388559772709038246182826 y[1] (numeric) = -0.15572878388559772709038246182992 absolute error = 1.66e-30 relative error = 1.0659557973685055297172341758377e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = -0.156 y[1] (analytic) = -0.15475269067802363521161027564922 y[1] (numeric) = -0.15475269067802363521161027565087 absolute error = 1.65e-30 relative error = 1.0662173257025739126185099898188e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.155 y[1] (analytic) = -0.15377630011950806937638383680651 y[1] (numeric) = -0.15377630011950806937638383680816 absolute error = 1.65e-30 relative error = 1.0729871889996662201981502568319e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.154 y[1] (analytic) = -0.15279961393666453143412855733377 y[1] (numeric) = -0.15279961393666453143412855733543 absolute error = 1.66e-30 relative error = 1.0863901794202636602141124893812e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop memory used=278.4MB, alloc=4.4MB, time=16.27 x[1] = -0.153 y[1] (analytic) = -0.15182263385940822196207672055546 y[1] (numeric) = -0.15182263385940822196207672055711 absolute error = 1.65e-30 relative error = 1.0867944772503049045929194472965e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 2.0e-29 TOP MAIN SOLVE Loop x[1] = -0.152 y[1] (analytic) = -0.15084536162093974124647814570863 y[1] (numeric) = -0.15084536162093974124647814571028 absolute error = 1.65e-30 relative error = 1.0938354234227601816249386180397e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.151 y[1] (analytic) = -0.14986779895772870149290921662043 y[1] (numeric) = -0.14986779895772870149290921662208 absolute error = 1.65e-30 relative error = 1.1009703295004649093816627692455e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 3.7e-29 TOP MAIN SOLVE Loop x[1] = -0.15 y[1] (analytic) = -0.14888994760949725058653039165587 y[1] (numeric) = -0.14888994760949725058653039165752 absolute error = 1.65e-30 relative error = 1.1082010750165321214090186821118e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = -0.149 y[1] (analytic) = -0.14791180931920350772744823132506 y[1] (numeric) = -0.14791180931920350772744823132672 absolute error = 1.66e-30 relative error = 1.1222903753530657954331887477102e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = -0.148 y[1] (analytic) = -0.14693338583302491127063636300874 y[1] (numeric) = -0.1469333858330249112706363630104 absolute error = 1.66e-30 relative error = 1.1297636616680322581705865425958e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.147 y[1] (analytic) = -0.14595467890034147910416032615277 y[1] (numeric) = -0.14595467890034147910416032615442 absolute error = 1.65e-30 relative error = 1.1304879106524755747381957606286e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = -0.146 y[1] (analytic) = -0.14497569027371898190373358265784 y[1] (numeric) = -0.14497569027371898190373358265949 absolute error = 1.65e-30 relative error = 1.1381218443483486609552985303710e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.145 y[1] (analytic) = -0.14399642170889202960590581247847 y[1] (numeric) = -0.14399642170889202960590581248012 absolute error = 1.65e-30 relative error = 1.1458618071327460138316679181519e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.144 y[1] (analytic) = -0.14301687496474707144644961987734 y[1] (numeric) = -0.14301687496474707144644961987899 absolute error = 1.65e-30 relative error = 1.1537100082816916290016160145510e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.143 y[1] (analytic) = -0.142037051803305309914767627425 y[1] (numeric) = -0.14203705180330530991476762742665 absolute error = 1.65e-30 relative error = 1.1616687188670606078142583423967e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.142 y[1] (analytic) = -0.14105695398970552897938830862945 y[1] (numeric) = -0.1410569539897055289793883086311 absolute error = 1.65e-30 relative error = 1.1697402739324844442028738446939e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = -0.141 y[1] (analytic) = -0.14007658329218683694385548186933 y[1] (numeric) = -0.14007658329218683694385548187098 absolute error = 1.65e-30 relative error = 1.1779270747618480518960634372945e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = -0.14 y[1] (analytic) = -0.13909594148207132429654283387275 y[1] (numeric) = -0.1390959414820713242965428338744 absolute error = 1.65e-30 relative error = 1.1862315912450081191522594459629e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 4.5e-29 TOP MAIN SOLVE Loop x[1] = -0.139 y[1] (analytic) = -0.13811503033374663692214083609013 y[1] (numeric) = -0.13811503033374663692214083609178 absolute error = 1.65e-30 relative error = 1.1946563643456288292593110125090e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.138 y[1] (analytic) = -0.13713385162464846504676863772256 y[1] (numeric) = -0.13713385162464846504676863772421 absolute error = 1.65e-30 relative error = 1.2032040086763148133440885985163e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.137 y[1] (analytic) = -0.13615240713524294829285764070112 y[1] (numeric) = -0.13615240713524294829285764070277 absolute error = 1.65e-30 relative error = 1.2118772151865236759952151718305e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 3.5e-29 TOP MAIN SOLVE Loop x[1] = -0.136 y[1] (analytic) = -0.13517069864900899722413616046052 y[1] (numeric) = -0.13517069864900899722413616046217 absolute error = 1.65e-30 relative error = 1.2206787539690629248191827274788e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.135 y[1] (analytic) = -0.13418872795242053176521552792173 y[1] (numeric) = -0.13418872795242053176521552792338 absolute error = 1.65e-30 relative error = 1.2296114771913201250417309813155e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 4.3e-29 TOP MAIN SOLVE Loop x[1] = -0.134 y[1] (analytic) = -0.13320649683492863688443686885172 y[1] (numeric) = -0.13320649683492863688443686885336 absolute error = 1.64e-30 relative error = 1.2311711808113316353114815076923e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 1.8e-29 TOP MAIN SOLVE Loop x[1] = -0.133 y[1] (analytic) = -0.13222400708894363593278428305017 y[1] (numeric) = -0.13222400708894363593278428305182 absolute error = 1.65e-30 relative error = 1.2478823145104716856086534470684e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.132 y[1] (analytic) = -0.13124126050981708203580391418966 y[1] (numeric) = -0.13124126050981708203580391419131 absolute error = 1.65e-30 relative error = 1.2572265715754665706616795500978e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.131 y[1] (analytic) = -0.13025825889582366793958912843124 y[1] (numeric) = -0.13025825889582366793958912843289 absolute error = 1.65e-30 relative error = 1.2667143058618774426667241564797e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 4.9e-29 TOP MAIN SOLVE Loop x[1] = -0.13 y[1] (analytic) = -0.12927500404814305471599938326971 y[1] (numeric) = -0.12927500404814305471599938327136 absolute error = 1.65e-30 relative error = 1.2763488287229344700085257051648e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = -0.129 y[1] (analytic) = -0.12829149777084161973637404487675 y[1] (numeric) = -0.1282914977708416197363740448784 absolute error = 1.65e-30 relative error = 1.2861335541871081907564764464526e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.128 y[1] (analytic) = -0.12730774187085412432708208031648 y[1] (numeric) = -0.12730774187085412432708208031813 absolute error = 1.65e-30 relative error = 1.2960720029688560005923723157650e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.127 y[1] (analytic) = -0.12632373815796530152431388861787 y[1] (numeric) = -0.12632373815796530152431388861952 absolute error = 1.65e-30 relative error = 1.3061678066688527581269242114715e-27 % Correct digits = 28 h = 0.001 NO POLE memory used=282.3MB, alloc=4.4MB, time=16.50 TOP MAIN SOLVE Loop x[1] = -0.126 y[1] (analytic) = -0.1253394884447913643495722204484 y[1] (numeric) = -0.12533948844479136434957222045005 absolute error = 1.65e-30 relative error = 1.3164247121742324031874955005827e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.125 y[1] (analytic) = -0.12435499454676143503135484916387 y[1] (numeric) = -0.12435499454676143503135484916552 absolute error = 1.65e-30 relative error = 1.3268465862700412049759569662488e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.124 y[1] (analytic) = -0.12337025828209889560254207593813 y[1] (numeric) = -0.12337025828209889560254207593978 absolute error = 1.65e-30 relative error = 1.3374374204738258774397717785611e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.123 y[1] (analytic) = -0.12238528147180266030700695867723 y[1] (numeric) = -0.12238528147180266030700695867887 absolute error = 1.64e-30 relative error = 1.3400304189175337470720404199979e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.122 y[1] (analytic) = -0.12140006593962837025295502924847 y[1] (numeric) = -0.12140006593962837025295502925011 absolute error = 1.64e-30 relative error = 1.3509053617940896203922212813675e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = -0.121 y[1] (analytic) = -0.12041461351206951075447288757797 y[1] (numeric) = -0.12041461351206951075447288757961 absolute error = 1.64e-30 relative error = 1.3619609382673623563838460977415e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.12 y[1] (analytic) = -0.11942892601833845180672111641376 y[1] (numeric) = -0.1194289260183384518067211164154 absolute error = 1.64e-30 relative error = 1.3732016645181721508097986374044e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 1.8e-29 TOP MAIN SOLVE Loop x[1] = -0.119 y[1] (analytic) = -0.11844300529034741214414612973054 y[1] (numeric) = -0.11844300529034741214414612973217 absolute error = 1.63e-30 relative error = 1.3761893292088206445271339806640e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = -0.118 y[1] (analytic) = -0.11745685316268934733500753430537 y[1] (numeric) = -0.11745685316268934733500753430701 absolute error = 1.64e-30 relative error = 1.3962573965168622000199074508409e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.117 y[1] (analytic) = -0.11647047147261876236942203212415 y[1] (numeric) = -0.11647047147261876236942203212578 absolute error = 1.63e-30 relative error = 1.3994963525009851290157830481591e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = -0.116 y[1] (analytic) = -0.1154838620600324492020115059854 y[1] (numeric) = -0.11548386206003244920201150598704 absolute error = 1.64e-30 relative error = 1.4201118413821942326543288227992e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.115 y[1] (analytic) = -0.11449702676745014971411139778798 y[1] (numeric) = -0.11449702676745014971411139778962 absolute error = 1.64e-30 relative error = 1.4323516044926926459106051634614e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = -0.114 y[1] (analytic) = -0.11350996743999514456434549522631 y[1] (numeric) = -0.11350996743999514456434549522795 absolute error = 1.64e-30 relative error = 1.4448070394055520941977728506798e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.113 y[1] (analytic) = -0.11252268592537476840020447558666 y[1] (numeric) = -0.1125226859253747684002044755883 absolute error = 1.64e-30 relative error = 1.4574838722634569132186132536485e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -0.112 y[1] (analytic) = -0.11153518407386085190707770359557 y[1] (numeric) = -0.11153518407386085190707770359721 absolute error = 1.64e-30 relative error = 1.4703880337113702811133148948546e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.111 y[1] (analytic) = -0.11054746373827009117498053335496 y[1] (numeric) = -0.11054746373827009117498053335661 absolute error = 1.65e-30 relative error = 1.4925715563285162050635549039777e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.11 y[1] (analytic) = -0.10955952677394434486699241285981 y[1] (numeric) = -0.10955952677394434486699241286146 absolute error = 1.65e-30 relative error = 1.5060306014322856127074440434875e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = -0.109 y[1] (analytic) = -0.10857137503873085967717412503826 y[1] (numeric) = -0.10857137503873085967717412503991 absolute error = 1.65e-30 relative error = 1.5197375914336468208130996163626e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -0.108 y[1] (analytic) = -0.10758301039296242456946521437456 y[1] (numeric) = -0.10758301039296242456946521437621 absolute error = 1.65e-30 relative error = 1.5336994140367866608243831715713e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.107 y[1] (analytic) = -0.10659443469943745429277473678898 y[1] (numeric) = -0.10659443469943745429277473679063 absolute error = 1.65e-30 relative error = 1.5479232144271672520947318608514e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -0.106 y[1] (analytic) = -0.10560564982340000267116962753435 y[1] (numeric) = -0.10560564982340000267116962753601 absolute error = 1.66e-30 relative error = 1.5718855977648448957655063141419e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = -0.105 y[1] (analytic) = -0.10461665763251970617173490360063 y[1] (numeric) = -0.10461665763251970617173490360228 absolute error = 1.65e-30 relative error = 1.5771866902839223593585328244202e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.104 y[1] (analytic) = -0.10362745999687165825632830090303 y[1] (numeric) = -0.10362745999687165825632830090468 absolute error = 1.65e-30 relative error = 1.5922420563524482534930126603804e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.103 y[1] (analytic) = -0.10263805878891621502707849104183 y[1] (numeric) = -0.10263805878891621502707849104348 absolute error = 1.65e-30 relative error = 1.6075908093637697564817240818672e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = -0.102 y[1] (analytic) = -0.10164845588347873267908042764051 y[1] (numeric) = -0.10164845588347873267908042764215 absolute error = 1.64e-30 relative error = 1.6134037509433084724891403188868e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.101 y[1] (analytic) = -0.10065865315772923727732333951344 y[1] (numeric) = -0.10065865315772923727732333951508 absolute error = 1.64e-30 relative error = 1.6292687697998172061741371914131e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.1 y[1] (analytic) = -0.099668652491162027378446119878021 y[1] (numeric) = -0.099668652491162027378446119879662 absolute error = 1.641e-30 relative error = 1.6464554892477484687231895687532e-27 % Correct digits = 28 h = 0.001 NO POLE memory used=286.1MB, alloc=4.4MB, time=16.73 TOP MAIN SOLVE Loop x[1] = -0.099 y[1] (analytic) = -0.098678455765575210021451061613666 y[1] (numeric) = -0.098678455765575210021451061615308 absolute error = 1.642e-30 relative error = 1.6639903687799958354392849438026e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.098 y[1] (analytic) = -0.097688064865050170615019763733247 y[1] (numeric) = -0.097688064865050170615019763734889 absolute error = 1.642e-30 relative error = 1.6808604022081082729804656139489e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.097 y[1] (analytic) = -0.096697481675930977252564290803152 y[1] (numeric) = -0.096697481675930977252564290804793 absolute error = 1.641e-30 relative error = 1.6970452296778502375056519704858e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.0e-29 TOP MAIN SOLVE Loop x[1] = -0.096 y[1] (analytic) = -0.095706708086803719989612013576212 y[1] (numeric) = -0.095706708086803719989612013577853 absolute error = 1.641e-30 relative error = 1.7146133565806608070243471561292e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.095 y[1] (analytic) = -0.094715745988475785621563705688444 y[1] (numeric) = -0.094715745988475785621563705690085 absolute error = 1.641e-30 relative error = 1.7325524735872988439272823482177e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.094 y[1] (analytic) = -0.093724597273955068503281129604286 y[1] (numeric) = -0.093724597273955068503281129605927 absolute error = 1.641e-30 relative error = 1.7508744211547698413886200343332e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.093 y[1] (analytic) = -0.092733263838429117955352228385887 y[1] (numeric) = -0.092733263838429117955352228387528 absolute error = 1.641e-30 relative error = 1.7695915490035427571195697772775e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.092 y[1] (analytic) = -0.09174174757924422280524886327667 y[1] (numeric) = -0.091741747579244222805248863278311 absolute error = 1.641e-30 relative error = 1.7887167437949068042249484954698e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.091 y[1] (analytic) = -0.090750050395884433614933517185563 y[1] (numeric) = -0.090750050395884433614933517187204 absolute error = 1.641e-30 relative error = 1.8082634586332089607929836619429e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = -0.09 y[1] (analytic) = -0.089758174189950523149787239319397 y[1] (numeric) = -0.089758174189950523149787239321038 absolute error = 1.641e-30 relative error = 1.8282457445349073654196894793187e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -0.089 y[1] (analytic) = -0.088766120865138885647021056580154 y[1] (numeric) = -0.088766120865138885647021056581795 absolute error = 1.641e-30 relative error = 1.8486782840191339831440118206624e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = -0.088 y[1] (analytic) = -0.087773892327220375444996844858354 y[1] (numeric) = -0.087773892327220375444996844859995 absolute error = 1.641e-30 relative error = 1.8695764269885229612206302154384e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.087 y[1] (analytic) = -0.086781490484019085538120961779159 y[1] (numeric) = -0.0867814904840190855381209617808 absolute error = 1.641e-30 relative error = 1.8909562290845789258270229749874e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.086 y[1] (analytic) = -0.08578891724539106662518451742101 y[1] (numeric) = -0.085788917245391066625184517422652 absolute error = 1.642e-30 relative error = 1.9140001444513102203206008916781e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = -0.085 y[1] (analytic) = -0.084796174523202987222207728550445 y[1] (numeric) = -0.084796174523202987222207728552087 absolute error = 1.642e-30 relative error = 1.9364081094845799603689653113286e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1.8e-29 TOP MAIN SOLVE Loop x[1] = -0.084 y[1] (analytic) = -0.083803264231310735414002094452995 y[1] (numeric) = -0.083803264231310735414002094454637 absolute error = 1.642e-30 relative error = 1.9593508857457044356182202334904e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -0.083 y[1] (analytic) = -0.082810188285537962821792879902799 y[1] (numeric) = -0.082810188285537962821792879904441 absolute error = 1.642e-30 relative error = 1.9828478041110313314162586439232e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.082 y[1] (analytic) = -0.081816948603654571367345326612277 y[1] (numeric) = -0.081816948603654571367345326613919 absolute error = 1.642e-30 relative error = 2.0069191384224462604823174224217e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.081 y[1] (analytic) = -0.080823547105355143417110874075862 y[1] (numeric) = -0.080823547105355143417110874077504 absolute error = 1.642e-30 relative error = 2.0315861636951165773469816177783e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 2.4e-29 TOP MAIN SOLVE Loop x[1] = -0.08 y[1] (analytic) = -0.079829985712237315892954191567332 y[1] (numeric) = -0.079829985712237315892954191568975 absolute error = 1.643e-30 relative error = 2.0581238808215656228478279250850e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.079 y[1] (analytic) = -0.078836266347780098939037744761377 y[1] (numeric) = -0.07883626634778009893903774476302 absolute error = 1.643e-30 relative error = 2.0840662249934978157927270732174e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.078 y[1] (analytic) = -0.077842390937322139737427684745209 y[1] (numeric) = -0.077842390937322139737427684746852 absolute error = 1.643e-30 relative error = 2.1106751478419079133388806960560e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.077 y[1] (analytic) = -0.07684836140803993206794279794194 y[1] (numeric) = -0.076848361408039932067942797943583 absolute error = 1.643e-30 relative error = 2.1379766203162116246477016817887e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = -0.076 y[1] (analytic) = -0.075854179688925972210696838750518 y[1] (numeric) = -0.075854179688925972210696838752162 absolute error = 1.644e-30 relative error = 2.1673162991702739476757046475131e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.075 y[1] (analytic) = -0.074859847710766861792683530805484 y[1] (numeric) = -0.074859847710766861792683530807127 absolute error = 1.643e-30 relative error = 2.1947680235043977523871845967020e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.074 y[1] (analytic) = -0.07386536740612135818262261821458 y[1] (numeric) = -0.073865367406121358182622618216223 absolute error = 1.643e-30 relative error = 2.2243171024474476289437082511359e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.073 y[1] (analytic) = -0.072870740709298373041124327768794 y[1] (numeric) = -0.072870740709298373041124327770437 absolute error = 1.643e-30 relative error = 2.2546772326006447468970129402919e-27 % Correct digits = 28 h = 0.001 memory used=289.9MB, alloc=4.4MB, time=16.96 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = -0.072 y[1] (analytic) = -0.071875969556334919636038222077939 y[1] (numeric) = -0.071875969556334919636038222079582 absolute error = 1.643e-30 relative error = 2.2858822081172068156697010675110e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = -0.071 y[1] (analytic) = -0.070881055884974009535630439351791 y[1] (numeric) = -0.070881055884974009535630439353434 absolute error = 1.643e-30 relative error = 2.3179677270415741784010737090605e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.07 y[1] (analytic) = -0.069886001634642499294980487984493 y[1] (numeric) = -0.069886001634642499294980487986136 absolute error = 1.643e-30 relative error = 2.3509715273016344738619862132703e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 2.3e-29 TOP MAIN SOLVE Loop x[1] = -0.069 y[1] (analytic) = -0.068890808746428887753704855477416 y[1] (numeric) = -0.068890808746428887753704855479059 absolute error = 1.643e-30 relative error = 2.3849335345263582110544905119396e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = -0.068 y[1] (analytic) = -0.067895479163061064565799466258348 y[1] (numeric) = -0.067895479163061064565799466259991 absolute error = 1.643e-30 relative error = 2.4198960229061669682951373511502e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.067 y[1] (analytic) = -0.066900014828884010585046248794124 y[1] (numeric) = -0.066900014828884010585046248795766 absolute error = 1.642e-30 relative error = 2.4544090224791224383208957241135e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = -0.066 y[1] (analytic) = -0.065904417689837450732050518716517 y[1] (numeric) = -0.06590441768983745073205051871816 absolute error = 1.643e-30 relative error = 2.4930043502278797849753736912533e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.065 y[1] (analytic) = -0.064908689693433459971565323678831 y[1] (numeric) = -0.064908689693433459971565323680474 absolute error = 1.643e-30 relative error = 2.5312481391320019548555311176065e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = -0.064 y[1] (analytic) = -0.063912832788734023031316102077865 y[1] (numeric) = -0.063912832788734023031316102079508 absolute error = 1.643e-30 relative error = 2.5706887463914965166510579321365e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.063 y[1] (analytic) = -0.062916848926328548496063758939631 y[1] (numeric) = -0.062916848926328548496063758941274 absolute error = 1.643e-30 relative error = 2.6113831637115900083231122543886e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.062 y[1] (analytic) = -0.061920740058311337913136338114124 y[1] (numeric) = -0.061920740058311337913136338115767 absolute error = 1.643e-30 relative error = 2.6533920596762435169893923172253e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.061 y[1] (analytic) = -0.060924508138259010548118653029661 y[1] (numeric) = -0.060924508138259010548118653031303 absolute error = 1.642e-30 relative error = 2.6951387055497073407759018794305e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 2.8e-29 TOP MAIN SOLVE Loop x[1] = -0.06 y[1] (analytic) = -0.059928155121207884431815313861521 y[1] (numeric) = -0.059928155121207884431815313863164 absolute error = 1.643e-30 relative error = 2.7416161847080809066708044376485e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -0.059 y[1] (analytic) = -0.058931682963631314341995345006739 y[1] (numeric) = -0.058931682963631314341995345008382 absolute error = 1.643e-30 relative error = 2.7879740020558202979449501244600e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 3.5e-29 TOP MAIN SOLVE Loop x[1] = -0.058 y[1] (analytic) = -0.05793509362341698736578581388078 y[1] (numeric) = -0.057935093623416987365785813882423 absolute error = 1.643e-30 relative error = 2.8359322428641249403043367127609e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.057 y[1] (analytic) = -0.056938389059844176690907383663444 y[1] (numeric) = -0.056938389059844176690907383665087 absolute error = 1.643e-30 relative error = 2.8855751403032342809840191258024e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.056 y[1] (analytic) = -0.055941571233560954276236254894526 y[1] (numeric) = -0.055941571233560954276236254896169 absolute error = 1.643e-30 relative error = 2.9369929441923096019572185119395e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.055 y[1] (analytic) = -0.054944642106561363054434372728006 y[1] (numeric) = -0.054944642106561363054434372729649 absolute error = 1.643e-30 relative error = 2.9902824679675121788145222983355e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 2.0e-29 TOP MAIN SOLVE Loop x[1] = -0.054 y[1] (analytic) = -0.053947603642162549321612849995005 y[1] (numeric) = -0.053947603642162549321612849996648 absolute error = 1.643e-30 relative error = 3.0455476964243124422710321727561e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.053 y[1] (analytic) = -0.052950457804981855971182095649323 y[1] (numeric) = -0.052950457804981855971182095650966 absolute error = 1.643e-30 relative error = 3.1029004622608153692696170063862e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 2.7e-29 TOP MAIN SOLVE Loop x[1] = -0.052 y[1] (analytic) = -0.051953206560913877231195951199129 y[1] (numeric) = -0.051953206560913877231195951200772 absolute error = 1.643e-30 relative error = 3.1624612006837773655631408282043e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.051 y[1] (analytic) = -0.050955851877107475566616034788795 y[1] (numeric) = -0.050955851877107475566616034790439 absolute error = 1.644e-30 relative error = 3.2263222759280109598492053502795e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.05 y[1] (analytic) = -0.049958395721942761410006287034845 y[1] (numeric) = -0.049958395721942761410006287036489 absolute error = 1.644e-30 relative error = 3.2907381757215257684374203488771e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = -0.049 y[1] (analytic) = -0.048960840065008036386216220836982 y[1] (numeric) = -0.048960840065008036386216220838626 absolute error = 1.644e-30 relative error = 3.3577855237311483319357964356740e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = -0.048 y[1] (analytic) = -0.04796318687707670069862441844896 y[1] (numeric) = -0.047963186877076700698624418450605 absolute error = 1.645e-30 relative error = 3.4297137181812319080887029545551e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1.8e-29 TOP MAIN SOLVE Loop x[1] = -0.047 y[1] (analytic) = -0.046965438130084125346491215369746 y[1] (numeric) = -0.04696543813008412534649121537139 absolute error = 1.644e-30 relative error = 3.5004464249784594468047976660400e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1e-30 TOP MAIN SOLVE Loop memory used=293.7MB, alloc=4.4MB, time=17.18 x[1] = -0.046 y[1] (analytic) = -0.045967595797104489844911087386725 y[1] (numeric) = -0.04596759579710448984491108738837 absolute error = 1.645e-30 relative error = 3.5786078681618127051000481789015e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.045 y[1] (analytic) = -0.044969661852327586120760842694242 y[1] (numeric) = -0.044969661852327586120760842695887 absolute error = 1.645e-30 relative error = 3.6580217245170510305843553772109e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 2.8e-29 TOP MAIN SOLVE Loop x[1] = -0.044 y[1] (analytic) = -0.043971638271035589259909146810246 y[1] (numeric) = -0.04397163827103558925990914681189 absolute error = 1.644e-30 relative error = 3.7387735928022352991593931650633e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = -0.043 y[1] (analytic) = -0.042973527029579795782786008494176 y[1] (numeric) = -0.04297352702957979578278600849582 absolute error = 1.644e-30 relative error = 3.8256110532151388528460160004740e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -0.042 y[1] (analytic) = -0.041975330105357330127207467609551 y[1] (numeric) = -0.041975330105357330127207467611195 absolute error = 1.644e-30 relative error = 3.9165862326123208875067314506882e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.041 y[1] (analytic) = -0.040977049476787820019110691581682 y[1] (numeric) = -0.040977049476787820019110691583326 absolute error = 1.644e-30 relative error = 4.0120018912812966190767287182548e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.04 y[1] (analytic) = -0.039978687123290041413577849629375 y[1] (numeric) = -0.03997868712329004141357784963102 absolute error = 1.645e-30 relative error = 4.1146923982946064189182603860823e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.039 y[1] (analytic) = -0.0389802450252585336902133403224 y[1] (numeric) = -0.038980245025258533690213340324045 absolute error = 1.645e-30 relative error = 4.2200863512634876133026282792672e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.038 y[1] (analytic) = -0.03798172516404018578858804844537 y[1] (numeric) = -0.037981725164040185788588048447015 absolute error = 1.645e-30 relative error = 4.3310302333434565140563664610948e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.037 y[1] (analytic) = -0.036983129521910793971076155052496 y[1] (numeric) = -0.036983129521910793971076155054141 absolute error = 1.645e-30 relative error = 4.4479740391505093488499334838926e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.036 y[1] (analytic) = -0.035984460082051591901984476622269 y[1] (numeric) = -0.035984460082051591901984476623914 absolute error = 1.645e-30 relative error = 4.5714177626927816986012561897522e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -0.035 y[1] (analytic) = -0.034985718828525753733411225257751 y[1] (numeric) = -0.034985718828525753733411225259396 absolute error = 1.645e-30 relative error = 4.7019185401408482609018666128477e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = -0.034 y[1] (analytic) = -0.033986907746254870889770325081708 y[1] (numeric) = -0.033986907746254870889770325083353 absolute error = 1.645e-30 relative error = 4.8400990530868992004755369634909e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.033 y[1] (analytic) = -0.03298802882099540324437885678266 y[1] (numeric) = -0.032988028820995403244378856784305 absolute error = 1.645e-30 relative error = 4.9866574596692214538340284133564e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.032 y[1] (analytic) = -0.031989084039315105382928702413424 y[1] (numeric) = -0.031989084039315105382928702415069 absolute error = 1.645e-30 relative error = 5.1423791877825204470797257515425e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.031 y[1] (analytic) = -0.030990075388569428650048899079053 y[1] (numeric) = -0.030990075388569428650048899080698 absolute error = 1.645e-30 relative error = 5.3081510108450784493986655261992e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.03 y[1] (analytic) = -0.029991004856877899676512459459942 y[1] (numeric) = -0.029991004856877899676512459461587 absolute error = 1.645e-30 relative error = 5.4849779387193447774593068317253e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.029 y[1] (analytic) = -0.028991874433100476085950358930649 y[1] (numeric) = -0.028991874433100476085950358932294 absolute error = 1.645e-30 relative error = 5.6740036033057517459851370421271e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = -0.028 y[1] (analytic) = -0.027992686106813880081205906452323 y[1] (numeric) = -0.027992686106813880081205906453968 absolute error = 1.645e-30 relative error = 5.8765350124780628012674576789758e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = -0.027 y[1] (analytic) = -0.026993441868287910611694695912914 y[1] (numeric) = -0.026993441868287910611694695914559 absolute error = 1.645e-30 relative error = 6.0940728048932426630490178602277e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.026 y[1] (analytic) = -0.025994143708461734824328666035373 y[1] (numeric) = -0.025994143708461734824328666037018 absolute error = 1.645e-30 relative error = 6.3283484866805284772572738687173e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.025 y[1] (analytic) = -0.024994793618920159501717373649672 y[1] (numeric) = -0.024994793618920159501717373651316 absolute error = 1.644e-30 relative error = 6.5773697717413883672509517266040e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = -0.024 y[1] (analytic) = -0.023995393591869883192475303732253 y[1] (numeric) = -0.023995393591869883192475303733897 absolute error = 1.644e-30 relative error = 6.8513149980462079696522047042113e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = -0.023 y[1] (analytic) = -0.022995945620115729739540800295694 y[1] (numeric) = -0.022995945620115729739540800297338 absolute error = 1.644e-30 relative error = 7.1490863092053458292827952877987e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.022 y[1] (analytic) = -0.021996451697036863913449908550467 y[1] (numeric) = -0.021996451697036863913449908552111 absolute error = 1.644e-30 relative error = 7.4739327171639360244032375864422e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.021 y[1] (analytic) = -0.020996913816562989858506977810672 y[1] (numeric) = -0.020996913816562989858506977812316 absolute error = 1.644e-30 relative error = 7.8297220932686018063408977202507e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = -0.02 y[1] (analytic) = -0.019997333973150533060753196901596 y[1] (numeric) = -0.019997333973150533060753196903241 absolute error = 1.645e-30 relative error = 8.2260965497133921627043844401615e-27 % Correct digits = 28 h = 0.001 NO POLE memory used=297.5MB, alloc=4.4MB, time=17.40 TOP MAIN SOLVE Loop x[1] = -0.019 y[1] (analytic) = -0.018997714161758806547554233360419 y[1] (numeric) = -0.018997714161758806547554233362064 absolute error = 1.645e-30 relative error = 8.6589364699005770198346181055010e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.018 y[1] (analytic) = -0.017998056377826162029508742010976 y[1] (numeric) = -0.017998056377826162029508742012621 absolute error = 1.645e-30 relative error = 9.1398758036265585399559523805538e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.017 y[1] (analytic) = -0.016998362617246126696220618556432 y[1] (numeric) = -0.016998362617246126696220618558076 absolute error = 1.644e-30 relative error = 9.6715197635096773858389413020879e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 2.3e-29 TOP MAIN SOLVE Loop x[1] = -0.016 y[1] (analytic) = -0.015998634876343526378279424205559 y[1] (numeric) = -0.015998634876343526378279424207203 absolute error = 1.644e-30 relative error = 1.0275876740151811767606082107752e-26 % Correct digits = 27 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = -0.015 y[1] (analytic) = -0.014998875151850595788555326093507 y[1] (numeric) = -0.014998875151850595788555326095152 absolute error = 1.645e-30 relative error = 1.0967489117322482068160734304122e-26 % Correct digits = 27 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = -0.014 y[1] (analytic) = -0.013999085440883076556637116978684 y[1] (numeric) = -0.013999085440883076556637116980329 absolute error = 1.645e-30 relative error = 1.1750767626547407698835046717962e-26 % Correct digits = 27 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.013 y[1] (analytic) = -0.012999267740916303770924331543123 y[1] (numeric) = -0.012999267740916303770924331544768 absolute error = 1.645e-30 relative error = 1.2654558955057308474984662456983e-26 % Correct digits = 27 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = -0.012 y[1] (analytic) = -0.011999424049761281743527104299417 y[1] (numeric) = -0.011999424049761281743527104301062 absolute error = 1.645e-30 relative error = 1.3708991308068039024178338297337e-26 % Correct digits = 27 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = -0.011 y[1] (analytic) = -0.010999556365540749713730157881507 y[1] (numeric) = -0.010999556365540749713730157883153 absolute error = 1.646e-30 relative error = 1.4964239877496922265196658814466e-26 % Correct digits = 27 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1.8e-29 TOP MAIN SOLVE Loop x[1] = -0.01 y[1] (analytic) = -0.0099996666866652382063401162092795 y[1] (numeric) = -0.0099996666866652382063401162109251 absolute error = 1.6456e-30 relative error = 1.6456548518706543933385117470033e-26 % Correct digits = 27 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.009 y[1] (analytic) = -0.0089997570118091167617581540861993 y[1] (numeric) = -0.0089997570118091167617581540878449 absolute error = 1.6456e-30 relative error = 1.8284938113781408857242861004678e-26 % Correct digits = 27 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = -0.008 y[1] (analytic) = -0.0079998293398866337551027762185069 y[1] (numeric) = -0.0079998293398866337551027762201525 absolute error = 1.6456e-30 relative error = 2.0570438819177609281952288201877e-26 % Correct digits = 27 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.007 y[1] (analytic) = -0.0069998856700279490221502210282538 y[1] (numeric) = -0.0069998856700279490221502210298994 absolute error = 1.6456e-30 relative error = 2.3508955396887639121237794329544e-26 % Correct digits = 27 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 3.0e-29 TOP MAIN SOLVE Loop x[1] = -0.006 y[1] (analytic) = -0.0059999280015551600102625681623112 y[1] (numeric) = -0.0059999280015551600102625681639568 absolute error = 1.6456e-30 relative error = 2.7426995783507174245399206321286e-26 % Correct digits = 27 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.005 y[1] (analytic) = -0.00499995833395832217283605706911 y[1] (numeric) = -0.0049999583339583221728360570707555 absolute error = 1.6455e-30 relative error = 3.2910274248171690608738833063269e-26 % Correct digits = 27 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = -0.004 y[1] (analytic) = -0.003999978666871464326124364825054 y[1] (numeric) = -0.0039999786668714643261243648266996 absolute error = 1.6456e-30 relative error = 4.1140219412397177623638551018214e-26 % Correct digits = 27 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.003 y[1] (analytic) = -0.0029999910000485996875736155553244 y[1] (numeric) = -0.00299999100004859968757361555697 absolute error = 1.6456e-30 relative error = 5.4853497892938391195201323944734e-26 % Correct digits = 27 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = -0.002 y[1] (analytic) = -0.0019999973333397333150476759363218 y[1] (numeric) = -0.0019999973333397333150476759379673 absolute error = 1.6455e-30 relative error = 8.2275109699882986911836824361115e-26 % Correct digits = 27 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1.8e-29 TOP MAIN SOLVE Loop x[1] = -0.001 y[1] (analytic) = -0.00099999966666686666652380963492054 y[1] (numeric) = -0.00099999966666686666652380963656609 absolute error = 1.64555e-30 relative error = 1.6455505485165203956321737069281e-25 % Correct digits = 26 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = 0 y[1] (analytic) = 0 y[1] (numeric) = -1.645550e-30 absolute error = 1.645550e-30 relative error = -1 % Correct digits = -1 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = 0.001 y[1] (analytic) = 0.00099999966666686666652380963492054 y[1] (numeric) = 0.00099999966666686666652380963327499 absolute error = 1.64555e-30 relative error = 1.6455505485165203956321737069281e-25 % Correct digits = 26 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = 0.002 y[1] (analytic) = 0.0019999973333397333150476759363218 y[1] (numeric) = 0.0019999973333397333150476759346762 absolute error = 1.6456e-30 relative error = 8.2280109706549646467407279348922e-26 % Correct digits = 27 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1.8e-29 TOP MAIN SOLVE Loop x[1] = 0.003 y[1] (analytic) = 0.0029999910000485996875736155553244 y[1] (numeric) = 0.0029999910000485996875736155536789 absolute error = 1.6455e-30 relative error = 5.4850164549605081861754848414596e-26 % Correct digits = 27 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.004 y[1] (analytic) = 0.003999978666871464326124364825054 y[1] (numeric) = 0.0039999786668714643261243648234085 absolute error = 1.6455e-30 relative error = 4.1137719399063901178717328451915e-26 % Correct digits = 27 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.005 y[1] (analytic) = 0.00499995833395832217283605706911 y[1] (numeric) = 0.0049999583339583221728360570674644 absolute error = 1.6456e-30 relative error = 3.2912274264838246165749391485212e-26 % Correct digits = 27 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = 0.006 y[1] (analytic) = 0.0059999280015551600102625681623112 y[1] (numeric) = 0.0059999280015551600102625681606657 absolute error = 1.6455e-30 relative error = 2.7425329096840699575112052747737e-26 % Correct digits = 27 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.007 y[1] (analytic) = 0.0069998856700279490221502210282538 y[1] (numeric) = 0.0069998856700279490221502210266083 absolute error = 1.6455e-30 relative error = 2.3507526802126039240396688483996e-26 % Correct digits = 27 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 3.0e-29 memory used=301.3MB, alloc=4.4MB, time=17.61 TOP MAIN SOLVE Loop x[1] = 0.008 y[1] (analytic) = 0.0079998293398866337551027762185069 y[1] (numeric) = 0.0079998293398866337551027762168614 absolute error = 1.6455e-30 relative error = 2.0569188792511397711140307630158e-26 % Correct digits = 27 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.009 y[1] (analytic) = 0.0089997570118091167617581540861993 y[1] (numeric) = 0.0089997570118091167617581540845538 absolute error = 1.6455e-30 relative error = 1.8283826972670945718639479693241e-26 % Correct digits = 27 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = 0.01 y[1] (analytic) = 0.0099996666866652382063401162092795 y[1] (numeric) = 0.009999666686665238206340116207634 absolute error = 1.6455e-30 relative error = 1.6455548485374099442382845647144e-26 % Correct digits = 27 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.011 y[1] (analytic) = 0.010999556365540749713730157881507 y[1] (numeric) = 0.010999556365540749713730157879862 absolute error = 1.645e-30 relative error = 1.4955148601751176868923756834628e-26 % Correct digits = 27 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1.8e-29 TOP MAIN SOLVE Loop x[1] = 0.012 y[1] (analytic) = 0.011999424049761281743527104299417 y[1] (numeric) = 0.011999424049761281743527104297771 absolute error = 1.646e-30 relative error = 1.3717325041386013515986349445239e-26 % Correct digits = 27 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = 0.013 y[1] (analytic) = 0.012999267740916303770924331543123 y[1] (numeric) = 0.012999267740916303770924331541477 absolute error = 1.646e-30 relative error = 1.2662251696063422340318999637808e-26 % Correct digits = 27 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = 0.014 y[1] (analytic) = 0.013999085440883076556637116978684 y[1] (numeric) = 0.013999085440883076556637116977038 absolute error = 1.646e-30 relative error = 1.1757910950332542901083578661256e-26 % Correct digits = 27 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.015 y[1] (analytic) = 0.014998875151850595788555326093507 y[1] (numeric) = 0.014998875151850595788555326091861 absolute error = 1.646e-30 relative error = 1.0974156283959152270025877607651e-26 % Correct digits = 27 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = 0.016 y[1] (analytic) = 0.015998634876343526378279424205559 y[1] (numeric) = 0.015998634876343526378279424203912 absolute error = 1.647e-30 relative error = 1.0294628340042599745284195396270e-26 % Correct digits = 27 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = 0.017 y[1] (analytic) = 0.016998362617246126696220618556432 y[1] (numeric) = 0.016998362617246126696220618554785 absolute error = 1.647e-30 relative error = 9.6891685222022132934773335307414e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 2.3e-29 TOP MAIN SOLVE Loop x[1] = 0.018 y[1] (analytic) = 0.017998056377826162029508742010976 y[1] (numeric) = 0.01799805637782616202950874200933 absolute error = 1.646e-30 relative error = 9.1454319591302828916519742361043e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.019 y[1] (analytic) = 0.018997714161758806547554233360419 y[1] (numeric) = 0.018997714161758806547554233358773 absolute error = 1.646e-30 relative error = 8.6642002610676898326126330709147e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.02 y[1] (analytic) = 0.019997333973150533060753196901596 y[1] (numeric) = 0.01999733397315053306075319689995 absolute error = 1.646e-30 relative error = 8.2310972163089626138671226677847e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.021 y[1] (analytic) = 0.020996913816562989858506977810672 y[1] (numeric) = 0.020996913816562989858506977809025 absolute error = 1.647e-30 relative error = 7.8440099073074131235057533730248e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = 0.022 y[1] (analytic) = 0.021996451697036863913449908550467 y[1] (numeric) = 0.02199645169703686391344990854882 absolute error = 1.647e-30 relative error = 7.4875712805164249587543383849577e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.023 y[1] (analytic) = 0.022995945620115729739540800295694 y[1] (numeric) = 0.022995945620115729739540800294047 absolute error = 1.647e-30 relative error = 7.1621320871418519348106836003677e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.024 y[1] (analytic) = 0.023995393591869883192475303732253 y[1] (numeric) = 0.023995393591869883192475303730606 absolute error = 1.647e-30 relative error = 6.8638173976776791520785773405328e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = 0.025 y[1] (analytic) = 0.024994793618920159501717373649672 y[1] (numeric) = 0.024994793618920159501717373648025 absolute error = 1.647e-30 relative error = 6.5893722713248580540525045582218e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = 0.026 y[1] (analytic) = 0.025994143708461734824328666035373 y[1] (numeric) = 0.025994143708461734824328666033727 absolute error = 1.646e-30 relative error = 6.3321955070371731754197402966010e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.027 y[1] (analytic) = 0.026993441868287910611694695912914 y[1] (numeric) = 0.026993441868287910611694695911268 absolute error = 1.646e-30 relative error = 6.0977774084220531449110537373464e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.028 y[1] (analytic) = 0.027992686106813880081205906452323 y[1] (numeric) = 0.027992686106813880081205906450677 absolute error = 1.646e-30 relative error = 5.8801073741877759093533345529448e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.029 y[1] (analytic) = 0.028991874433100476085950358930649 y[1] (numeric) = 0.028991874433100476085950358929003 absolute error = 1.646e-30 relative error = 5.6774528456177917166513894050706e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = 0.03 y[1] (analytic) = 0.029991004856877899676512459459942 y[1] (numeric) = 0.029991004856877899676512459458296 absolute error = 1.646e-30 relative error = 5.4883122718127911876583702401336e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.031 y[1] (analytic) = 0.030990075388569428650048899079053 y[1] (numeric) = 0.030990075388569428650048899077407 absolute error = 1.646e-30 relative error = 5.3113778503653490138055948061543e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.032 y[1] (analytic) = 0.031989084039315105382928702413424 y[1] (numeric) = 0.031989084039315105382928702411778 absolute error = 1.646e-30 relative error = 5.1455052541580721312420842474401e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.033 y[1] (analytic) = 0.03298802882099540324437885678266 y[1] (numeric) = 0.032988028820995403244378856781014 absolute error = 1.646e-30 relative error = 4.9896888623802665732588515309330e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.034 y[1] (analytic) = 0.033986907746254870889770325081708 y[1] (numeric) = 0.033986907746254870889770325080062 absolute error = 1.646e-30 relative error = 4.8430413625416632729378321227392e-27 % Correct digits = 28 h = 0.001 memory used=305.1MB, alloc=4.4MB, time=17.83 NO POLE TOP MAIN SOLVE Loop x[1] = 0.035 y[1] (analytic) = 0.034985718828525753733411225257751 y[1] (numeric) = 0.034985718828525753733411225256105 absolute error = 1.646e-30 relative error = 4.7047768492837910258021109086610e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = 0.036 y[1] (analytic) = 0.035984460082051591901984476622269 y[1] (numeric) = 0.035984460082051591901984476620623 absolute error = 1.646e-30 relative error = 4.5741967400561207756216824853083e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.037 y[1] (analytic) = 0.036983129521910793971076155052496 y[1] (numeric) = 0.03698312952191079397107615505085 absolute error = 1.646e-30 relative error = 4.4506779747366190809768939297795e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.038 y[1] (analytic) = 0.03798172516404018578858804844537 y[1] (numeric) = 0.037981725164040185788588048443724 absolute error = 1.646e-30 relative error = 4.3336630784701090712077685075757e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.039 y[1] (analytic) = 0.0389802450252585336902133403224 y[1] (numeric) = 0.038980245025258533690213340320754 absolute error = 1.646e-30 relative error = 4.2226517533007298550128426429628e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.04 y[1] (analytic) = 0.039978687123290041413577849629375 y[1] (numeric) = 0.039978687123290041413577849627729 absolute error = 1.646e-30 relative error = 4.1171937310595271523036210306939e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.041 y[1] (analytic) = 0.040977049476787820019110691581682 y[1] (numeric) = 0.040977049476787820019110691580036 absolute error = 1.646e-30 relative error = 4.0168826721709332329685495561116e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.042 y[1] (analytic) = 0.041975330105357330127207467609551 y[1] (numeric) = 0.041975330105357330127207467607905 absolute error = 1.646e-30 relative error = 3.9213509360583212778808272310418e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.043 y[1] (analytic) = 0.042973527029579795782786008494176 y[1] (numeric) = 0.04297352702957979578278600849253 absolute error = 1.646e-30 relative error = 3.8302650812604127443944904724940e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = 0.044 y[1] (analytic) = 0.043971638271035589259909146810246 y[1] (numeric) = 0.0439716382710355892599091468086 absolute error = 1.646e-30 relative error = 3.7433219791681747581608036190353e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = 0.045 y[1] (analytic) = 0.044969661852327586120760842694242 y[1] (numeric) = 0.044969661852327586120760842692597 absolute error = 1.645e-30 relative error = 3.6580217245170510305843553772109e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 2.8e-29 TOP MAIN SOLVE Loop x[1] = 0.046 y[1] (analytic) = 0.045967595797104489844911087386725 y[1] (numeric) = 0.04596759579710448984491108738508 absolute error = 1.645e-30 relative error = 3.5786078681618127051000481789015e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.047 y[1] (analytic) = 0.046965438130084125346491215369746 y[1] (numeric) = 0.0469654381300841253464912153681 absolute error = 1.646e-30 relative error = 3.5047048756171193731391100719597e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.048 y[1] (analytic) = 0.04796318687707670069862441844896 y[1] (numeric) = 0.047963186877076700698624418447315 absolute error = 1.645e-30 relative error = 3.4297137181812319080887029545551e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1.8e-29 TOP MAIN SOLVE Loop x[1] = 0.049 y[1] (analytic) = 0.048960840065008036386216220836982 y[1] (numeric) = 0.048960840065008036386216220835336 absolute error = 1.646e-30 relative error = 3.3618704209619648140914360907053e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = 0.05 y[1] (analytic) = 0.049958395721942761410006287034845 y[1] (numeric) = 0.049958395721942761410006287033199 absolute error = 1.646e-30 relative error = 3.2947415068355422231435485974767e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = 0.051 y[1] (analytic) = 0.050955851877107475566616034788795 y[1] (numeric) = 0.050955851877107475566616034787149 absolute error = 1.646e-30 relative error = 3.2302472422004294646665401499757e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.052 y[1] (analytic) = 0.051953206560913877231195951199129 y[1] (numeric) = 0.051953206560913877231195951197482 absolute error = 1.647e-30 relative error = 3.1701604367170914918335319196911e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.053 y[1] (analytic) = 0.052950457804981855971182095649323 y[1] (numeric) = 0.052950457804981855971182095647676 absolute error = 1.647e-30 relative error = 3.1104546934531728016963233168096e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 2.7e-29 TOP MAIN SOLVE Loop x[1] = 0.054 y[1] (analytic) = 0.053947603642162549321612849995005 y[1] (numeric) = 0.053947603642162549321612849993358 absolute error = 1.647e-30 relative error = 3.0529622982415353575291478932010e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.055 y[1] (analytic) = 0.054944642106561363054434372728006 y[1] (numeric) = 0.054944642106561363054434372726359 absolute error = 1.647e-30 relative error = 2.9975625226673722206375643489705e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 2.0e-29 TOP MAIN SOLVE Loop x[1] = 0.056 y[1] (analytic) = 0.055941571233560954276236254894526 y[1] (numeric) = 0.055941571233560954276236254892879 absolute error = 1.647e-30 relative error = 2.9441432617679451700691046190897e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.057 y[1] (analytic) = 0.056938389059844176690907383663444 y[1] (numeric) = 0.056938389059844176690907383661797 absolute error = 1.647e-30 relative error = 2.8926002775894259651738767499675e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.058 y[1] (analytic) = 0.05793509362341698736578581388078 y[1] (numeric) = 0.057935093623416987365785813879133 absolute error = 1.647e-30 relative error = 2.8428365209964782572618640084706e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.059 y[1] (analytic) = 0.058931682963631314341995345006739 y[1] (numeric) = 0.058931682963631314341995345005092 absolute error = 1.647e-30 relative error = 2.7947615224503566833325215185548e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 3.5e-29 TOP MAIN SOLVE Loop x[1] = 0.06 y[1] (analytic) = 0.059928155121207884431815313861521 y[1] (numeric) = 0.059928155121207884431815313859874 absolute error = 1.647e-30 relative error = 2.7482908437091961371191813200286e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 5e-30 TOP MAIN SOLVE Loop memory used=309.0MB, alloc=4.4MB, time=18.04 x[1] = 0.061 y[1] (analytic) = 0.060924508138259010548118653029661 y[1] (numeric) = 0.060924508138259010548118653028013 absolute error = 1.648e-30 relative error = 2.7049869590413627878189319715600e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 2.8e-29 TOP MAIN SOLVE Loop x[1] = 0.062 y[1] (analytic) = 0.061920740058311337913136338114124 y[1] (numeric) = 0.061920740058311337913136338112477 absolute error = 1.647e-30 relative error = 2.6598519307892714987714723959039e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.063 y[1] (analytic) = 0.062916848926328548496063758939631 y[1] (numeric) = 0.062916848926328548496063758937984 absolute error = 1.647e-30 relative error = 2.6177407611886723942228642014474e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.064 y[1] (analytic) = 0.063912832788734023031316102077865 y[1] (numeric) = 0.063912832788734023031316102076218 absolute error = 1.647e-30 relative error = 2.5769472704240990644700501608210e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.065 y[1] (analytic) = 0.064908689693433459971565323678831 y[1] (numeric) = 0.064908689693433459971565323677184 absolute error = 1.647e-30 relative error = 2.5374106422096209492678391665843e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = 0.066 y[1] (analytic) = 0.065904417689837450732050518716517 y[1] (numeric) = 0.06590441768983745073205051871487 absolute error = 1.647e-30 relative error = 2.4990737460896640327781134933014e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.067 y[1] (analytic) = 0.066900014828884010585046248794124 y[1] (numeric) = 0.066900014828884010585046248792476 absolute error = 1.648e-30 relative error = 2.4633776303566344569749306658582e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = 0.068 y[1] (analytic) = 0.067895479163061064565799466258348 y[1] (numeric) = 0.067895479163061064565799466256701 absolute error = 1.647e-30 relative error = 2.4257874313612032847121675090349e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.069 y[1] (analytic) = 0.068890808746428887753704855477416 y[1] (numeric) = 0.068890808746428887753704855475769 absolute error = 1.647e-30 relative error = 2.3907398243243529967174351023521e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = 0.07 y[1] (analytic) = 0.069886001634642499294980487984493 y[1] (numeric) = 0.069886001634642499294980487982846 absolute error = 1.647e-30 relative error = 2.3566951341849007781197147250494e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 2.3e-29 TOP MAIN SOLVE Loop x[1] = 0.071 y[1] (analytic) = 0.070881055884974009535630439351791 y[1] (numeric) = 0.070881055884974009535630439350144 absolute error = 1.647e-30 relative error = 2.3236109838329109384215267186991e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.072 y[1] (analytic) = 0.071875969556334919636038222077939 y[1] (numeric) = 0.071875969556334919636038222076292 absolute error = 1.647e-30 relative error = 2.2914473504376382382276309544678e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = 0.073 y[1] (analytic) = 0.072870740709298373041124327768794 y[1] (numeric) = 0.072870740709298373041124327767147 absolute error = 1.647e-30 relative error = 2.2601664041955337176746076157399e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = 0.074 y[1] (analytic) = 0.07386536740612135818262261821458 y[1] (numeric) = 0.073865367406121358182622618212933 absolute error = 1.647e-30 relative error = 2.2297323601527366067378499632506e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.075 y[1] (analytic) = 0.074859847710766861792683530805484 y[1] (numeric) = 0.074859847710766861792683530803837 absolute error = 1.647e-30 relative error = 2.2001113418817669495932398239611e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.076 y[1] (analytic) = 0.075854179688925972210696838750518 y[1] (numeric) = 0.075854179688925972210696838748872 absolute error = 1.646e-30 relative error = 2.1699529370038144269307845801743e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = 0.077 y[1] (analytic) = 0.07684836140803993206794279794194 y[1] (numeric) = 0.076848361408039932067942797940293 absolute error = 1.647e-30 relative error = 2.1431816759956181045616340048119e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = 0.078 y[1] (analytic) = 0.077842390937322139737427684745209 y[1] (numeric) = 0.077842390937322139737427684743562 absolute error = 1.647e-30 relative error = 2.1158137361507135321175511298869e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = 0.079 y[1] (analytic) = 0.078836266347780098939037744761377 y[1] (numeric) = 0.07883626634778009893903774475973 absolute error = 1.647e-30 relative error = 2.0891400319928733430375054714480e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.08 y[1] (analytic) = 0.079829985712237315892954191567332 y[1] (numeric) = 0.079829985712237315892954191565685 absolute error = 1.647e-30 relative error = 2.0631345293445639566831239151644e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.081 y[1] (analytic) = 0.080823547105355143417110874075862 y[1] (numeric) = 0.080823547105355143417110874074214 absolute error = 1.648e-30 relative error = 2.0390097428560000727575065201575e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 2.4e-29 TOP MAIN SOLVE Loop x[1] = 0.082 y[1] (analytic) = 0.081816948603654571367345326612277 y[1] (numeric) = 0.081816948603654571367345326610629 absolute error = 1.648e-30 relative error = 2.0142525822900069654536291791419e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.083 y[1] (analytic) = 0.082810188285537962821792879902799 y[1] (numeric) = 0.082810188285537962821792879901151 absolute error = 1.648e-30 relative error = 1.9900932893879291316528588582129e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.084 y[1] (analytic) = 0.083803264231310735414002094452995 y[1] (numeric) = 0.083803264231310735414002094451347 absolute error = 1.648e-30 relative error = 1.9665105113939835017654244487163e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = 0.085 y[1] (analytic) = 0.084796174523202987222207728550445 y[1] (numeric) = 0.084796174523202987222207728548797 absolute error = 1.648e-30 relative error = 1.9434839003840364035859042832336e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1.8e-29 TOP MAIN SOLVE Loop x[1] = 0.086 y[1] (analytic) = 0.08578891724539106662518451742101 y[1] (numeric) = 0.085788917245391066625184517419362 absolute error = 1.648e-30 relative error = 1.9209940548451639726482035745953e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = 0.087 y[1] (analytic) = 0.086781490484019085538120961779159 y[1] (numeric) = 0.08678149048401908553812096177751 absolute error = 1.649e-30 relative error = 1.9001747847412983843319688517698e-27 % Correct digits = 28 h = 0.001 NO POLE memory used=312.8MB, alloc=4.4MB, time=18.26 TOP MAIN SOLVE Loop x[1] = 0.088 y[1] (analytic) = 0.087773892327220375444996844858354 y[1] (numeric) = 0.087773892327220375444996844856705 absolute error = 1.649e-30 relative error = 1.8786907544814590877835583334905e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.089 y[1] (analytic) = 0.088766120865138885647021056580154 y[1] (numeric) = 0.088766120865138885647021056578505 absolute error = 1.649e-30 relative error = 1.8576907314732187313860301598247e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = 0.09 y[1] (analytic) = 0.089758174189950523149787239319397 y[1] (numeric) = 0.089758174189950523149787239317748 absolute error = 1.649e-30 relative error = 1.8371585818025973464820645651411e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.091 y[1] (analytic) = 0.090750050395884433614933517185563 y[1] (numeric) = 0.090750050395884433614933517183914 absolute error = 1.649e-30 relative error = 1.8170788807350161952148872995392e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = 0.092 y[1] (analytic) = 0.09174174757924422280524886327667 y[1] (numeric) = 0.091741747579244222805248863275021 absolute error = 1.649e-30 relative error = 1.7974368741729441317287873668675e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.093 y[1] (analytic) = 0.092733263838429117955352228385887 y[1] (numeric) = 0.092733263838429117955352228384238 absolute error = 1.649e-30 relative error = 1.7782184426001474750092447061125e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.094 y[1] (analytic) = 0.093724597273955068503281129604286 y[1] (numeric) = 0.093724597273955068503281129602637 absolute error = 1.649e-30 relative error = 1.7594100673273707912552312228004e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.095 y[1] (analytic) = 0.094715745988475785621563705688444 y[1] (numeric) = 0.094715745988475785621563705686795 absolute error = 1.649e-30 relative error = 1.7409987988698694659573970702078e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.096 y[1] (analytic) = 0.095706708086803719989612013576212 y[1] (numeric) = 0.095706708086803719989612013574563 absolute error = 1.649e-30 relative error = 1.7229722273013465391731556736484e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.097 y[1] (analytic) = 0.096697481675930977252564290803152 y[1] (numeric) = 0.096697481675930977252564290801503 absolute error = 1.649e-30 relative error = 1.7053184544416666920455942104394e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.0e-29 TOP MAIN SOLVE Loop x[1] = 0.098 y[1] (analytic) = 0.097688064865050170615019763733247 y[1] (numeric) = 0.097688064865050170615019763731599 absolute error = 1.648e-30 relative error = 1.6870024012417554408476293129037e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.099 y[1] (analytic) = 0.098678455765575210021451061613666 y[1] (numeric) = 0.098678455765575210021451061612018 absolute error = 1.648e-30 relative error = 1.6700707233553185973227415270320e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.1 y[1] (analytic) = 0.099668652491162027378446119878021 y[1] (numeric) = 0.099668652491162027378446119876372 absolute error = 1.649e-30 relative error = 1.6544820851733925806974647159500e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.101 y[1] (analytic) = 0.10065865315772923727732333951344 y[1] (numeric) = 0.10065865315772923727732333951179 absolute error = 1.65e-30 relative error = 1.6392033354693282866995892474583e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.102 y[1] (analytic) = 0.10164845588347873267908042764051 y[1] (numeric) = 0.10164845588347873267908042763886 absolute error = 1.65e-30 relative error = 1.6232415786929627924433423940020e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.103 y[1] (analytic) = 0.10263805878891621502707849104183 y[1] (numeric) = 0.10263805878891621502707849104019 absolute error = 1.64e-30 relative error = 1.5978478347615650912909257540983e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = 0.104 y[1] (analytic) = 0.10362745999687165825632830090303 y[1] (numeric) = 0.10362745999687165825632830090139 absolute error = 1.64e-30 relative error = 1.5825921044957667489263883412265e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.105 y[1] (analytic) = 0.10461665763251970617173490360063 y[1] (numeric) = 0.10461665763251970617173490359899 absolute error = 1.64e-30 relative error = 1.5676279830700804056654508073025e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.106 y[1] (analytic) = 0.10560564982340000267116962753435 y[1] (numeric) = 0.10560564982340000267116962753272 absolute error = 1.63e-30 relative error = 1.5434780267209019157215513807538e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = 0.107 y[1] (analytic) = 0.10659443469943745429277473678898 y[1] (numeric) = 0.10659443469943745429277473678734 absolute error = 1.64e-30 relative error = 1.5385418616124571475365819707856e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.108 y[1] (analytic) = 0.10758301039296242456946521437456 y[1] (numeric) = 0.10758301039296242456946521437292 absolute error = 1.64e-30 relative error = 1.5244042660729273477284778190163e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.109 y[1] (analytic) = 0.10857137503873085967717412503826 y[1] (numeric) = 0.10857137503873085967717412503662 absolute error = 1.64e-30 relative error = 1.5105270605764732037172626489907e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = 0.11 y[1] (analytic) = 0.10955952677394434486699241285981 y[1] (numeric) = 0.10955952677394434486699241285817 absolute error = 1.64e-30 relative error = 1.4969031432417869120243686250421e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = 0.111 y[1] (analytic) = 0.11054746373827009117498053335496 y[1] (numeric) = 0.11054746373827009117498053335332 absolute error = 1.64e-30 relative error = 1.4835256681083433795783212378930e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.112 y[1] (analytic) = 0.11153518407386085190707770359557 y[1] (numeric) = 0.11153518407386085190707770359392 absolute error = 1.65e-30 relative error = 1.4793538144047322950225424247013e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.113 y[1] (analytic) = 0.11252268592537476840020447558666 y[1] (numeric) = 0.11252268592537476840020447558501 absolute error = 1.65e-30 relative error = 1.4663709690455511626894584564147e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = 0.114 y[1] (analytic) = 0.11350996743999514456434549522631 y[1] (numeric) = 0.11350996743999514456434549522466 absolute error = 1.65e-30 relative error = 1.4536168384263176557477592705011e-27 % Correct digits = 28 h = 0.001 NO POLE memory used=316.6MB, alloc=4.4MB, time=18.47 TOP MAIN SOLVE Loop x[1] = 0.115 y[1] (analytic) = 0.11449702676745014971411139778798 y[1] (numeric) = 0.11449702676745014971411139778633 absolute error = 1.65e-30 relative error = 1.4410854557395993083856698290922e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = 0.116 y[1] (analytic) = 0.1154838620600324492020115059854 y[1] (numeric) = 0.11548386206003244920201150598375 absolute error = 1.65e-30 relative error = 1.4287710599272076121217332668407e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.117 y[1] (analytic) = 0.11647047147261876236942203212415 y[1] (numeric) = 0.11647047147261876236942203212249 absolute error = 1.66e-30 relative error = 1.4252539540807578614516563557939e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = 0.118 y[1] (analytic) = 0.11745685316268934733500753430537 y[1] (numeric) = 0.11745685316268934733500753430372 absolute error = 1.65e-30 relative error = 1.4047711611297698963614922523705e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.119 y[1] (analytic) = 0.11844300529034741214414612973054 y[1] (numeric) = 0.11844300529034741214414612972888 absolute error = 1.66e-30 relative error = 1.4015179671697191839969585324554e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = 0.12 y[1] (analytic) = 0.11942892601833845180672111641376 y[1] (numeric) = 0.11942892601833845180672111641211 absolute error = 1.65e-30 relative error = 1.3815748453993805175830291169008e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 1.8e-29 TOP MAIN SOLVE Loop x[1] = 0.121 y[1] (analytic) = 0.12041461351206951075447288757797 y[1] (numeric) = 0.12041461351206951075447288757632 absolute error = 1.65e-30 relative error = 1.3702655781348462731910646715082e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.122 y[1] (analytic) = 0.12140006593962837025295502924847 y[1] (numeric) = 0.12140006593962837025295502924682 absolute error = 1.65e-30 relative error = 1.3591425896099072400287592160100e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = 0.123 y[1] (analytic) = 0.12238528147180266030700695867723 y[1] (numeric) = 0.12238528147180266030700695867558 absolute error = 1.65e-30 relative error = 1.3482013361060552943102845689003e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.124 y[1] (analytic) = 0.12337025828209889560254207593813 y[1] (numeric) = 0.12337025828209889560254207593649 absolute error = 1.64e-30 relative error = 1.3293317391376208721219549799031e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.125 y[1] (analytic) = 0.12435499454676143503135484916387 y[1] (numeric) = 0.12435499454676143503135484916223 absolute error = 1.64e-30 relative error = 1.3188050918077985310064057119079e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.126 y[1] (analytic) = 0.1253394884447913643495722204484 y[1] (numeric) = 0.12533948844479136434957222044676 absolute error = 1.64e-30 relative error = 1.3084463805852976613499955278519e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.127 y[1] (analytic) = 0.12632373815796530152431388861787 y[1] (numeric) = 0.12632373815796530152431388861623 absolute error = 1.64e-30 relative error = 1.2982516381435869838352458829171e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.128 y[1] (analytic) = 0.12730774187085412432708208031648 y[1] (numeric) = 0.12730774187085412432708208031484 absolute error = 1.64e-30 relative error = 1.2882170211326811157402973320331e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.129 y[1] (analytic) = 0.12829149777084161973637404487675 y[1] (numeric) = 0.12829149777084161973637404487511 absolute error = 1.64e-30 relative error = 1.2783388053738529896003765892014e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.13 y[1] (analytic) = 0.12927500404814305471599938326971 y[1] (numeric) = 0.12927500404814305471599938326807 absolute error = 1.64e-30 relative error = 1.2686133812761288065539285796789e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = 0.131 y[1] (analytic) = 0.13025825889582366793958912843124 y[1] (numeric) = 0.1302582588958236679395891284296 absolute error = 1.64e-30 relative error = 1.2590372494627145490748046161374e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 4.9e-29 TOP MAIN SOLVE Loop x[1] = 0.132 y[1] (analytic) = 0.13124126050981708203580391418966 y[1] (numeric) = 0.13124126050981708203580391418802 absolute error = 1.64e-30 relative error = 1.2496070165962213187182754316124e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.133 y[1] (analytic) = 0.13222400708894363593278428305017 y[1] (numeric) = 0.13222400708894363593278428304853 absolute error = 1.64e-30 relative error = 1.2403193913922264026655706989044e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.134 y[1] (analytic) = 0.13320649683492863688443686885172 y[1] (numeric) = 0.13320649683492863688443686885007 absolute error = 1.65e-30 relative error = 1.2386783221577421940633807851782e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 1.8e-29 TOP MAIN SOLVE Loop x[1] = 0.135 y[1] (analytic) = 0.13418872795242053176521552792173 y[1] (numeric) = 0.13418872795242053176521552792009 absolute error = 1.64e-30 relative error = 1.2221592864204636394354174602167e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 4.3e-29 TOP MAIN SOLVE Loop x[1] = 0.136 y[1] (analytic) = 0.13517069864900899722413616046052 y[1] (numeric) = 0.13517069864900899722413616045888 absolute error = 1.64e-30 relative error = 1.2132807009147049676990664685244e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.137 y[1] (analytic) = 0.13615240713524294829285764070112 y[1] (numeric) = 0.13615240713524294829285764069948 absolute error = 1.64e-30 relative error = 1.2045325047914538355346381101830e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 3.5e-29 TOP MAIN SOLVE Loop x[1] = 0.138 y[1] (analytic) = 0.13713385162464846504676863772256 y[1] (numeric) = 0.13713385162464846504676863772092 absolute error = 1.64e-30 relative error = 1.1959118631691856326571547282223e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.139 y[1] (analytic) = 0.13811503033374663692214083609013 y[1] (numeric) = 0.13811503033374663692214083608849 absolute error = 1.64e-30 relative error = 1.1874160227435341090819818548574e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.14 y[1] (analytic) = 0.13909594148207132429654283387275 y[1] (numeric) = 0.13909594148207132429654283387111 absolute error = 1.64e-30 relative error = 1.1790423088738262517634578735631e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 4.5e-29 TOP MAIN SOLVE Loop x[1] = 0.141 y[1] (analytic) = 0.14007658329218683694385548186933 y[1] (numeric) = 0.14007658329218683694385548186769 absolute error = 1.64e-30 relative error = 1.1707881227935944273391175982806e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 1.2e-29 memory used=320.4MB, alloc=4.4MB, time=18.68 TOP MAIN SOLVE Loop x[1] = 0.142 y[1] (analytic) = 0.14105695398970552897938830862945 y[1] (numeric) = 0.14105695398970552897938830862781 absolute error = 1.64e-30 relative error = 1.1626509389389542354501291547261e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = 0.143 y[1] (analytic) = 0.142037051803305309914767627425 y[1] (numeric) = 0.14203705180330530991476762742336 absolute error = 1.64e-30 relative error = 1.1546283023890784223123537463822e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.144 y[1] (analytic) = 0.14301687496474707144644961987734 y[1] (numeric) = 0.1430168749647470714464496198757 absolute error = 1.64e-30 relative error = 1.1467178264133177403410001599174e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.145 y[1] (analytic) = 0.14399642170889202960590581247847 y[1] (numeric) = 0.14399642170889202960590581247683 absolute error = 1.64e-30 relative error = 1.1389171901198202804145062944055e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.146 y[1] (analytic) = 0.14497569027371898190373358265784 y[1] (numeric) = 0.1449756902737189819037335826562 absolute error = 1.64e-30 relative error = 1.1312241362007829114949633877627e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.147 y[1] (analytic) = 0.14595467890034147910416032615277 y[1] (numeric) = 0.14595467890034147910416032615113 absolute error = 1.64e-30 relative error = 1.1236364687697332985276612408672e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = 0.148 y[1] (analytic) = 0.14693338583302491127063636300874 y[1] (numeric) = 0.14693338583302491127063636300711 absolute error = 1.63e-30 relative error = 1.1093462460957184221795518460428e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.149 y[1] (analytic) = 0.14791180931920350772744823132506 y[1] (numeric) = 0.14791180931920350772744823132343 absolute error = 1.63e-30 relative error = 1.1020080191719862931060829269684e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = 0.15 y[1] (analytic) = 0.14888994760949725058653039165587 y[1] (numeric) = 0.14888994760949725058653039165423 absolute error = 1.64e-30 relative error = 1.1014847048649167752186609931293e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = 0.151 y[1] (analytic) = 0.14986779895772870149290921662043 y[1] (numeric) = 0.14986779895772870149290921661879 absolute error = 1.64e-30 relative error = 1.0942977820489469402338951160986e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 3.7e-29 TOP MAIN SOLVE Loop x[1] = 0.152 y[1] (analytic) = 0.15084536162093974124647814570863 y[1] (numeric) = 0.15084536162093974124647814570699 absolute error = 1.64e-30 relative error = 1.0872061178262586047666056567183e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.153 y[1] (analytic) = 0.15182263385940822196207672055546 y[1] (numeric) = 0.15182263385940822196207672055382 absolute error = 1.64e-30 relative error = 1.0802078440548485112317502385250e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 2.0e-29 TOP MAIN SOLVE Loop x[1] = 0.154 y[1] (analytic) = 0.15279961393666453143412855733377 y[1] (numeric) = 0.15279961393666453143412855733214 absolute error = 1.63e-30 relative error = 1.0667566219608613049090381672839e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = 0.155 y[1] (analytic) = 0.15377630011950806937638383680651 y[1] (numeric) = 0.15377630011950806937638383680487 absolute error = 1.64e-30 relative error = 1.0664842363390621824999796492148e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.156 y[1] (analytic) = 0.15475269067802363521161027564922 y[1] (numeric) = 0.15475269067802363521161027564758 absolute error = 1.64e-30 relative error = 1.0597554025164977070874887171532e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.157 y[1] (analytic) = 0.15572878388559772709038246182826 y[1] (numeric) = 0.15572878388559772709038246182663 absolute error = 1.63e-30 relative error = 1.0466915359702795261681275341057e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = 0.158 y[1] (analytic) = 0.15670457801893475182243256932571 y[1] (numeric) = 0.15670457801893475182243256932407 absolute error = 1.64e-30 relative error = 1.0465552574997760175888398690197e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = 0.159 y[1] (analytic) = 0.15768007135807314540834549089928 y[1] (numeric) = 0.15768007135807314540834549089764 absolute error = 1.64e-30 relative error = 1.0400807063790263640122802911409e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.16 y[1] (analytic) = 0.15865526218640140386370801978126 y[1] (numeric) = 0.15865526218640140386370801977962 absolute error = 1.64e-30 relative error = 1.0336877437277759713537500865411e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = 0.161 y[1] (analytic) = 0.15963014879067402403215455058094 y[1] (numeric) = 0.1596301487906740240321545505793 absolute error = 1.64e-30 relative error = 1.0273748489394459121820860038220e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 2.0e-29 TOP MAIN SOLVE Loop x[1] = 0.162 y[1] (analytic) = 0.16060472946102735408809053492158 y[1] (numeric) = 0.16060472946102735408809053491994 absolute error = 1.64e-30 relative error = 1.0211405389515415774281717198436e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = 0.163 y[1] (analytic) = 0.16157900249099535343421929774144 y[1] (numeric) = 0.1615790024909953534342192977398 absolute error = 1.64e-30 relative error = 1.0149833670939982841571726220345e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = 0.164 y[1] (analytic) = 0.16255296617752526170334747544429 y[1] (numeric) = 0.16255296617752526170334747544265 absolute error = 1.64e-30 relative error = 1.0089019219796606003950152187821e-27 % Correct digits = 28 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.165 y[1] (analytic) = 0.16352661882099317657829895745621 y[1] (numeric) = 0.16352661882099317657829895745457 absolute error = 1.64e-30 relative error = 1.0028948264351078958356429662697e-27 % Correct digits = 28 h = 0.001 Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = 0.166 y[1] (analytic) = 0.16449995872521954014812647905254 y[1] (numeric) = 0.16449995872521954014812647905091 absolute error = 1.63e-30 relative error = 9.9088170758920937646052923938649e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 3.4e-29 TOP MAIN SOLVE Loop x[1] = 0.167 y[1] (analytic) = 0.16547298419748453352317360698024 y[1] (numeric) = 0.1654729841974845335231736069786 absolute error = 1.64e-30 relative error = 9.9109834028419652233614079835299e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = 0.168 y[1] (analytic) = 0.1664456935485433794359074624614 y[1] (numeric) = 0.16644569354854337943590746245977 absolute error = 1.63e-30 relative error = 9.7929839171514249234689812524301e-28 % Correct digits = 29 h = 0.001 memory used=324.2MB, alloc=4.4MB, time=18.90 NO POLE TOP MAIN SOLVE Loop x[1] = 0.169 y[1] (analytic) = 0.16741808509264155255881382133079 y[1] (numeric) = 0.16741808509264155255881382132916 absolute error = 1.63e-30 relative error = 9.7361046693254922104656122026257e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.17 y[1] (analytic) = 0.16839015714752989727502090172968 y[1] (numeric) = 0.16839015714752989727502090172804 absolute error = 1.64e-30 relative error = 9.7392865935932588346906659339355e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 2.6e-29 TOP MAIN SOLVE Loop x[1] = 0.171 y[1] (analytic) = 0.1693619080344796526416958800731 y[1] (numeric) = 0.16936190803447965264169588007146 absolute error = 1.64e-30 relative error = 9.6834053125223385440100097989732e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.172 y[1] (analytic) = 0.17033333607829738429063865080129 y[1] (numeric) = 0.17033333607829738429063865079965 absolute error = 1.64e-30 relative error = 9.6281798839784286242403208444156e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.173 y[1] (analytic) = 0.17130443960733982301488025038005 y[1] (numeric) = 0.17130443960733982301488025037841 absolute error = 1.64e-30 relative error = 9.5735989315815226438926744814104e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 1.8e-29 TOP MAIN SOLVE Loop x[1] = 0.174 y[1] (analytic) = 0.1722752169535286097944783876051 y[1] (numeric) = 0.17227521695352860979447838760346 absolute error = 1.64e-30 relative error = 9.5196513404617649215505881538763e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.175 y[1] (analytic) = 0.17324566645236494701908934781572 y[1] (numeric) = 0.17324566645236494701908934781409 absolute error = 1.63e-30 relative error = 9.4086047482646810427436325571753e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.176 y[1] (analytic) = 0.17421578644294415566928385633262 y[1] (numeric) = 0.17421578644294415566928385633098 absolute error = 1.64e-30 relative error = 9.4136130455497018952210883023587e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = 0.177 y[1] (analytic) = 0.17518557526797013822296398541092 y[1] (numeric) = 0.17518557526797013822296398540928 absolute error = 1.64e-30 relative error = 9.3615013535868874381058904364406e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.178 y[1] (analytic) = 0.17615503127376974705762855928587 y[1] (numeric) = 0.17615503127376974705762855928423 absolute error = 1.64e-30 relative error = 9.3099810328505965153227596962533e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 2.6e-29 TOP MAIN SOLVE Loop x[1] = 0.179 y[1] (analytic) = 0.17712415281030705812362544449479 y[1] (numeric) = 0.17712415281030705812362544449314 absolute error = 1.65e-30 relative error = 9.3154997430931091103986436601198e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.18 y[1] (analytic) = 0.17809293823119754966792029959123 y[1] (numeric) = 0.17809293823119754966792029958958 absolute error = 1.65e-30 relative error = 9.2648255252995772378685515949545e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.181 y[1] (analytic) = 0.17906138589372218579230249265557 y[1] (numeric) = 0.17906138589372218579230249265392 absolute error = 1.65e-30 relative error = 9.2147170187732154787279936418769e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.182 y[1] (analytic) = 0.18002949415884140463433967073478 y[1] (numeric) = 0.18002949415884140463433967073313 absolute error = 1.65e-30 relative error = 9.1651648953931533813587828166865e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 4.0e-29 TOP MAIN SOLVE Loop x[1] = 0.183 y[1] (analytic) = 0.18099726139120901096378257767923 y[1] (numeric) = 0.18099726139120901096378257767758 absolute error = 1.65e-30 relative error = 9.1161600309171311190026435248714e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.184 y[1] (analytic) = 0.18196468595918597299151086206316 y[1] (numeric) = 0.1819646859591859729915108620615 absolute error = 1.66e-30 relative error = 9.1226492176197971267727558039718e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.185 y[1] (analytic) = 0.18293176623485412319249849239243 y[1] (numeric) = 0.18293176623485412319249849239078 absolute error = 1.65e-30 relative error = 9.0197565680400908599065571321380e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 5.0e-29 TOP MAIN SOLVE Loop x[1] = 0.186 y[1] (analytic) = 0.18389850059402976294866370120209 y[1] (numeric) = 0.18389850059402976294866370120044 absolute error = 1.65e-30 relative error = 8.9723406915780312829482173244653e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 5.1e-29 TOP MAIN SOLVE Loop x[1] = 0.187 y[1] (analytic) = 0.18486488741627717082185281270067 y[1] (numeric) = 0.18486488741627717082185281269902 absolute error = 1.65e-30 relative error = 8.9254375076893002723218548424457e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.188 y[1] (analytic) = 0.18583092508492201427158957132817 y[1] (numeric) = 0.18583092508492201427158957132652 absolute error = 1.65e-30 relative error = 8.8790388319165614528259156612650e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 5.5e-29 TOP MAIN SOLVE Loop x[1] = 0.189 y[1] (analytic) = 0.18679661198706466463660138320294 y[1] (numeric) = 0.18679661198706466463660138320129 absolute error = 1.65e-30 relative error = 8.8331366530044965961017620686728e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.19 y[1] (analytic) = 0.18776194651359341520351091246245 y[1] (numeric) = 0.1877619465135934152035109124608 absolute error = 1.65e-30 relative error = 8.7877231283419019669299855301509e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.191 y[1] (analytic) = 0.18872692705919760219045544477445 y[1] (numeric) = 0.18872692705919760219045544477281 absolute error = 1.64e-30 relative error = 8.6898039699739531151929448467943e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 7.27e-28 TOP MAIN SOLVE Loop x[1] = 0.192 y[1] (analytic) = 0.18969155202238062847776704695925 y[1] (numeric) = 0.1896915520223806284777670469576 absolute error = 1.65e-30 relative error = 8.6983314881905013597355450354944e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.193 y[1] (analytic) = 0.19065581980547288992221352222369 y[1] (numeric) = 0.19065581980547288992221352222204 absolute error = 1.65e-30 relative error = 8.6543384916521481296298324892383e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.194 y[1] (analytic) = 0.19161972881464460409566319384601 y[1] (numeric) = 0.19161972881464460409566319384436 absolute error = 1.65e-30 relative error = 8.6108043791047165855440272525013e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 2.4e-29 TOP MAIN SOLVE Loop x[1] = 0.195 y[1] (analytic) = 0.19258327745991854129339535655458 y[1] (numeric) = 0.19258327745991854129339535655293 memory used=328.0MB, alloc=4.4MB, time=19.11 absolute error = 1.65e-30 relative error = 8.5677220876221031136241299906429e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.196 y[1] (analytic) = 0.19354646415518265766163252603031 y[1] (numeric) = 0.19354646415518265766163252602866 absolute error = 1.65e-30 relative error = 8.5250846984063459806260590812770e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = 0.197 y[1] (analytic) = 0.1945092873182026302982201061027 y[1] (numeric) = 0.19450928731820263029822010610104 absolute error = 1.66e-30 relative error = 8.5342968599970462665008852285160e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.198 y[1] (analytic) = 0.1954717453706342941847234949532 y[1] (numeric) = 0.19547174537063429418472349495155 absolute error = 1.65e-30 relative error = 8.4411176503869258317545083757588e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.199 y[1] (analytic) = 0.19643383673803598081255168214006 y[1] (numeric) = 0.19643383673803598081255168213841 absolute error = 1.65e-30 relative error = 8.3997748422561168926666492449562e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.2 y[1] (analytic) = 0.19739555984988075837004976519479 y[1] (numeric) = 0.19739555984988075837004976519314 absolute error = 1.65e-30 relative error = 8.3588506309606169339261675018833e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = 0.201 y[1] (analytic) = 0.19835691313956857336183025714339 y[1] (numeric) = 0.19835691313956857336183025714174 absolute error = 1.65e-30 relative error = 8.3183387656321376898032005827805e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = 0.202 y[1] (analytic) = 0.19931789504443829353593428537757 y[1] (numeric) = 0.19931789504443829353593428537592 absolute error = 1.65e-30 relative error = 8.2782331191694024597814321987814e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.203 y[1] (analytic) = 0.20027850400577965199872852024381 y[1] (numeric) = 0.20027850400577965199872852024216 absolute error = 1.65e-30 relative error = 8.2385276851897404675926322442449e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.204 y[1] (analytic) = 0.20123873846884509240175164255016 y[1] (numeric) = 0.20123873846884509240175164254851 absolute error = 1.65e-30 relative error = 8.1992165750703403200589175803302e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = 0.205 y[1] (analytic) = 0.20219859688286151508902508857327 y[1] (numeric) = 0.20219859688286151508902508857162 absolute error = 1.65e-30 relative error = 8.1602940150761010342426398605626e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.206 y[1] (analytic) = 0.20315807770104192409763642640581 y[1] (numeric) = 0.20315807770104192409763642640416 absolute error = 1.65e-30 relative error = 8.1217543435711379958304749964795e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = 0.207 y[1] (analytic) = 0.20411717938059697490868974762712 y[1] (numeric) = 0.20411717938059697490868974762548 absolute error = 1.64e-30 relative error = 8.0346005415940778765591978195788e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = 0.208 y[1] (analytic) = 0.20507590038274642284999563402438 y[1] (numeric) = 0.20507590038274642284999563402273 absolute error = 1.65e-30 relative error = 8.0458015638136818245801306029980e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = 0.209 y[1] (analytic) = 0.20603423917273047205614331288115 y[1] (numeric) = 0.2060342391727304720561433128795 absolute error = 1.65e-30 relative error = 8.0083776688044026743707340664276e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.21 y[1] (analytic) = 0.20699219421982102489585928037958 y[1] (numeric) = 0.20699219421982102489585928037793 absolute error = 1.65e-30 relative error = 7.9713150837356569519979364482932e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.022 Order of pole = 2.0e-29 TOP MAIN SOLVE Loop x[1] = 0.211 y[1] (analytic) = 0.2079497639973328317808096868911 y[1] (numeric) = 0.20794976399733283178080968688946 absolute error = 1.64e-30 relative error = 7.8865201309919961046620205691518e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.212 y[1] (analytic) = 0.20890694698263454127424787811166 y[1] (numeric) = 0.20890694698263454127424787811002 absolute error = 1.64e-30 relative error = 7.8503851771685004796675136608715e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.213 y[1] (analytic) = 0.20986374165715965042214341168905 y[1] (numeric) = 0.20986374165715965042214341168741 absolute error = 1.64e-30 relative error = 7.8145943031891532874435066975824e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.214 y[1] (analytic) = 0.21082014650641735523365436158161 y[1] (numeric) = 0.21082014650641735523365436157997 absolute error = 1.64e-30 relative error = 7.7791426824099967030128791723289e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.215 y[1] (analytic) = 0.21177616002000330124202052511406 y[1] (numeric) = 0.21177616002000330124202052511242 absolute error = 1.64e-30 relative error = 7.7440255779739037837775314066990e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.216 y[1] (analytic) = 0.21273178069161023408116100566043 y[1] (numeric) = 0.21273178069161023408116100565879 absolute error = 1.64e-30 relative error = 7.7092383407322209525005027414881e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.217 y[1] (analytic) = 0.2136870070190385500174553040726 y[1] (numeric) = 0.21368700701903855001745530407096 absolute error = 1.64e-30 relative error = 7.6747764072238766744403992090288e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = 0.218 y[1] (analytic) = 0.21464183750420674638037226327621 y[1] (numeric) = 0.21464183750420674638037226327457 absolute error = 1.64e-30 relative error = 7.6406352977101110826896151594176e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.219 y[1] (analytic) = 0.21559627065316177183978572368475 y[1] (numeric) = 0.21559627065316177183978572368311 absolute error = 1.64e-30 relative error = 7.6068106142630487120127740928483e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.024 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = 0.22 y[1] (analytic) = 0.21655030497608927648197931498645 y[1] (numeric) = 0.21655030497608927648197931498482 absolute error = 1.63e-30 relative error = 7.5271193923277035822095913897360e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.221 y[1] (analytic) = 0.2175039389873237616404951871435 y[1] (numeric) = 0.21750393898732376164049518714186 absolute error = 1.64e-30 relative error = 7.5400933318066484319021637933500e-28 % Correct digits = 29 h = 0.001 memory used=331.8MB, alloc=4.4MB, time=19.33 Complex estimate of poles used Radius of convergence = 1.024 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.222 y[1] (analytic) = 0.21845717120535862944212242678504 y[1] (numeric) = 0.21845717120535862944212242678341 absolute error = 1.63e-30 relative error = 7.4614167665282714804051060011765e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.223 y[1] (analytic) = 0.21941000015285613203245017324312 y[1] (numeric) = 0.21941000015285613203245017324148 absolute error = 1.64e-30 relative error = 7.4745909432453531739243061657638e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = 0.224 y[1] (analytic) = 0.22036242435665722044952780194386 y[1] (numeric) = 0.22036242435665722044952780194223 absolute error = 1.63e-30 relative error = 7.3969053696824477249391270973122e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = 0.225 y[1] (analytic) = 0.22131444234779129311827974442012 y[1] (numeric) = 0.22131444234779129311827974441849 absolute error = 1.63e-30 relative error = 7.3650864476277018580271604937591e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = 0.226 y[1] (analytic) = 0.22226605266148584394241532858389 y[1] (numeric) = 0.22226605266148584394241532858225 absolute error = 1.64e-30 relative error = 7.3785446781553358697512670982016e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = 0.227 y[1] (analytic) = 0.22321725383717600997465421687039 y[1] (numeric) = 0.22321725383717600997465421686875 absolute error = 1.64e-30 relative error = 7.3471023041806818046919901361799e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = 0.228 y[1] (analytic) = 0.22416804441851401865015536228796 y[1] (numeric) = 0.22416804441851401865015536228632 absolute error = 1.64e-30 relative error = 7.3159401655758591581446112412695e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.229 y[1] (analytic) = 0.22511842295337853457209166420795 y[1] (numeric) = 0.22511842295337853457209166420631 absolute error = 1.64e-30 relative error = 7.2850545880895759500724788169149e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.026 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = 0.23 y[1] (analytic) = 0.2260683879938839058423534599328 y[1] (numeric) = 0.22606838799388390584235345993117 absolute error = 1.63e-30 relative error = 7.2102075591572684117514948142905e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.026 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = 0.231 y[1] (analytic) = 0.22701793809638930993439140982068 y[1] (numeric) = 0.22701793809638930993439140981905 absolute error = 1.63e-30 relative error = 7.1800493549893841313002372608010e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.232 y[1] (analytic) = 0.22796707182150779910922300027972 y[1] (numeric) = 0.22796707182150779910922300027809 absolute error = 1.63e-30 relative error = 7.1501554455910500188146507120357e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.233 y[1] (analytic) = 0.22891578773411524537962657966637 y[1] (numeric) = 0.22891578773411524537962657966473 absolute error = 1.64e-30 relative error = 7.1642066116682756586150203093572e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.234 y[1] (analytic) = 0.22986408440335918503153233857194 y[1] (numeric) = 0.2298640844033591850315323385703 absolute error = 1.64e-30 relative error = 7.1346509145037770304354271777104e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.027 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = 0.235 y[1] (analytic) = 0.23081196040266756271559073186302 y[1] (numeric) = 0.23081196040266756271559073186138 absolute error = 1.64e-30 relative error = 7.1053510274723442386997310758309e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.027 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = 0.236 y[1] (analytic) = 0.23175941430975737512585530103053 y[1] (numeric) = 0.2317594143097573751258553010289 absolute error = 1.63e-30 relative error = 7.0331555024618254027232698413160e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.237 y[1] (analytic) = 0.23270644470664321428645847996177 y[1] (numeric) = 0.23270644470664321428645847996013 absolute error = 1.64e-30 relative error = 7.0475057193514069845668820289150e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.238 y[1] (analytic) = 0.23365305017964571047108554543775 y[1] (numeric) = 0.23365305017964571047108554543611 absolute error = 1.64e-30 relative error = 7.0189539521914010131463807475574e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.239 y[1] (analytic) = 0.23459922931939987478396319794222 y[1] (numeric) = 0.23459922931939987478396319794058 absolute error = 1.64e-30 relative error = 6.9906453007447384504534317421419e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.24 y[1] (analytic) = 0.23554498072086334143497512343376 y[1] (numeric) = 0.23554498072086334143497512343212 absolute error = 1.64e-30 relative error = 6.9625767230570300348567391502339e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.241 y[1] (analytic) = 0.23649030298332450974539708949449 y[1] (numeric) = 0.23649030298332450974539708949285 absolute error = 1.64e-30 relative error = 6.9347452276537540588372209825679e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.242 y[1] (analytic) = 0.23743519471041058592460846888223 y[1] (numeric) = 0.2374351947104105859246084688806 absolute error = 1.63e-30 relative error = 6.8650311171772168773575491904644e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.243 y[1] (analytic) = 0.23837965451009552466198536138191 y[1] (numeric) = 0.23837965451009552466198536138028 absolute error = 1.63e-30 relative error = 6.8378318751652041666574362470209e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.244 y[1] (analytic) = 0.23932368099470787058201250463952 y[1] (numeric) = 0.23932368099470787058201250463788 absolute error = 1.64e-30 relative error = 6.8526440558812275630973860478811e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.029 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = 0.245 y[1] (analytic) = 0.24026727278093849961446673229958 y[1] (numeric) = 0.24026727278093849961446673229794 absolute error = 1.64e-30 relative error = 6.8257319485007643211901228258376e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.246 y[1] (analytic) = 0.24121042848984826033532366146249 y[1] (numeric) = 0.24121042848984826033532366146085 absolute error = 1.64e-30 relative error = 6.7990426876134093486495865321626e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.247 y[1] (analytic) = 0.24215314674687551533782138172501 y[1] (numeric) = 0.24215314674687551533782138172336 memory used=335.7MB, alloc=4.4MB, time=19.55 absolute error = 1.65e-30 relative error = 6.8138697438640236522335677315524e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.248 y[1] (analytic) = 0.24309542618184358269687998765299 y[1] (numeric) = 0.24309542618184358269687998765134 absolute error = 1.65e-30 relative error = 6.7874580197397227716076337961723e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.03 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = 0.249 y[1] (analytic) = 0.24403726542896807759382366054851 y[1] (numeric) = 0.24403726542896807759382366054686 absolute error = 1.65e-30 relative error = 6.7612624535012480295346290477529e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.25 y[1] (analytic) = 0.24497866312686415417208248121128 y[1] (numeric) = 0.24497866312686415417208248120963 absolute error = 1.65e-30 relative error = 6.7352804482630976838147637850915e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.031 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = 0.251 y[1] (analytic) = 0.24591961791855364769826406277119 y[1] (numeric) = 0.24591961791855364769826406276954 absolute error = 1.65e-30 relative error = 6.7095094485160800400871908250877e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.252 y[1] (analytic) = 0.24686012845147211710668025362079 y[1] (numeric) = 0.24686012845147211710668025361914 absolute error = 1.65e-30 relative error = 6.6839469393063926657391477853093e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.253 y[1] (analytic) = 0.24780019337747578800909139937062 y[1] (numeric) = 0.24780019337747578800909139936896 absolute error = 1.66e-30 relative error = 6.6989455390428620603205425620783e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.254 y[1] (analytic) = 0.24873981135284839625508979628847 y[1] (numeric) = 0.24873981135284839625508979628682 absolute error = 1.65e-30 relative error = 6.6334375306709636667064422511650e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.032 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = 0.255 y[1] (analytic) = 0.24967898103830793213218484590961 y[1] (numeric) = 0.24967898103830793213218484590796 absolute error = 1.65e-30 relative error = 6.6084857969956332631467436175043e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.032 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = 0.256 y[1] (analytic) = 0.25061770109901328529827486280961 y[1] (numeric) = 0.25061770109901328529827486280795 absolute error = 1.66e-30 relative error = 6.6236342952654098754638572422208e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.257 y[1] (analytic) = 0.25155597020457079054279432865903 y[1] (numeric) = 0.25155597020457079054279432865737 absolute error = 1.66e-30 relative error = 6.5989290520517237857084706819673e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.258 y[1] (analytic) = 0.25249378702904067447641046172953 y[1] (numeric) = 0.25249378702904067447641046172787 absolute error = 1.66e-30 relative error = 6.5744191947545799702931607140863e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.033 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = 0.259 y[1] (analytic) = 0.25343115025094340325270912045762 y[1] (numeric) = 0.25343115025094340325270912045596 absolute error = 1.66e-30 relative error = 6.5501024572405365233363268264838e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.26 y[1] (analytic) = 0.25436805855326593142885712332461 y[1] (numeric) = 0.25436805855326593142885712332295 absolute error = 1.66e-30 relative error = 6.5259766082319953606894748856021e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.261 y[1] (analytic) = 0.25530451062346785207575588837784 y[1] (numeric) = 0.25530451062346785207575588837618 absolute error = 1.66e-30 relative error = 6.5020394506395027240136158795633e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.033 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.262 y[1] (analytic) = 0.25624050515348744825170971977317 y[1] (numeric) = 0.25624050515348744825170971977151 absolute error = 1.66e-30 relative error = 6.4782888209093405425541446581198e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.263 y[1] (analytic) = 0.25717604083974764595712094371203 y[1] (numeric) = 0.25717604083974764595712094371037 absolute error = 1.66e-30 relative error = 6.4547225883860016706711891624602e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.034 Order of pole = 2.0e-29 TOP MAIN SOLVE Loop x[1] = 0.264 y[1] (analytic) = 0.25811111638316186869119327240872 y[1] (numeric) = 0.25811111638316186869119327240705 absolute error = 1.67e-30 relative error = 6.4700816586330649203560051407042e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.265 y[1] (analytic) = 0.25904573048913979373507410496906 y[1] (numeric) = 0.2590457304891397937350741049674 absolute error = 1.66e-30 relative error = 6.4081349531047131748199123960461e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.035 Order of pole = 4.1e-29 TOP MAIN SOLVE Loop x[1] = 0.266 y[1] (analytic) = 0.25997988186759301028929581338912 y[1] (numeric) = 0.25997988186759301028929581338746 absolute error = 1.66e-30 relative error = 6.3851094479896452948681815823212e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.267 y[1] (analytic) = 0.26091356923294057959678526777799 y[1] (numeric) = 0.26091356923294057959678526777633 absolute error = 1.66e-30 relative error = 6.3622601341901518230208457283865e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.035 Order of pole = 1.06e-28 TOP MAIN SOLVE Loop x[1] = 0.268 y[1] (analytic) = 0.26184679130411449718609978724919 y[1] (numeric) = 0.26184679130411449718609978724753 absolute error = 1.66e-30 relative error = 6.3395850364728750266201640431782e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.035 Order of pole = 3.702e-27 TOP MAIN SOLVE Loop x[1] = 0.269 y[1] (analytic) = 0.26277954680456505737291622397537 y[1] (numeric) = 0.26277954680456505737291622397371 absolute error = 1.66e-30 relative error = 6.3170822089687923812441444839566e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.27 y[1] (analytic) = 0.26371183446226612016114786232071 y[1] (numeric) = 0.26371183446226612016114786231905 absolute error = 1.66e-30 relative error = 6.2947497346294685538739246353248e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.036 Order of pole = 4.0e-29 TOP MAIN SOLVE Loop x[1] = 0.271 y[1] (analytic) = 0.26464365300972028068839110980497 y[1] (numeric) = 0.26464365300972028068839110980331 absolute error = 1.66e-30 relative error = 6.2725857246953461079754898666084e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.036 Order of pole = 7.5e-29 TOP MAIN SOLVE Loop x[1] = 0.272 y[1] (analytic) = 0.26557500118396394136371044135735 y[1] (numeric) = 0.26557500118396394136371044135569 absolute error = 1.66e-30 relative error = 6.2505883181757651095572059653640e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=339.5MB, alloc=4.4MB, time=19.76 x[1] = 0.273 y[1] (analytic) = 0.26650587772657228684905560472492 y[1] (numeric) = 0.26650587772657228684905560472326 absolute error = 1.66e-30 relative error = 6.2287556813404108922688042339895e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.037 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.274 y[1] (analytic) = 0.2674362813836641620388695772418 y[1] (numeric) = 0.26743628138366416203886957724014 absolute error = 1.66e-30 relative error = 6.2070860072218980203961845362000e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.037 Order of pole = 4.1e-29 TOP MAIN SOLVE Loop x[1] = 0.275 y[1] (analytic) = 0.2683662109059068531956890590657 y[1] (numeric) = 0.26836621090590685319568905906404 absolute error = 1.66e-30 relative error = 6.1855775151292069820238932867723e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.276 y[1] (analytic) = 0.26929566504852077240276127446637 y[1] (numeric) = 0.26929566504852077240276127446471 absolute error = 1.66e-30 relative error = 6.1642284501716983610953899175299e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.037 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = 0.277 y[1] (analytic) = 0.27022464257128404549790141221517 y[1] (numeric) = 0.27022464257128404549790141221351 absolute error = 1.66e-30 relative error = 6.1430370827934371865987649852208e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.038 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = 0.278 y[1] (analytic) = 0.27115314223853700365599405237651 y[1] (numeric) = 0.27115314223853700365599405237485 absolute error = 1.66e-30 relative error = 6.1220017083175678492453186609090e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.038 Order of pole = 3.9e-29 TOP MAIN SOLVE Loop x[1] = 0.279 y[1] (analytic) = 0.27208116281918657879069928603027 y[1] (numeric) = 0.2720811628191865787906992860286 absolute error = 1.67e-30 relative error = 6.1378743853348277056773824471494e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.28 y[1] (analytic) = 0.27300870308671060294905982523562 y[1] (numeric) = 0.27300870308671060294905982523395 absolute error = 1.67e-30 relative error = 6.1170211100178348940701217131618e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.281 y[1] (analytic) = 0.27393576181916201187581911384407 y[1] (numeric) = 0.2739357618191620118758191138424 absolute error = 1.67e-30 relative error = 6.0963197682179452051470590667175e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.282 y[1] (analytic) = 0.27486233779917295292735217892747 y[1] (numeric) = 0.2748623377991729529273521789258 absolute error = 1.67e-30 relative error = 6.0757687407147744442676180003491e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.039 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = 0.283 y[1] (analytic) = 0.27578842981395879751818060333197 y[1] (numeric) = 0.27578842981395879751818060333029 absolute error = 1.68e-30 relative error = 6.0916261103966306586822278285199e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.284 y[1] (analytic) = 0.27671403665532205828609045030453 y[1] (numeric) = 0.27671403665532205828609045030285 absolute error = 1.68e-30 relative error = 6.0712496565276369960343798452443e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.04 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = 0.285 y[1] (analytic) = 0.27763915711965621116489713174288 y[1] (numeric) = 0.2776391571196562111648971317412 absolute error = 1.68e-30 relative error = 6.0510196667826574368561019057647e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.286 y[1] (analytic) = 0.27856379000794942255690398524164 y[1] (numeric) = 0.27856379000794942255690398523996 absolute error = 1.68e-30 relative error = 6.0309346019167012067013828994820e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.04 Order of pole = 6.2e-29 TOP MAIN SOLVE Loop x[1] = 0.287 y[1] (analytic) = 0.27948793412578818180008161696429 y[1] (numeric) = 0.27948793412578818180008161696261 absolute error = 1.68e-30 relative error = 6.0109929441314920119040990181168e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.04 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = 0.288 y[1] (analytic) = 0.28041158828336083912795278504169 y[1] (numeric) = 0.28041158828336083912795278504001 absolute error = 1.68e-30 relative error = 5.9911931967031635953807646295190e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.289 y[1] (analytic) = 0.28133475129546104932310265162365 y[1] (numeric) = 0.28133475129546104932310265162197 absolute error = 1.68e-30 relative error = 5.9715338836176848009716954650092e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.041 Order of pole = 2.6e-29 TOP MAIN SOLVE Loop x[1] = 0.29 y[1] (analytic) = 0.28225742198149112126814653318423 y[1] (numeric) = 0.28225742198149112126814653318255 absolute error = 1.68e-30 relative error = 5.9520135492138275711763125256438e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.291 y[1] (analytic) = 0.28317959916546527360087674284891 y[1] (numeric) = 0.28317959916546527360087674284723 absolute error = 1.68e-30 relative error = 5.9326307578334964323545912570618e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.292 y[1] (analytic) = 0.28410128167601279668317666236213 y[1] (numeric) = 0.28410128167601279668317666236044 absolute error = 1.69e-30 relative error = 5.9485828083213813437370526409711e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.293 y[1] (analytic) = 0.28502246834638112109613372417645 y[1] (numeric) = 0.28502246834638112109613372417476 absolute error = 1.69e-30 relative error = 5.9293571128090247112935510065087e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.294 y[1] (analytic) = 0.28594315801443879287660344768433 y[1] (numeric) = 0.28594315801443879287660344768264 absolute error = 1.69e-30 relative error = 5.9102655637406889787494977585513e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.295 y[1] (analytic) = 0.28686334952267835571327398182198 y[1] (numeric) = 0.28686334952267835571327398182029 absolute error = 1.69e-30 relative error = 5.8913067940259647874921415718252e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.296 y[1] (analytic) = 0.28778304171821914032305468546916 y[1] (numeric) = 0.28778304171821914032305468546747 absolute error = 1.69e-30 relative error = 5.8724794550429149653550187733842e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.297 y[1] (analytic) = 0.28870223345280996123136305587949 y[1] (numeric) = 0.28870223345280996123136305587781 absolute error = 1.68e-30 relative error = 5.8191444517335389865544780394859e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.043 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = 0.298 y[1] (analytic) = 0.28962092358283172118261172474643 y[1] (numeric) = 0.28962092358283172118261172474475 absolute error = 1.68e-30 relative error = 5.8006858731652349181396855201666e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.043 Order of pole = 6e-30 TOP MAIN SOLVE Loop memory used=343.3MB, alloc=4.4MB, time=19.98 x[1] = 0.299 y[1] (analytic) = 0.29053911096929992340990121468515 y[1] (numeric) = 0.29053911096929992340990121468347 absolute error = 1.68e-30 relative error = 5.7823540328018650531290564907442e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.044 Order of pole = 4.0e-29 TOP MAIN SOLVE Loop x[1] = 0.3 y[1] (analytic) = 0.29145679447786709199560462143289 y[1] (numeric) = 0.29145679447786709199560462143121 absolute error = 1.68e-30 relative error = 5.7641476604093281822311077194097e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.044 Order of pole = 2.6e-29 TOP MAIN SOLVE Loop x[1] = 0.301 y[1] (analytic) = 0.29237397297882510055718729677063 y[1] (numeric) = 0.29237397297882510055718729676895 absolute error = 1.68e-30 relative error = 5.7460655026282806616646717582699e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.044 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = 0.302 y[1] (analytic) = 0.29329064534710740949523789416054 y[1] (numeric) = 0.29329064534710740949523789415886 absolute error = 1.68e-30 relative error = 5.7281063226947857577118414569667e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.045 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = 0.303 y[1] (analytic) = 0.29420681046229121204329674576447 y[1] (numeric) = 0.29420681046229121204329674576279 absolute error = 1.68e-30 relative error = 5.7102689001664946812376236675209e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.045 Order of pole = 2.8e-29 TOP MAIN SOLVE Loop x[1] = 0.304 y[1] (analytic) = 0.29512246720859948936165341051156 y[1] (numeric) = 0.29512246720859948936165341050988 absolute error = 1.68e-30 relative error = 5.6925520306542319370110308336892e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.305 y[1] (analytic) = 0.29603761447490297491984731513142 y[1] (numeric) = 0.29603761447490297491984731512974 absolute error = 1.68e-30 relative error = 5.6749545255588609536531605650268e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.306 y[1] (analytic) = 0.29695225115472202841514365272399 y[1] (numeric) = 0.29695225115472202841514365272231 absolute error = 1.68e-30 relative error = 5.6574752118133092027642192149257e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.307 y[1] (analytic) = 0.29786637614622841947677105790348 y[1] (numeric) = 0.2978663761462284194767710579018 absolute error = 1.68e-30 relative error = 5.6401129316296351634442309372797e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.308 y[1] (analytic) = 0.29877998835224702140819799746658 y[1] (numeric) = 0.2987799883522470214081979974649 absolute error = 1.68e-30 relative error = 5.6228665422510225441078196042550e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.309 y[1] (analytic) = 0.29969308668025741522219125675657 y[1] (numeric) = 0.29969308668025741522219125675489 absolute error = 1.68e-30 relative error = 5.6057349157085901401785635187532e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.047 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = 0.31 y[1] (analytic) = 0.3006056700423954042258423224989 y[1] (numeric) = 0.30060567004239540422584232249723 absolute error = 1.67e-30 relative error = 5.5554507663294388928349153808337e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.047 Order of pole = 5.7e-29 TOP MAIN SOLVE Loop x[1] = 0.311 y[1] (analytic) = 0.30151773735545443941516582315162 y[1] (numeric) = 0.30151773735545443941516582314995 absolute error = 1.67e-30 relative error = 5.5386459670572006935055158447308e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.047 Order of pole = 2.5e-29 TOP MAIN SOLVE Loop x[1] = 0.312 y[1] (analytic) = 0.30242928754088695594126845022163 y[1] (numeric) = 0.30242928754088695594126845021995 absolute error = 1.68e-30 relative error = 5.5550175502525437195623828126188e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.313 y[1] (analytic) = 0.30334031952480562091245691320838 y[1] (numeric) = 0.3033403195248056209124569132067 absolute error = 1.68e-30 relative error = 5.5383339828737082435039010862213e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.314 y[1] (analytic) = 0.30425083223798449279899944368794 y[1] (numeric) = 0.30425083223798449279899944368626 absolute error = 1.68e-30 relative error = 5.5217597521176435305010232808046e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.048 Order of pole = 3.3e-29 TOP MAIN SOLVE Loop x[1] = 0.315 y[1] (analytic) = 0.30516082461586009270957712954771 y[1] (numeric) = 0.30516082461586009270957712954603 absolute error = 1.68e-30 relative error = 5.5052938138924059314466965234677e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.316 y[1] (analytic) = 0.30607029559853238781075889968589 y[1] (numeric) = 0.30607029559853238781075889968421 absolute error = 1.68e-30 relative error = 5.4889351373177019538039784614061e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.049 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = 0.317 y[1] (analytic) = 0.30697924413076568716310726590472 y[1] (numeric) = 0.30697924413076568716310726590304 absolute error = 1.68e-30 relative error = 5.4726827045165336504582803690841e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.049 Order of pole = 8.7e-29 TOP MAIN SOLVE Loop x[1] = 0.318 y[1] (analytic) = 0.30788766916198945024977093769348 y[1] (numeric) = 0.30788766916198945024977093769181 absolute error = 1.67e-30 relative error = 5.4240561323726158353976208754170e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.049 Order of pole = 1.38e-28 TOP MAIN SOLVE Loop x[1] = 0.319 y[1] (analytic) = 0.30879556964629900847564513467882 y[1] (numeric) = 0.30879556964629900847564513467715 absolute error = 1.67e-30 relative error = 5.4081086782198766703739907661867e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.32 y[1] (analytic) = 0.30970294454245619991738081039242 y[1] (numeric) = 0.30970294454245619991738081039074 absolute error = 1.68e-30 relative error = 5.4245528807676353830459796666312e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.05 Order of pole = 3.4e-29 TOP MAIN SOLVE Loop x[1] = 0.321 y[1] (analytic) = 0.31060979281388991760670005144684 y[1] (numeric) = 0.31060979281388991760670005144516 absolute error = 1.68e-30 relative error = 5.4087154972818789613663236864963e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.05 Order of pole = 3.1e-29 TOP MAIN SOLVE Loop x[1] = 0.322 y[1] (analytic) = 0.31151611342869657163162661208564 y[1] (numeric) = 0.31151611342869657163162661208396 absolute error = 1.68e-30 relative error = 5.3929794562121035332836129205606e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.051 Order of pole = 1.71e-28 TOP MAIN SOLVE Loop x[1] = 0.323 y[1] (analytic) = 0.31242190535964046534236787132933 y[1] (numeric) = 0.31242190535964046534236787132766 absolute error = 1.67e-30 relative error = 5.3453358146497472391000875767514e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.324 y[1] (analytic) = 0.31332716758415408595068744658613 y[1] (numeric) = 0.31332716758415408595068744658445 absolute error = 1.68e-30 relative error = 5.3618076368969249347761196972895e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.051 Order of pole = 4.7e-29 memory used=347.1MB, alloc=4.4MB, time=20.18 TOP MAIN SOLVE Loop x[1] = 0.325 y[1] (analytic) = 0.31423189908433830981368625370098 y[1] (numeric) = 0.3142318990843383098136862536993 absolute error = 1.68e-30 relative error = 5.3463700053860419502068201838879e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.326 y[1] (analytic) = 0.31513609884696252269496396108787 y[1] (numeric) = 0.31513609884696252269496396108619 absolute error = 1.68e-30 relative error = 5.3310300094050709946650529980065e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.327 y[1] (analytic) = 0.31603976586346465529816253896612 y[1] (numeric) = 0.31603976586346465529816253896444 absolute error = 1.68e-30 relative error = 5.3157867504742829620291095384636e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.052 Order of pole = 4.3e-29 TOP MAIN SOLVE Loop x[1] = 0.328 y[1] (analytic) = 0.31694289912995113436989894995901 y[1] (numeric) = 0.31694289912995113436989894995733 absolute error = 1.68e-30 relative error = 5.3006393410668459391565345467206e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.052 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = 0.329 y[1] (analytic) = 0.31784549764719674967107496257369 y[1] (numeric) = 0.31784549764719674967107496257201 absolute error = 1.68e-30 relative error = 5.2855869044423974813803376242457e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.053 Order of pole = 4.3e-29 TOP MAIN SOLVE Loop x[1] = 0.33 y[1] (analytic) = 0.31874756042064443711750859451907 y[1] (numeric) = 0.31874756042064443711750859451739 absolute error = 1.68e-30 relative error = 5.2706285744836428239038797429861e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.053 Order of pole = 3.5e-29 TOP MAIN SOLVE Loop x[1] = 0.331 y[1] (analytic) = 0.31964908646040497839276381056737 y[1] (numeric) = 0.31964908646040497839276381056569 absolute error = 1.68e-30 relative error = 5.2557634955359150359038105985301e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.053 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = 0.332 y[1] (analytic) = 0.32055007478125661733796281382548 y[1] (numeric) = 0.32055007478125661733796281382379 absolute error = 1.69e-30 relative error = 5.2721871961915967772661771343885e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.333 y[1] (analytic) = 0.32145052440264459342524858590824 y[1] (numeric) = 0.32145052440264459342524858590656 absolute error = 1.68e-30 relative error = 5.2263097194256079293479424653416e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.054 Order of pole = 3.7e-29 TOP MAIN SOLVE Loop x[1] = 0.334 y[1] (analytic) = 0.32235043434868059262342425859152 y[1] (numeric) = 0.32235043434868059262342425858984 absolute error = 1.68e-30 relative error = 5.2117193618631039420862030400098e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.335 y[1] (analytic) = 0.32324980364814211596613044698888 y[1] (numeric) = 0.3232498036481421159661304469872 absolute error = 1.68e-30 relative error = 5.1972189342106529384071120283462e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.336 y[1] (analytic) = 0.32414863133447176613473185397701 y[1] (numeric) = 0.32414863133447176613473185397533 absolute error = 1.68e-30 relative error = 5.1828076308195087770808249724515e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.337 y[1] (analytic) = 0.32504691644577645236987028122436 y[1] (numeric) = 0.32504691644577645236987028122268 absolute error = 1.68e-30 relative error = 5.1684846555997203988197378723989e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.055 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = 0.338 y[1] (analytic) = 0.32594465802482651402740266937482 y[1] (numeric) = 0.32594465802482651402740266937313 absolute error = 1.69e-30 relative error = 5.1849292767708936667989712256169e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.056 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = 0.339 y[1] (analytic) = 0.32684185511905476309617995619504 y[1] (numeric) = 0.32684185511905476309617995619336 absolute error = 1.68e-30 relative error = 5.1401005522626425751372244797369e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.34 y[1] (analytic) = 0.32773850678055544599683540615889 y[1] (numeric) = 0.3277385067805554459968354061572 absolute error = 1.69e-30 relative error = 5.1565500087286869127663451306826e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.056 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = 0.341 y[1] (analytic) = 0.32863461206608312498243964920775 y[1] (numeric) = 0.32863461206608312498243964920607 absolute error = 1.68e-30 relative error = 5.1120604413456579885041728031971e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.057 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = 0.342 y[1] (analytic) = 0.32953017003705147946354399331424 y[1] (numeric) = 0.32953017003705147946354399331256 absolute error = 1.68e-30 relative error = 5.0981674904337449646157936933413e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.057 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = 0.343 y[1] (analytic) = 0.33042517975953202758177366982368 y[1] (numeric) = 0.330425179759532027581773669822 absolute error = 1.68e-30 relative error = 5.0843582841435550633151291600254e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.057 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = 0.344 y[1] (analytic) = 0.33131964030425276835774855899215 y[1] (numeric) = 0.33131964030425276835774855899047 absolute error = 1.68e-30 relative error = 5.0706320894748230121632696119381e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.345 y[1] (analytic) = 0.33221355074659674474070065410268 y[1] (numeric) = 0.33221355074659674474070065410099 absolute error = 1.69e-30 relative error = 5.0870893020528382628646786486503e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.058 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = 0.346 y[1] (analytic) = 0.3331069101666005278887250862171 y[1] (numeric) = 0.33310691016660052788872508621541 absolute error = 1.69e-30 relative error = 5.0734462372898874377971887657300e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.347 y[1] (analytic) = 0.33399971764895262301014497996033 y[1] (numeric) = 0.33399971764895262301014497995864 absolute error = 1.69e-30 relative error = 5.0598845169571645792509088881243e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.058 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = 0.348 y[1] (analytic) = 0.33489197228299179709798977742652 y[1] (numeric) = 0.33489197228299179709798977742483 absolute error = 1.69e-30 relative error = 5.0464034371415425343245982177489e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.059 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = 0.349 y[1] (analytic) = 0.33578367316270532889108198776164 y[1] (numeric) = 0.33578367316270532889108198775995 absolute error = 1.69e-30 relative error = 5.0330023019943072251295657640046e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.059 Order of pole = 1.8e-29 TOP MAIN SOLVE Loop x[1] = 0.35 y[1] (analytic) = 0.33667481938672718139669863134177 y[1] (numeric) = 0.33667481938672718139669863134007 absolute error = 1.70e-30 relative error = 5.0493826746432927329854034158193e-28 % Correct digits = 29 h = 0.001 memory used=350.9MB, alloc=4.4MB, time=20.42 NO POLE TOP MAIN SOLVE Loop x[1] = 0.351 y[1] (analytic) = 0.33756541005833609731122098855611 y[1] (numeric) = 0.33756541005833609731122098855441 absolute error = 1.70e-30 relative error = 5.0360610102386256187844413819549e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.352 y[1] (analytic) = 0.33845544428545361767660967452334 y[1] (numeric) = 0.33845544428545361767660967452164 absolute error = 1.70e-30 relative error = 5.0228177111732867071727082011791e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.06 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = 0.353 y[1] (analytic) = 0.33934492118064202411194158478934 y[1] (numeric) = 0.33934492118064202411194158478764 absolute error = 1.70e-30 relative error = 5.0096521087906493316026395343155e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.06 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = 0.354 y[1] (analytic) = 0.34023383986110220496062093699477 y[1] (numeric) = 0.34023383986110220496062093699307 absolute error = 1.70e-30 relative error = 4.9965635419863340423634865630863e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.355 y[1] (analytic) = 0.34112219944867144569522851511548 y[1] (numeric) = 0.34112219944867144569522851511378 absolute error = 1.70e-30 relative error = 4.9835513571018660322152993189689e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.061 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = 0.356 y[1] (analytic) = 0.34200999906982114392330135324171 y[1] (numeric) = 0.34200999906982114392330135324001 absolute error = 1.70e-30 relative error = 4.9706149078201248178530118822084e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.357 y[1] (analytic) = 0.34289723785565444933863952364844 y[1] (numeric) = 0.34289723785565444933863952364674 absolute error = 1.70e-30 relative error = 4.9577535550625510344554640777869e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.062 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = 0.358 y[1] (analytic) = 0.34378391494190382896401746938312 y[1] (numeric) = 0.34378391494190382896401746938142 absolute error = 1.70e-30 relative error = 4.9449666668880759858900382667060e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.359 y[1] (analytic) = 0.34467002946892855803243449659233 y[1] (numeric) = 0.34467002946892855803243449659063 absolute error = 1.70e-30 relative error = 4.9322536183937403587718556583764e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.36 y[1] (analytic) = 0.34555558058171213685527266971645 y[1] (numeric) = 0.34555558058171213685527266971475 absolute error = 1.70e-30 relative error = 4.9196137916169692550640412151940e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.361 y[1] (analytic) = 0.34644056742985963402694048843014 y[1] (numeric) = 0.34644056742985963402694048842844 absolute error = 1.70e-30 relative error = 4.9070465754394714257826428054190e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.063 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = 0.362 y[1] (analytic) = 0.34732498916759495631676742525021 y[1] (numeric) = 0.34732498916759495631676742524851 absolute error = 1.70e-30 relative error = 4.8945513654927312981504804595693e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.064 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = 0.363 y[1] (analytic) = 0.34820884495375804560007772503169 y[1] (numeric) = 0.34820884495375804560007772502999 absolute error = 1.70e-30 relative error = 4.8821275640650630807270282352893e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.364 y[1] (analytic) = 0.34909213395180200318151187157945 y[1] (numeric) = 0.34909213395180200318151187157775 absolute error = 1.70e-30 relative error = 4.8697745800101969061098518830058e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.365 y[1] (analytic) = 0.34997485532979014186478087324435 y[1] (numeric) = 0.34997485532979014186478087324266 absolute error = 1.69e-30 relative error = 4.8289183473123242902305806400655e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.065 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = 0.366 y[1] (analytic) = 0.35085700826039296612413207103548 y[1] (numeric) = 0.35085700826039296612413207103378 absolute error = 1.70e-30 relative error = 4.8452787317228775414641486745234e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.065 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = 0.367 y[1] (analytic) = 0.35173859192088508073387559329219 y[1] (numeric) = 0.35173859192088508073387559329049 absolute error = 1.70e-30 relative error = 4.8331347172231048873801398433229e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.368 y[1] (analytic) = 0.35261960549314202821336793557796 y[1] (numeric) = 0.35261960549314202821336793557626 absolute error = 1.70e-30 relative error = 4.8210592193889306818711522005435e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.369 y[1] (analytic) = 0.35350004816363705544587349984586 y[1] (numeric) = 0.35350004816363705544587349984416 absolute error = 1.70e-30 relative error = 4.8090516785815569219664681491239e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.37 y[1] (analytic) = 0.35437991912343780983072635114399 y[1] (numeric) = 0.35437991912343780983072635114229 absolute error = 1.70e-30 relative error = 4.7971115412096898691355468883793e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.066 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = 0.371 y[1] (analytic) = 0.35525921756820296532919301261312 y[1] (numeric) = 0.35525921756820296532919301261142 absolute error = 1.70e-30 relative error = 4.7852382596480626456519605217440e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.372 y[1] (analytic) = 0.3561379426981787787653928910759 y[1] (numeric) = 0.35613794269817877876539289107419 absolute error = 1.71e-30 relative error = 4.8015102997581970715306891486807e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.067 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = 0.373 y[1] (analytic) = 0.3570160937181955767445659782684 y[1] (numeric) = 0.35701609371819557674456597826669 absolute error = 1.71e-30 relative error = 4.7897000445861094951957969866342e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.374 y[1] (analytic) = 0.35789366983766417355188788019004 y[1] (numeric) = 0.35789366983766417355188788018833 absolute error = 1.71e-30 relative error = 4.7779554211607971217439403488488e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.068 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = 0.375 y[1] (analytic) = 0.35877067027057222039592006392646 y[1] (numeric) = 0.35877067027057222039592006392475 absolute error = 1.71e-30 relative error = 4.7662759018466535913255801497759e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.376 memory used=354.7MB, alloc=4.4MB, time=20.64 y[1] (analytic) = 0.35964709423548048636164855370809 y[1] (numeric) = 0.35964709423548048636164855370638 absolute error = 1.71e-30 relative error = 4.7546609646187496334026593591420e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.068 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.377 y[1] (analytic) = 0.3605229409555190714389072332569 y[1] (numeric) = 0.3605229409555190714389072332552 absolute error = 1.70e-30 relative error = 4.7153726070645367116146193069726e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.378 y[1] (analytic) = 0.36139820965838355199280249826068 y[1] (numeric) = 0.36139820965838355199280249825898 absolute error = 1.70e-30 relative error = 4.7039524672990149383235250202099e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.069 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = 0.379 y[1] (analytic) = 0.36227289957633105904355433095675 y[1] (numeric) = 0.36227289957633105904355433095505 absolute error = 1.70e-30 relative error = 4.6925950077637790662144041663809e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.069 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.38 y[1] (analytic) = 0.36314700994617628972394501939422 y[1] (numeric) = 0.36314700994617628972394501939252 absolute error = 1.70e-30 relative error = 4.6812997310702487139863802344949e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.07 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = 0.381 y[1] (analytic) = 0.36402054000928745228332079927382 y[1] (numeric) = 0.36402054000928745228332079927212 absolute error = 1.70e-30 relative error = 4.6700661450494716136564742250143e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.07 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = 0.382 y[1] (analytic) = 0.364893489011582145007823739832 y[1] (numeric) = 0.3648934890115821450078237398303 absolute error = 1.70e-30 relative error = 4.6588937626838280385555203529494e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.383 y[1] (analytic) = 0.36576585620352316942724131171394 y[1] (numeric) = 0.36576585620352316942724131171224 absolute error = 1.70e-30 relative error = 4.6477821020398050926482678076048e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.384 y[1] (analytic) = 0.36663764084011427817954935000224 y[1] (numeric) = 0.36663764084011427817954935000054 absolute error = 1.70e-30 relative error = 4.6367306862018213581360340050781e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.385 y[1] (analytic) = 0.36750884218089585790489064651353 y[1] (numeric) = 0.36750884218089585790489064651182 absolute error = 1.71e-30 relative error = 4.6529492728730068200527820318266e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.386 y[1] (analytic) = 0.36837945948994054754137626025184 y[1] (numeric) = 0.36837945948994054754137626025013 absolute error = 1.71e-30 relative error = 4.6419526277813421401535824546736e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.387 y[1] (analytic) = 0.36924949203584879239571991273415 y[1] (numeric) = 0.36924949203584879239571991273244 absolute error = 1.71e-30 relative error = 4.6310151723485206541734356988325e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.072 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = 0.388 y[1] (analytic) = 0.37011893909174433436231762609371 y[1] (numeric) = 0.37011893909174433436231762609201 absolute error = 1.70e-30 relative error = 4.5931181046063882638693528961966e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.073 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = 0.389 y[1] (analytic) = 0.37098779993526963866496515781415 y[1] (numeric) = 0.37098779993526963866496515781245 absolute error = 1.70e-30 relative error = 4.5823609301885880850493026345068e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.39 y[1] (analytic) = 0.37185607384858125749596487910426 y[1] (numeric) = 0.37185607384858125749596487910256 absolute error = 1.70e-30 relative error = 4.5716612408816944489354851052624e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.391 y[1] (analytic) = 0.37272376011834513092791162779101 y[1] (numeric) = 0.37272376011834513092791162778931 absolute error = 1.70e-30 relative error = 4.5610185931270538197826173519156e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.392 y[1] (analytic) = 0.37359085803573182547396383571233 y[1] (numeric) = 0.37359085803573182547396383571063 absolute error = 1.70e-30 relative error = 4.5504325478901433352733294522182e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.393 y[1] (analytic) = 0.37445736689641171067290198047233 y[1] (numeric) = 0.37445736689641171067290198047063 absolute error = 1.70e-30 relative error = 4.5399026706030349013250743603028e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.394 y[1] (analytic) = 0.3753232860005500740757512386144 y[1] (numeric) = 0.3753232860005500740757512386127 absolute error = 1.70e-30 relative error = 4.5294285311077354224887331453727e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.395 y[1] (analytic) = 0.3761886146528021750111992192848 y[1] (numeric) = 0.3761886146528021750111992192831 absolute error = 1.70e-30 relative error = 4.5190097036003876411659610633058e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.396 y[1] (analytic) = 0.37705335216230823750747293277759 y[1] (numeric) = 0.3770533521623082375074729327759 absolute error = 1.69e-30 relative error = 4.4821243208905733350618031314327e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.076 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = 0.397 y[1] (analytic) = 0.37791749784268838274875179639149 y[1] (numeric) = 0.37791749784268838274875179638979 absolute error = 1.70e-30 relative error = 4.4983363027759052287377234791888e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.076 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = 0.398 y[1] (analytic) = 0.37878105101203750144458560114141 y[1] (numeric) = 0.37878105101203750144458560113971 absolute error = 1.70e-30 relative error = 4.4880808991312892251658334997049e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.399 y[1] (analytic) = 0.37964401099292006649115805831544 y[1] (numeric) = 0.37964401099292006649115805831374 absolute error = 1.70e-30 relative error = 4.4778791467138489552502487400439e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.077 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = 0.4 y[1] (analytic) = 0.38050637711236488630358791681043 y[1] (numeric) = 0.38050637711236488630358791680873 absolute error = 1.70e-30 relative error = 4.4677306406824923055748307519516e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.077 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = 0.401 y[1] (analytic) = 0.38136814870185979919879079365685 y[1] (numeric) = 0.38136814870185979919879079365515 absolute error = 1.70e-30 relative error = 4.4576349802327099636867534519651e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.077 Order of pole = 7e-30 TOP MAIN SOLVE Loop memory used=358.5MB, alloc=4.4MB, time=20.85 x[1] = 0.402 y[1] (analytic) = 0.38222932509734630920873589505817 y[1] (numeric) = 0.38222932509734630920873589505646 absolute error = 1.71e-30 relative error = 4.4737540730672523691879308642167e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.403 y[1] (analytic) = 0.38308990563921416370422282837193 y[1] (numeric) = 0.38308990563921416370422282837023 absolute error = 1.70e-30 relative error = 4.4376006127423870265454483524285e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.404 y[1] (analytic) = 0.38394988967229587320957482233077 y[1] (numeric) = 0.38394988967229587320957482232907 absolute error = 1.70e-30 relative error = 4.4276611238278068586187224889196e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.405 y[1] (analytic) = 0.38480927654586117378889598983605 y[1] (numeric) = 0.38480927654586117378889598983435 absolute error = 1.70e-30 relative error = 4.4177729166500375375166786294559e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.406 y[1] (analytic) = 0.38566806561361143238477189205102 y[1] (numeric) = 0.38566806561361143238477189204932 absolute error = 1.70e-30 relative error = 4.4079356098494707270627222870634e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.407 y[1] (analytic) = 0.38652625623367399549050470224825 y[1] (numeric) = 0.38652625623367399549050470224655 absolute error = 1.70e-30 relative error = 4.3981488258129274175631200780423e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.08 Order of pole = 3.2e-29 TOP MAIN SOLVE Loop x[1] = 0.408 y[1] (analytic) = 0.38738384776859648153716683167276 y[1] (numeric) = 0.38738384776859648153716683167106 absolute error = 1.70e-30 relative error = 4.3884121906277672717434896595917e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.08 Order of pole = 4.6e-29 TOP MAIN SOLVE Loop x[1] = 0.409 y[1] (analytic) = 0.38824083958534101737693007705868 y[1] (numeric) = 0.38824083958534101737693007705698 absolute error = 1.70e-30 relative error = 4.3787253340366711348489459787504e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.41 y[1] (analytic) = 0.38909723105527841924428129061132 y[1] (numeric) = 0.38909723105527841924428129060962 absolute error = 1.70e-30 relative error = 4.3690878893930852155949085932570e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.411 y[1] (analytic) = 0.3899530215541823185768703691828 y[1] (numeric) = 0.3899530215541823185768703691811 absolute error = 1.70e-30 relative error = 4.3594994936173156683724312412197e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.412 y[1] (analytic) = 0.39080821046222323307785212167521 y[1] (numeric) = 0.39080821046222323307785212167351 absolute error = 1.70e-30 relative error = 4.3499597871532625259417491002293e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.082 Order of pole = 7.4e-29 TOP MAIN SOLVE Loop x[1] = 0.413 y[1] (analytic) = 0.39166279716396258340168041473383 y[1] (numeric) = 0.39166279716396258340168041473213 absolute error = 1.70e-30 relative error = 4.3404684139257821459088809918719e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.414 y[1] (analytic) = 0.39251678104834665584539102954872 y[1] (numeric) = 0.39251678104834665584539102954701 absolute error = 1.71e-30 relative error = 4.3565016390710126468859221210607e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.415 y[1] (analytic) = 0.39337016150870051142746900072409 y[1] (numeric) = 0.39337016150870051142746900072238 absolute error = 1.71e-30 relative error = 4.3470506086216669906314211169398e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.416 y[1] (analytic) = 0.39422293794272184173643696599993 y[1] (numeric) = 0.39422293794272184173643696599822 absolute error = 1.71e-30 relative error = 4.3376471418019121948698524805650e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.417 y[1] (analytic) = 0.3950751097524747719313233480394 y[1] (numeric) = 0.39507510975247477193132334803769 absolute error = 1.71e-30 relative error = 4.3282908940311658476603112073083e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.418 y[1] (analytic) = 0.39592667634438361127617313205893 y[1] (numeric) = 0.39592667634438361127617313205723 absolute error = 1.70e-30 relative error = 4.2937243221300696397645813376216e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.084 Order of pole = 3.7e-29 TOP MAIN SOLVE Loop x[1] = 0.419 y[1] (analytic) = 0.396777637129226551590749711896 y[1] (numeric) = 0.3967776371292265515907497118943 absolute error = 1.70e-30 relative error = 4.2845156604587743334999223334872e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.42 y[1] (analytic) = 0.39762799152212931399954386888093 y[1] (numeric) = 0.39762799152212931399954386887923 absolute error = 1.70e-30 relative error = 4.2753529335104401785443127399364e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.421 y[1] (analytic) = 0.39847773894255874436115553986372 y[1] (numeric) = 0.39847773894255874436115553986203 absolute error = 1.69e-30 relative error = 4.2411403068205434295647970037523e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.422 y[1] (analytic) = 0.39932687881431635776004574075014 y[1] (numeric) = 0.39932687881431635776004574074845 absolute error = 1.69e-30 relative error = 4.2321218271556315528398673749976e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.423 y[1] (analytic) = 0.40017541056553183244256995826032 y[1] (numeric) = 0.40017541056553183244256995825862 absolute error = 1.70e-30 relative error = 4.2481370796809910255624685177422e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.086 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = 0.424 y[1] (analytic) = 0.40102333362865645357910062419067 y[1] (numeric) = 0.40102333362865645357910062418898 absolute error = 1.69e-30 relative error = 4.2142186209167641304488854259897e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.425 y[1] (analytic) = 0.40187064744045650723392506258874 y[1] (numeric) = 0.40187064744045650723392506258705 absolute error = 1.69e-30 relative error = 4.2053332602511115981932877931287e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.426 y[1] (analytic) = 0.40271735144200662492446667077956 y[1] (numeric) = 0.40271735144200662492446667077787 absolute error = 1.69e-30 relative error = 4.1964916434532340081704293778719e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.427 y[1] (analytic) = 0.4035634450786830791512211804215 y[1] (numeric) = 0.40356344507868307915122118041981 absolute error = 1.69e-30 relative error = 4.1876934608646216308261954189663e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.087 Order of pole = 2.6e-29 TOP MAIN SOLVE Loop memory used=362.4MB, alloc=4.4MB, time=21.05 x[1] = 0.428 y[1] (analytic) = 0.40440892780015703027962676548326 y[1] (numeric) = 0.40440892780015703027962676548157 absolute error = 1.69e-30 relative error = 4.1789384057196963299424143092326e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.429 y[1] (analytic) = 0.40525379906038772515489664142896 y[1] (numeric) = 0.40525379906038772515489664142728 absolute error = 1.68e-30 relative error = 4.1455502795907402439928007939929e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.088 Order of pole = 2.1e-29 TOP MAIN SOLVE Loop x[1] = 0.43 y[1] (analytic) = 0.40609805831761564783063575560739 y[1] (numeric) = 0.4060980583176156478306357556057 absolute error = 1.69e-30 relative error = 4.1615564649615353427705175660220e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.089 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = 0.431 y[1] (analytic) = 0.40694170503435562279183932490758 y[1] (numeric) = 0.4069417050343556227918393249059 absolute error = 1.68e-30 relative error = 4.1283554357206218957079929552725e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.432 y[1] (analytic) = 0.40778473867738987105263045560879 y[1] (numeric) = 0.4077847386773898710526304556071 absolute error = 1.69e-30 relative error = 4.1443434236439318203714136836581e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.433 y[1] (analytic) = 0.40862715871776101950883700483963 y[1] (numeric) = 0.40862715871776101950883700483794 absolute error = 1.69e-30 relative error = 4.1357995031536409338027922705805e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.434 y[1] (analytic) = 0.40946896463076506392523433636331 y[1] (numeric) = 0.40946896463076506392523433636163 absolute error = 1.68e-30 relative error = 4.1028750530944996233160145519945e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.09 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = 0.435 y[1] (analytic) = 0.41031015589594428593699080906606 y[1] (numeric) = 0.41031015589594428593699080906437 absolute error = 1.69e-30 relative error = 4.1188354119818285948100631863414e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.436 y[1] (analytic) = 0.41115073199708012444454683843121 y[1] (numeric) = 0.41115073199708012444454683842952 absolute error = 1.69e-30 relative error = 4.1104146690708114787328068260878e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.091 Order of pole = 3.4e-29 TOP MAIN SOLVE Loop x[1] = 0.437 y[1] (analytic) = 0.41199069242218600178083631364152 y[1] (numeric) = 0.41199069242218600178083631363984 absolute error = 1.68e-30 relative error = 4.0777620244838588602614130700614e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.438 y[1] (analytic) = 0.41283003666350010502942116028857 y[1] (numeric) = 0.41283003666350010502942116028688 absolute error = 1.69e-30 relative error = 4.0936943776150855227356564424607e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.439 y[1] (analytic) = 0.41366876421747812287175603580052 y[1] (numeric) = 0.41366876421747812287175603579884 absolute error = 1.68e-30 relative error = 4.0612203417823769345576626276565e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.092 Order of pole = 2.4e-29 TOP MAIN SOLVE Loop x[1] = 0.44 y[1] (analytic) = 0.41450687458478593834143065673049 y[1] (numeric) = 0.4145068745847859383414306567288 absolute error = 1.69e-30 relative error = 4.0771338272565039997001759293292e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.093 Order of pole = 2.7e-29 TOP MAIN SOLVE Loop x[1] = 0.441 y[1] (analytic) = 0.41534436727029227786285220934857 y[1] (numeric) = 0.41534436727029227786285220934688 absolute error = 1.69e-30 relative error = 4.0689127701597173675604031140423e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.442 y[1] (analytic) = 0.41618124178306131695142981318172 y[1] (numeric) = 0.41618124178306131695142981318003 absolute error = 1.69e-30 relative error = 4.0607308314989592894725168781957e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.443 y[1] (analytic) = 0.41701749763634524295190721711507 y[1] (numeric) = 0.41701749763634524295190721711339 absolute error = 1.68e-30 relative error = 4.0286079349721254138700602819778e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.094 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = 0.444 y[1] (analytic) = 0.417853134347576775191058935508 y[1] (numeric) = 0.41785313434757677519105893550631 absolute error = 1.69e-30 relative error = 4.0444832432302196326323712924849e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.094 Order of pole = 5.2e-29 TOP MAIN SOLVE Loop x[1] = 0.445 y[1] (analytic) = 0.41868815143836164292051900380119 y[1] (numeric) = 0.41868815143836164292051900379951 absolute error = 1.68e-30 relative error = 4.0125329418292027742314765482935e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.095 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = 0.446 y[1] (analytic) = 0.41952254843447102142505057581581 y[1] (numeric) = 0.41952254843447102142505057581413 absolute error = 1.68e-30 relative error = 4.0045523328108172569871385114838e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.447 y[1] (analytic) = 0.42035632486583392667108882507671 y[1] (numeric) = 0.42035632486583392667108882507503 absolute error = 1.68e-30 relative error = 3.9966093064882736742008451094990e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.095 Order of pole = 3.3e-29 TOP MAIN SOLVE Loop x[1] = 0.448 y[1] (analytic) = 0.42118948026652956886989917691197 y[1] (numeric) = 0.42118948026652956886989917691029 absolute error = 1.68e-30 relative error = 3.9887036089716498777485497677819e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.449 y[1] (analytic) = 0.42202201417477966532918791383329 y[1] (numeric) = 0.42202201417477966532918791383162 absolute error = 1.67e-30 relative error = 3.9571395422713007457969389385167e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.45 y[1] (analytic) = 0.42285392613294071296648279098114 y[1] (numeric) = 0.42285392613294071296648279097947 absolute error = 1.67e-30 relative error = 3.9493543675292020692350747251211e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.097 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = 0.451 y[1] (analytic) = 0.42368521568749622085706759855491 y[1] (numeric) = 0.42368521568749622085706759855324 absolute error = 1.67e-30 relative error = 3.9416055556485752668579252821444e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.452 y[1] (analytic) = 0.42451588238904890318870674159748 y[1] (numeric) = 0.42451588238904890318870674159581 absolute error = 1.67e-30 relative error = 3.9338928630932194342535850952626e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.097 Order of pole = 2.3e-29 TOP MAIN SOLVE Loop x[1] = 0.453 y[1] (analytic) = 0.42534592579231283299483400183079 y[1] (numeric) = 0.42534592579231283299483400182912 absolute error = 1.67e-30 relative error = 3.9262160484767983604910882387034e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.098 Order of pole = 4.1e-29 memory used=366.2MB, alloc=4.4MB, time=21.27 TOP MAIN SOLVE Loop x[1] = 0.454 y[1] (analytic) = 0.42617534545610555703730382911058 y[1] (numeric) = 0.42617534545610555703730382910891 absolute error = 1.67e-30 relative error = 3.9185748725391803811835602092716e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.455 y[1] (analytic) = 0.42700414094334017220921390923532 y[1] (numeric) = 0.42700414094334017220921390923365 absolute error = 1.67e-30 relative error = 3.9109690981230901823847658625998e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.456 y[1] (analytic) = 0.42783231182101736382770449813268 y[1] (numeric) = 0.42783231182101736382770449813101 absolute error = 1.67e-30 relative error = 3.9033984901510677664715425909823e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.099 Order of pole = 5.6e-29 TOP MAIN SOLVE Loop x[1] = 0.457 y[1] (analytic) = 0.42865985766021740618602322774456 y[1] (numeric) = 0.4286598576602174061860232277429 absolute error = 1.66e-30 relative error = 3.8725342957488213128720729172720e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.099 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = 0.458 y[1] (analytic) = 0.42948677803609212573351390417567 y[1] (numeric) = 0.42948677803609212573351390417401 absolute error = 1.66e-30 relative error = 3.8650782396390817651785258836161e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.1 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = 0.459 y[1] (analytic) = 0.43031307252785682725154436183623 y[1] (numeric) = 0.43031307252785682725154436183457 absolute error = 1.66e-30 relative error = 3.8576564505660885555847822610579e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.1 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = 0.46 y[1] (analytic) = 0.43113874071878218339273183639798 y[1] (numeric) = 0.43113874071878218339273183639631 absolute error = 1.67e-30 relative error = 3.8734630926829348273138166715602e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.101 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = 0.461 y[1] (analytic) = 0.4319637821961860879501547024079 y[1] (numeric) = 0.43196378219618608795015470240623 absolute error = 1.67e-30 relative error = 3.8660648619877391919053776076346e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.101 Order of pole = 1.32e-28 TOP MAIN SOLVE Loop x[1] = 0.462 y[1] (analytic) = 0.43278819655142547322255691638437 y[1] (numeric) = 0.4327881965514254732225569163827 absolute error = 1.67e-30 relative error = 3.8587004296952088996697953328232e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.102 Order of pole = 4.6e-29 TOP MAIN SOLVE Loop x[1] = 0.463 y[1] (analytic) = 0.43361198337988809184085624116206 y[1] (numeric) = 0.43361198337988809184085624116039 absolute error = 1.67e-30 relative error = 3.8513695746662761423410622172022e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.464 y[1] (analytic) = 0.43443514228098426342055943014255 y[1] (numeric) = 0.43443514228098426342055943014089 absolute error = 1.66e-30 relative error = 3.8210536819932123393340051224184e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.102 Order of pole = 3.0e-29 TOP MAIN SOLVE Loop x[1] = 0.465 y[1] (analytic) = 0.43525767285813858640396714890097 y[1] (numeric) = 0.4352576728581385864039671488993 absolute error = 1.67e-30 relative error = 3.8368077213524388966882858332904e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.103 Order of pole = 2.0e-29 TOP MAIN SOLVE Loop x[1] = 0.466 y[1] (analytic) = 0.43607957471878161545531863420582 y[1] (numeric) = 0.43607957471878161545531863420415 absolute error = 1.67e-30 relative error = 3.8295762902377330051086870915700e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.467 y[1] (analytic) = 0.43690084747434150477128106478589 y[1] (numeric) = 0.43690084747434150477128106478422 absolute error = 1.67e-30 relative error = 3.8223775706868512235143486340756e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.468 y[1] (analytic) = 0.43772149074023561766843147191357 y[1] (numeric) = 0.4377214907402356176684314719119 absolute error = 1.67e-30 relative error = 3.8152113508885402659563517410687e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.469 y[1] (analytic) = 0.43854150413586210280860987878256 y[1] (numeric) = 0.43854150413586210280860987878089 absolute error = 1.67e-30 relative error = 3.8080774208377471929019426260953e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.47 y[1] (analytic) = 0.43936088728459143742224135336384 y[1] (numeric) = 0.43936088728459143742224135336217 absolute error = 1.67e-30 relative error = 3.8009755723164199144282125598032e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.471 y[1] (analytic) = 0.44017963981375793788893191745446 y[1] (numeric) = 0.44017963981375793788893191745279 absolute error = 1.67e-30 relative error = 3.7939055988745522218817828679121e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.105 Order of pole = 6.52e-28 TOP MAIN SOLVE Loop x[1] = 0.472 y[1] (analytic) = 0.44099776135465123803383890240663 y[1] (numeric) = 0.44099776135465123803383890240495 absolute error = 1.68e-30 relative error = 3.8095431478821970850329350466658e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.106 Order of pole = 1.78e-28 TOP MAIN SOLVE Loop x[1] = 0.473 y[1] (analytic) = 0.44181525154250773549750050683741 y[1] (numeric) = 0.44181525154250773549750050683573 absolute error = 1.68e-30 relative error = 3.8024943551283552186777896155444e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.474 y[1] (analytic) = 0.44263211001650200653598212064039 y[1] (numeric) = 0.44263211001650200653598212063871 absolute error = 1.68e-30 relative error = 3.7954770157487377349983588304558e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.107 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = 0.475 y[1] (analytic) = 0.44344833641973818960735855987661 y[1] (numeric) = 0.44344833641973818960735855987494 absolute error = 1.67e-30 relative error = 3.7659403877417887063173638299765e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.107 Order of pole = 4.3e-29 TOP MAIN SOLVE Loop x[1] = 0.476 y[1] (analytic) = 0.44426393039924133809970183549022 y[1] (numeric) = 0.44426393039924133809970183548855 absolute error = 1.67e-30 relative error = 3.7590267535319401891738771278467e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.108 Order of pole = 7.7e-29 TOP MAIN SOLVE Loop x[1] = 0.477 y[1] (analytic) = 0.44507889160594874255488358198993 y[1] (numeric) = 0.44507889160594874255488358198826 absolute error = 1.67e-30 relative error = 3.7521437917989087185766766855519e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.108 Order of pole = 2.3e-29 TOP MAIN SOLVE Loop x[1] = 0.478 y[1] (analytic) = 0.44589321969470122274162992680622 y[1] (numeric) = 0.44589321969470122274162992680455 absolute error = 1.67e-30 relative error = 3.7452913079580641679099730359650e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.108 Order of pole = 1.46e-28 TOP MAIN SOLVE Loop x[1] = 0.479 y[1] (analytic) = 0.44670691432423438993038451334011 y[1] (numeric) = 0.44670691432423438993038451333844 absolute error = 1.67e-30 relative error = 3.7384691090495629739765496796308e-28 % Correct digits = 29 h = 0.001 memory used=370.0MB, alloc=4.4MB, time=21.47 NO POLE TOP MAIN SOLVE Loop x[1] = 0.48 y[1] (analytic) = 0.44751997515716987972164272693692 y[1] (numeric) = 0.44751997515716987972164272693525 absolute error = 1.67e-30 relative error = 3.7316770037214378512715136217021e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.481 y[1] (analytic) = 0.44833240186000655577851703912131 y[1] (numeric) = 0.44833240186000655577851703911964 absolute error = 1.67e-30 relative error = 3.7249148022128983945116856106348e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.11 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = 0.482 y[1] (analytic) = 0.44914419410311168481337990718263 y[1] (numeric) = 0.44914419410311168481337990718096 absolute error = 1.67e-30 relative error = 3.7181823163378395066576099794710e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.483 y[1] (analytic) = 0.4499553515607120831775069691474 y[1] (numeric) = 0.44995535156071208317750696914573 absolute error = 1.67e-30 relative error = 3.7114793594685546403960145424114e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.111 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = 0.484 y[1] (analytic) = 0.4507658739108852354017094836356 y[1] (numeric) = 0.45076587391088523540170948363393 absolute error = 1.67e-30 relative error = 3.7048057465196508908380510047539e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.485 y[1] (analytic) = 0.45157576083555038503500120514868 y[1] (numeric) = 0.45157576083555038503500120514701 absolute error = 1.67e-30 relative error = 3.6981612939321630260522462888120e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.486 y[1] (analytic) = 0.45238501202045959812739128281232 y[1] (numeric) = 0.45238501202045959812739128281065 absolute error = 1.67e-30 relative error = 3.6915458196578635900098053113282e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.112 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = 0.487 y[1] (analytic) = 0.45319362715518879970193144907309 y[1] (numeric) = 0.45319362715518879970193144907141 absolute error = 1.68e-30 relative error = 3.7070247667554055785120213423353e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.112 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = 0.488 y[1] (analytic) = 0.45400160593312878356017284863738 y[1] (numeric) = 0.45400160593312878356017284863571 absolute error = 1.67e-30 relative error = 3.6784010853168196835160890343051e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.113 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = 0.489 y[1] (analytic) = 0.45480894805147619576420547108282 y[1] (numeric) = 0.45480894805147619576420547108115 absolute error = 1.67e-30 relative error = 3.6718714685687890763814795860110e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.49 y[1] (analytic) = 0.4556156532112244921374614168227 y[1] (numeric) = 0.45561565321122449213746141682103 absolute error = 1.67e-30 relative error = 3.6653701167413228855758526993791e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.491 y[1] (analytic) = 0.45642172111715487012546226893092 y[1] (numeric) = 0.45642172111715487012546226892925 absolute error = 1.67e-30 relative error = 3.6588968551112018924642388032145e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.492 y[1] (analytic) = 0.45722715147782717535668078590424 y[1] (numeric) = 0.45722715147782717535668078590257 absolute error = 1.67e-30 relative error = 3.6524515103757681522064822440482e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.114 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = 0.493 y[1] (analytic) = 0.45803194400557078324266809561153 y[1] (numeric) = 0.45803194400557078324266809560986 absolute error = 1.67e-30 relative error = 3.6460339106385312186619351717364e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.494 y[1] (analytic) = 0.45883609841647545595556968100047 y[1] (numeric) = 0.45883609841647545595556968099881 absolute error = 1.66e-30 relative error = 3.6178496106321051353577542144573e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.495 y[1] (analytic) = 0.45963961443038217512011682582162 y[1] (numeric) = 0.45963961443038217512011682581996 absolute error = 1.66e-30 relative error = 3.6115250902757567282837452284765e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.496 y[1] (analytic) = 0.46044249177087395055613495557731 y[1] (numeric) = 0.46044249177087395055613495557565 absolute error = 1.66e-30 relative error = 3.6052276444243802926702291939627e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.497 y[1] (analytic) = 0.46124473016526660540655658665868 y[1] (numeric) = 0.46124473016526660540655658665703 absolute error = 1.65e-30 relative error = 3.5772766431581681867348114398686e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.117 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = 0.498 y[1] (analytic) = 0.46204632934459953798486450640014 y[1] (numeric) = 0.46204632934459953798486450639848 absolute error = 1.66e-30 relative error = 3.5927133159020351208722364581034e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.499 y[1] (analytic) = 0.46284728904362646067482046940466 y[1] (numeric) = 0.462847289043626460674820469403 absolute error = 1.66e-30 relative error = 3.5864961063724278801057135369015e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.5 y[1] (analytic) = 0.46364760900080611621425623146121 y[1] (numeric) = 0.46364760900080611621425623145956 absolute error = 1.65e-30 relative error = 3.5587372132811564746580997103533e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.118 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = 0.501 y[1] (analytic) = 0.46444728895829297169361727180093 y[1] (numeric) = 0.46444728895829297169361727179927 absolute error = 1.66e-30 relative error = 3.5741407894170457545187949993399e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.502 y[1] (analytic) = 0.4652463286619278905988551970611 y[1] (numeric) = 0.46524632866192789059885519705944 absolute error = 1.66e-30 relative error = 3.5680023629079340573938289889662e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.119 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = 0.503 y[1] (analytic) = 0.46604472786122878322716269549778 y[1] (numeric) = 0.46604472786122878322716269549612 absolute error = 1.66e-30 relative error = 3.5618898804371579388816096486203e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.504 y[1] (analytic) = 0.4668424863093812358029351366709 y[1] (numeric) = 0.46684248630938123580293513666924 absolute error = 1.66e-30 relative error = 3.5558031856164462635518788276126e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.12 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = 0.505 memory used=373.8MB, alloc=4.4MB, time=21.68 y[1] (analytic) = 0.46763960376322911862022560858391 y[1] (numeric) = 0.46763960376322911862022560858226 absolute error = 1.65e-30 relative error = 3.5283581346019026766458153623193e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.506 y[1] (analytic) = 0.46843607998326517353683546925015 y[1] (numeric) = 0.4684360799832651735368354692485 absolute error = 1.65e-30 relative error = 3.5223589097982078261274289859810e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.121 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = 0.507 y[1] (analytic) = 0.46923191473362158114405048062601 y[1] (numeric) = 0.46923191473362158114405048062436 absolute error = 1.65e-30 relative error = 3.5163848582990972356232751598931e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.121 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = 0.508 y[1] (analytic) = 0.47002710778206050793489340712344 y[1] (numeric) = 0.47002710778206050793489340712179 absolute error = 1.65e-30 relative error = 3.5104358295119067932800507558175e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.122 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = 0.509 y[1] (analytic) = 0.47082165889996463379261771539125 y[1] (numeric) = 0.4708216588999646337926177153896 absolute error = 1.65e-30 relative error = 3.5045116740276706528690184265399e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.51 y[1] (analytic) = 0.47161556786232766012001382320594 y[1] (numeric) = 0.47161556786232766012001382320429 absolute error = 1.65e-30 relative error = 3.4986122436095284579547467309911e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.511 y[1] (analytic) = 0.47240883444774479892893932916842 y[1] (numeric) = 0.47240883444774479892893932916676 absolute error = 1.66e-30 relative error = 3.5139054965823672340078070548759e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.512 y[1] (analytic) = 0.4732014584384032432083179270488 y[1] (numeric) = 0.47320145843840324320831792704714 absolute error = 1.66e-30 relative error = 3.5080196191239816968984026881520e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.513 y[1] (analytic) = 0.47399343962007261888767838419311 y[1] (numeric) = 0.47399343962007261888767838419145 absolute error = 1.66e-30 relative error = 3.5021581761354456384464827779846e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.124 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = 0.514 y[1] (analytic) = 0.47478477778209541871212515708092 y[1] (numeric) = 0.47478477778209541871212515707927 absolute error = 1.65e-30 relative error = 3.4752588482465518812276392471365e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.515 y[1] (analytic) = 0.47557547271737741834344604311808 y[1] (numeric) = 0.47557547271737741834344604311643 absolute error = 1.65e-30 relative error = 3.4694808598351615109776991540420e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.516 y[1] (analytic) = 0.47636552422237807500086983981014 y[1] (numeric) = 0.47636552422237807500086983980849 absolute error = 1.65e-30 relative error = 3.4637267310506356400802507098109e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.125 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = 0.517 y[1] (analytic) = 0.47715493209710090895378841386356 y[1] (numeric) = 0.47715493209710090895378841386191 absolute error = 1.65e-30 relative error = 3.4579963215474537189084015422715e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.126 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = 0.518 y[1] (analytic) = 0.47794369614508386817755298629518 y[1] (numeric) = 0.47794369614508386817755298629353 absolute error = 1.65e-30 relative error = 3.4522894920642043292534726155235e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.519 y[1] (analytic) = 0.47873181617338967648224392760468 y[1] (numeric) = 0.47873181617338967648224392760304 absolute error = 1.64e-30 relative error = 3.4257175825682242448639779738508e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.127 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = 0.52 y[1] (analytic) = 0.47951929199259616542309704129544 y[1] (numeric) = 0.47951929199259616542309704129379 absolute error = 1.65e-30 relative error = 3.4409460214699270016669438109721e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.521 y[1] (analytic) = 0.48030612341678659030004730583775 y[1] (numeric) = 0.48030612341678659030004730583611 absolute error = 1.64e-30 relative error = 3.4144890519683979760825376338791e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.522 y[1] (analytic) = 0.48109231026353993055262345537446 y[1] (numeric) = 0.48109231026353993055262345537281 absolute error = 1.65e-30 relative error = 3.4296952264652460526768446598414e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.523 y[1] (analytic) = 0.48187785235392117485519371838436 y[1] (numeric) = 0.48187785235392117485519371838271 absolute error = 1.65e-30 relative error = 3.4241042453807090570500072118559e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.129 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = 0.524 y[1] (analytic) = 0.48266274951247159121632461094724 y[1] (numeric) = 0.48266274951247159121632461094559 absolute error = 1.65e-30 relative error = 3.4185360309380274975288187177624e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.129 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = 0.525 y[1] (analytic) = 0.48344700156719898238477100647878 y[1] (numeric) = 0.48344700156719898238477100647713 absolute error = 1.65e-30 relative error = 3.4129904511790637609153243337486e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.129 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = 0.526 y[1] (analytic) = 0.48423060834956792686336688559064 y[1] (numeric) = 0.48423060834956792686336688558899 absolute error = 1.65e-30 relative error = 3.4074673751496078368808796021287e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.13 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = 0.527 y[1] (analytic) = 0.48501356969449000583083231631739 y[1] (numeric) = 0.48501356969449000583083231631574 absolute error = 1.65e-30 relative error = 3.4019666728898633050582170783538e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.528 y[1] (analytic) = 0.48579588544031401627025343404732 y[1] (numeric) = 0.48579588544031401627025343404567 absolute error = 1.65e-30 relative error = 3.3964882154250413888368244930588e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.529 y[1] (analytic) = 0.4865775554288161706017285892706 y[1] (numeric) = 0.48657755542881617060172858926894 absolute error = 1.66e-30 relative error = 3.4115835830879165649400237310836e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.131 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = 0.53 y[1] (analytic) = 0.48735857950519028311540551635107 y[1] (numeric) = 0.48735857950519028311540551634941 absolute error = 1.66e-30 relative error = 3.4061162967221782377507428544091e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=377.6MB, alloc=4.4MB, time=21.89 x[1] = 0.531 y[1] (analytic) = 0.48813895751803794349986145402698 y[1] (numeric) = 0.48813895751803794349986145402532 absolute error = 1.66e-30 relative error = 3.4006710065517745293300056070381e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.132 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = 0.532 y[1] (analytic) = 0.48891868931935867775950072379414 y[1] (numeric) = 0.48891868931935867775950072379249 absolute error = 1.65e-30 relative error = 3.3747942879766458640763120134614e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.533 y[1] (analytic) = 0.48969777476454009681336245071409 y[1] (numeric) = 0.48969777476454009681336245071244 absolute error = 1.65e-30 relative error = 3.3694251536947753550311580441433e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.133 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = 0.534 y[1] (analytic) = 0.49047621371234803306644499695386 y[1] (numeric) = 0.4904762137123480330664449969522 absolute error = 1.66e-30 relative error = 3.3844658590794542819229741684981e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.134 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = 0.535 y[1] (analytic) = 0.49125400602491666524336337537996 y[1] (numeric) = 0.49125400602491666524336337537831 absolute error = 1.65e-30 relative error = 3.3587512361503493160585215025557e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.134 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = 0.536 y[1] (analytic) = 0.49203115156773863177286152210769 y[1] (numeric) = 0.49203115156773863177286152210604 absolute error = 1.65e-30 relative error = 3.3534462091326389159924273634468e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.537 y[1] (analytic) = 0.49280765020965513301040293579342 y[1] (numeric) = 0.49280765020965513301040293579177 absolute error = 1.65e-30 relative error = 3.3481623089618040340367994810917e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.538 y[1] (analytic) = 0.49358350182284602258476093982638 y[1] (numeric) = 0.49358350182284602258476093982473 absolute error = 1.65e-30 relative error = 3.3428994160185846885270735715279e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.539 y[1] (analytic) = 0.49435870628281988815322379302575 y[1] (numeric) = 0.4943587062828198881532237930241 absolute error = 1.65e-30 relative error = 3.3376574115720015339740534352076e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.136 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = 0.54 y[1] (analytic) = 0.49513326346840412184872016600183 y[1] (numeric) = 0.49513326346840412184872016600018 absolute error = 1.65e-30 relative error = 3.3324361777711410968852705203085e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.136 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.541 y[1] (analytic) = 0.49590717326173498070085721443614 y[1] (numeric) = 0.49590717326173498070085721443449 absolute error = 1.65e-30 relative error = 3.3272355976370320722609638287583e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.542 y[1] (analytic) = 0.49668043554824763731154671703126 y[1] (numeric) = 0.49668043554824763731154671702961 absolute error = 1.65e-30 relative error = 3.3220555550546115047265961555500e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.543 y[1] (analytic) = 0.49745305021666622106457460404516 y[1] (numeric) = 0.49745305021666622106457460404351 absolute error = 1.65e-30 relative error = 3.3168959347647796955915043998870e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.544 y[1] (analytic) = 0.49822501715899385014714578083503 y[1] (numeric) = 0.49822501715899385014714578083338 absolute error = 1.65e-30 relative error = 3.3117566223565426941642839870347e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.138 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = 0.545 y[1] (analytic) = 0.49899633627050265466010954777656 y[1] (numeric) = 0.49899633627050265466010954777491 absolute error = 1.65e-30 relative error = 3.3066375042592412484150904680788e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.546 y[1] (analytic) = 0.49976700744972379109224123078388 y[1] (numeric) = 0.49976700744972379109224123078223 absolute error = 1.65e-30 relative error = 3.3015384677348651065583593229490e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.547 y[1] (analytic) = 0.50053703059843744843262296232195 y[1] (numeric) = 0.5005370305984374484326229623203 absolute error = 1.65e-30 relative error = 3.2964594008704515773415484330291e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.14 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = 0.548 y[1] (analytic) = 0.5013064056216628461938309875637 y[1] (numeric) = 0.50130640562166284619383098756206 absolute error = 1.64e-30 relative error = 3.2714523126155941377848527824054e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.549 y[1] (analytic) = 0.50207513242764822461729850988092 y[1] (numeric) = 0.50207513242764822461729850987927 absolute error = 1.65e-30 relative error = 3.2863607325498719726932077494652e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.141 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = 0.55 y[1] (analytic) = 0.50284321092786082733088202924528 y[1] (numeric) = 0.50284321092786082733088202924363 absolute error = 1.65e-30 relative error = 3.2813409113257635660678536591889e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.551 y[1] (analytic) = 0.50361064103697687672731546082092 y[1] (numeric) = 0.50361064103697687672731546081927 absolute error = 1.65e-30 relative error = 3.2763406202111030389640987770746e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.142 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = 0.552 y[1] (analytic) = 0.50437742267287154233089014290409 y[1] (numeric) = 0.50437742267287154233089014290244 absolute error = 1.65e-30 relative error = 3.2713597513070184942157249353915e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.142 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = 0.553 y[1] (analytic) = 0.50514355575660890241835024665051 y[1] (numeric) = 0.50514355575660890241835024664886 absolute error = 1.65e-30 relative error = 3.2663981974957872023754411824653e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.143 Order of pole = 3.4e-29 TOP MAIN SOLVE Loop x[1] = 0.554 y[1] (analytic) = 0.50590904021243189915864217734826 y[1] (numeric) = 0.50590904021243189915864217734661 absolute error = 1.65e-30 relative error = 3.2614558524337946980457608797872e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.143 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = 0.555 y[1] (analytic) = 0.50667387596775228753480340034943 y[1] (numeric) = 0.50667387596775228753480340034778 absolute error = 1.65e-30 relative error = 3.2565326105445699498791158358125e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.556 y[1] (analytic) = 0.50743806295314057830992082555081 y[1] (numeric) = 0.50743806295314057830992082554916 absolute error = 1.65e-30 relative error = 3.2516283670118956465219558218903e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=381.4MB, alloc=4.4MB, time=22.10 x[1] = 0.557 y[1] (analytic) = 0.50820160110231597529773153327486 y[1] (numeric) = 0.50820160110231597529773153327321 absolute error = 1.65e-30 relative error = 3.2467430177729926545340736757193e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.558 y[1] (analytic) = 0.50896449035213630719707931168446 y[1] (numeric) = 0.5089644903521363071970793116828 absolute error = 1.66e-30 relative error = 3.2615241956300309161389951416414e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.145 Order of pole = 2.5e-29 TOP MAIN SOLVE Loop x[1] = 0.559 y[1] (analytic) = 0.50972673064258795424807929098041 y[1] (numeric) = 0.50972673064258795424807929097876 absolute error = 1.65e-30 relative error = 3.2370285896521934816580085207715e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.146 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = 0.56 y[1] (analytic) = 0.51048832191677576996647999146307 y[1] (numeric) = 0.51048832191677576996647999146142 absolute error = 1.65e-30 relative error = 3.2321993063516099367029010990469e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.146 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = 0.561 y[1] (analytic) = 0.51124926412091299821134743934316 y[1] (numeric) = 0.51124926412091299821134743934151 absolute error = 1.65e-30 relative error = 3.2273885084942963928552586829807e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.562 y[1] (analytic) = 0.51200955720431118583982973358653 y[1] (numeric) = 0.51200955720431118583982973358488 absolute error = 1.65e-30 relative error = 3.2225960956849631035457406142464e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.563 y[1] (analytic) = 0.51276920111937009120139265606366 y[1] (numeric) = 0.51276920111937009120139265606201 absolute error = 1.65e-30 relative error = 3.2178219682423716750902581416241e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.148 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = 0.564 y[1] (analytic) = 0.5135281958215675887225476922058 y[1] (numeric) = 0.51352819582156758872254769220415 absolute error = 1.65e-30 relative error = 3.2130660271930134072437836090108e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.565 y[1] (analytic) = 0.51428654126944956983172325596836 y[1] (numeric) = 0.51428654126944956983172325596671 absolute error = 1.65e-30 relative error = 3.2083281742648547234008537812726e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.149 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.566 y[1] (analytic) = 0.51504423742461984047255807625541 y[1] (numeric) = 0.51504423742461984047255807625376 absolute error = 1.65e-30 relative error = 3.2036083118811488607578876584739e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.567 y[1] (analytic) = 0.51580128425173001545252268651617 y[1] (numeric) = 0.51580128425173001545252268651452 absolute error = 1.65e-30 relative error = 3.1989063431543130024596680691053e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.568 y[1] (analytic) = 0.51655768171846940987240084879645 y[1] (numeric) = 0.51655768171846940987240084879481 absolute error = 1.64e-30 relative error = 3.1748632496260526510602735321700e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.569 y[1] (analytic) = 0.51731342979555492788078762128681 y[1] (numeric) = 0.51731342979555492788078762128516 absolute error = 1.65e-30 relative error = 3.1895557025304542076784741796060e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.151 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.57 y[1] (analytic) = 0.51806852845672094899638472688591 y[1] (numeric) = 0.51806852845672094899638472688427 absolute error = 1.64e-30 relative error = 3.1656043745513955750421104292163e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.151 Order of pole = 7.0e-29 TOP MAIN SOLVE Loop x[1] = 0.571 y[1] (analytic) = 0.51882297767870921223949698138323 y[1] (numeric) = 0.51882297767870921223949698138159 absolute error = 1.64e-30 relative error = 3.1610010939330457556981218937883e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.152 Order of pole = 2.1e-29 TOP MAIN SOLVE Loop x[1] = 0.572 y[1] (analytic) = 0.51957677744125869831275587480688 y[1] (numeric) = 0.51957677744125869831275587480524 absolute error = 1.64e-30 relative error = 3.1564151270894933968263139672816e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.573 y[1] (analytic) = 0.52032992772709551006971804888762 y[1] (numeric) = 0.52032992772709551006971804888599 absolute error = 1.63e-30 relative error = 3.1326278062078108903137333405462e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.574 y[1] (analytic) = 0.52108242852192275150860745741986 y[1] (numeric) = 0.52108242852192275150860745741822 absolute error = 1.64e-30 relative error = 3.1472947661120425574246452721618e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.153 Order of pole = 1.24e-28 TOP MAIN SOLVE Loop x[1] = 0.575 y[1] (analytic) = 0.52183427981441040552709051387444 y[1] (numeric) = 0.5218342798144104055270905138728 absolute error = 1.64e-30 relative error = 3.1427601892755370326634179305931e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.576 y[1] (analytic) = 0.52258548159618521067259360061084 y[1] (numeric) = 0.5225854815961852106725936006092 absolute error = 1.64e-30 relative error = 3.1382425607974864455701380506181e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.154 Order of pole = 5.8e-29 TOP MAIN SOLVE Loop x[1] = 0.577 y[1] (analytic) = 0.52333603386182053712129201447699 y[1] (numeric) = 0.52333603386182053712129201447535 absolute error = 1.64e-30 relative error = 3.1337417909064116870423801077353e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.578 y[1] (analytic) = 0.52408593660882626211751883185905 y[1] (numeric) = 0.52408593660882626211751883185742 absolute error = 1.63e-30 relative error = 3.1101769502672603541200915102403e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.579 y[1] (analytic) = 0.52483518983763864510396136909014 y[1] (numeric) = 0.52483518983763864510396136908851 absolute error = 1.63e-30 relative error = 3.1057368704721412568399609163477e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.58 y[1] (analytic) = 0.52558379355161020277163196763958 y[1] (numeric) = 0.52558379355161020277163196763795 absolute error = 1.63e-30 relative error = 3.1013132824841194282993793720988e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.581 y[1] (analytic) = 0.52633174775699958425721882313211 y[1] (numeric) = 0.52633174775699958425721882313048 absolute error = 1.63e-30 relative error = 3.0969060995206192078306196452567e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.157 Order of pole = 1.23e-28 TOP MAIN SOLVE Loop x[1] = 0.582 y[1] (analytic) = 0.52707905246296144671404157779054 y[1] (numeric) = 0.52707905246296144671404157778892 absolute error = 1.62e-30 relative error = 3.0735427492896610170183840821697e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.157 Order of pole = 1.92e-28 memory used=385.3MB, alloc=4.4MB, time=22.31 TOP MAIN SOLVE Loop x[1] = 0.583 y[1] (analytic) = 0.52782570768153633148145548151349 y[1] (numeric) = 0.52782570768153633148145548151187 absolute error = 1.62e-30 relative error = 3.0691949566378966241817075868399e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.158 Order of pole = 1.06e-28 TOP MAIN SOLVE Loop x[1] = 0.584 y[1] (analytic) = 0.52857171342764054107616717100159 y[1] (numeric) = 0.52857171342764054107616717099997 absolute error = 1.62e-30 relative error = 3.0648632131574930442804255699683e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.585 y[1] (analytic) = 0.52931706971905601722754459199737 y[1] (numeric) = 0.52931706971905601722754459199575 absolute error = 1.62e-30 relative error = 3.0605474349426183928600707518587e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.159 Order of pole = 1.66e-28 TOP MAIN SOLVE Loop x[1] = 0.586 y[1] (analytic) = 0.53006177657642022017762336902401 y[1] (numeric) = 0.5300617765764202201776233690224 absolute error = 1.61e-30 relative error = 3.0373818131137826216720908121586e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.587 y[1] (analytic) = 0.53080583402321600946513208157198 y[1] (numeric) = 0.53080583402321600946513208157037 absolute error = 1.61e-30 relative error = 3.0331241610460200043095886460663e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.16 Order of pole = 3.5e-29 TOP MAIN SOLVE Loop x[1] = 0.588 y[1] (analytic) = 0.53154924208576152641147950641846 y[1] (numeric) = 0.53154924208576152641147950641686 absolute error = 1.60e-30 relative error = 3.0100691964524556148422874296605e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.16 Order of pole = 6.8e-29 TOP MAIN SOLVE Loop x[1] = 0.589 y[1] (analytic) = 0.53229200079320007852526800295814 y[1] (numeric) = 0.53229200079320007852526800295653 absolute error = 1.61e-30 relative error = 3.0246556356301483251791722286880e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.161 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.59 y[1] (analytic) = 0.53303411017749002604051892171453 y[1] (numeric) = 0.53303411017749002604051892171292 absolute error = 1.61e-30 relative error = 3.0204446005601803028939908276442e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.591 y[1] (analytic) = 0.53377557027339467080241827458693 y[1] (numeric) = 0.53377557027339467080241827458532 absolute error = 1.61e-30 relative error = 3.0162489436812809042274346667796e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.592 y[1] (analytic) = 0.53451638111847214771301398722078 y[1] (numeric) = 0.53451638111847214771301398721916 absolute error = 1.62e-30 relative error = 3.0307770860271115421231177214579e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.593 y[1] (analytic) = 0.53525654275306531894791992688144 y[1] (numeric) = 0.53525654275306531894791992687982 absolute error = 1.62e-30 relative error = 3.0265860771502405859198639863333e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.163 Order of pole = 8.0e-29 TOP MAIN SOLVE Loop x[1] = 0.594 y[1] (analytic) = 0.53599605522029167115370663043049 y[1] (numeric) = 0.53599605522029167115370663042887 absolute error = 1.62e-30 relative error = 3.0224103036246939976122292520489e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.163 Order of pole = 3.8e-29 TOP MAIN SOLVE Loop x[1] = 0.595 y[1] (analytic) = 0.53673491856603321583428431287756 y[1] (numeric) = 0.53673491856603321583428431287594 absolute error = 1.62e-30 relative error = 3.0182496870672580751276883093210e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.596 y[1] (analytic) = 0.53747313283892639313321038329677 y[1] (numeric) = 0.53747313283892639313321038329515 absolute error = 1.62e-30 relative error = 3.0141041496217311886578151229636e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.597 y[1] (analytic) = 0.53821069809035197921748139680147 y[1] (numeric) = 0.53821069809035197921748139679985 absolute error = 1.62e-30 relative error = 3.0099736139545166130956656348738e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.165 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = 0.598 y[1] (analytic) = 0.5389476143744249974669981932726 y[1] (numeric) = 0.53894761437442499746699819327098 absolute error = 1.62e-30 relative error = 3.0058580032502595414530684316015e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.599 y[1] (analytic) = 0.53968388174798463367252297950538 y[1] (numeric) = 0.53968388174798463367252297950376 absolute error = 1.62e-30 relative error = 3.0017572412075277630193741986745e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.166 Order of pole = 2.0e-29 TOP MAIN SOLVE Loop x[1] = 0.6 y[1] (analytic) = 0.5404195002705841554435783646086 y[1] (numeric) = 0.54041950027058415544357836460698 absolute error = 1.62e-30 relative error = 2.9976712520345354969070158832911e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.166 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = 0.601 y[1] (analytic) = 0.54115447000448083602637092145812 y[1] (numeric) = 0.5411544700044808360263709214565 absolute error = 1.62e-30 relative error = 2.9935999604449098784099406632752e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.167 Order of pole = 2.6e-29 TOP MAIN SOLVE Loop x[1] = 0.602 y[1] (analytic) = 0.5418887910146258827304557817339 y[1] (numeric) = 0.54188879101462588273045578173228 absolute error = 1.62e-30 relative error = 2.9895432916534996022803046830284e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.167 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = 0.603 y[1] (analytic) = 0.54262246336865437016149413988553 y[1] (numeric) = 0.54262246336865437016149413988392 absolute error = 1.61e-30 relative error = 2.9670721517958534729071665877579e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.604 y[1] (analytic) = 0.54335548713687517845609240297155 y[1] (numeric) = 0.54335548713687517845609240296994 absolute error = 1.61e-30 relative error = 2.9630693682392671806118511318770e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.605 y[1] (analytic) = 0.54408786239226093671335013876632 y[1] (numeric) = 0.54408786239226093671335013876471 absolute error = 1.61e-30 relative error = 2.9590808971938950467822459653206e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.169 Order of pole = 3.1e-29 TOP MAIN SOLVE Loop x[1] = 0.606 y[1] (analytic) = 0.54481958921043797181638400325995 y[1] (numeric) = 0.54481958921043797181638400325834 absolute error = 1.61e-30 relative error = 2.9551066662878991060750912169947e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.169 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = 0.607 y[1] (analytic) = 0.54555066766967626283573652949589 y[1] (numeric) = 0.54555066766967626283573652949429 absolute error = 1.60e-30 relative error = 2.9328165004992330187412099972135e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.608 memory used=389.1MB, alloc=4.4MB, time=22.51 y[1] (analytic) = 0.54628109785087940120522209077634 y[1] (numeric) = 0.54628109785087940120522209077473 absolute error = 1.61e-30 relative error = 2.9472006377923190084016818229849e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.609 y[1] (analytic) = 0.54701087983757455685940757016806 y[1] (numeric) = 0.54701087983757455685940757016645 absolute error = 1.61e-30 relative error = 2.9432686978329603289195143966840e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.171 Order of pole = 2.2e-29 TOP MAIN SOLVE Loop x[1] = 0.61 y[1] (analytic) = 0.54774001371590245052057233188898 y[1] (numeric) = 0.54774001371590245052057233188737 absolute error = 1.61e-30 relative error = 2.9393507132656960400548572830394e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.171 Order of pole = 8.5e-29 TOP MAIN SOLVE Loop x[1] = 0.611 y[1] (analytic) = 0.5484684995746073323216410548511 y[1] (numeric) = 0.54846849957460733232164105484949 absolute error = 1.61e-30 relative error = 2.9354466140693904316955015419559e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.612 y[1] (analytic) = 0.5491963375050269669502339100622 y[1] (numeric) = 0.54919633750502696695023391006059 absolute error = 1.61e-30 relative error = 2.9315563306815809987314685994642e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.172 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = 0.613 y[1] (analytic) = 0.54992352760108262549763149680776 y[1] (numeric) = 0.54992352760108262549763149680615 absolute error = 1.61e-30 relative error = 2.9276797939947430959964637148510e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.173 Order of pole = 6.1e-29 TOP MAIN SOLVE Loop x[1] = 0.614 y[1] (analytic) = 0.55065006995926908419510695199093 y[1] (numeric) = 0.55065006995926908419510695198932 absolute error = 1.61e-30 relative error = 2.9238169353525910591871291442458e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.173 Order of pole = 2.8e-29 TOP MAIN SOLVE Loop x[1] = 0.615 y[1] (analytic) = 0.55137596467864463021873476652808 y[1] (numeric) = 0.55137596467864463021873476652647 absolute error = 1.61e-30 relative error = 2.9199676865464153767737570595602e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.616 y[1] (analytic) = 0.5521012118608210747424451354934 y[1] (numeric) = 0.55210121186082107474244513549179 absolute error = 1.61e-30 relative error = 2.9161319798114555033060569636626e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.617 y[1] (analytic) = 0.55282581160995377341775418737637 y[1] (numeric) = 0.55282581160995377341775418737476 absolute error = 1.61e-30 relative error = 2.9123097478233079098288795545563e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.175 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = 0.618 y[1] (analytic) = 0.55354976403273165445726423434827 y[1] (numeric) = 0.55354976403273165445726423434666 absolute error = 1.61e-30 relative error = 2.9085009236943689723567510455558e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.176 Order of pole = 5.1e-29 TOP MAIN SOLVE Loop x[1] = 0.619 y[1] (analytic) = 0.5542730692383672544976943112058 y[1] (numeric) = 0.5542730692383672544976943112042 absolute error = 1.60e-30 relative error = 2.8866637922686333461007886190142e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.176 Order of pole = 6.3e-29 TOP MAIN SOLVE Loop x[1] = 0.62 y[1] (analytic) = 0.55499572733858676241686977644094 y[1] (numeric) = 0.55499572733858676241686977643933 absolute error = 1.61e-30 relative error = 2.9009232336266001455295757975848e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.177 Order of pole = 3.5e-29 TOP MAIN SOLVE Loop x[1] = 0.621 y[1] (analytic) = 0.55571773844762007127777068484036 y[1] (numeric) = 0.55571773844762007127777068483876 absolute error = 1.60e-30 relative error = 2.8791594892571711004096745813787e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.177 Order of pole = 2.6e-29 TOP MAIN SOLVE Loop x[1] = 0.622 y[1] (analytic) = 0.55643910268219083857141205670568 y[1] (numeric) = 0.55643910268219083857141205670408 absolute error = 1.60e-30 relative error = 2.8754269645816696537282184452691e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.623 y[1] (analytic) = 0.55715982016150655492900511316377 y[1] (numeric) = 0.55715982016150655492900511316217 absolute error = 1.60e-30 relative error = 2.8717074385159368183464724295722e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.178 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = 0.624 y[1] (analytic) = 0.5578798910072486214725270684647 y[1] (numeric) = 0.5578798910072486214725270684631 absolute error = 1.60e-30 relative error = 2.8680008471199958477735132703215e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.179 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = 0.625 y[1] (analytic) = 0.55859931534356243597150821640166 y[1] (numeric) = 0.55859931534356243597150821640006 absolute error = 1.60e-30 relative error = 2.8643071268641488866201011833749e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.626 y[1] (analytic) = 0.55931809329704748797252886619788 y[1] (numeric) = 0.55931809329704748797252886619628 absolute error = 1.60e-30 relative error = 2.8606262146257052494761152683014e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.18 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = 0.627 y[1] (analytic) = 0.56003622499674746306660521996036 y[1] (numeric) = 0.56003622499674746306660521995876 absolute error = 1.60e-30 relative error = 2.8569580476857409742865424780471e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.628 y[1] (analytic) = 0.56075371057414035645833258507828 y[1] (numeric) = 0.56075371057414035645833258507668 absolute error = 1.60e-30 relative error = 2.8533025637258893017024242066290e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.629 y[1] (analytic) = 0.56147055016312859599934642613475 y[1] (numeric) = 0.56147055016312859599934642613315 absolute error = 1.60e-30 relative error = 2.8496597008251617363163104237384e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.181 Order of pole = 7.7e-29 TOP MAIN SOLVE Loop x[1] = 0.63 y[1] (analytic) = 0.56218674390002917484735672680714 y[1] (numeric) = 0.56218674390002917484735672680554 absolute error = 1.60e-30 relative error = 2.8460293974567993500615809178810e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.631 y[1] (analytic) = 0.56290229192356379391070899707045 y[1] (numeric) = 0.56290229192356379391070899706885 absolute error = 1.60e-30 relative error = 2.8424115924851539923624703669416e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.632 y[1] (analytic) = 0.56361719437484901423712606842608 y[1] (numeric) = 0.56361719437484901423712606842447 absolute error = 1.61e-30 relative error = 2.8565487640698653200919384655243e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.633 y[1] (analytic) = 0.56433145139738641950398861290861 y[1] (numeric) = 0.56433145139738641950398861290701 absolute error = 1.60e-30 relative error = 2.8352132351264696107868920521772e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.184 Order of pole = 3.92e-28 TOP MAIN SOLVE Loop memory used=392.9MB, alloc=4.4MB, time=22.72 x[1] = 0.634 y[1] (analytic) = 0.56504506313705278876621914275387 y[1] (numeric) = 0.56504506313705278876621914275226 absolute error = 1.61e-30 relative error = 2.8493302659110063597545384176570e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.184 Order of pole = 5.15e-28 TOP MAIN SOLVE Loop x[1] = 0.635 y[1] (analytic) = 0.56575802974209027961654413874205 y[1] (numeric) = 0.56575802974209027961654413874044 absolute error = 1.61e-30 relative error = 2.8457395482905366649126558562552e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.185 Order of pole = 2.1e-29 TOP MAIN SOLVE Loop x[1] = 0.636 y[1] (analytic) = 0.56647035136309662191162195769052 y[1] (numeric) = 0.56647035136309662191162195768891 absolute error = 1.61e-30 relative error = 2.8421611053885870607635785607184e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.637 y[1] (analytic) = 0.56718202815301532221624032411637 y[1] (numeric) = 0.56718202815301532221624032411476 absolute error = 1.61e-30 relative error = 2.8385948779844827701484134145940e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.186 Order of pole = 6.0e-29 TOP MAIN SOLVE Loop x[1] = 0.638 y[1] (analytic) = 0.56789306026712587911650655791082 y[1] (numeric) = 0.5678930602671258791165065579092 absolute error = 1.62e-30 relative error = 2.8526497563431809256928400666343e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.186 Order of pole = 4.1e-29 TOP MAIN SOLVE Loop x[1] = 0.639 y[1] (analytic) = 0.56860344786303400955167626858668 y[1] (numeric) = 0.56860344786303400955167626858506 absolute error = 1.62e-30 relative error = 2.8490857839297306833569789102781e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.187 Order of pole = 1.12e-28 TOP MAIN SOLVE Loop x[1] = 0.64 y[1] (analytic) = 0.56931319110066188631299209633831 y[1] (numeric) = 0.56931319110066188631299209633669 absolute error = 1.62e-30 relative error = 2.8455339263578791509245060596099e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.641 y[1] (analytic) = 0.57002229014223838685663323928788 y[1] (numeric) = 0.57002229014223838685663323928626 absolute error = 1.62e-30 relative error = 2.8419941255205289255090917970725e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.188 Order of pole = 7.6e-29 TOP MAIN SOLVE Loop x[1] = 0.642 y[1] (analytic) = 0.57073074515228935357660901282491 y[1] (numeric) = 0.57073074515228935357660901282329 absolute error = 1.62e-30 relative error = 2.8384663236737523197891685532147e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.188 Order of pole = 8.2e-29 TOP MAIN SOLVE Loop x[1] = 0.643 y[1] (analytic) = 0.57143855629762786568216557826183 y[1] (numeric) = 0.57143855629762786568216557826021 absolute error = 1.62e-30 relative error = 2.8349504634339719706513480894228e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.644 y[1] (analytic) = 0.57214572374734452282301429095948 y[1] (numeric) = 0.57214572374734452282301429095786 absolute error = 1.62e-30 relative error = 2.8314464877751676834518040094042e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.189 Order of pole = 1.42e-28 TOP MAIN SOLVE Loop x[1] = 0.645 y[1] (analytic) = 0.57285224767279774060443288890464 y[1] (numeric) = 0.57285224767279774060443288890303 absolute error = 1.61e-30 relative error = 2.8104978317543431209095360140222e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.646 y[1] (analytic) = 0.57355812824760405813303700718107 y[1] (numeric) = 0.57355812824760405813303700717945 absolute error = 1.62e-30 relative error = 2.8244739638676147998991893594964e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.647 y[1] (analytic) = 0.57426336564762845773276929705423 y[1] (numeric) = 0.57426336564762845773276929705261 absolute error = 1.62e-30 relative error = 2.8210053033298348853379076306506e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.191 Order of pole = 9.8e-29 TOP MAIN SOLVE Loop x[1] = 0.648 y[1] (analytic) = 0.57496796005097469696940678513601 y[1] (numeric) = 0.57496796005097469696940678513439 absolute error = 1.62e-30 relative error = 2.8175483027895612288876683184423e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.649 y[1] (analytic) = 0.57567191163797565312064406241416 y[1] (numeric) = 0.57567191163797565312064406241254 absolute error = 1.62e-30 relative error = 2.8141029069675606597012989080197e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.65 y[1] (analytic) = 0.57637522059118368022757047839377 y[1] (numeric) = 0.57637522059118368022757047839215 absolute error = 1.62e-30 relative error = 2.8106690609259334928729884109983e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.193 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = 0.651 y[1] (analytic) = 0.57707788709536097886212376523933 y[1] (numeric) = 0.57707788709536097886212376523771 absolute error = 1.62e-30 relative error = 2.8072467100654962469921806762873e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.652 y[1] (analytic) = 0.57777991133746997874387046313095 y[1] (numeric) = 0.57777991133746997874387046312933 absolute error = 1.62e-30 relative error = 2.8038358001231884161703305962197e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.653 y[1] (analytic) = 0.5784812935066637343382351930325 y[1] (numeric) = 0.57848129350666373433823519303088 absolute error = 1.62e-30 relative error = 2.8004362771695030387664316997553e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.194 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = 0.654 y[1] (analytic) = 0.57918203379427633356707625816345 y[1] (numeric) = 0.57918203379427633356707625816183 absolute error = 1.62e-30 relative error = 2.7970480876059408081906971420718e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.655 y[1] (analytic) = 0.57988213239381331976128428159638 y[1] (numeric) = 0.57988213239381331976128428159476 absolute error = 1.62e-30 relative error = 2.7936711781624874742759146277256e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.195 Order of pole = 2.5e-29 TOP MAIN SOLVE Loop x[1] = 0.656 y[1] (analytic) = 0.58058158950094212698386363497623 y[1] (numeric) = 0.58058158950094212698386363497461 absolute error = 1.62e-30 relative error = 2.7903054958951142867734599628946e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.196 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = 0.657 y[1] (analytic) = 0.58128040531348252885074331226501 y[1] (numeric) = 0.5812804053134825288507433122634 absolute error = 1.61e-30 relative error = 2.7697475870216759192875266554086e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.658 y[1] (analytic) = 0.58197858003139710097535468203206 y[1] (numeric) = 0.58197858003139710097535468203044 absolute error = 1.62e-30 relative error = 2.7836076027275828450961152219620e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.659 y[1] (analytic) = 0.58267611385678169716180824099949 y[1] (numeric) = 0.58267611385678169716180824099788 absolute error = 1.61e-30 relative error = 2.7631130944141093930820940723233e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.198 Order of pole = 3e-30 memory used=396.7MB, alloc=4.4MB, time=22.94 TOP MAIN SOLVE Loop x[1] = 0.66 y[1] (analytic) = 0.58337300699385593947030011867094 y[1] (numeric) = 0.58337300699385593947030011866933 absolute error = 1.61e-30 relative error = 2.7598122996749427143443629988896e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.198 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = 0.661 y[1] (analytic) = 0.584069259648953722277181675768 y[1] (numeric) = 0.58406925964895372227718167576638 absolute error = 1.62e-30 relative error = 2.7736436616672435100552525407695e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.199 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.662 y[1] (analytic) = 0.58476487203051373045093212522176 y[1] (numeric) = 0.58476487203051373045093212522014 absolute error = 1.62e-30 relative error = 2.7703442485776855322845220429656e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.663 y[1] (analytic) = 0.585459844349069971764084710463 y[1] (numeric) = 0.58545984434906997176408471046138 absolute error = 1.62e-30 relative error = 2.7670557009783645291133454202846e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.2 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = 0.664 y[1] (analytic) = 0.58615417681724232365997162807491 y[1] (numeric) = 0.58615417681724232365997162807329 absolute error = 1.62e-30 relative error = 2.7637779684458371426617428182900e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.665 y[1] (analytic) = 0.58684786964972709449197160637497 y[1] (numeric) = 0.58684786964972709449197160637335 absolute error = 1.62e-30 relative error = 2.7605110008611468743313482362225e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.201 Order of pole = 2.0e-29 TOP MAIN SOLVE Loop x[1] = 0.666 y[1] (analytic) = 0.58754092306328759935176687354266 y[1] (numeric) = 0.58754092306328759935176687354103 absolute error = 1.63e-30 relative error = 2.7742748394470946587483658647242e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.201 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = 0.667 y[1] (analytic) = 0.58823333727674475060194319338716 y[1] (numeric) = 0.58823333727674475060194319338553 absolute error = 1.63e-30 relative error = 2.7710092181211037772505394874954e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.668 y[1] (analytic) = 0.58892511251096766322709773814752 y[1] (numeric) = 0.58892511251096766322709773814589 absolute error = 1.63e-30 relative error = 2.7677542787235859350039193699132e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.669 y[1] (analytic) = 0.58961624898886427511645482974902 y[1] (numeric) = 0.58961624898886427511645482974739 absolute error = 1.63e-30 relative error = 2.7645099720289167649555926180222e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.67 y[1] (analytic) = 0.59030674693537198238982903713835 y[1] (numeric) = 0.59030674693537198238982903713672 absolute error = 1.63e-30 relative error = 2.7612762491065612198632140333189e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.204 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = 0.671 y[1] (analytic) = 0.59099660657744828987761879064397 y[1] (numeric) = 0.59099660657744828987761879064233 absolute error = 1.64e-30 relative error = 2.7749736322472150061778213773123e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.204 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.672 y[1] (analytic) = 0.59168582814406147686436158724269 y[1] (numeric) = 0.59168582814406147686436158724106 absolute error = 1.63e-30 relative error = 2.7548403603189455285836298413812e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.205 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = 0.673 y[1] (analytic) = 0.59237441186618127820423403517565 y[1] (numeric) = 0.59237441186618127820423403517401 absolute error = 1.64e-30 relative error = 2.7685193133738526771183030144729e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.674 y[1] (analytic) = 0.59306235797676958091573644409534 y[1] (numeric) = 0.5930623579767695809157364440937 absolute error = 1.64e-30 relative error = 2.7653078600281679999752443703380e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.206 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = 0.675 y[1] (analytic) = 0.59374966671077113636166242892846 y[1] (numeric) = 0.59374966671077113636166242892682 absolute error = 1.64e-30 relative error = 2.7621068136091788577759190252103e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.206 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = 0.676 y[1] (analytic) = 0.59443633830510428811931908253125 y[1] (numeric) = 0.59443633830510428811931908252961 absolute error = 1.64e-30 relative error = 2.7589161266218601515005769587250e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.677 y[1] (analytic) = 0.59512237299865171564483270416632 y[1] (numeric) = 0.59512237299865171564483270416469 absolute error = 1.63e-30 relative error = 2.7389324850734402818686905634979e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.208 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = 0.678 y[1] (analytic) = 0.59580777103225119383424886755647 y[1] (numeric) = 0.59580777103225119383424886755484 absolute error = 1.63e-30 relative error = 2.7357817055255692090107077695180e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.679 y[1] (analytic) = 0.59649253264868636858301379303678 y[1] (numeric) = 0.59649253264868636858301379303515 absolute error = 1.63e-30 relative error = 2.7326410822983664440632362127690e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.68 y[1] (analytic) = 0.59717665809267754844430657194869 y[1] (numeric) = 0.59717665809267754844430657194706 absolute error = 1.63e-30 relative error = 2.7295105692946150818656939207893e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.681 y[1] (analytic) = 0.59786014761087251248557879626971 y[1] (numeric) = 0.59786014761087251248557879626808 absolute error = 1.63e-30 relative error = 2.7263901206890835240081643102822e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.682 y[1] (analytic) = 0.59854300145183733444154959048228 y[1] (numeric) = 0.59854300145183733444154959048065 absolute error = 1.63e-30 relative error = 2.7232796909265347227958773319549e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.683 y[1] (analytic) = 0.59922521986604722326079994334617 y[1] (numeric) = 0.59922521986604722326079994334454 absolute error = 1.63e-30 relative error = 2.7201792347197528864339573784716e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.211 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.684 y[1] (analytic) = 0.59990680310587738014201061160889 y[1] (numeric) = 0.59990680310587738014201061160726 absolute error = 1.63e-30 relative error = 2.7170887070475874668225065529196e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.212 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.685 y[1] (analytic) = 0.60058775142559387215479273239255 y[1] (numeric) = 0.60058775142559387215479273239092 absolute error = 1.63e-30 relative error = 2.7140080631530142534381781149199e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.212 Order of pole = 4e-30 memory used=400.5MB, alloc=4.4MB, time=23.15 TOP MAIN SOLVE Loop x[1] = 0.686 y[1] (analytic) = 0.60126806508134452253896965223023 y[1] (numeric) = 0.6012680650813445225389696522286 absolute error = 1.63e-30 relative error = 2.7109372585412133988371088148805e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.213 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = 0.687 y[1] (analytic) = 0.60194774433114981777508237426087 y[1] (numeric) = 0.60194774433114981777508237425924 absolute error = 1.63e-30 relative error = 2.7078762489776642033458188518642e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.688 y[1] (analytic) = 0.60262678943489383151780945627653 y[1] (numeric) = 0.6026267894348938315178094562749 absolute error = 1.63e-30 relative error = 2.7048249904862564885118464343868e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.214 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = 0.689 y[1] (analytic) = 0.60330520065431516548291517607949 y[1] (numeric) = 0.60330520065431516548291517607786 absolute error = 1.63e-30 relative error = 2.7017834393474183908648462136844e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.69 y[1] (analytic) = 0.60398297825299790737726733146002 y[1] (numeric) = 0.6039829782529979073772673314584 absolute error = 1.62e-30 relative error = 2.6821947941079397934828733331252e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.691 y[1] (analytic) = 0.60466012249636260596039817414992 y[1] (numeric) = 0.6046601224963626059603981741483 absolute error = 1.62e-30 relative error = 2.6791910690451482082407365403151e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.692 y[1] (analytic) = 0.60533663365165726332501870402994 y[1] (numeric) = 0.60533663365165726332501870402832 absolute error = 1.62e-30 relative error = 2.6761968629379759942247512859885e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.693 y[1] (analytic) = 0.60601251198794834448283788495535 y[1] (numeric) = 0.60601251198794834448283788495373 absolute error = 1.62e-30 relative error = 2.6732121333366407981940663868639e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.217 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = 0.694 y[1] (analytic) = 0.60668775777611180434098429969133 y[1] (numeric) = 0.6066877577761118043409842996897 absolute error = 1.63e-30 relative error = 2.6867197814819346397910591924904e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.695 y[1] (analytic) = 0.60736237128882413215327835109793 y[1] (numeric) = 0.6073623712888241321532783510963 absolute error = 1.63e-30 relative error = 2.6837355704818143943374236016740e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.696 y[1] (analytic) = 0.60803635280055341352955835195498 y[1] (numeric) = 0.60803635280055341352955835195335 absolute error = 1.63e-30 relative error = 2.6807607678264404435812799183659e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.697 y[1] (analytic) = 0.6087097025875504100852237383574 y[1] (numeric) = 0.60870970258755041008522373835578 absolute error = 1.62e-30 relative error = 2.6613671395635363895713055621419e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.219 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = 0.698 y[1] (analytic) = 0.60938242092783965681212320273872 y[1] (numeric) = 0.6093824209278396568121232027371 absolute error = 1.62e-30 relative error = 2.6584291642896491771885254187671e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.699 y[1] (analytic) = 0.61005450810121057725088478320319 y[1] (numeric) = 0.61005450810121057725088478320156 absolute error = 1.63e-30 relative error = 2.6718923938015981818973656047909e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.7 y[1] (analytic) = 0.61072596438920861654375887649024 y[1] (numeric) = 0.61072596438920861654375887648861 absolute error = 1.63e-30 relative error = 2.6689548095931611496714332538248e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.701 y[1] (analytic) = 0.61139679007512639244602377270172 y[1] (numeric) = 0.61139679007512639244602377270009 absolute error = 1.63e-30 relative error = 2.6660264274526384941270665712213e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.702 y[1] (analytic) = 0.61206698544399486437298665065737 y[1] (numeric) = 0.61206698544399486437298665065574 absolute error = 1.63e-30 relative error = 2.6631072068322621206105185881400e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.703 y[1] (analytic) = 0.6127365507825745205586010327978 y[1] (numeric) = 0.61273655078257452055860103279617 absolute error = 1.63e-30 relative error = 2.6601971074162256586005354395141e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.222 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = 0.704 y[1] (analytic) = 0.61340548637934658340071448694449 y[1] (numeric) = 0.61340548637934658340071448694286 absolute error = 1.63e-30 relative error = 2.6572960891190396160046925345171e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.223 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = 0.705 y[1] (analytic) = 0.61407379252450423306695788760219 y[1] (numeric) = 0.61407379252450423306695788760056 absolute error = 1.63e-30 relative error = 2.6544041120839005077449298476969e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.706 y[1] (analytic) = 0.61474146950994384943428982013514 y[1] (numeric) = 0.61474146950994384943428982013351 absolute error = 1.63e-30 relative error = 2.6515211366810738201630407548757e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.224 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.707 y[1] (analytic) = 0.6154085176292562724342167349853 y[1] (numeric) = 0.61540851762925627243421673498367 absolute error = 1.63e-30 relative error = 2.6486471235062906743437563695872e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.708 y[1] (analytic) = 0.61607493717771808087472124369114 y[1] (numeric) = 0.61607493717771808087472124368952 absolute error = 1.62e-30 relative error = 2.6295502417633349974601561044042e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.709 y[1] (analytic) = 0.61674072845228288980894750101495 y[1] (numeric) = 0.61674072845228288980894750101333 absolute error = 1.62e-30 relative error = 2.6267115584621862456992758494036e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.71 y[1] (analytic) = 0.61740589175157266651971394484851 y[1] (numeric) = 0.61740589175157266651971394484689 absolute error = 1.62e-30 relative error = 2.6238816662472730754464843094210e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.226 Order of pole = 7e-30 TOP MAIN SOLVE Loop x[1] = 0.711 y[1] (analytic) = 0.61807042737586906518794977424468 y[1] (numeric) = 0.61807042737586906518794977424306 absolute error = 1.62e-30 relative error = 2.6210605268367328469136448149058e-28 % Correct digits = 29 h = 0.001 memory used=404.3MB, alloc=4.4MB, time=23.36 Complex estimate of poles used Radius of convergence = 1.227 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = 0.712 y[1] (analytic) = 0.61873433562710478031218244207203 y[1] (numeric) = 0.61873433562710478031218244207041 absolute error = 1.62e-30 relative error = 2.6182481021650173965034899111994e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.228 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = 0.713 y[1] (analytic) = 0.61939761680885491894523912822447 y[1] (numeric) = 0.61939761680885491894523912822285 absolute error = 1.62e-30 relative error = 2.6154443543813784532407158135106e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.228 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = 0.714 y[1] (analytic) = 0.62006027122632839181336564751054 y[1] (numeric) = 0.62006027122632839181336564750892 absolute error = 1.62e-30 relative error = 2.6126492458483657596161918944799e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.229 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = 0.715 y[1] (analytic) = 0.62072229918635932338201153843224 y[1] (numeric) = 0.62072229918635932338201153843062 absolute error = 1.62e-30 relative error = 2.6098627391403377725501744390211e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.229 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.716 y[1] (analytic) = 0.62138370099739848093158017984252 y[1] (numeric) = 0.6213837009973984809315801798409 absolute error = 1.62e-30 relative error = 2.6070847970419848215691968081730e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.23 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = 0.717 y[1] (analytic) = 0.62204447696950472270549769641355 y[1] (numeric) = 0.62204447696950472270549769641193 absolute error = 1.62e-30 relative error = 2.6043153825468646026626557138701e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.23 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = 0.718 y[1] (analytic) = 0.62270462741433646519201414509621 y[1] (numeric) = 0.62270462741433646519201414509459 absolute error = 1.62e-30 relative error = 2.6015544588559498876392683749882e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.231 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = 0.719 y[1] (analytic) = 0.62336415264514316960021502712216 y[1] (numeric) = 0.62336415264514316960021502712054 absolute error = 1.62e-30 relative error = 2.5988019893761883301407770413683e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.72 y[1] (analytic) = 0.62402305297675684758979054708821 y[1] (numeric) = 0.62402305297675684758979054708658 absolute error = 1.63e-30 relative error = 2.6120829867173401412277412303865e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.232 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = 0.721 y[1] (analytic) = 0.62468132872558358631318424544497 y[1] (numeric) = 0.62468132872558358631318424544334 absolute error = 1.63e-30 relative error = 2.6093304298455238425768381578180e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.722 y[1] (analytic) = 0.62533898020959509282782166614858 y[1] (numeric) = 0.62533898020959509282782166614695 absolute error = 1.63e-30 relative error = 2.6065862701437103900759610067172e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.233 Order of pole = 1.2e-29 TOP MAIN SOLVE Loop x[1] = 0.723 y[1] (analytic) = 0.6259960077483202579352035898733 y[1] (numeric) = 0.62599600774832025793520358987167 absolute error = 1.63e-30 relative error = 2.6038504716076981996816886589102e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.724 y[1] (analytic) = 0.62665241166283673950273706726331 y[1] (numeric) = 0.62665241166283673950273706726168 absolute error = 1.63e-30 relative error = 2.6011229984334650755421396647809e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.725 y[1] (analytic) = 0.62730819227576256532327102815488 y[1] (numeric) = 0.62730819227576256532327102815326 absolute error = 1.62e-30 relative error = 2.5824626873163063435556521925270e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.235 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = 0.726 y[1] (analytic) = 0.62796334991124775556640162315481 y[1] (numeric) = 0.62796334991124775556640162315318 absolute error = 1.63e-30 relative error = 2.5956928859468845904591570421227e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.236 Order of pole = 2.2e-29 TOP MAIN SOLVE Loop x[1] = 0.727 y[1] (analytic) = 0.62861788489496596487471567474472 y[1] (numeric) = 0.6286178848949659648747156747431 absolute error = 1.62e-30 relative error = 2.5770822608247637572453341468641e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.236 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = 0.728 y[1] (analytic) = 0.62927179755410614415724867722518 y[1] (numeric) = 0.62927179755410614415724867722356 absolute error = 1.62e-30 relative error = 2.5744042658462044164200594363115e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.237 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = 0.729 y[1] (analytic) = 0.6299250882173642221315466890534 y[1] (numeric) = 0.62992508821736422213154668905178 absolute error = 1.62e-30 relative error = 2.5717343701684682847547861767844e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.73 y[1] (analytic) = 0.63057775721493480666483920791007 y[1] (numeric) = 0.63057775721493480666483920790845 absolute error = 1.62e-30 relative error = 2.5690725393725184798137753321830e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.238 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = 0.731 y[1] (analytic) = 0.63122980487850290596395270830971 y[1] (numeric) = 0.63122980487850290596395270830809 absolute error = 1.62e-30 relative error = 2.5664187392289127077831331802650e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.239 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.732 y[1] (analytic) = 0.63188123154123566966272195361638 y[1] (numeric) = 0.63188123154123566966272195361476 absolute error = 1.62e-30 relative error = 2.5637729356965100903355313804508e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.733 y[1] (analytic) = 0.63253203753777414985478846853174 y[1] (numeric) = 0.63253203753777414985478846853012 absolute error = 1.62e-30 relative error = 2.5611350949211885558066916646025e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.24 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = 0.734 y[1] (analytic) = 0.63318222320422508211881267379345 y[1] (numeric) = 0.63318222320422508211881267379182 absolute error = 1.63e-30 relative error = 2.5742984251063910439796367297729e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.735 y[1] (analytic) = 0.63383178887815268658226814099248 y[1] (numeric) = 0.63383178887815268658226814099086 absolute error = 1.62e-30 relative error = 2.5558831671527719751638536900461e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.736 y[1] (analytic) = 0.6344807348985704890691332208467 y[1] (numeric) = 0.63448073489857048906913322084508 absolute error = 1.62e-30 relative error = 2.5532690133751292343046099062639e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.737 memory used=408.1MB, alloc=4.4MB, time=23.57 y[1] (analytic) = 0.63512906160593316237594693144324 y[1] (numeric) = 0.63512906160593316237594693144162 absolute error = 1.62e-30 relative error = 2.5506626887829793239950542830480e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.242 Order of pole = 2.0e-29 TOP MAIN SOLVE Loop x[1] = 0.738 y[1] (analytic) = 0.63577676934212838771985246210598 y[1] (numeric) = 0.63577676934212838771985246210436 absolute error = 1.62e-30 relative error = 2.5480641604384178387343131005565e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.243 Order of pole = 5.0e-29 TOP MAIN SOLVE Loop x[1] = 0.739 y[1] (analytic) = 0.63642385845046873640141295161108 y[1] (numeric) = 0.63642385845046873640141295160946 absolute error = 1.62e-30 relative error = 2.5454733955830798158862800887991e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.74 y[1] (analytic) = 0.63707032927568357172415033415913 y[1] (numeric) = 0.63707032927568357172415033415751 absolute error = 1.62e-30 relative error = 2.5428903616369283187900833637718e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.741 y[1] (analytic) = 0.63771618216391097121192901025105 y[1] (numeric) = 0.63771618216391097121192901024943 absolute error = 1.62e-30 relative error = 2.5403150261970528087866275714887e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.245 Order of pole = 3.0e-29 TOP MAIN SOLVE Loop x[1] = 0.742 y[1] (analytic) = 0.63836141746268966916448188958658 y[1] (numeric) = 0.63836141746268966916448188958496 absolute error = 1.62e-30 relative error = 2.5377473570364772138942633752543e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.245 Order of pole = 1.8e-29 TOP MAIN SOLVE Loop x[1] = 0.743 y[1] (analytic) = 0.63900603552095101959055696623484 y[1] (numeric) = 0.63900603552095101959055696623321 absolute error = 1.63e-30 relative error = 2.5508366265604033905320175092072e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.246 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = 0.744 y[1] (analytic) = 0.63965003668901097955734801929148 y[1] (numeric) = 0.63965003668901097955734801928985 absolute error = 1.63e-30 relative error = 2.5482684382186372099381909411329e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.246 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = 0.745 y[1] (analytic) = 0.64029342131856211299406328146577 y[1] (numeric) = 0.64029342131856211299406328146415 absolute error = 1.62e-30 relative error = 2.5300900275750438715666363071471e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.247 Order of pole = 2.3e-29 TOP MAIN SOLVE Loop x[1] = 0.746 y[1] (analytic) = 0.64093618976266561498668097971591 y[1] (numeric) = 0.64093618976266561498668097971428 absolute error = 1.63e-30 relative error = 2.5431548819291638063007146421091e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.248 Order of pole = 3.9e-29 TOP MAIN SOLVE Loop x[1] = 0.747 y[1] (analytic) = 0.64157834237574335660014052211505 y[1] (numeric) = 0.64157834237574335660014052211342 absolute error = 1.63e-30 relative error = 2.5406094506933696916883052496601e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.248 Order of pole = 3.8e-29 TOP MAIN SOLVE Loop x[1] = 0.748 y[1] (analytic) = 0.64221987951356995026342277928661 y[1] (numeric) = 0.64221987951356995026342277928498 absolute error = 1.63e-30 relative error = 2.5380715421556154046270683015771e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.249 Order of pole = 2.1e-29 TOP MAIN SOLVE Loop x[1] = 0.749 y[1] (analytic) = 0.64286080153326483575218238246156 y[1] (numeric) = 0.64286080153326483575218238245993 absolute error = 1.63e-30 relative error = 2.5355411250963567125048391530420e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.75 y[1] (analytic) = 0.64350110879328438680280922871732 y[1] (numeric) = 0.6435011087932843868028092287157 absolute error = 1.62e-30 relative error = 2.5174781797002342782711219057415e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.751 y[1] (analytic) = 0.64414080165341403839101544225916 y[1] (numeric) = 0.64414080165341403839101544225754 absolute error = 1.62e-30 relative error = 2.5149780852908245022429788442294e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.251 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = 0.752 y[1] (analytic) = 0.64477988047476043470726788347657 y[1] (numeric) = 0.64477988047476043470726788347494 absolute error = 1.63e-30 relative error = 2.5279945131039266082886950312738e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.251 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = 0.753 y[1] (analytic) = 0.64541834561974359786061491949861 y[1] (numeric) = 0.64541834561974359786061491949698 absolute error = 1.63e-30 relative error = 2.5254937531018604918615157558956e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.252 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = 0.754 y[1] (analytic) = 0.64605619745208911734168956541143 y[1] (numeric) = 0.6460561974520891173416895654098 absolute error = 1.63e-30 relative error = 2.5230003309748904201235781260850e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.755 y[1] (analytic) = 0.6466934363368203602749092682959 y[1] (numeric) = 0.64669343633682036027490926829427 absolute error = 1.63e-30 relative error = 2.5205142164935156285127709404384e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.756 y[1] (analytic) = 0.64733006264025070248913553068554 y[1] (numeric) = 0.64733006264025070248913553068391 absolute error = 1.63e-30 relative error = 2.5180353795894405400337542963912e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.757 y[1] (analytic) = 0.6479660767299757804353042496109 y[1] (numeric) = 0.64796607672997578043530424960927 absolute error = 1.63e-30 relative error = 2.5155637903545113354069689032746e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.758 y[1] (analytic) = 0.6486014789748657639787900755522 y[1] (numeric) = 0.64860147897486576397879007555057 absolute error = 1.63e-30 relative error = 2.5130994190396609224243048323234e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.255 Order of pole = 1.87e-28 TOP MAIN SOLVE Loop x[1] = 0.759 y[1] (analytic) = 0.64923626974505765009352526562472 y[1] (numeric) = 0.64923626974505765009352526562308 absolute error = 1.64e-30 relative error = 2.5260449491584871487661128533395e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.255 Order of pole = 1.04e-28 TOP MAIN SOLVE Loop x[1] = 0.76 y[1] (analytic) = 0.64987044941194757748415541022072 y[1] (numeric) = 0.64987044941194757748415541021908 absolute error = 1.64e-30 relative error = 2.5235798942450718758224710993762e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.256 Order of pole = 8.0e-29 TOP MAIN SOLVE Loop x[1] = 0.761 y[1] (analytic) = 0.65050401834818316216178104497632 y[1] (numeric) = 0.65050401834818316216178104497468 absolute error = 1.64e-30 relative error = 2.5211220126886099655519820433820e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.257 Order of pole = 1.7e-29 TOP MAIN SOLVE Loop x[1] = 0.762 y[1] (analytic) = 0.65113697692765585399810551296651 y[1] (numeric) = 0.65113697692765585399810551296487 absolute error = 1.64e-30 relative error = 2.5186712751873268632737006149458e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.257 Order of pole = 3e-30 TOP MAIN SOLVE Loop memory used=412.0MB, alloc=4.4MB, time=23.78 x[1] = 0.763 y[1] (analytic) = 0.6517693255254933142820855079063 y[1] (numeric) = 0.65176932552549331428208550790466 absolute error = 1.64e-30 relative error = 2.5162276525943272818952854273194e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.258 Order of pole = 1.33e-28 TOP MAIN SOLVE Loop x[1] = 0.764 y[1] (analytic) = 0.65240106451805181430246150010213 y[1] (numeric) = 0.65240106451805181430246150010049 absolute error = 1.64e-30 relative error = 2.5137911159165827964100392358880e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.258 Order of pole = 8.9e-29 TOP MAIN SOLVE Loop x[1] = 0.765 y[1] (analytic) = 0.65303219428290865497883071501561 y[1] (numeric) = 0.65303219428290865497883071501397 absolute error = 1.64e-30 relative error = 2.5113616363139273609916257554557e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.766 y[1] (analytic) = 0.65366271519885460756321549144051 y[1] (numeric) = 0.65366271519885460756321549143887 absolute error = 1.64e-30 relative error = 2.5089391850980606763647999589666e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.767 y[1] (analytic) = 0.65429262764588637543337468413477 y[1] (numeric) = 0.65429262764588637543337468413313 absolute error = 1.64e-30 relative error = 2.5065237337315593358847278987690e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.768 y[1] (analytic) = 0.65492193200519907699840528578902 y[1] (numeric) = 0.65492193200519907699840528578738 absolute error = 1.64e-30 relative error = 2.5041152538268956795028705388851e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.261 Order of pole = 1.707e-27 TOP MAIN SOLVE Loop x[1] = 0.769 y[1] (analytic) = 0.65555062865917874973648561676434 y[1] (numeric) = 0.6555506286591787497364856167627 absolute error = 1.64e-30 relative error = 2.5017137171454642855340790418674e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.261 Order of pole = 6.53e-28 TOP MAIN SOLVE Loop x[1] = 0.77 y[1] (analytic) = 0.65617871799139487538392025922877 y[1] (numeric) = 0.65617871799139487538392025922713 absolute error = 1.64e-30 relative error = 2.4993190955966160308676097529968e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.262 Order of pole = 3.36e-28 TOP MAIN SOLVE Loop x[1] = 0.771 y[1] (analytic) = 0.65680620038659292629396038611918 y[1] (numeric) = 0.65680620038659292629396038611754 absolute error = 1.64e-30 relative error = 2.4969313612366996509843274869826e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.772 y[1] (analytic) = 0.65743307623068693298319124553388 y[1] (numeric) = 0.65743307623068693298319124553224 absolute error = 1.64e-30 relative error = 2.4945504862681107318535357752389e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.263 Order of pole = 1.40e-28 TOP MAIN SOLVE Loop x[1] = 0.773 y[1] (analytic) = 0.65805934591075207288260129832832 y[1] (numeric) = 0.65805934591075207288260129832668 absolute error = 1.64e-30 relative error = 2.4921764430383480664857610352787e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.264 Order of pole = 1.71e-28 TOP MAIN SOLVE Loop x[1] = 0.774 y[1] (analytic) = 0.65868500981501728030977486128001 y[1] (numeric) = 0.65868500981501728030977486127836 absolute error = 1.65e-30 relative error = 2.5049909674783399761345588241211e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.775 y[1] (analytic) = 0.65931006833285787767798207047818 y[1] (numeric) = 0.65931006833285787767798207047653 absolute error = 1.65e-30 relative error = 2.5026161122826726077279728701006e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.265 Order of pole = 2.3e-29 TOP MAIN SOLVE Loop x[1] = 0.776 y[1] (analytic) = 0.65993452185478822795727653968384 y[1] (numeric) = 0.65993452185478822795727653968219 absolute error = 1.65e-30 relative error = 2.5002480478859771630190348582006e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.266 Order of pole = 2.34e-28 TOP MAIN SOLVE Loop x[1] = 0.777 y[1] (analytic) = 0.66055837077245440840205223623725 y[1] (numeric) = 0.6605583707724544084020522362356 absolute error = 1.65e-30 relative error = 2.4978867470417434428369189615446e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.266 Order of pole = 4.5e-29 TOP MAIN SOLVE Loop x[1] = 0.778 y[1] (analytic) = 0.66118161547862690555885682244484 y[1] (numeric) = 0.66118161547862690555885682244319 absolute error = 1.65e-30 relative error = 2.4955321826448110685869179499657e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.779 y[1] (analytic) = 0.66180425636719333156760900287767 y[1] (numeric) = 0.66180425636719333156760900287602 absolute error = 1.65e-30 relative error = 2.4931843277304631605277885847559e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.78 y[1] (analytic) = 0.66242629383315116176872226712701 y[1] (numeric) = 0.66242629383315116176872226712536 absolute error = 1.65e-30 relative error = 2.4908431554735269712996746968850e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.781 y[1] (analytic) = 0.66304772827260049362799681260274 y[1] (numeric) = 0.66304772827260049362799681260109 absolute error = 1.65e-30 relative error = 2.4885086391874814124390724916211e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.269 Order of pole = 1.40e-28 TOP MAIN SOLVE Loop x[1] = 0.782 y[1] (analytic) = 0.66366856008273682699050536209043 y[1] (numeric) = 0.66366856008273682699050536208878 absolute error = 1.65e-30 relative error = 2.4861807523235714122541532027120e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.269 Order of pole = 4.9e-29 TOP MAIN SOLVE Loop x[1] = 0.783 y[1] (analytic) = 0.66428878966184386567406704501692 y[1] (numeric) = 0.66428878966184386567406704501526 absolute error = 1.66e-30 relative error = 2.4989131622182316443303374551467e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.784 y[1] (analytic) = 0.6649084174092863404122764785805 y[1] (numeric) = 0.66490841740928634041227647857884 absolute error = 1.66e-30 relative error = 2.4965844265710086454184111878113e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.785 y[1] (analytic) = 0.66552744372550285315643265380409 y[1] (numeric) = 0.66552744372550285315643265380242 absolute error = 1.67e-30 relative error = 2.5092879576109447185668975761330e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.786 y[1] (analytic) = 0.66614586901199874274509419075016 y[1] (numeric) = 0.66614586901199874274509419074849 absolute error = 1.67e-30 relative error = 2.5069584271037784530050666645057e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.787 y[1] (analytic) = 0.6667636936713389719493739650383 y[1] (numeric) = 0.66676369367133897194937396503663 absolute error = 1.67e-30 relative error = 2.5046354740832305572478601025678e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.788 y[1] (analytic) = 0.6673809181071410359014770127346 y[1] (numeric) = 0.66738091810714103590147701273293 absolute error = 1.67e-30 relative error = 2.5023190724969138875149221593454e-28 % Correct digits = 29 h = 0.001 NO POLE memory used=415.8MB, alloc=4.4MB, time=23.98 TOP MAIN SOLVE Loop x[1] = 0.789 y[1] (analytic) = 0.66799754272406789191338098080874 y[1] (numeric) = 0.66799754272406789191338098080707 absolute error = 1.67e-30 relative error = 2.5000091964257910568477988195940e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.79 y[1] (analytic) = 0.66861356792782091069195819371662 y[1] (numeric) = 0.66861356792782091069195819371495 absolute error = 1.67e-30 relative error = 2.4977058200833312007407701342635e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.791 y[1] (analytic) = 0.66922899412513284895624264117225 y[1] (numeric) = 0.66922899412513284895624264117058 absolute error = 1.67e-30 relative error = 2.4954089178146731233868740622820e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.275 Order of pole = 3.3e-29 TOP MAIN SOLVE Loop x[1] = 0.792 y[1] (analytic) = 0.66984382172376084346195384560104 y[1] (numeric) = 0.66984382172376084346195384559937 absolute error = 1.67e-30 relative error = 2.4931184640957947682187497311720e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.276 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = 0.793 y[1] (analytic) = 0.67045805113247942643780262777169 y[1] (numeric) = 0.67045805113247942643780262777001 absolute error = 1.68e-30 relative error = 2.5057496097813876932613849829258e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.276 Order of pole = 5.2e-29 TOP MAIN SOLVE Loop x[1] = 0.794 y[1] (analytic) = 0.67107168276107356243752124321432 y[1] (numeric) = 0.67107168276107356243752124321265 absolute error = 1.67e-30 relative error = 2.4885568008605453422201529073194e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.795 y[1] (analytic) = 0.67168471702033170661098219765699 y[1] (numeric) = 0.67168471702033170661098219765531 absolute error = 1.68e-30 relative error = 2.5011734783138543178372671977608e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.278 Order of pole = 4.7e-29 TOP MAIN SOLVE Loop x[1] = 0.796 y[1] (analytic) = 0.6722971543220388843971962541381 y[1] (numeric) = 0.67229715432203888439719625413642 absolute error = 1.68e-30 relative error = 2.4988950037936032089057162976983e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.278 Order of pole = 1.6e-29 TOP MAIN SOLVE Loop x[1] = 0.797 y[1] (analytic) = 0.67290899507896979264141070485116 y[1] (numeric) = 0.67290899507896979264141070484948 absolute error = 1.68e-30 relative error = 2.4966228899984346443058382481455e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.798 y[1] (analytic) = 0.67352023970488192213796388420386 y[1] (numeric) = 0.67352023970488192213796388420218 absolute error = 1.68e-30 relative error = 2.4943571120240274834235575236177e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.799 y[1] (analytic) = 0.67413088861450870159999113297004 y[1] (numeric) = 0.67413088861450870159999113296836 absolute error = 1.68e-30 relative error = 2.4920976450920081737214725312131e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.28 Order of pole = 3.8e-29 TOP MAIN SOLVE Loop x[1] = 0.8 y[1] (analytic) = 0.67474094222355266305652097360981 y[1] (numeric) = 0.67474094222355266305652097360813 absolute error = 1.68e-30 relative error = 2.4898444645491641729271214454401e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.801 y[1] (analytic) = 0.67535040094867862867694811055325 y[1] (numeric) = 0.67535040094867862867694811055157 absolute error = 1.68e-30 relative error = 2.4875975458666632484219634430626e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.281 Order of pole = 2.5e-29 TOP MAIN SOLVE Loop x[1] = 0.802 y[1] (analytic) = 0.67595926520750691902232201310071 y[1] (numeric) = 0.67595926520750691902232201309903 absolute error = 1.68e-30 relative error = 2.4853568646392786026059204651899e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.803 y[1] (analytic) = 0.67656753541860658272234625909796 y[1] (numeric) = 0.67656753541860658272234625909628 absolute error = 1.68e-30 relative error = 2.4831223965846197735225200670926e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.804 y[1] (analytic) = 0.67717521200148864757644450110429 y[1] (numeric) = 0.6771752120014886475764445011026 absolute error = 1.69e-30 relative error = 2.4956613444325024108944855027666e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.283 Order of pole = 6.2e-29 TOP MAIN SOLVE Loop x[1] = 0.805 y[1] (analytic) = 0.67778229537659939307671384969174 y[1] (numeric) = 0.67778229537659939307671384969005 absolute error = 1.69e-30 relative error = 2.4934260034942005683438335893562e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.806 y[1] (analytic) = 0.67838878596531364435005563700132 y[1] (numeric) = 0.67838878596531364435005563699963 absolute error = 1.69e-30 relative error = 2.4911968401647643680123754562556e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.284 Order of pole = 4.3e-29 TOP MAIN SOLVE Loop x[1] = 0.807 y[1] (analytic) = 0.67899468418992808751624691384673 y[1] (numeric) = 0.67899468418992808751624691384504 absolute error = 1.69e-30 relative error = 2.4889738305039129886536851022057e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.285 Order of pole = 9.2e-29 TOP MAIN SOLVE Loop x[1] = 0.808 y[1] (analytic) = 0.6795999904736546064581936315132 y[1] (numeric) = 0.67959999047365460645819363151151 absolute error = 1.69e-30 relative error = 2.4867569506911501207691390106294e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.286 Order of pole = 1.00e-28 TOP MAIN SOLVE Loop x[1] = 0.809 y[1] (analytic) = 0.68020470524061364100008825087016 y[1] (numeric) = 0.68020470524061364100008825086847 absolute error = 1.69e-30 relative error = 2.4845461770250241037558820457151e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.286 Order of pole = 6.3e-29 TOP MAIN SOLVE Loop x[1] = 0.81 y[1] (analytic) = 0.68080882891582756648868049233182 y[1] (numeric) = 0.68080882891582756648868049233013 absolute error = 1.69e-30 relative error = 2.4823414859223935294708005894635e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.811 y[1] (analytic) = 0.68141236192521409477236007630161 y[1] (numeric) = 0.68141236192521409477236007629992 absolute error = 1.69e-30 relative error = 2.4801428539176982650985386588852e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.812 y[1] (analytic) = 0.68201530469557969657224459067786 y[1] (numeric) = 0.68201530469557969657224459067617 absolute error = 1.69e-30 relative error = 2.4779502576622358486755990548592e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.288 Order of pole = 1.27e-28 TOP MAIN SOLVE Loop x[1] = 0.813 y[1] (analytic) = 0.68261765765461304523896404534848 y[1] (numeric) = 0.68261765765461304523896404534679 absolute error = 1.69e-30 relative error = 2.4757636739234432110814403382212e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.289 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = 0.814 y[1] (analytic) = 0.68321942123087848188833621884604 y[1] (numeric) = 0.68321942123087848188833621884435 absolute error = 1.69e-30 relative error = 2.4735830795841836787612747335870e-28 % Correct digits = 29 h = 0.001 memory used=419.6MB, alloc=4.4MB, time=24.20 NO POLE TOP MAIN SOLVE Loop x[1] = 0.815 y[1] (analytic) = 0.68382059585380950190863355487523 y[1] (numeric) = 0.68382059585380950190863355487353 absolute error = 1.70e-30 relative error = 2.4860321702908086746863267143249e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.29 Order of pole = 8.8e-29 TOP MAIN SOLVE Loop x[1] = 0.816 y[1] (analytic) = 0.68442118195370226283165311158532 y[1] (numeric) = 0.68442118195370226283165311158363 absolute error = 1.69e-30 relative error = 2.4692397672086078331629633595345e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.817 y[1] (analytic) = 0.68502117996170911355931588948628 y[1] (numeric) = 0.68502117996170911355931588948459 absolute error = 1.69e-30 relative error = 2.4670770035088062027246791597958e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.291 Order of pole = 1.13e-28 TOP MAIN SOLVE Loop x[1] = 0.818 y[1] (analytic) = 0.68562059030983214493704074996715 y[1] (numeric) = 0.68562059030983214493704074996546 absolute error = 1.69e-30 relative error = 2.4649201378801772954077683677139e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.292 Order of pole = 9.4e-29 TOP MAIN SOLVE Loop x[1] = 0.819 y[1] (analytic) = 0.68621941343091676166466107056475 y[1] (numeric) = 0.68621941343091676166466107056305 absolute error = 1.70e-30 relative error = 2.4773417462797309658105838445938e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.293 Order of pole = 4.0e-29 TOP MAIN SOLVE Loop x[1] = 0.82 y[1] (analytic) = 0.6868176497586452755351792504699 y[1] (numeric) = 0.68681764975864527553517925046821 absolute error = 1.69e-30 relative error = 2.4606240107456225537084433730627e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.293 Order of pole = 1.97e-28 TOP MAIN SOLVE Loop x[1] = 0.821 y[1] (analytic) = 0.68741529972753051999118516519992 y[1] (numeric) = 0.68741529972753051999118516519823 absolute error = 1.69e-30 relative error = 2.4584847044717539004980593194320e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.822 y[1] (analytic) = 0.68801236377290948598829965778962 y[1] (numeric) = 0.68801236377290948598829965778793 absolute error = 1.69e-30 relative error = 2.4563512067318227120261315965806e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.294 Order of pole = 1.59e-28 TOP MAIN SOLVE Loop x[1] = 0.823 y[1] (analytic) = 0.68860884233093697915454313007522 y[1] (numeric) = 0.68860884233093697915454313007353 absolute error = 1.69e-30 relative error = 2.4542234954162942483053795193716e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.824 y[1] (analytic) = 0.68920473583857929823407224641217 y[1] (numeric) = 0.68920473583857929823407224641048 absolute error = 1.69e-30 relative error = 2.4521015485242108852312011204697e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.296 Order of pole = 8.2e-29 TOP MAIN SOLVE Loop x[1] = 0.825 y[1] (analytic) = 0.68980004473360793480327466816595 y[1] (numeric) = 0.68980004473360793480327466816426 absolute error = 1.69e-30 relative error = 2.4499853441625343117122693008078e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.296 Order of pole = 1.06e-28 TOP MAIN SOLVE Loop x[1] = 0.826 y[1] (analytic) = 0.69039476945459329424676258516441 y[1] (numeric) = 0.69039476945459329424676258516272 absolute error = 1.69e-30 relative error = 2.4478748605454924923406973298018e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.297 Order of pole = 2.77e-28 TOP MAIN SOLVE Loop x[1] = 0.827 y[1] (analytic) = 0.69098891044089843798036058456422 y[1] (numeric) = 0.69098891044089843798036058456253 absolute error = 1.69e-30 relative error = 2.4457700759939313553312568540906e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.828 y[1] (analytic) = 0.69158246813267284690774208276376 y[1] (numeric) = 0.69158246813267284690774208276208 absolute error = 1.68e-30 relative error = 2.4292113774025133482986602710285e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.829 y[1] (analytic) = 0.69217544297084620609693112653644 y[1] (numeric) = 0.69217544297084620609693112653476 absolute error = 1.68e-30 relative error = 2.4271303136519393348950398280989e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.83 y[1] (analytic) = 0.69276783539712221066245282985001 y[1] (numeric) = 0.69276783539712221066245282984833 absolute error = 1.68e-30 relative error = 2.4250548512214872916338809502122e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.831 y[1] (analytic) = 0.69335964585397239283848603721595 y[1] (numeric) = 0.69335964585397239283848603721427 absolute error = 1.68e-30 relative error = 2.4229849689778783249352165381619e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.3 Order of pole = 1.53e-28 TOP MAIN SOLVE Loop x[1] = 0.832 y[1] (analytic) = 0.69395087478462997022794597715901 y[1] (numeric) = 0.69395087478462997022794597715733 absolute error = 1.68e-30 relative error = 2.4209206458906673351788097081735e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.301 Order of pole = 7.9e-29 TOP MAIN SOLVE Loop x[1] = 0.833 y[1] (analytic) = 0.69454152263308371521200267474446 y[1] (numeric) = 0.69454152263308371521200267474279 absolute error = 1.67e-30 relative error = 2.4044638737635805130520456407372e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.301 Order of pole = 7.1e-29 TOP MAIN SOLVE Loop x[1] = 0.834 y[1] (analytic) = 0.69513158984407184550412271423008 y[1] (numeric) = 0.69513158984407184550412271422841 absolute error = 1.67e-30 relative error = 2.4024228281361883696150854320377e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.835 y[1] (analytic) = 0.69572107686307593583230756595716 y[1] (numeric) = 0.69572107686307593583230756595549 absolute error = 1.67e-30 relative error = 2.4003872464664036293994243966351e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.836 y[1] (analytic) = 0.69630998413631485073279109964804 y[1] (numeric) = 0.69630998413631485073279109964636 absolute error = 1.68e-30 relative error = 2.4127185280616493845750125134922e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.303 Order of pole = 9.6e-29 TOP MAIN SOLVE Loop x[1] = 0.837 y[1] (analytic) = 0.69689831211073869843805208337957 y[1] (numeric) = 0.6968983121107386984380520833779 absolute error = 1.67e-30 relative error = 2.3963323930889837910303093682563e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.304 Order of pole = 1.28e-28 TOP MAIN SOLVE Loop x[1] = 0.838 y[1] (analytic) = 0.6974860612340228058415943976546 y[1] (numeric) = 0.69748606123402280584159439765293 absolute error = 1.67e-30 relative error = 2.3943130806734159735381083551359e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.839 y[1] (analytic) = 0.69807323195456171452154836115342 y[1] (numeric) = 0.69807323195456171452154836115175 absolute error = 1.67e-30 relative error = 2.3922991507984107486359477173798e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=423.4MB, alloc=4.4MB, time=24.41 x[1] = 0.84 y[1] (analytic) = 0.69865982472146319780475095283515 y[1] (numeric) = 0.69865982472146319780475095283348 absolute error = 1.67e-30 relative error = 2.3902905833547590852315731564041e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.841 y[1] (analytic) = 0.69924583998454229885257080795234 y[1] (numeric) = 0.69924583998454229885257080795068 absolute error = 1.66e-30 relative error = 2.3739862364239397831394341125834e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.842 y[1] (analytic) = 0.69983127819431538974935564708506 y[1] (numeric) = 0.69983127819431538974935564708339 absolute error = 1.67e-30 relative error = 2.3862894558083859097532587035852e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.843 y[1] (analytic) = 0.70041613980199425157399525129839 y[1] (numeric) = 0.70041613980199425157399525129672 absolute error = 1.67e-30 relative error = 2.3842968559692306397107833077028e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.844 y[1] (analytic) = 0.70100042525948017543471220675283 y[1] (numeric) = 0.70100042525948017543471220675116 absolute error = 1.67e-30 relative error = 2.3823095390874233818871179766600e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.309 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = 0.845 y[1] (analytic) = 0.70158413501935808444681539228811 y[1] (numeric) = 0.70158413501935808444681539228644 absolute error = 1.67e-30 relative error = 2.3803274855323252421094007549439e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.309 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = 0.846 y[1] (analytic) = 0.70216726953489067663277755736639 y[1] (numeric) = 0.70216726953489067663277755736471 absolute error = 1.68e-30 relative error = 2.3925922965802962934402943782298e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.31 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = 0.847 y[1] (analytic) = 0.70274982926001258872362831897636 y[1] (numeric) = 0.70274982926001258872362831897469 absolute error = 1.67e-30 relative error = 2.3763790903492507586644895220297e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.31 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = 0.848 y[1] (analytic) = 0.70333181464932458084028747831459 y[1] (numeric) = 0.70333181464932458084028747831291 absolute error = 1.68e-30 relative error = 2.3886307501070943158053838849057e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.849 y[1] (analytic) = 0.70391322615808774203310070489447 y[1] (numeric) = 0.70391322615808774203310070489279 absolute error = 1.68e-30 relative error = 2.3866578117438280035041664248812e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.85 y[1] (analytic) = 0.704494064242217716657480340782 y[1] (numeric) = 0.70449406424221771665748034078032 absolute error = 1.68e-30 relative error = 2.3846900708909107516526053683059e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.312 Order of pole = 4.2e-29 TOP MAIN SOLVE Loop x[1] = 0.851 y[1] (analytic) = 0.7050743293582789515631983244893 y[1] (numeric) = 0.70507432935827895156319832448763 absolute error = 1.67e-30 relative error = 2.3685446065238893722990059469038e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.852 y[1] (analytic) = 0.70565402196347896407452600621932 y[1] (numeric) = 0.70565402196347896407452600621765 absolute error = 1.67e-30 relative error = 2.3665988544261859840766050883836e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.853 y[1] (analytic) = 0.70623314251566263073806690717074 y[1] (numeric) = 0.70623314251566263073806690716907 absolute error = 1.67e-30 relative error = 2.3646582119487025229837750362920e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.314 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = 0.854 y[1] (analytic) = 0.70681169147330649681478324898522 y[1] (numeric) = 0.70681169147330649681478324898355 absolute error = 1.67e-30 relative error = 2.3627226602873324780850257130377e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.855 y[1] (analytic) = 0.70738966929551310649237532863155 y[1] (numeric) = 0.70738966929551310649237532862988 absolute error = 1.67e-30 relative error = 2.3607921807271332497936376973881e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.316 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = 0.856 y[1] (analytic) = 0.70796707644200535379383452253935 y[1] (numeric) = 0.70796707644200535379383452253768 absolute error = 1.67e-30 relative error = 2.3588667546418052151934176009566e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.316 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = 0.857 y[1] (analytic) = 0.7085439133731208541576558550652 y[1] (numeric) = 0.70854391337312085415765585506353 absolute error = 1.67e-30 relative error = 2.3569463634931744303188247686056e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.317 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = 0.858 y[1] (analytic) = 0.70912018054980633666486464382927 y[1] (numeric) = 0.70912018054980633666486464382761 absolute error = 1.66e-30 relative error = 2.3409290068616329581043452944057e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.318 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = 0.859 y[1] (analytic) = 0.70969587843361205688768372151701 y[1] (numeric) = 0.70969587843361205688768372151535 absolute error = 1.66e-30 relative error = 2.3390300697022906484377911618754e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.86 y[1] (analytic) = 0.71027100748668623033434311380219 y[1] (numeric) = 0.71027100748668623033434311380053 absolute error = 1.66e-30 relative error = 2.3371360825693227968067155233656e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.861 y[1] (analytic) = 0.71084556817176948646421280950628 y[1] (numeric) = 0.71084556817176948646421280950462 absolute error = 1.66e-30 relative error = 2.3352470273808836877206303398698e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.32 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = 0.862 y[1] (analytic) = 0.71141956095218934324712137534374 y[1] (numeric) = 0.71141956095218934324712137534208 absolute error = 1.66e-30 relative error = 2.3333628861402077922751349299295e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.32 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = 0.863 y[1] (analytic) = 0.71199298629185470224040862698539 y[1] (numeric) = 0.71199298629185470224040862698373 absolute error = 1.66e-30 relative error = 2.3314836409351166504279267544610e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.864 y[1] (analytic) = 0.7125658446552503641569493540621 y[1] (numeric) = 0.71256584465525036415694935406044 absolute error = 1.66e-30 relative error = 2.3296092739375291680540158315677e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.865 y[1] (analytic) = 0.71313813650743156489707719248401 y[1] (numeric) = 0.71313813650743156489707719248236 absolute error = 1.65e-30 relative error = 2.3137172386836802692674899313048e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=427.2MB, alloc=4.4MB, time=24.63 x[1] = 0.866 y[1] (analytic) = 0.7137098623140185320170331264127 y[1] (numeric) = 0.71370986231401853201703312641104 absolute error = 1.66e-30 relative error = 2.3258751036701131002314023612727e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.867 y[1] (analytic) = 0.71428102254119106160626176773712 y[1] (numeric) = 0.71428102254119106160626176773546 absolute error = 1.66e-30 relative error = 2.3240152651602490867505742842109e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.324 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = 0.868 y[1] (analytic) = 0.71485161765568311554558048630709 y[1] (numeric) = 0.71485161765568311554558048630543 absolute error = 1.66e-30 relative error = 2.3221602343768619365488876995355e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.324 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.869 y[1] (analytic) = 0.7154216481247774391179516328036 y[1] (numeric) = 0.71542164812477743911795163280195 absolute error = 1.65e-30 relative error = 2.3063322228575081802341927677805e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.325 Order of pole = 3.4e-29 TOP MAIN SOLVE Loop x[1] = 0.87 y[1] (analytic) = 0.71599111441630019894329649130695 y[1] (numeric) = 0.7159911144163001989432964913053 absolute error = 1.65e-30 relative error = 2.3044978726378957227623365041190e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.871 y[1] (analytic) = 0.71656001699861564120850120369166 y[1] (numeric) = 0.71656001699861564120850120369001 absolute error = 1.65e-30 relative error = 2.3026682494945677649149281917223e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.326 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = 0.872 y[1] (analytic) = 0.71712835634062077016347970626342 y[1] (numeric) = 0.71712835634062077016347970626176 absolute error = 1.66e-30 relative error = 2.3147878414272816492672346500283e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.873 y[1] (analytic) = 0.71769613291174004685387669388919 y[1] (numeric) = 0.71769613291174004685387669388754 absolute error = 1.65e-30 relative error = 2.2990231162397968117813153410254e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.874 y[1] (analytic) = 0.71826334718192010806071476159228 y[1] (numeric) = 0.71826334718192010806071476159062 absolute error = 1.66e-30 relative error = 2.3111300423625249708740117190124e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.875 y[1] (analytic) = 0.7188299996216245054170141515259 y[1] (numeric) = 0.71882999962162450541701415152425 absolute error = 1.65e-30 relative error = 2.2953966874901184659700081801274e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.876 y[1] (analytic) = 0.71939609070182846467114093774452 y[1] (numeric) = 0.71939609070182846467114093774286 absolute error = 1.66e-30 relative error = 2.3074909934255232591571066830025e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.877 y[1] (analytic) = 0.71996162089401366506636999560608 y[1] (numeric) = 0.71996162089401366506636999560442 absolute error = 1.66e-30 relative error = 2.3056784581637726065903743766483e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.33 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = 0.878 y[1] (analytic) = 0.72052659067016303880588271031575 y[1] (numeric) = 0.72052659067016303880588271031409 absolute error = 1.66e-30 relative error = 2.3038705600802756001568124345661e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.331 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = 0.879 y[1] (analytic) = 0.72109100050275559057215606341951 y[1] (numeric) = 0.72109100050275559057215606341785 absolute error = 1.66e-30 relative error = 2.3020672825518870764214052777925e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.331 Order of pole = 3.9e-29 TOP MAIN SOLVE Loop x[1] = 0.88 y[1] (analytic) = 0.7216548508647612370694394803436 y[1] (numeric) = 0.72165485086476123706943948034194 absolute error = 1.66e-30 relative error = 2.3002686090321666542687889292263e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.881 y[1] (analytic) = 0.72221814222963566655775860972884 y[1] (numeric) = 0.72221814222963566655775860972717 absolute error = 1.67e-30 relative error = 2.3123207551175150098946832089083e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.333 Order of pole = 3.0e-29 TOP MAIN SOLVE Loop x[1] = 0.882 y[1] (analytic) = 0.72278087507131521834663101971347 y[1] (numeric) = 0.72278087507131521834663101971181 absolute error = 1.66e-30 relative error = 2.2966850082138814300610720902531e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.883 y[1] (analytic) = 0.72334304986421178221642762087224 y[1] (numeric) = 0.72334304986421178221642762087058 absolute error = 1.66e-30 relative error = 2.2949000482020534897470725539445e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.884 y[1] (analytic) = 0.72390466708320771773506544363048 y[1] (numeric) = 0.72390466708320771773506544362883 absolute error = 1.65e-30 relative error = 2.2793056531162606506355942509849e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.885 y[1] (analytic) = 0.72446572720365079343747219306286 y[1] (numeric) = 0.72446572720365079343747219306121 absolute error = 1.65e-30 relative error = 2.2775404522844696003215187125890e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.335 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = 0.886 y[1] (analytic) = 0.72502623070134914583502075949023 y[1] (numeric) = 0.72502623070134914583502075948858 absolute error = 1.65e-30 relative error = 2.2757797306228270249188455285171e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.336 Order of pole = 1.0e-29 TOP MAIN SOLVE Loop x[1] = 0.887 y[1] (analytic) = 0.72558617805256625822189256265554 y[1] (numeric) = 0.72558617805256625822189256265389 absolute error = 1.65e-30 relative error = 2.2740234722063064092124403343852e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.337 Order of pole = 3.3e-29 TOP MAIN SOLVE Loop x[1] = 0.888 y[1] (analytic) = 0.7261455697340159592450922339541 y[1] (numeric) = 0.72614556973401595924509223395245 absolute error = 1.65e-30 relative error = 2.2722716611827405324999118684962e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.889 y[1] (analytic) = 0.72670440622285744120460267869537 y[1] (numeric) = 0.72670440622285744120460267869372 absolute error = 1.65e-30 relative error = 2.2705242817724112826849740154841e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.338 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.89 y[1] (analytic) = 0.72726268799669029804993899218082 y[1] (numeric) = 0.72726268799669029804993899217918 absolute error = 1.64e-30 relative error = 2.2550311284599595475511486753776e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.891 y[1] (analytic) = 0.72782041553354958303913201300904 y[1] (numeric) = 0.7278204155335495830391320130074 absolute error = 1.64e-30 relative error = 2.2533031019715915353683429890576e-28 % Correct digits = 29 h = 0.001 NO POLE memory used=431.0MB, alloc=4.4MB, time=24.83 TOP MAIN SOLVE Loop x[1] = 0.892 y[1] (analytic) = 0.72837758931190088602594746799975 y[1] (numeric) = 0.72837758931190088602594746799811 absolute error = 1.64e-30 relative error = 2.2515794336139718594472038454725e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.893 y[1] (analytic) = 0.72893420981063543034092467901531 y[1] (numeric) = 0.72893420981063543034092467901367 absolute error = 1.64e-30 relative error = 2.2498601079870346476701725200774e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.894 y[1] (analytic) = 0.72949027750906518923159964632426 y[1] (numeric) = 0.72949027750906518923159964632262 absolute error = 1.64e-30 relative error = 2.2481451097607262341613917666008e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.895 y[1] (analytic) = 0.73004579288691802182706097959097 y[1] (numeric) = 0.73004579288691802182706097958933 absolute error = 1.64e-30 relative error = 2.2464344236746135847740054043368e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.896 y[1] (analytic) = 0.73060075642433282859177359970418 y[1] (numeric) = 0.73060075642433282859177359970254 absolute error = 1.64e-30 relative error = 2.2447280345374953371735248275396e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.343 Order of pole = 1.9e-29 TOP MAIN SOLVE Loop x[1] = 0.897 y[1] (analytic) = 0.73115516860185472623339436611259 y[1] (numeric) = 0.73115516860185472623339436611095 absolute error = 1.64e-30 relative error = 2.2430259272270154351618821779478e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.898 y[1] (analytic) = 0.73170902990043024202909577878 y[1] (numeric) = 0.73170902990043024202909577877835 absolute error = 1.65e-30 relative error = 2.2549947213642139671720347458452e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.344 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = 0.899 y[1] (analytic) = 0.73226234080140252753470864499028 y[1] (numeric) = 0.73226234080140252753470864498863 absolute error = 1.65e-30 relative error = 2.2532908058527317585646973259154e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.345 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = 0.9 y[1] (analytic) = 0.73281510178650659164079207273428 y[1] (numeric) = 0.73281510178650659164079207273263 absolute error = 1.65e-30 relative error = 2.2515911530446323546085128696316e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.901 y[1] (analytic) = 0.73336731333786455293953933803141 y[1] (numeric) = 0.73336731333786455293953933802976 absolute error = 1.65e-30 relative error = 2.2498957479985748682282640047162e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.346 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = 0.902 y[1] (analytic) = 0.73391897593798091136623105704051 y[1] (numeric) = 0.73391897593798091136623105703885 absolute error = 1.66e-30 relative error = 2.2618300581184000328245604745648e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.903 y[1] (analytic) = 0.73447009006973783907875265898499 y[1] (numeric) = 0.73447009006973783907875265898333 absolute error = 1.66e-30 relative error = 2.2601328800773673668761198608638e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.347 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = 0.904 y[1] (analytic) = 0.73502065621639049053850138657306 y[1] (numeric) = 0.73502065621639049053850138657141 absolute error = 1.65e-30 relative error = 2.2448348710274056312785394718799e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.905 y[1] (analytic) = 0.73557067486156233175581893057822 y[1] (numeric) = 0.73557067486156233175581893057656 absolute error = 1.66e-30 relative error = 2.2567511956786740762021585985890e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.349 Order of pole = 1.1e-29 TOP MAIN SOLVE Loop x[1] = 0.906 y[1] (analytic) = 0.73612014648924048866289931843169 y[1] (numeric) = 0.73612014648924048866289931843003 absolute error = 1.66e-30 relative error = 2.2550666598611608781620187961566e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.349 Order of pole = 1e-30 TOP MAIN SOLVE Loop x[1] = 0.907 y[1] (analytic) = 0.73666907158377111457693780696961 y[1] (numeric) = 0.73666907158377111457693780696795 absolute error = 1.66e-30 relative error = 2.2533863087684024173696549798215e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.908 y[1] (analytic) = 0.73721745062985477671610526080511 y[1] (numeric) = 0.73721745062985477671610526080346 absolute error = 1.65e-30 relative error = 2.2381456089926971983500570631499e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.909 y[1] (analytic) = 0.73776528411254186173075381412421 y[1] (numeric) = 0.73776528411254186173075381412256 absolute error = 1.65e-30 relative error = 2.2364836561600829751232116610407e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.351 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = 0.91 y[1] (analytic) = 0.73831257251722800021208349902745 y[1] (numeric) = 0.7383125725172280002120834990258 absolute error = 1.65e-30 relative error = 2.2348258196043362383699443446045e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.911 y[1] (analytic) = 0.73885931632964951014032596188535 y[1] (numeric) = 0.7388593163296495101403259618837 absolute error = 1.65e-30 relative error = 2.2331720850412014242060630657464e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.912 y[1] (analytic) = 0.73940551603587885923433036460311 y[1] (numeric) = 0.73940551603587885923433036460146 absolute error = 1.65e-30 relative error = 2.2315224382501570634208968241163e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.353 Order of pole = 5e-30 TOP MAIN SOLVE Loop x[1] = 0.913 y[1] (analytic) = 0.73995117212232014616426806429228 y[1] (numeric) = 0.73995117212232014616426806429062 absolute error = 1.66e-30 relative error = 2.2433912703169393073293070968055e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.914 y[1] (analytic) = 0.74049628507570460058900666675088 y[1] (numeric) = 0.74049628507570460058900666674922 absolute error = 1.66e-30 relative error = 2.2417398080940946019786717953714e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.915 y[1] (analytic) = 0.74104085538308610197954054051997 y[1] (numeric) = 0.74104085538308610197954054051831 absolute error = 1.66e-30 relative error = 2.2400924158788137643599331789090e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.355 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = 0.916 y[1] (analytic) = 0.74158488353183671718970384330967 y[1] (numeric) = 0.74158488353183671718970384330801 absolute error = 1.66e-30 relative error = 2.2384490796173775159059976851423e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.356 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = 0.917 y[1] (analytic) = 0.74212837000964225673523353550388 y[1] (numeric) = 0.74212837000964225673523353550223 absolute error = 1.65e-30 relative error = 2.2233350275755689448385847746990e-28 % Correct digits = 29 h = 0.001 NO POLE memory used=434.8MB, alloc=4.4MB, time=25.03 TOP MAIN SOLVE Loop x[1] = 0.918 y[1] (analytic) = 0.74267131530449784974209372052736 y[1] (numeric) = 0.74267131530449784974209372052571 absolute error = 1.65e-30 relative error = 2.2217096123114627098527683604887e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.919 y[1] (analytic) = 0.74321371990470353752481894339661 y[1] (numeric) = 0.74321371990470353752481894339496 absolute error = 1.65e-30 relative error = 2.2200881870312708309623485476301e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.358 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = 0.92 y[1] (analytic) = 0.74375558429885988575548278111912 y[1] (numeric) = 0.74375558429885988575548278111747 absolute error = 1.65e-30 relative error = 2.2184707380119489478493345548250e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.359 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = 0.921 y[1] (analytic) = 0.74429690897586361518374915613281 y[1] (numeric) = 0.74429690897586361518374915613116 absolute error = 1.65e-30 relative error = 2.2168572515911213057410393157636e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.922 y[1] (analytic) = 0.7448376944249032508683172811079 y[1] (numeric) = 0.74483769442490325086831728110624 absolute error = 1.66e-30 relative error = 2.2286734578889738663240117753793e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.923 y[1] (analytic) = 0.74537794113545478987992698462241 y[1] (numeric) = 0.74537794113545478987992698462075 absolute error = 1.66e-30 relative error = 2.2270581249980059573939161383260e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.361 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = 0.924 y[1] (analytic) = 0.7459176495972773874359493569671 y[1] (numeric) = 0.74591764959727738743594935696544 absolute error = 1.66e-30 relative error = 2.2254467378486589295595242294218e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.925 y[1] (analytic) = 0.74645682030040906142644817817025 y[1] (numeric) = 0.74645682030040906142644817816858 absolute error = 1.67e-30 relative error = 2.2372359051229702229158523193962e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.926 y[1] (analytic) = 0.7469954537351624152914604308347 y[1] (numeric) = 0.74699545373516241529146043083303 absolute error = 1.67e-30 relative error = 2.2356227091471388239667789167124e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.363 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = 0.927 y[1] (analytic) = 0.74753355039212037920910934316415 y[1] (numeric) = 0.74753355039212037920910934316249 absolute error = 1.66e-30 relative error = 2.2206361161037432019846553411202e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.928 y[1] (analytic) = 0.7480711107621319695540308372817 y[1] (numeric) = 0.74807111076213196955403083728004 absolute error = 1.66e-30 relative error = 2.2190403774699953144813631878685e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.929 y[1] (analytic) = 0.74860813533630806658546395930997 y[1] (numeric) = 0.74860813533630806658546395930831 absolute error = 1.66e-30 relative error = 2.2174485176470252708078384318036e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.365 Order of pole = 2e-30 TOP MAIN SOLVE Loop x[1] = 0.93 y[1] (analytic) = 0.74914462460601721032422782543075 y[1] (numeric) = 0.74914462460601721032422782542909 absolute error = 1.66e-30 relative error = 2.2158605234243133100649659907335e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.931 y[1] (analytic) = 0.7496805790628814145776818170566 y[1] (numeric) = 0.74968057906288141457768181705494 absolute error = 1.66e-30 relative error = 2.2142763816491545646081760181976e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.932 y[1] (analytic) = 0.75021599919877199907164218315471 y[1] (numeric) = 0.75021599919877199907164218315305 absolute error = 1.66e-30 relative error = 2.2126960792263482200066943827807e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.933 y[1] (analytic) = 0.75075088550580543964810684353473 y[1] (numeric) = 0.75075088550580543964810684353308 absolute error = 1.65e-30 relative error = 2.1977996055087447606235103844942e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.368 Order of pole = 2.3e-29 TOP MAIN SOLVE Loop x[1] = 0.934 y[1] (analytic) = 0.75128523847633923648752101846173 y[1] (numeric) = 0.75128523847633923648752101846008 absolute error = 1.65e-30 relative error = 2.1962364166056546716920495725221e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.935 y[1] (analytic) = 0.75181905860296780031419932224089 y[1] (numeric) = 0.75181905860296780031419932223924 absolute error = 1.65e-30 relative error = 2.1946770052172319815867331769556e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.936 y[1] (analytic) = 0.75235234637851835654340513644584 y[1] (numeric) = 0.75235234637851835654340513644419 absolute error = 1.65e-30 relative error = 2.1931213585527429293885338612217e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.937 y[1] (analytic) = 0.75288510229604686732847540727496 y[1] (numeric) = 0.75288510229604686732847540727331 absolute error = 1.65e-30 relative error = 2.1915694638770959844101675271809e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.938 y[1] (analytic) = 0.75341732684883397146626847621346 y[1] (numeric) = 0.75341732684883397146626847621181 absolute error = 1.65e-30 relative error = 2.1900213085105445465973269623815e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.371 Order of pole = 3.9e-29 TOP MAIN SOLVE Loop x[1] = 0.939 y[1] (analytic) = 0.75394902053038094211910413889271 y[1] (numeric) = 0.75394902053038094211910413889106 absolute error = 1.65e-30 relative error = 2.1884768798283915412089006253635e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.94 y[1] (analytic) = 0.75448018383440566231125881895763 y[1] (numeric) = 0.75448018383440566231125881895598 absolute error = 1.65e-30 relative error = 2.1869361652606958937093838451340e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.372 Order of pole = 2.3e-29 TOP MAIN SOLVE Loop x[1] = 0.941 y[1] (analytic) = 0.75501081725483861815797452710932 y[1] (numeric) = 0.75501081725483861815797452710767 absolute error = 1.65e-30 relative error = 2.1853991522919808709261216647474e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.942 y[1] (analytic) = 0.75554092128581890978483813556302 y[1] (numeric) = 0.75554092128581890978483813556137 absolute error = 1.65e-30 relative error = 2.1838658284609442746423136135903e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.374 Order of pole = 2.5e-29 TOP MAIN SOLVE Loop x[1] = 0.943 y[1] (analytic) = 0.75607049642169027989528742027612 y[1] (numeric) = 0.75607049642169027989528742027447 absolute error = 1.65e-30 relative error = 2.1823361813601704739138729510515e-28 % Correct digits = 29 memory used=438.7MB, alloc=4.4MB, time=25.24 h = 0.001 Complex estimate of poles used Radius of convergence = 1.374 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = 0.944 y[1] (analytic) = 0.75659954315699715994390229283119 y[1] (numeric) = 0.75659954315699715994390229282953 absolute error = 1.66e-30 relative error = 2.1940272301427281671355770038902e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.375 Order of pole = 1.4e-29 TOP MAIN SOLVE Loop x[1] = 0.945 y[1] (analytic) = 0.75712806198648073387304364622577 y[1] (numeric) = 0.75712806198648073387304364622411 absolute error = 1.66e-30 relative error = 2.1924956732479966281963539303144e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.946 y[1] (analytic) = 0.75765605340507501937030825949417 y[1] (numeric) = 0.75765605340507501937030825949251 absolute error = 1.66e-30 relative error = 2.1909677782413145781192330104898e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.947 y[1] (analytic) = 0.75818351790790296660417623058367 y[1] (numeric) = 0.75818351790790296660417623058201 absolute error = 1.66e-30 relative error = 2.1894435328540619293224083483537e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.948 y[1] (analytic) = 0.75871045599027257439513742079615 y[1] (numeric) = 0.7587104559902725743951374207945 absolute error = 1.65e-30 relative error = 2.1747426662868537658534995288482e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.378 Order of pole = 2.2e-29 TOP MAIN SOLVE Loop x[1] = 0.949 y[1] (analytic) = 0.75923686814767302377949538300192 y[1] (numeric) = 0.75923686814767302377949538300027 absolute error = 1.65e-30 relative error = 2.1732348219937494427013120532084e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.95 y[1] (analytic) = 0.75976275487577082892296119539998 y[1] (numeric) = 0.75976275487577082892296119539833 absolute error = 1.65e-30 relative error = 2.1717305690640130002127942003470e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.379 Order of pole = 1.5e-29 TOP MAIN SOLVE Loop x[1] = 0.951 y[1] (analytic) = 0.76028811667040600534106551855479 y[1] (numeric) = 0.76028811667040600534106551855314 absolute error = 1.65e-30 relative error = 2.1702298955111707218617080406766e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.38 Order of pole = 3e-30 TOP MAIN SOLVE Loop x[1] = 0.952 y[1] (analytic) = 0.76081295402758825538333502154699 y[1] (numeric) = 0.76081295402758825538333502154533 absolute error = 1.66e-30 relative error = 2.1818766244873977664537934553516e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.381 Order of pole = 2.7e-29 TOP MAIN SOLVE Loop x[1] = 0.953 y[1] (analytic) = 0.7613372674434931709380990691512 y[1] (numeric) = 0.76133726744349317093809906914954 absolute error = 1.66e-30 relative error = 2.1803740221126191253451640198676e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.954 y[1] (analytic) = 0.7618610574144584533147142118633 y[1] (numeric) = 0.76186105741445845331471421186164 absolute error = 1.66e-30 relative error = 2.1788749849396053902461245343509e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.955 y[1] (analytic) = 0.76238432443698015025991756025857 y[1] (numeric) = 0.76238432443698015025991756025692 absolute error = 1.65e-30 relative error = 2.1642627571317430907546145175572e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.956 y[1] (analytic) = 0.76290706900770891006494554053962 y[1] (numeric) = 0.76290706900770891006494554053796 absolute error = 1.66e-30 relative error = 2.1758875588334944088681903312586e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.383 Order of pole = 3.7e-29 TOP MAIN SOLVE Loop x[1] = 0.957 y[1] (analytic) = 0.76342929162344625271998180524668 y[1] (numeric) = 0.76342929162344625271998180524502 absolute error = 1.66e-30 relative error = 2.1743991463439657311947796870144e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.384 Order of pole = 1.3e-29 TOP MAIN SOLVE Loop x[1] = 0.958 y[1] (analytic) = 0.76395099278114085807242719802459 y[1] (numeric) = 0.76395099278114085807242719802294 absolute error = 1.65e-30 relative error = 2.1598244070515886042464236991109e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.959 y[1] (analytic) = 0.76447217297788487094541563019121 y[1] (numeric) = 0.76447217297788487094541563018956 absolute error = 1.65e-30 relative error = 2.1583519431095528336086089332225e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.386 Order of pole = 8.2e-29 TOP MAIN SOLVE Loop x[1] = 0.96 y[1] (analytic) = 0.76499283271091022317293250580695 y[1] (numeric) = 0.7649928327109102231729325058053 absolute error = 1.65e-30 relative error = 2.1568829529459563074223635611227e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.386 Order of pole = 5.6e-29 TOP MAIN SOLVE Loop x[1] = 0.961 y[1] (analytic) = 0.76551297247758497250782691723027 y[1] (numeric) = 0.76551297247758497250782691722862 absolute error = 1.65e-30 relative error = 2.1554174250761161867053664595285e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.387 Order of pole = 6.0e-29 TOP MAIN SOLVE Loop x[1] = 0.962 y[1] (analytic) = 0.76603259277540965835894521103788 y[1] (numeric) = 0.76603259277540965835894521103624 absolute error = 1.64e-30 relative error = 2.1409010732273446535398660144864e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.963 y[1] (analytic) = 0.76655169410201367431355168102381 y[1] (numeric) = 0.76655169410201367431355168102217 absolute error = 1.64e-30 relative error = 2.1394512759132285138871212383828e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.388 Order of pole = 9e-30 TOP MAIN SOLVE Loop x[1] = 0.964 y[1] (analytic) = 0.76707027695515165740114206715144 y[1] (numeric) = 0.7670702769551516574011420671498 absolute error = 1.64e-30 relative error = 2.1380048859537363818403895108205e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.389 Order of pole = 6e-30 TOP MAIN SOLVE Loop x[1] = 0.965 y[1] (analytic) = 0.76758834183269989405469721325594 y[1] (numeric) = 0.76758834183269989405469721325431 absolute error = 1.63e-30 relative error = 2.1235340757106853973621948209786e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.966 y[1] (analytic) = 0.76810588923265274272536764847069 y[1] (numeric) = 0.76810588923265274272536764846906 absolute error = 1.63e-30 relative error = 2.1221032449424259780902967708784e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.39 Order of pole = 3.3e-29 TOP MAIN SOLVE Loop x[1] = 0.967 y[1] (analytic) = 0.76862291965311907310652499432522 y[1] (numeric) = 0.76862291965311907310652499432359 absolute error = 1.63e-30 relative error = 2.1206757674304351681924873968953e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.968 y[1] (analytic) = 0.7691394335923187219230629478318 y[1] (numeric) = 0.76913943359231872192306294783017 absolute error = 1.63e-30 relative error = 2.1192516321611189343414679768499e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop memory used=442.5MB, alloc=4.4MB, time=25.45 x[1] = 0.969 y[1] (analytic) = 0.76965543154857896524177913729363 y[1] (numeric) = 0.769655431548578965241779137292 absolute error = 1.63e-30 relative error = 2.1178308281673160255096460396833e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.392 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = 0.97 y[1] (analytic) = 0.77017091402033100725861937873632 y[1] (numeric) = 0.77017091402033100725861937873469 absolute error = 1.63e-30 relative error = 2.1164133445280578135805335548995e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.971 y[1] (analytic) = 0.77068588150610648551851776354492 y[1] (numeric) = 0.77068588150610648551851776354329 absolute error = 1.63e-30 relative error = 2.1149991703683296139303529086626e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.394 Order of pole = 3.0e-29 TOP MAIN SOLVE Loop x[1] = 0.972 y[1] (analytic) = 0.77120033450453399252351956889503 y[1] (numeric) = 0.7712003345045339925235195688934 absolute error = 1.63e-30 relative error = 2.1135882948588334753546603589386e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.973 y[1] (analytic) = 0.77171427351433561368482918876728 y[1] (numeric) = 0.77171427351433561368482918876565 absolute error = 1.63e-30 relative error = 2.1121807072157524288020126472682e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.395 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = 0.974 y[1] (analytic) = 0.77222769903432348157438212165215 y[1] (numeric) = 0.77222769903432348157438212165052 absolute error = 1.63e-30 relative error = 2.1107763967005161844631127961939e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.975 y[1] (analytic) = 0.7727406115633963464314985084645 y[1] (numeric) = 0.77274061156339634643149850846287 absolute error = 1.63e-30 relative error = 2.1093753526195682668494841044563e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.397 Order of pole = 6.4e-29 TOP MAIN SOLVE Loop x[1] = 0.976 y[1] (analytic) = 0.77325301160053616288013577772672 y[1] (numeric) = 0.77325301160053616288013577772509 absolute error = 1.63e-30 relative error = 2.1079775643241345775805451390624e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.397 Order of pole = 4.5e-29 TOP MAIN SOLVE Loop x[1] = 0.977 y[1] (analytic) = 0.77376489964480469281221961183374 y[1] (numeric) = 0.77376489964480469281221961183211 absolute error = 1.63e-30 relative error = 2.1065830212099933756820011943817e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.978 y[1] (analytic) = 0.77427627619534012439249568532425 y[1] (numeric) = 0.77427627619534012439249568532262 absolute error = 1.63e-30 relative error = 2.1051917127172466652817372328264e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.399 Order of pole = 6.7e-29 TOP MAIN SOLVE Loop x[1] = 0.979 y[1] (analytic) = 0.77478714175135370714030943074885 y[1] (numeric) = 0.77478714175135370714030943074722 absolute error = 1.63e-30 relative error = 2.1038036283300929806719016388775e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.399 Order of pole = 3.3e-29 TOP MAIN SOLVE Loop x[1] = 0.98 y[1] (analytic) = 0.77529749681212640304368744720001 y[1] (numeric) = 0.77529749681212640304368744719838 absolute error = 1.63e-30 relative error = 2.1024187575766015587876170189948e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.981 y[1] (analytic) = 0.77580734187700555366106206815972 y[1] (numeric) = 0.77580734187700555366106206815808 absolute error = 1.64e-30 relative error = 2.1139268881268221707627929076195e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.982 y[1] (analytic) = 0.77631667744540156316595003639188 y[1] (numeric) = 0.77631667744540156316595003639024 absolute error = 1.64e-30 relative error = 2.1125399564990556052743312929326e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.402 Order of pole = 4e-30 TOP MAIN SOLVE Loop x[1] = 0.983 y[1] (analytic) = 0.77682550401678459728986718157898 y[1] (numeric) = 0.77682550401678459728986718157734 absolute error = 1.64e-30 relative error = 2.1111562268745557212239971813646e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.402 Order of pole = 1.8e-29 TOP MAIN SOLVE Loop x[1] = 0.984 y[1] (analytic) = 0.77733382209068129811873344875008 y[1] (numeric) = 0.77733382209068129811873344874844 absolute error = 1.64e-30 relative error = 2.1097756888914616168495716578195e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.985 y[1] (analytic) = 0.77784163216667151469799656980282 y[1] (numeric) = 0.77784163216667151469799656980118 absolute error = 1.64e-30 relative error = 2.1083983322309367678334038664464e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.986 y[1] (analytic) = 0.77834893474438504940167809417195 y[1] (numeric) = 0.77834893474438504940167809417031 absolute error = 1.64e-30 relative error = 2.1070241466169499841956654599807e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.987 y[1] (analytic) = 0.7788557303234984200205223855848 y[1] (numeric) = 0.77885573032349842002052238558316 absolute error = 1.64e-30 relative error = 2.1056531218160576952823147101628e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.405 Order of pole = 9.3e-29 TOP MAIN SOLVE Loop x[1] = 0.988 y[1] (analytic) = 0.77936201940373163752440753756922 y[1] (numeric) = 0.77936201940373163752440753756758 absolute error = 1.64e-30 relative error = 2.1042852476371875534686337363143e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.406 Order of pole = 8e-30 TOP MAIN SOLVE Loop x[1] = 0.989 y[1] (analytic) = 0.77986780248484499945415694869755 y[1] (numeric) = 0.77986780248484499945415694869591 absolute error = 1.64e-30 relative error = 2.1029205139314233472749316007296e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.99 y[1] (analytic) = 0.78037308006663589889787151727255 y[1] (numeric) = 0.78037308006663589889787151727091 absolute error = 1.64e-30 relative error = 2.1015589105917912146660471595093e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.407 Order of pole = 4.6e-29 TOP MAIN SOLVE Loop x[1] = 0.991 y[1] (analytic) = 0.7808778526489356490068850521564 y[1] (numeric) = 0.78087785264893564900688505215476 absolute error = 1.64e-30 relative error = 2.1002004275530471473806454917924e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.992 y[1] (analytic) = 0.78138212073160632300642953963571 y[1] (numeric) = 0.78138212073160632300642953963407 absolute error = 1.64e-30 relative error = 2.0988450547914657772099873279492e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.409 Order of pole = 1.75e-28 TOP MAIN SOLVE Loop x[1] = 0.993 y[1] (analytic) = 0.78188588481453760965608234358511 y[1] (numeric) = 0.78188588481453760965608234358346 absolute error = 1.65e-30 relative error = 2.1102823724607562305555693714008e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.994 y[1] (analytic) = 0.78238914539764368411505423577632 y[1] (numeric) = 0.78238914539764368411505423577467 absolute error = 1.65e-30 relative error = 2.1089249636271465754309445120662e-28 % Correct digits = 29 memory used=446.3MB, alloc=4.4MB, time=25.66 h = 0.001 Complex estimate of poles used Radius of convergence = 1.41 Order of pole = 2.62e-28 TOP MAIN SOLVE Loop x[1] = 0.995 y[1] (analytic) = 0.78289190298086009416736534307272 y[1] (numeric) = 0.78289190298086009416736534307107 absolute error = 1.65e-30 relative error = 2.1075706540297922890304237314993e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.996 y[1] (analytic) = 0.78339415806414066176194564660061 y[1] (numeric) = 0.78339415806414066176194564659896 absolute error = 1.65e-30 relative error = 2.1062194337488354000509144224816e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.997 y[1] (analytic) = 0.78389591114745439982268756300563 y[1] (numeric) = 0.78389591114745439982268756300398 absolute error = 1.65e-30 relative error = 2.1048712929051462634822536525650e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.412 Order of pole = 2.7e-29 TOP MAIN SOLVE Loop x[1] = 0.998 y[1] (analytic) = 0.78439716273078244428347036784842 y[1] (numeric) = 0.78439716273078244428347036784677 absolute error = 1.65e-30 relative error = 2.1035262216601186098131821557484e-28 % Correct digits = 29 h = 0.001 NO POLE TOP MAIN SOLVE Loop x[1] = 0.999 y[1] (analytic) = 0.78489791331411500130316977438783 y[1] (numeric) = 0.78489791331411500130316977438618 absolute error = 1.65e-30 relative error = 2.1021842102154658220739415195146e-28 % Correct digits = 29 h = 0.001 Complex estimate of poles used Radius of convergence = 1.414 Order of pole = 2.90e-28 Finished! diff ( y , x , 1 ) = 1.0/ (x * x + 1.0) ; Iterations = 3000 Total Elapsed Time = 25 Seconds Elapsed Time(since restart) = 25 Seconds Time to Timeout = 2 Minutes 34 Seconds Percent Done = 100 % > quit memory used=447.1MB, alloc=4.4MB, time=25.70