|\^/| Maple 12 (IBM INTEL LINUX) ._|\| |/|_. Copyright (c) Maplesoft, a division of Waterloo Maple Inc. 2008 \ MAPLE / All rights reserved. Maple is a trademark of <____ ____> Waterloo Maple Inc. | Type ? for help. > #BEGIN OUTFILE1 > # Begin Function number 3 > check_sign := proc( x0 ,xf) > local ret; > if (xf > x0) then # if number 1 > ret := 1.0; > else > ret := -1.0; > fi;# end if 1; > ret;; > end; check_sign := proc(x0, xf) local ret; if x0 < xf then ret := 1.0 else ret := -1.0 end if; ret end proc > # End Function number 3 > # Begin Function number 4 > est_size_answer := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_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_tmp5, > array_tmp6, > array_tmp7, > array_tmp8, > array_tmp9, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local min_size; > min_size := glob_large_float; > if (omniabs(array_y[1]) < min_size) then # if number 1 > min_size := omniabs(array_y[1]); > omniout_float(ALWAYS,"min_size",32,min_size,32,""); > fi;# end if 1; > if (min_size < 1.0) then # if number 1 > min_size := 1.0; > omniout_float(ALWAYS,"min_size",32,min_size,32,""); > fi;# end if 1; > min_size; > end; est_size_answer := proc() local min_size; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_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_tmp5, array_tmp6, array_tmp7, array_tmp8, array_tmp9, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; min_size := glob_large_float; if omniabs(array_y[1]) < min_size then min_size := omniabs(array_y[1]); omniout_float(ALWAYS, "min_size", 32, min_size, 32, "") end if; if min_size < 1.0 then min_size := 1.0; omniout_float(ALWAYS, "min_size", 32, min_size, 32, "") end if; min_size end proc > # End Function number 4 > # Begin Function number 5 > test_suggested_h := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_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_tmp5, > array_tmp6, > array_tmp7, > array_tmp8, > array_tmp9, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local max_value3,hn_div_ho,hn_div_ho_2,hn_div_ho_3,value3,no_terms; > max_value3 := 0.0; > no_terms := glob_max_terms; > hn_div_ho := 0.5; > hn_div_ho_2 := 0.25; > hn_div_ho_3 := 0.125; > omniout_float(ALWAYS,"hn_div_ho",32,hn_div_ho,32,""); > omniout_float(ALWAYS,"hn_div_ho_2",32,hn_div_ho_2,32,""); > omniout_float(ALWAYS,"hn_div_ho_3",32,hn_div_ho_3,32,""); > value3 := omniabs(array_y[no_terms-3] + array_y[no_terms - 2] * hn_div_ho + array_y[no_terms - 1] * hn_div_ho_2 + array_y[no_terms] * hn_div_ho_3); > if (value3 > max_value3) then # if number 1 > max_value3 := value3; > omniout_float(ALWAYS,"value3",32,value3,32,""); > fi;# end if 1; > omniout_float(ALWAYS,"max_value3",32,max_value3,32,""); > max_value3; > end; test_suggested_h := proc() local max_value3, hn_div_ho, hn_div_ho_2, hn_div_ho_3, value3, no_terms; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_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_tmp5, array_tmp6, array_tmp7, array_tmp8, array_tmp9, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; max_value3 := 0.; no_terms := glob_max_terms; hn_div_ho := 0.5; hn_div_ho_2 := 0.25; hn_div_ho_3 := 0.125; omniout_float(ALWAYS, "hn_div_ho", 32, hn_div_ho, 32, ""); omniout_float(ALWAYS, "hn_div_ho_2", 32, hn_div_ho_2, 32, ""); omniout_float(ALWAYS, "hn_div_ho_3", 32, hn_div_ho_3, 32, ""); value3 := omniabs(array_y[no_terms - 3] + array_y[no_terms - 2]*hn_div_ho + array_y[no_terms - 1]*hn_div_ho_2 + array_y[no_terms]*hn_div_ho_3); if max_value3 < value3 then max_value3 := value3; omniout_float(ALWAYS, "value3", 32, value3, 32, "") end if; omniout_float(ALWAYS, "max_value3", 32, max_value3, 32, ""); max_value3 end proc > # End Function number 5 > # Begin Function number 6 > reached_interval := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_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_tmp5, > array_tmp6, > array_tmp7, > array_tmp8, > array_tmp9, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local ret; > if (glob_check_sign * (array_x[1]) >= glob_check_sign * glob_next_display) then # if number 1 > ret := true; > else > ret := false; > fi;# end if 1; > return(ret); > end; reached_interval := proc() local ret; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_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_tmp5, array_tmp6, array_tmp7, array_tmp8, array_tmp9, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; if glob_check_sign*glob_next_display <= glob_check_sign*array_x[1] then ret := true else ret := false end if; return ret end proc > # End Function number 6 > # Begin Function number 7 > display_alot := proc(iter) > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_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_tmp5, > array_tmp6, > array_tmp7, > array_tmp8, > array_tmp9, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local abserr, analytic_val_y, ind_var, numeric_val, relerr, term_no; > #TOP DISPLAY ALOT > if (reached_interval()) then # if number 1 > if (iter >= 0) then # if number 2 > ind_var := array_x[1]; > omniout_float(ALWAYS,"x[1] ",33,ind_var,20," "); > analytic_val_y := exact_soln_y(ind_var); > omniout_float(ALWAYS,"y[1] (analytic) ",33,analytic_val_y,20," "); > term_no := 1; > numeric_val := array_y[term_no]; > abserr := omniabs(numeric_val - analytic_val_y); > omniout_float(ALWAYS,"y[1] (numeric) ",33,numeric_val,20," "); > if (omniabs(analytic_val_y) <> 0.0) then # if number 3 > relerr := abserr*100.0/omniabs(analytic_val_y); > if (relerr > 0.0000000000000000000000000000000001) then # if number 4 > glob_good_digits := -trunc(log10(relerr)) + 2; > else > glob_good_digits := Digits; > fi;# end if 4; > else > relerr := -1.0 ; > glob_good_digits := -1; > fi;# end if 3; > if (glob_iter = 1) then # if number 3 > array_1st_rel_error[1] := relerr; > else > array_last_rel_error[1] := relerr; > fi;# end if 3; > omniout_float(ALWAYS,"absolute error ",4,abserr,20," "); > omniout_float(ALWAYS,"relative error ",4,relerr,20,"%"); > omniout_int(INFO,"Correct digits ",32,glob_good_digits,4," ") > ; > omniout_float(ALWAYS,"h ",4,glob_h,20," "); > fi;# end if 2; > #BOTTOM DISPLAY ALOT > fi;# end if 1; > end; display_alot := proc(iter) local abserr, analytic_val_y, ind_var, numeric_val, relerr, term_no; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_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_tmp5, array_tmp6, array_tmp7, array_tmp8, array_tmp9, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; if reached_interval() then if 0 <= iter then ind_var := array_x[1]; omniout_float(ALWAYS, "x[1] ", 33, ind_var, 20, " "); analytic_val_y := exact_soln_y(ind_var); omniout_float(ALWAYS, "y[1] (analytic) ", 33, analytic_val_y, 20, " "); term_no := 1; numeric_val := array_y[term_no]; abserr := omniabs(numeric_val - analytic_val_y); omniout_float(ALWAYS, "y[1] (numeric) ", 33, numeric_val, 20, " "); if omniabs(analytic_val_y) <> 0. then relerr := abserr*100.0/omniabs(analytic_val_y); if 0.1*10^(-33) < relerr then glob_good_digits := -trunc(log10(relerr)) + 2 else glob_good_digits := Digits end if else relerr := -1.0; glob_good_digits := -1 end if; if glob_iter = 1 then array_1st_rel_error[1] := relerr else array_last_rel_error[1] := relerr end if; omniout_float(ALWAYS, "absolute error ", 4, abserr, 20, " "); omniout_float(ALWAYS, "relative error ", 4, relerr, 20, "%"); omniout_int(INFO, "Correct digits ", 32, glob_good_digits, 4, " "); omniout_float(ALWAYS, "h ", 4, glob_h, 20, " ") end if end if end proc > # End Function number 7 > # Begin Function number 8 > adjust_for_pole := proc(h_param) > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_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_tmp5, > array_tmp6, > array_tmp7, > array_tmp8, > array_tmp9, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local hnew, sz2, tmp; > #TOP ADJUST FOR POLE > hnew := h_param; > glob_normmax := glob_small_float; > if (omniabs(array_y_higher[1,1]) > glob_small_float) then # if number 1 > tmp := omniabs(array_y_higher[1,1]); > if (tmp < glob_normmax) then # if number 2 > glob_normmax := tmp; > fi;# end if 2 > fi;# end if 1; > if (glob_look_poles and (omniabs(array_pole[1]) > glob_small_float) and (array_pole[1] <> glob_large_float)) then # if number 1 > sz2 := array_pole[1]/10.0; > if (sz2 < hnew) then # if number 2 > omniout_float(INFO,"glob_h adjusted to ",20,h_param,12,"due to singularity."); > omniout_str(INFO,"Reached Optimal"); > return(hnew); > fi;# end if 2 > fi;# end if 1; > if ( not glob_reached_optimal_h) then # if number 1 > glob_reached_optimal_h := true; > glob_curr_iter_when_opt := glob_current_iter; > glob_optimal_clock_start_sec := elapsed_time_seconds(); > glob_optimal_start := array_x[1]; > fi;# end if 1; > hnew := sz2; > ;#END block > return(hnew); > #BOTTOM ADJUST FOR POLE > end; adjust_for_pole := proc(h_param) local hnew, sz2, tmp; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_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_tmp5, array_tmp6, array_tmp7, array_tmp8, array_tmp9, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; hnew := h_param; glob_normmax := glob_small_float; if glob_small_float < omniabs(array_y_higher[1, 1]) then tmp := omniabs(array_y_higher[1, 1]); if tmp < glob_normmax then glob_normmax := tmp end if end if; if glob_look_poles and glob_small_float < omniabs(array_pole[1]) and array_pole[1] <> glob_large_float then sz2 := array_pole[1]/10.0; if sz2 < hnew then omniout_float(INFO, "glob_h adjusted to ", 20, h_param, 12, "due to singularity."); omniout_str(INFO, "Reached Optimal"); return hnew end if end if; if not glob_reached_optimal_h then glob_reached_optimal_h := true; glob_curr_iter_when_opt := glob_current_iter; glob_optimal_clock_start_sec := elapsed_time_seconds(); glob_optimal_start := array_x[1] end if; hnew := sz2; return hnew end proc > # End Function number 8 > # Begin Function number 9 > prog_report := proc(x_start,x_end) > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_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_tmp5, > array_tmp6, > array_tmp7, > array_tmp8, > array_tmp9, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local clock_sec, opt_clock_sec, clock_sec1, expect_sec, left_sec, percent_done, total_clock_sec; > #TOP PROGRESS REPORT > clock_sec1 := elapsed_time_seconds(); > total_clock_sec := convfloat(clock_sec1) - convfloat(glob_orig_start_sec); > glob_clock_sec := convfloat(clock_sec1) - convfloat(glob_clock_start_sec); > left_sec := convfloat(glob_max_sec) + convfloat(glob_orig_start_sec) - convfloat(clock_sec1); > expect_sec := comp_expect_sec(convfloat(x_end),convfloat(x_start),convfloat(array_x[1]) + convfloat(glob_h) ,convfloat( clock_sec1) - convfloat(glob_orig_start_sec)); > opt_clock_sec := convfloat( clock_sec1) - convfloat(glob_optimal_clock_start_sec); > glob_optimal_expect_sec := comp_expect_sec(convfloat(x_end),convfloat(x_start),convfloat(array_x[1]) +convfloat( glob_h) ,convfloat( opt_clock_sec)); > glob_total_exp_sec := glob_optimal_expect_sec + total_clock_sec; > percent_done := comp_percent(convfloat(x_end),convfloat(x_start),convfloat(array_x[1]) + convfloat(glob_h)); > glob_percent_done := percent_done; > omniout_str_noeol(INFO,"Total Elapsed Time "); > omniout_timestr(convfloat(total_clock_sec)); > omniout_str_noeol(INFO,"Elapsed Time(since restart) "); > omniout_timestr(convfloat(glob_clock_sec)); > if (convfloat(percent_done) < convfloat(100.0)) then # if number 1 > omniout_str_noeol(INFO,"Expected Time Remaining "); > omniout_timestr(convfloat(expect_sec)); > omniout_str_noeol(INFO,"Optimized Time Remaining "); > omniout_timestr(convfloat(glob_optimal_expect_sec)); > omniout_str_noeol(INFO,"Expected Total Time "); > omniout_timestr(convfloat(glob_total_exp_sec)); > fi;# end if 1; > omniout_str_noeol(INFO,"Time to Timeout "); > omniout_timestr(convfloat(left_sec)); > omniout_float(INFO, "Percent Done ",33,percent_done,4,"%"); > #BOTTOM PROGRESS REPORT > end; prog_report := proc(x_start, x_end) local clock_sec, opt_clock_sec, clock_sec1, expect_sec, left_sec, percent_done, total_clock_sec; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_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_tmp5, array_tmp6, array_tmp7, array_tmp8, array_tmp9, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; clock_sec1 := elapsed_time_seconds(); total_clock_sec := convfloat(clock_sec1) - convfloat(glob_orig_start_sec); glob_clock_sec := convfloat(clock_sec1) - convfloat(glob_clock_start_sec); left_sec := convfloat(glob_max_sec) + convfloat(glob_orig_start_sec) - convfloat(clock_sec1); expect_sec := comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(array_x[1]) + convfloat(glob_h), convfloat(clock_sec1) - convfloat(glob_orig_start_sec)); opt_clock_sec := convfloat(clock_sec1) - convfloat(glob_optimal_clock_start_sec); glob_optimal_expect_sec := comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(array_x[1]) + convfloat(glob_h), convfloat(opt_clock_sec)); glob_total_exp_sec := glob_optimal_expect_sec + total_clock_sec; percent_done := comp_percent(convfloat(x_end), convfloat(x_start), convfloat(array_x[1]) + convfloat(glob_h)); glob_percent_done := percent_done; omniout_str_noeol(INFO, "Total Elapsed Time "); omniout_timestr(convfloat(total_clock_sec)); omniout_str_noeol(INFO, "Elapsed Time(since restart) "); omniout_timestr(convfloat(glob_clock_sec)); if convfloat(percent_done) < convfloat(100.0) then omniout_str_noeol(INFO, "Expected Time Remaining "); omniout_timestr(convfloat(expect_sec)); omniout_str_noeol(INFO, "Optimized Time Remaining "); omniout_timestr(convfloat(glob_optimal_expect_sec)); omniout_str_noeol(INFO, "Expected Total Time "); omniout_timestr(convfloat(glob_total_exp_sec)) end if; omniout_str_noeol(INFO, "Time to Timeout "); omniout_timestr(convfloat(left_sec)); omniout_float(INFO, "Percent Done ", 33, percent_done, 4, "%") end proc > # End Function number 9 > # Begin Function number 10 > check_for_pole := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_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_tmp5, > array_tmp6, > array_tmp7, > array_tmp8, > array_tmp9, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local cnt, dr1, dr2, ds1, ds2, hdrc, m, n, nr1, nr2, ord_no, rad_c, rcs, rm0, rm1, rm2, rm3, rm4, found, h_new, ratio, term; > #TOP CHECK FOR POLE > #IN RADII REAL EQ = 1 > #Computes radius of convergence and r_order of pole from 3 adjacent Taylor series terms. EQUATUON NUMBER 1 > #Applies to pole of arbitrary r_order on the real axis, > #Due to Prof. George Corliss. > n := glob_max_terms; > m := n - 1 - 1; > while ((m >= 10) and ((omniabs(array_y_higher[1,m]) < glob_small_float) or (omniabs(array_y_higher[1,m-1]) < glob_small_float) or (omniabs(array_y_higher[1,m-2]) < glob_small_float ))) do # do number 2 > m := m - 1; > od;# end do number 2; > if (m > 10) then # if number 1 > rm0 := array_y_higher[1,m]/array_y_higher[1,m-1]; > rm1 := array_y_higher[1,m-1]/array_y_higher[1,m-2]; > hdrc := convfloat(m-1)*rm0-convfloat(m-2)*rm1; > if (omniabs(hdrc) > glob_small_float) then # if number 2 > rcs := glob_h/hdrc; > ord_no := convfloat(m-1)*rm0/hdrc - convfloat(m) + 2.0; > array_real_pole[1,1] := rcs; > array_real_pole[1,2] := ord_no; > else > array_real_pole[1,1] := glob_large_float; > array_real_pole[1,2] := glob_large_float; > fi;# end if 2 > else > array_real_pole[1,1] := glob_large_float; > array_real_pole[1,2] := glob_large_float; > fi;# end if 1; > #BOTTOM RADII REAL EQ = 1 > #TOP RADII COMPLEX EQ = 1 > #Computes radius of convergence for complex conjugate pair of poles. > #from 6 adjacent Taylor series terms > #Also computes r_order of poles. > #Due to Manuel Prieto. > #With a correction by Dennis J. Darland > n := glob_max_terms - 1 - 1; > cnt := 0; > while ((cnt < 5) and (n >= 10)) do # do number 2 > if (omniabs(array_y_higher[1,n]) > glob_small_float) then # if number 1 > cnt := cnt + 1; > else > cnt := 0; > fi;# end if 1; > n := n - 1; > od;# end do number 2; > m := n + cnt; > if (m <= 10) then # if number 1 > rad_c := glob_large_float; > ord_no := glob_large_float; > elif > (((omniabs(array_y_higher[1,m]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-1]) >=(glob_large_float)) or (omniabs(array_y_higher[1,m-2]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-3]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-4]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-5]) >= (glob_large_float))) or ((omniabs(array_y_higher[1,m]) <= (glob_small_float)) or (omniabs(array_y_higher[1,m-1]) <=(glob_small_float)) or (omniabs(array_y_higher[1,m-2]) <= (glob_small_float)) or (omniabs(array_y_higher[1,m-3]) <= (glob_small_float)) or (omniabs(array_y_higher[1,m-4]) <= (glob_small_float)) or (omniabs(array_y_higher[1,m-5]) <= (glob_small_float)))) then # if number 2 > rad_c := glob_large_float; > ord_no := glob_large_float; > else > rm0 := (array_y_higher[1,m])/(array_y_higher[1,m-1]); > rm1 := (array_y_higher[1,m-1])/(array_y_higher[1,m-2]); > rm2 := (array_y_higher[1,m-2])/(array_y_higher[1,m-3]); > rm3 := (array_y_higher[1,m-3])/(array_y_higher[1,m-4]); > rm4 := (array_y_higher[1,m-4])/(array_y_higher[1,m-5]); > nr1 := convfloat(m-1)*rm0 - 2.0*convfloat(m-2)*rm1 + convfloat(m-3)*rm2; > nr2 := convfloat(m-2)*rm1 - 2.0*convfloat(m-3)*rm2 + convfloat(m-4)*rm3; > dr1 := (-1.0)/rm1 + 2.0/rm2 - 1.0/rm3; > dr2 := (-1.0)/rm2 + 2.0/rm3 - 1.0/rm4; > ds1 := 3.0/rm1 - 8.0/rm2 + 5.0/rm3; > ds2 := 3.0/rm2 - 8.0/rm3 + 5.0/rm4; > if ((omniabs(nr1 * dr2 - nr2 * dr1) <= glob_small_float) or (omniabs(dr1) <= glob_small_float)) then # if number 3 > rad_c := glob_large_float; > ord_no := glob_large_float; > else > if (omniabs(nr1*dr2 - nr2 * dr1) > glob_small_float) then # if number 4 > rcs := ((ds1*dr2 - ds2*dr1 +dr1*dr2)/(nr1*dr2 - nr2 * dr1)); > #(Manuels) rcs := (ds1*dr2 - ds2*dr1)/(nr1*dr2 - nr2 * dr1) > ord_no := (rcs*nr1 - ds1)/(2.0*dr1) -convfloat(m)/2.0; > if (omniabs(rcs) > glob_small_float) then # if number 5 > if (rcs > 0.0) then # if number 6 > rad_c := sqrt(rcs) * omniabs(glob_h); > else > rad_c := glob_large_float; > fi;# end if 6 > else > rad_c := glob_large_float; > ord_no := glob_large_float; > fi;# end if 5 > else > rad_c := glob_large_float; > ord_no := glob_large_float; > fi;# end if 4 > fi;# end if 3; > array_complex_pole[1,1] := rad_c; > array_complex_pole[1,2] := ord_no; > fi;# end if 2; > #BOTTOM RADII COMPLEX EQ = 1 > found := false; > #TOP WHICH RADII EQ = 1 > if ( not found and ((array_real_pole[1,1] = glob_large_float) or (array_real_pole[1,2] = glob_large_float)) and ((array_complex_pole[1,1] <> glob_large_float) and (array_complex_pole[1,2] <> glob_large_float)) and ((array_complex_pole[1,1] > 0.0) and (array_complex_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_complex_pole[1,1]; > array_poles[1,2] := array_complex_pole[1,2]; > found := true; > array_type_pole[1] := 2; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Complex estimate of poles used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found and ((array_real_pole[1,1] <> glob_large_float) and (array_real_pole[1,2] <> glob_large_float) and (array_real_pole[1,1] > 0.0) and (array_real_pole[1,2] > 0.0) and ((array_complex_pole[1,1] = glob_large_float) or (array_complex_pole[1,2] = glob_large_float) or (array_complex_pole[1,1] <= 0.0 ) or (array_complex_pole[1,2] <= 0.0)))) then # if number 2 > array_poles[1,1] := array_real_pole[1,1]; > array_poles[1,2] := array_real_pole[1,2]; > found := true; > array_type_pole[1] := 1; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Real estimate of pole used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found and (((array_real_pole[1,1] = glob_large_float) or (array_real_pole[1,2] = glob_large_float)) and ((array_complex_pole[1,1] = glob_large_float) or (array_complex_pole[1,2] = glob_large_float)))) then # if number 2 > array_poles[1,1] := glob_large_float; > array_poles[1,2] := glob_large_float; > found := true; > array_type_pole[1] := 3; > if (reached_interval()) then # if number 3 > omniout_str(ALWAYS,"NO POLE"); > fi;# end if 3; > fi;# end if 2; > if ( not found and ((array_real_pole[1,1] < array_complex_pole[1,1]) and (array_real_pole[1,1] > 0.0) and (array_real_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_real_pole[1,1]; > array_poles[1,2] := array_real_pole[1,2]; > found := true; > array_type_pole[1] := 1; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Real estimate of pole used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found and ((array_complex_pole[1,1] <> glob_large_float) and (array_complex_pole[1,2] <> glob_large_float) and (array_complex_pole[1,1] > 0.0) and (array_complex_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_complex_pole[1,1]; > array_poles[1,2] := array_complex_pole[1,2]; > array_type_pole[1] := 2; > found := true; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Complex estimate of poles used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found ) then # if number 2 > array_poles[1,1] := glob_large_float; > array_poles[1,2] := glob_large_float; > array_type_pole[1] := 3; > if (reached_interval()) then # if number 3 > omniout_str(ALWAYS,"NO POLE"); > fi;# end if 3; > fi;# end if 2; > #BOTTOM WHICH RADII EQ = 1 > array_pole[1] := glob_large_float; > array_pole[2] := glob_large_float; > #TOP WHICH RADIUS EQ = 1 > if (array_pole[1] > array_poles[1,1]) then # if number 2 > array_pole[1] := array_poles[1,1]; > array_pole[2] := array_poles[1,2]; > fi;# end if 2; > #BOTTOM WHICH RADIUS EQ = 1 > #START ADJUST ALL SERIES > if (array_pole[1] * glob_ratio_of_radius < omniabs(glob_h)) then # if number 2 > h_new := array_pole[1] * glob_ratio_of_radius; > term := 1; > ratio := 1.0; > while (term <= glob_max_terms) do # do number 2 > array_y[term] := array_y[term]* ratio; > array_y_higher[1,term] := array_y_higher[1,term]* ratio; > array_x[term] := array_x[term]* ratio; > ratio := ratio * h_new / omniabs(glob_h); > term := term + 1; > od;# end do number 2; > glob_h := h_new; > fi;# end if 2; > #BOTTOM ADJUST ALL SERIES > if (reached_interval()) then # if number 2 > display_pole(); > fi;# end if 2 > end; check_for_pole := proc() local cnt, dr1, dr2, ds1, ds2, hdrc, m, n, nr1, nr2, ord_no, rad_c, rcs, rm0, rm1, rm2, rm3, rm4, found, h_new, ratio, term; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_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_tmp5, array_tmp6, array_tmp7, array_tmp8, array_tmp9, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; n := glob_max_terms; m := n - 2; while 10 <= m and (omniabs(array_y_higher[1, m]) < glob_small_float or omniabs(array_y_higher[1, m - 1]) < glob_small_float or omniabs(array_y_higher[1, m - 2]) < glob_small_float) do m := m - 1 end do; if 10 < m then rm0 := array_y_higher[1, m]/array_y_higher[1, m - 1]; rm1 := array_y_higher[1, m - 1]/array_y_higher[1, m - 2]; hdrc := convfloat(m - 1)*rm0 - convfloat(m - 2)*rm1; if glob_small_float < omniabs(hdrc) then rcs := glob_h/hdrc; ord_no := convfloat(m - 1)*rm0/hdrc - convfloat(m) + 2.0; array_real_pole[1, 1] := rcs; array_real_pole[1, 2] := ord_no else array_real_pole[1, 1] := glob_large_float; array_real_pole[1, 2] := glob_large_float end if else array_real_pole[1, 1] := glob_large_float; array_real_pole[1, 2] := glob_large_float end if; n := glob_max_terms - 2; cnt := 0; while cnt < 5 and 10 <= n do if glob_small_float < omniabs(array_y_higher[1, n]) then cnt := cnt + 1 else cnt := 0 end if; n := n - 1 end do; m := n + cnt; if m <= 10 then rad_c := glob_large_float; ord_no := glob_large_float elif glob_large_float <= omniabs(array_y_higher[1, m]) or glob_large_float <= omniabs(array_y_higher[1, m - 1]) or glob_large_float <= omniabs(array_y_higher[1, m - 2]) or glob_large_float <= omniabs(array_y_higher[1, m - 3]) or glob_large_float <= omniabs(array_y_higher[1, m - 4]) or glob_large_float <= omniabs(array_y_higher[1, m - 5]) or omniabs(array_y_higher[1, m]) <= glob_small_float or omniabs(array_y_higher[1, m - 1]) <= glob_small_float or omniabs(array_y_higher[1, m - 2]) <= glob_small_float or omniabs(array_y_higher[1, m - 3]) <= glob_small_float or omniabs(array_y_higher[1, m - 4]) <= glob_small_float or omniabs(array_y_higher[1, m - 5]) <= glob_small_float then rad_c := glob_large_float; ord_no := glob_large_float else rm0 := array_y_higher[1, m]/array_y_higher[1, m - 1]; rm1 := array_y_higher[1, m - 1]/array_y_higher[1, m - 2]; rm2 := array_y_higher[1, m - 2]/array_y_higher[1, m - 3]; rm3 := array_y_higher[1, m - 3]/array_y_higher[1, m - 4]; rm4 := array_y_higher[1, m - 4]/array_y_higher[1, m - 5]; nr1 := convfloat(m - 1)*rm0 - 2.0*convfloat(m - 2)*rm1 + convfloat(m - 3)*rm2; nr2 := convfloat(m - 2)*rm1 - 2.0*convfloat(m - 3)*rm2 + convfloat(m - 4)*rm3; dr1 := (-1)*(1.0)/rm1 + 2.0/rm2 - 1.0/rm3; dr2 := (-1)*(1.0)/rm2 + 2.0/rm3 - 1.0/rm4; ds1 := 3.0/rm1 - 8.0/rm2 + 5.0/rm3; ds2 := 3.0/rm2 - 8.0/rm3 + 5.0/rm4; if omniabs(nr1*dr2 - nr2*dr1) <= glob_small_float or omniabs(dr1) <= glob_small_float then rad_c := glob_large_float; ord_no := glob_large_float else if glob_small_float < omniabs(nr1*dr2 - nr2*dr1) then rcs := (ds1*dr2 - ds2*dr1 + dr1*dr2)/(nr1*dr2 - nr2*dr1); ord_no := (rcs*nr1 - ds1)/(2.0*dr1) - convfloat(m)/2.0; if glob_small_float < omniabs(rcs) then if 0. < rcs then rad_c := sqrt(rcs)*omniabs(glob_h) else rad_c := glob_large_float end if else rad_c := glob_large_float; ord_no := glob_large_float end if else rad_c := glob_large_float; ord_no := glob_large_float end if end if; array_complex_pole[1, 1] := rad_c; array_complex_pole[1, 2] := ord_no end if; found := false; if not found and (array_real_pole[1, 1] = glob_large_float or array_real_pole[1, 2] = glob_large_float) and array_complex_pole[1, 1] <> glob_large_float and array_complex_pole[1, 2] <> glob_large_float and 0. < array_complex_pole[1, 1] and 0. < array_complex_pole[1, 2] then array_poles[1, 1] := array_complex_pole[1, 1]; array_poles[1, 2] := array_complex_pole[1, 2]; found := true; array_type_pole[1] := 2; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Complex estimate of poles used") end if end if end if; if not found and array_real_pole[1, 1] <> glob_large_float and array_real_pole[1, 2] <> glob_large_float and 0. < array_real_pole[1, 1] and 0. < array_real_pole[1, 2] and ( array_complex_pole[1, 1] = glob_large_float or array_complex_pole[1, 2] = glob_large_float or array_complex_pole[1, 1] <= 0. or array_complex_pole[1, 2] <= 0.) then array_poles[1, 1] := array_real_pole[1, 1]; array_poles[1, 2] := array_real_pole[1, 2]; found := true; array_type_pole[1] := 1; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Real estimate of pole used") end if end if end if; if not found and (array_real_pole[1, 1] = glob_large_float or array_real_pole[1, 2] = glob_large_float) and ( array_complex_pole[1, 1] = glob_large_float or array_complex_pole[1, 2] = glob_large_float) then array_poles[1, 1] := glob_large_float; array_poles[1, 2] := glob_large_float; found := true; array_type_pole[1] := 3; if reached_interval() then omniout_str(ALWAYS, "NO POLE") end if end if; if not found and array_real_pole[1, 1] < array_complex_pole[1, 1] and 0. < array_real_pole[1, 1] and 0. < array_real_pole[1, 2] then array_poles[1, 1] := array_real_pole[1, 1]; array_poles[1, 2] := array_real_pole[1, 2]; found := true; array_type_pole[1] := 1; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Real estimate of pole used") end if end if end if; if not found and array_complex_pole[1, 1] <> glob_large_float and array_complex_pole[1, 2] <> glob_large_float and 0. < array_complex_pole[1, 1] and 0. < array_complex_pole[1, 2] then array_poles[1, 1] := array_complex_pole[1, 1]; array_poles[1, 2] := array_complex_pole[1, 2]; array_type_pole[1] := 2; found := true; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Complex estimate of poles used") end if end if end if; if not found then array_poles[1, 1] := glob_large_float; array_poles[1, 2] := glob_large_float; array_type_pole[1] := 3; if reached_interval() then omniout_str(ALWAYS, "NO POLE") end if end if; array_pole[1] := glob_large_float; array_pole[2] := glob_large_float; if array_poles[1, 1] < array_pole[1] then array_pole[1] := array_poles[1, 1]; array_pole[2] := array_poles[1, 2] end if; if array_pole[1]*glob_ratio_of_radius < omniabs(glob_h) then h_new := array_pole[1]*glob_ratio_of_radius; term := 1; ratio := 1.0; while term <= glob_max_terms do array_y[term] := array_y[term]*ratio; array_y_higher[1, term] := array_y_higher[1, term]*ratio; array_x[term] := array_x[term]*ratio; ratio := ratio*h_new/omniabs(glob_h); term := term + 1 end do; glob_h := h_new end if; if reached_interval() then display_pole() end if end proc > # End Function number 10 > # Begin Function number 11 > get_norms := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_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_tmp5, > array_tmp6, > array_tmp7, > array_tmp8, > array_tmp9, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local iii; > if ( not glob_initial_pass) then # if number 2 > iii := 1; > while (iii <= glob_max_terms) do # do number 2 > array_norms[iii] := 0.0; > iii := iii + 1; > od;# end do number 2; > #TOP GET NORMS > iii := 1; > while (iii <= glob_max_terms) do # do number 2 > if (omniabs(array_y[iii]) > array_norms[iii]) then # if number 3 > array_norms[iii] := omniabs(array_y[iii]); > fi;# end if 3; > iii := iii + 1; > od;# end do number 2 > #BOTTOM GET NORMS > ; > fi;# end if 2; > end; get_norms := proc() local iii; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_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_tmp5, array_tmp6, array_tmp7, array_tmp8, array_tmp9, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; if not glob_initial_pass then iii := 1; while iii <= glob_max_terms do array_norms[iii] := 0.; iii := iii + 1 end do; iii := 1; while iii <= glob_max_terms do if array_norms[iii] < omniabs(array_y[iii]) then array_norms[iii] := omniabs(array_y[iii]) end if; iii := iii + 1 end do end if end proc > # End Function number 11 > # Begin Function number 12 > atomall := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_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_tmp5, > array_tmp6, > array_tmp7, > array_tmp8, > array_tmp9, > 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 FULL CONST $eq_no = 1 i = 1 > array_tmp1[1] := array_m1[1] * array_const_2D0[1]; > #emit pre mult FULL LINEAR $eq_no = 1 i = 1 > #emit pre mult LINEAR - FULL $eq_no = 1 i = 1 > array_tmp2[1] := array_x[1] * array_tmp1[1]; > #emit pre mult LINEAR - LINEAR $eq_no = 1 i = 1 > array_tmp3[1] := array_x[1] * array_x[1]; > #emit pre add FULL - CONST $eq_no = 1 i = 1 > array_tmp4[1] := array_tmp3[1] + array_const_1D0[1]; > #emit pre div FULL - FULL $eq_no = 1 i = 1 > array_tmp5[1] := (array_tmp2[1] / (array_tmp4[1])); > #emit pre mult LINEAR - LINEAR $eq_no = 1 i = 1 > array_tmp6[1] := array_x[1] * array_x[1]; > #emit pre add FULL - CONST $eq_no = 1 i = 1 > array_tmp7[1] := array_tmp6[1] + array_const_1D0[1]; > #emit pre div FULL - FULL $eq_no = 1 i = 1 > array_tmp8[1] := (array_tmp5[1] / (array_tmp7[1])); > #emit pre add CONST FULL $eq_no = 1 i = 1 > array_tmp9[1] := array_const_0D0[1] + array_tmp8[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_tmp9[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 FULL CONST $eq_no = 1 i = 2 > array_tmp1[2] := array_m1[2] * array_const_2D0[1]; > #emit pre mult LINEAR FULL $eq_no = 1 i = 2 > array_tmp2[2] := array_x[2] * array_tmp1[kkk - 1] + array_x[1] * array_tmp1[kkk]; > #emit pre mult LINEAR - LINEAR $eq_no = 1 i = 2 > array_tmp3[2] := array_x[1] * array_x[2] + array_x[2] * array_x[1]; > #emit pre add FULL CONST $eq_no = 1 i = 2 > array_tmp4[2] := array_tmp3[2]; > #emit pre div FULL - FULL $eq_no = 1 i = 2 > array_tmp5[2] := ((array_tmp2[2] - ats(2,array_tmp4,array_tmp5,2))/array_tmp4[1]); > #emit pre mult LINEAR - LINEAR $eq_no = 1 i = 2 > array_tmp6[2] := array_x[1] * array_x[2] + array_x[2] * array_x[1]; > #emit pre add FULL CONST $eq_no = 1 i = 2 > array_tmp7[2] := array_tmp6[2]; > #emit pre div FULL - FULL $eq_no = 1 i = 2 > array_tmp8[2] := ((array_tmp5[2] - ats(2,array_tmp7,array_tmp8,2))/array_tmp7[1]); > #emit pre add CONST FULL $eq_no = 1 i = 2 > array_tmp9[2] := array_tmp8[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_tmp9[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 FULL CONST $eq_no = 1 i = 3 > array_tmp1[3] := array_m1[3] * array_const_2D0[1]; > #emit pre mult LINEAR FULL $eq_no = 1 i = 3 > array_tmp2[3] := array_x[2] * array_tmp1[kkk - 1] + array_x[1] * array_tmp1[kkk]; > #emit pre mult LINEAR - LINEAR $eq_no = 1 i = 3 > array_tmp3[3] := array_x[2] * array_x[2]; > #emit pre add FULL CONST $eq_no = 1 i = 3 > array_tmp4[3] := array_tmp3[3]; > #emit pre div FULL - FULL $eq_no = 1 i = 3 > array_tmp5[3] := ((array_tmp2[3] - ats(3,array_tmp4,array_tmp5,2))/array_tmp4[1]); > #emit pre mult LINEAR - LINEAR $eq_no = 1 i = 3 > array_tmp6[3] := array_x[2] * array_x[2]; > #emit pre add FULL CONST $eq_no = 1 i = 3 > array_tmp7[3] := array_tmp6[3]; > #emit pre div FULL - FULL $eq_no = 1 i = 3 > array_tmp8[3] := ((array_tmp5[3] - ats(3,array_tmp7,array_tmp8,2))/array_tmp7[1]); > #emit pre add CONST FULL $eq_no = 1 i = 3 > array_tmp9[3] := array_tmp8[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_tmp9[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 mult FULL CONST $eq_no = 1 i = 4 > array_tmp1[4] := array_m1[4] * array_const_2D0[1]; > #emit pre mult LINEAR FULL $eq_no = 1 i = 4 > array_tmp2[4] := array_x[2] * array_tmp1[kkk - 1] + array_x[1] * array_tmp1[kkk]; > #emit pre add FULL CONST $eq_no = 1 i = 4 > array_tmp4[4] := array_tmp3[4]; > #emit pre div FULL - FULL $eq_no = 1 i = 4 > array_tmp5[4] := ((array_tmp2[4] - ats(4,array_tmp4,array_tmp5,2))/array_tmp4[1]); > #emit pre add FULL CONST $eq_no = 1 i = 4 > array_tmp7[4] := array_tmp6[4]; > #emit pre div FULL - FULL $eq_no = 1 i = 4 > array_tmp8[4] := ((array_tmp5[4] - ats(4,array_tmp7,array_tmp8,2))/array_tmp7[1]); > #emit pre add CONST FULL $eq_no = 1 i = 4 > array_tmp9[4] := array_tmp8[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_tmp9[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 mult FULL CONST $eq_no = 1 i = 5 > array_tmp1[5] := array_m1[5] * array_const_2D0[1]; > #emit pre mult LINEAR FULL $eq_no = 1 i = 5 > array_tmp2[5] := array_x[2] * array_tmp1[kkk - 1] + array_x[1] * array_tmp1[kkk]; > #emit pre add FULL CONST $eq_no = 1 i = 5 > array_tmp4[5] := array_tmp3[5]; > #emit pre div FULL - FULL $eq_no = 1 i = 5 > array_tmp5[5] := ((array_tmp2[5] - ats(5,array_tmp4,array_tmp5,2))/array_tmp4[1]); > #emit pre add FULL CONST $eq_no = 1 i = 5 > array_tmp7[5] := array_tmp6[5]; > #emit pre div FULL - FULL $eq_no = 1 i = 5 > array_tmp8[5] := ((array_tmp5[5] - ats(5,array_tmp7,array_tmp8,2))/array_tmp7[1]); > #emit pre add CONST FULL $eq_no = 1 i = 5 > array_tmp9[5] := array_tmp8[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_tmp9[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 FULL CONST $eq_no = 1 i = 1 > array_tmp1[kkk] := array_m1[kkk] * array_const_2D0[1]; > #emit mult FULL LINEAR $eq_no = 1 i = 1 > array_tmp2[kkk] := array_tmp1[kkk-1] * array_x[2] + array_tmp1[kkk] * array_x[1]; > #emit mult LINEAR - LINEAR $eq_no = 1 i = 1 > #emit FULL - NOT FULL add $eq_no = 1 > array_tmp4[kkk] := array_tmp3[kkk]; > #emit div FULL FULL $eq_no = 1 > array_tmp5[kkk] := ((array_tmp2[kkk] - ats(kkk,array_tmp4,array_tmp5,2))/array_tmp4[1]); > #emit mult LINEAR - LINEAR $eq_no = 1 i = 1 > #emit FULL - NOT FULL add $eq_no = 1 > array_tmp7[kkk] := array_tmp6[kkk]; > #emit div FULL FULL $eq_no = 1 > array_tmp8[kkk] := ((array_tmp5[kkk] - ats(kkk,array_tmp7,array_tmp8,2))/array_tmp7[1]); > #emit NOT FULL - FULL add $eq_no = 1 > array_tmp9[kkk] := array_tmp8[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_tmp9[kkk] * expt(glob_h , (order_d)) * factorial_3((kkk - 1),(kkk + order_d - 1)); > array_y[kkk + order_d] := temporary; > array_y_higher[1,kkk + order_d] := temporary; > term := kkk + order_d - 1; > adj2 := kkk + order_d - 1; > adj3 := 2; > while (term >= 1) do # do number 2 > if (adj3 <= order_d + 1) then # if number 3 > if (adj2 > 0) then # if number 4 > temporary := temporary / glob_h * convfp(adj2); > else > temporary := temporary; > fi;# end if 4; > array_y_higher[adj3,term] := temporary; > fi;# end if 3; > term := term - 1; > adj2 := adj2 - 1; > adj3 := adj3 + 1; > od;# end do number 2 > fi;# end if 2 > fi;# end if 1; > kkk := kkk + 1; > od;# end do number 1; > #BOTTOM ATOMALL > #END OUTFILE4 > #BEGIN OUTFILE5 > #BOTTOM ATOMALL ??? > end; atomall := proc() local kkk, order_d, adj2, adj3, temporary, term; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_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_tmp5, array_tmp6, array_tmp7, array_tmp8, array_tmp9, 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_m1[1]*array_const_2D0[1]; array_tmp2[1] := array_x[1]*array_tmp1[1]; array_tmp3[1] := array_x[1]*array_x[1]; array_tmp4[1] := array_tmp3[1] + array_const_1D0[1]; array_tmp5[1] := array_tmp2[1]/array_tmp4[1]; array_tmp6[1] := array_x[1]*array_x[1]; array_tmp7[1] := array_tmp6[1] + array_const_1D0[1]; array_tmp8[1] := array_tmp5[1]/array_tmp7[1]; array_tmp9[1] := array_const_0D0[1] + array_tmp8[1]; if not array_y_set_initial[1, 2] then if 1 <= glob_max_terms then temporary := array_tmp9[1]*expt(glob_h, 1)*factorial_3(0, 1); array_y[2] := temporary; array_y_higher[1, 2] := temporary; temporary := temporary*1.0/glob_h; array_y_higher[2, 1] := temporary end if end if; kkk := 2; array_tmp1[2] := array_m1[2]*array_const_2D0[1]; array_tmp2[2] := array_x[2]*array_tmp1[kkk - 1] + array_x[1]*array_tmp1[kkk]; array_tmp3[2] := 2*array_x[1]*array_x[2]; array_tmp4[2] := array_tmp3[2]; array_tmp5[2] := (array_tmp2[2] - ats(2, array_tmp4, array_tmp5, 2))/array_tmp4[1]; array_tmp6[2] := 2*array_x[1]*array_x[2]; array_tmp7[2] := array_tmp6[2]; array_tmp8[2] := (array_tmp5[2] - ats(2, array_tmp7, array_tmp8, 2))/array_tmp7[1]; array_tmp9[2] := array_tmp8[2]; if not array_y_set_initial[1, 3] then if 2 <= glob_max_terms then temporary := array_tmp9[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_m1[3]*array_const_2D0[1]; array_tmp2[3] := array_x[2]*array_tmp1[kkk - 1] + array_x[1]*array_tmp1[kkk]; array_tmp3[3] := array_x[2]*array_x[2]; array_tmp4[3] := array_tmp3[3]; array_tmp5[3] := (array_tmp2[3] - ats(3, array_tmp4, array_tmp5, 2))/array_tmp4[1]; array_tmp6[3] := array_x[2]*array_x[2]; array_tmp7[3] := array_tmp6[3]; array_tmp8[3] := (array_tmp5[3] - ats(3, array_tmp7, array_tmp8, 2))/array_tmp7[1]; array_tmp9[3] := array_tmp8[3]; if not array_y_set_initial[1, 4] then if 3 <= glob_max_terms then temporary := array_tmp9[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_tmp1[4] := array_m1[4]*array_const_2D0[1]; array_tmp2[4] := array_x[2]*array_tmp1[kkk - 1] + array_x[1]*array_tmp1[kkk]; array_tmp4[4] := array_tmp3[4]; array_tmp5[4] := (array_tmp2[4] - ats(4, array_tmp4, array_tmp5, 2))/array_tmp4[1]; array_tmp7[4] := array_tmp6[4]; array_tmp8[4] := (array_tmp5[4] - ats(4, array_tmp7, array_tmp8, 2))/array_tmp7[1]; array_tmp9[4] := array_tmp8[4]; if not array_y_set_initial[1, 5] then if 4 <= glob_max_terms then temporary := array_tmp9[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_tmp1[5] := array_m1[5]*array_const_2D0[1]; array_tmp2[5] := array_x[2]*array_tmp1[kkk - 1] + array_x[1]*array_tmp1[kkk]; array_tmp4[5] := array_tmp3[5]; array_tmp5[5] := (array_tmp2[5] - ats(5, array_tmp4, array_tmp5, 2))/array_tmp4[1]; array_tmp7[5] := array_tmp6[5]; array_tmp8[5] := (array_tmp5[5] - ats(5, array_tmp7, array_tmp8, 2))/array_tmp7[1]; array_tmp9[5] := array_tmp8[5]; if not array_y_set_initial[1, 6] then if 5 <= glob_max_terms then temporary := array_tmp9[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_tmp1[kkk] := array_m1[kkk]*array_const_2D0[1]; array_tmp2[kkk] := array_x[2]*array_tmp1[kkk - 1] + array_x[1]*array_tmp1[kkk]; array_tmp4[kkk] := array_tmp3[kkk]; array_tmp5[kkk] := ( array_tmp2[kkk] - ats(kkk, array_tmp4, array_tmp5, 2))/ array_tmp4[1]; array_tmp7[kkk] := array_tmp6[kkk]; array_tmp8[kkk] := ( array_tmp5[kkk] - ats(kkk, array_tmp7, array_tmp8, 2))/ array_tmp7[1]; array_tmp9[kkk] := array_tmp8[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_tmp9[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(1.0 / (x * x + 1.0)); > end; exact_soln_y := proc(x) return 1.0/(x*x + 1.0) end proc > #END USER DEF BLOCK > #END USER DEF BLOCK > #END OUTFILE5 > # Begin Function number 2 > main := proc() > #BEGIN OUTFIEMAIN > local d1,d2,d3,d4,est_err_2,niii,done_once, > term,ord,order_diff,term_no,html_log_file,iiif,jjjf, > rows,r_order,sub_iter,calc_term,iii,temp_sum,current_iter, > x_start,x_end > ,it, log10norm, max_terms, opt_iter, tmp,subiter, est_needed_step_err,value3,min_value,est_answer,best_h,found_h,repeat_it; > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_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_tmp5, > array_tmp6, > array_tmp7, > array_tmp8, > array_tmp9, > 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/sing4postode.ode#################"); > omniout_str(ALWAYS,"diff ( y , x , 1 ) = m1 * 2.0 * x / (x * x + 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,"array_y_init[0 + 1] := exact_soln_y(x_start);"); > omniout_str(ALWAYS,"glob_h := 0.1;"); > omniout_str(ALWAYS,"glob_look_poles := true;"); > omniout_str(ALWAYS,"glob_max_iter := 50;"); > 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(1.0 / (x * x + 1.0));"); > 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_tmp5:= Array(0..(max_terms + 1),[]); > array_tmp6:= Array(0..(max_terms + 1),[]); > array_tmp7:= Array(0..(max_terms + 1),[]); > array_tmp8:= Array(0..(max_terms + 1),[]); > array_tmp9:= 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_tmp5[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp6[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp7[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp8[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp9[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_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_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_tmp5 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp5[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp6 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp6[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp7 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp7[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp8 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp8[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp9 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp9[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_1[1] := 1; > array_const_0D0 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_0D0[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_0D0[1] := 0.0; > array_const_2D0 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_2D0[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_2D0[1] := 2.0; > array_const_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; > array_y_init[0 + 1] := exact_soln_y(x_start); > glob_h := 0.1; > glob_look_poles := true; > glob_max_iter := 50; > #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 ) = m1 * 2.0 * x / (x * x + 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:55:48-06:00") > ; > logitem_str(html_log_file,"Maple") > ; > logitem_str(html_log_file,"sing4") > ; > logitem_str(html_log_file,"diff ( y , x , 1 ) = m1 * 2.0 * x / (x * x + 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,"sing4 diffeq.mxt") > ; > logitem_str(html_log_file,"sing4 maple results") > ; > logitem_str(html_log_file,"Languages compared - single equations") > ; > logend(html_log_file) > ; > ; > fi;# end if 3; > if (glob_html_log) then # if number 3 > fclose(html_log_file); > fi;# end if 3 > ; > ;; > fi;# end if 2 > #END OUTFILEMAIN > end; main := proc() local d1, d2, d3, d4, est_err_2, niii, done_once, term, ord, order_diff, term_no, html_log_file, iiif, jjjf, rows, r_order, sub_iter, calc_term, iii, temp_sum, current_iter, x_start, x_end, it, log10norm, max_terms, opt_iter, tmp, subiter, est_needed_step_err, value3, min_value, est_answer, best_h, found_h, repeat_it; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_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_tmp5, array_tmp6, array_tmp7, array_tmp8, array_tmp9, 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/sing4postode.ode#################"); omniout_str(ALWAYS, "diff ( y , x , 1 ) = m1 * 2.0 * x / (x * x + 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, "array_y_init[0 + 1] := exact_soln_y(x_start);"); omniout_str(ALWAYS, "glob_h := 0.1;"); omniout_str(ALWAYS, "glob_look_poles := true;"); omniout_str(ALWAYS, "glob_max_iter := 50;"); 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(1.0 / (x * x + 1.0));"); 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_tmp5 := Array(0 .. max_terms + 1, []); array_tmp6 := Array(0 .. max_terms + 1, []); array_tmp7 := Array(0 .. max_terms + 1, []); array_tmp8 := Array(0 .. max_terms + 1, []); array_tmp9 := 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_tmp5[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp6[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp7[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp8[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp9[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_m1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_m1[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_tmp5 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp5[term] := 0.; term := term + 1 end do; array_tmp6 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp6[term] := 0.; term := term + 1 end do; array_tmp7 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp7[term] := 0.; term := term + 1 end do; array_tmp8 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp8[term] := 0.; term := term + 1 end do; array_tmp9 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp9[term] := 0.; term := term + 1 end do; array_const_1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_1[term] := 0.; term := term + 1 end do; array_const_1[1] := 1; array_const_0D0 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_0D0[term] := 0.; term := term + 1 end do; array_const_0D0[1] := 0.; array_const_2D0 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_2D0[term] := 0.; term := term + 1 end do; array_const_2D0[1] := 2.0; array_const_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; array_y_init[1] := exact_soln_y(x_start); glob_h := 0.1; glob_look_poles := true; glob_max_iter := 50; 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 ) = m1 * 2.0 * x / (x * x + \ 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:55:48-06:00"); logitem_str(html_log_file, "Maple"); logitem_str(html_log_file, "sing4"); logitem_str(html_log_file, "diff ( y , x , 1 ) = m1 * 2.0 * x\ / (x * x + 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, "sing4 diffeq.mxt"); logitem_str(html_log_file, "sing4 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/sing4postode.ode################# diff ( y , x , 1 ) = m1 * 2.0 * x / (x * x + 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; array_y_init[0 + 1] := exact_soln_y(x_start); glob_h := 0.1; glob_look_poles := true; glob_max_iter := 50; #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(1.0 / (x * x + 1.0)); end; #END USER DEF BLOCK #######END OF ECHO OF PROBLEM################# START of Optimize min_size = 0 min_size = 1 opt_iter = 1 glob_desired_digits_correct = 10 desired_abs_gbl_error = 1.0000000000000000000000000000000e-10 range = 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.7503281627377749951774720000000e-89 max_value3 = 1.7503281627377749951774720000000e-89 value3 = 1.7503281627377749951774720000000e-89 best_h = 0.001 START of Soultion x[1] = -2 y[1] (analytic) = 0.2 y[1] (numeric) = 0.2 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 TOP MAIN SOLVE Loop x[1] = -2 y[1] (analytic) = 0.2 y[1] (numeric) = 0.2 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 = 1 TOP MAIN SOLVE Loop x[1] = -1.999 y[1] (analytic) = 0.20016008803841312281562793922579 y[1] (numeric) = 0.20016008803841312281562793922579 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.235 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.998 y[1] (analytic) = 0.20032035230741001008813294220117 y[1] (numeric) = 0.20032035230741001008813294220117 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.234 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.997 y[1] (analytic) = 0.20048079303786340401550999607258 y[1] (numeric) = 0.20048079303786340401550999607258 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.233 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.996 y[1] (analytic) = 0.20064141046096160204943162301245 y[1] (numeric) = 0.20064141046096160204943162301244 absolute error = 1e-32 relative error = 4.9840159999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.232 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.995 y[1] (analytic) = 0.20080220480820879413255957550414 y[1] (numeric) = 0.20080220480820879413255957550413 absolute error = 1e-32 relative error = 4.9800250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.232 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.994 y[1] (analytic) = 0.20096317631142539965546873053169 y[1] (numeric) = 0.20096317631142539965546873053168 absolute error = 1e-32 relative error = 4.9760360000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.231 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.993 y[1] (analytic) = 0.2011243252027484041287605974921 y[1] (numeric) = 0.20112432520274840412876059749209 absolute error = 1e-32 relative error = 4.9720490000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.23 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.992 y[1] (analytic) = 0.20128565171463169556591863550872 y[1] (numeric) = 0.20128565171463169556591863550871 absolute error = 1e-32 relative error = 4.9680640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.229 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.991 y[1] (analytic) = 0.20144715607984640057243223871649 y[1] (numeric) = 0.20144715607984640057243223871648 absolute error = 1e-32 relative error = 4.9640810000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.228 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.99 y[1] (analytic) = 0.20160883853148122013669079252434 y[1] (numeric) = 0.20160883853148122013669079252433 absolute error = 1e-32 relative error = 4.9601000000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.227 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.989 y[1] (analytic) = 0.20177069930294276511812362934642 y[1] (numeric) = 0.2017706993029427651181236293464 absolute error = 2e-32 relative error = 9.9122419999999999999999999999999e-30 % Correct digits = 31 h = 0.001 memory used=3.8MB, alloc=3.0MB, time=0.17 Complex estimate of poles used Radius of convergence = 2.226 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.988 y[1] (analytic) = 0.20193273862795589142803601833872 y[1] (numeric) = 0.20193273862795589142803601833871 absolute error = 1e-32 relative error = 4.9521440000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.225 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.987 y[1] (analytic) = 0.20209495674056403489856550978756 y[1] (numeric) = 0.20209495674056403489856550978755 absolute error = 1e-32 relative error = 4.9481690000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.224 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.986 y[1] (analytic) = 0.20225735387512954583515702047411 y[1] (numeric) = 0.2022573538751295458351570204741 absolute error = 1e-32 relative error = 4.9441959999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.224 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.985 y[1] (analytic) = 0.20241993026633402324792899108846 y[1] (numeric) = 0.20241993026633402324792899108846 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.223 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.984 y[1] (analytic) = 0.20258268614917864875727677008648 y[1] (numeric) = 0.20258268614917864875727677008648 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.222 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.983 y[1] (analytic) = 0.2027456217589845201690330797729 y[1] (numeric) = 0.2027456217589845201690330797729 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.221 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.982 y[1] (analytic) = 0.2029087373313929847144789993515 y[1] (numeric) = 0.2029087373313929847144789993515 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.22 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.981 y[1] (analytic) = 0.2030720331023659719504723557026 y[1] (numeric) = 0.20307203310236597195047235570259 absolute error = 1e-32 relative error = 4.9243609999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.219 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.98 y[1] (analytic) = 0.20323550930818632631493374522397 y[1] (numeric) = 0.20323550930818632631493374522396 absolute error = 1e-32 relative error = 4.9203999999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.218 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.979 y[1] (analytic) = 0.20339916618545813933290361869491 y[1] (numeric) = 0.2033991661854581393329036186949 absolute error = 1e-32 relative error = 4.9164409999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.217 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.978 y[1] (analytic) = 0.20356300397110708146835694528471 y[1] (numeric) = 0.2035630039711070814683569452847 absolute error = 1e-32 relative error = 4.9124839999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.216 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.977 y[1] (analytic) = 0.20372702290238073361693493101497 y[1] (numeric) = 0.20372702290238073361693493101497 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.216 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.976 y[1] (analytic) = 0.20389122321684891823472610068638 y[1] (numeric) = 0.20389122321684891823472610068638 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.215 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.975 y[1] (analytic) = 0.20405560515240403009820175997959 y[1] (numeric) = 0.2040556051524040300982017599796 absolute error = 1e-32 relative error = 4.9006250000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.214 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.974 y[1] (analytic) = 0.20422016894726136669038343562041 y[1] (numeric) = 0.20422016894726136669038343562041 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.213 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.973 y[1] (analytic) = 0.20438491483995945820829234564187 y[1] (numeric) = 0.20438491483995945820829234564187 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.212 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.972 y[1] (analytic) = 0.20454984306936039718670327836124 y[1] (numeric) = 0.20454984306936039718670327836125 absolute error = 1e-32 relative error = 4.8887840000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.211 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.971 y[1] (analytic) = 0.20471495387465016773319745719461 y[1] (numeric) = 0.20471495387465016773319745719462 absolute error = 1e-32 relative error = 4.8848410000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.21 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.97 y[1] (analytic) = 0.20488024749533897436948103833309 y[1] (numeric) = 0.2048802474953389743694810383331 absolute error = 1e-32 relative error = 4.8809000000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.209 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.969 y[1] (analytic) = 0.20504572417126157047390782907634 y[1] (numeric) = 0.20504572417126157047390782907635 absolute error = 1e-32 relative error = 4.8769610000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.208 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.968 y[1] (analytic) = 0.20521138414257758632011662573384 y[1] (numeric) = 0.20521138414257758632011662573384 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 = 1 TOP MAIN SOLVE Loop x[1] = -1.967 y[1] (analytic) = 0.20537722764977185670666525093298 y[1] (numeric) = 0.20537722764977185670666525093298 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 = 1 memory used=7.6MB, alloc=4.2MB, time=0.39 TOP MAIN SOLVE Loop x[1] = -1.966 y[1] (analytic) = 0.20554325493365474817251492038488 y[1] (numeric) = 0.20554325493365474817251492038488 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.206 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.965 y[1] (analytic) = 0.20570946623536248579318998812028 y[1] (numeric) = 0.20570946623536248579318998812028 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 TOP MAIN SOLVE Loop x[1] = -1.964 y[1] (analytic) = 0.20587586179635747955240940638578 y[1] (numeric) = 0.20587586179635747955240940638578 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2.204 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.963 y[1] (analytic) = 0.20604244185842865028395739124719 y[1] (numeric) = 0.2060424418584286502839573912472 absolute error = 1e-32 relative error = 4.8533690000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.203 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.962 y[1] (analytic) = 0.20620920666369175517853180694529 y[1] (numeric) = 0.2062092066636917551785318069453 absolute error = 1e-32 relative error = 4.8494440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.202 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.961 y[1] (analytic) = 0.20637615645458971285027967064842 y[1] (numeric) = 0.20637615645458971285027967064843 absolute error = 1e-32 relative error = 4.8455210000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.201 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.96 y[1] (analytic) = 0.20654329147389292795769993390615 y[1] (numeric) = 0.20654329147389292795769993390616 absolute error = 1e-32 relative error = 4.8415999999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.2 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.959 y[1] (analytic) = 0.20671061196469961537356431728343 y[1] (numeric) = 0.20671061196469961537356431728344 absolute error = 1e-32 relative error = 4.8376809999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.199 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.958 y[1] (analytic) = 0.20687811817043612389847745980151 y[1] (numeric) = 0.20687811817043612389847745980153 absolute error = 2e-32 relative error = 9.6675280000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.199 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.957 y[1] (analytic) = 0.20704581033485725951266799438243 y[1] (numeric) = 0.20704581033485725951266799438245 absolute error = 2e-32 relative error = 9.6596980000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.198 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.956 y[1] (analytic) = 0.20721368870204660816057237393948 y[1] (numeric) = 0.2072136887020466081605723739395 absolute error = 2e-32 relative error = 9.6518720000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.197 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.955 y[1] (analytic) = 0.20738175351641685806274334952639 y[1] (numeric) = 0.20738175351641685806274334952641 absolute error = 2e-32 relative error = 9.6440500000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.196 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.954 y[1] (analytic) = 0.20755000502271012154958494149996 y[1] (numeric) = 0.20755000502271012154958494149997 absolute error = 1e-32 relative error = 4.8181159999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.195 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.953 y[1] (analytic) = 0.20771844346599825641138554641064 y[1] (numeric) = 0.20771844346599825641138554641065 absolute error = 1e-32 relative error = 4.8142089999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.194 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.952 y[1] (analytic) = 0.20788706909168318675909048575724 y[1] (numeric) = 0.20788706909168318675909048575726 absolute error = 2e-32 relative error = 9.6206080000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.193 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.951 y[1] (analytic) = 0.20805588214549722339022482726681 y[1] (numeric) = 0.20805588214549722339022482726682 absolute error = 1e-32 relative error = 4.8064009999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.192 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.95 y[1] (analytic) = 0.20822488287350338365434669442998 y[1] (numeric) = 0.20822488287350338365434669443 absolute error = 2e-32 relative error = 9.6050000000000000000000000000002e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.191 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.949 y[1] (analytic) = 0.20839407152209571081238052507387 y[1] (numeric) = 0.20839407152209571081238052507389 absolute error = 2e-32 relative error = 9.5972020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.191 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.948 y[1] (analytic) = 0.20856344833799959288414884422479 y[1] (numeric) = 0.20856344833799959288414884422481 absolute error = 2e-32 relative error = 9.5894080000000000000000000000002e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.19 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.947 y[1] (analytic) = 0.20873301356827208097839007983829 y[1] (numeric) = 0.20873301356827208097839007983831 absolute error = 2e-32 relative error = 9.5816180000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.189 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.946 y[1] (analytic) = 0.20890276746030220709951877158488 y[1] (numeric) = 0.2089027674603022070995187715849 absolute error = 2e-32 relative error = 9.5738319999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.188 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.945 y[1] (analytic) = 0.2090727102618113014253532022099 y[1] (numeric) = 0.20907271026181130142535320220992 absolute error = 2e-32 relative error = 9.5660499999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.187 Order of pole = 1 TOP MAIN SOLVE Loop memory used=11.4MB, alloc=4.3MB, time=0.61 x[1] = -1.944 y[1] (analytic) = 0.20924284222085330905000401746257 y[1] (numeric) = 0.20924284222085330905000401746259 absolute error = 2e-32 relative error = 9.5582720000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.186 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.943 y[1] (analytic) = 0.20941316358581510618608579364134 y[1] (numeric) = 0.20941316358581510618608579364136 absolute error = 2e-32 relative error = 9.5504979999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.185 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.942 y[1] (analytic) = 0.20958367460541681582038176085497 y[1] (numeric) = 0.20958367460541681582038176085499 absolute error = 2e-32 relative error = 9.5427279999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.184 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.941 y[1] (analytic) = 0.20975437552871212281705999457575 y[1] (numeric) = 0.20975437552871212281705999457577 absolute error = 2e-32 relative error = 9.5349620000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.183 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.94 y[1] (analytic) = 0.20992526660508858846250734738433 y[1] (numeric) = 0.20992526660508858846250734738435 absolute error = 2e-32 relative error = 9.5272000000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.183 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.939 y[1] (analytic) = 0.2100963480842679644458152063955 y[1] (numeric) = 0.21009634808426796444581520639552 absolute error = 2e-32 relative error = 9.5194420000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.182 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.938 y[1] (analytic) = 0.21026762021630650626891882912896 y[1] (numeric) = 0.21026762021630650626891882912898 absolute error = 2e-32 relative error = 9.5116880000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.181 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.937 y[1] (analytic) = 0.21043908325159528608035953096495 y[1] (numeric) = 0.21043908325159528608035953096497 absolute error = 2e-32 relative error = 9.5039380000000000000000000000002e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.18 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.936 y[1] (analytic) = 0.21061073744086050492660637021661 y[1] (numeric) = 0.21061073744086050492660637021663 absolute error = 2e-32 relative error = 9.4961920000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.179 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.935 y[1] (analytic) = 0.21078258303516380441484120167151 y[1] (numeric) = 0.21078258303516380441484120167153 absolute error = 2e-32 relative error = 9.4884499999999999999999999999998e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.178 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.934 y[1] (analytic) = 0.21095462028590257778107804561514 y[1] (numeric) = 0.21095462028590257778107804561516 absolute error = 2e-32 relative error = 9.4807120000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.177 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.933 y[1] (analytic) = 0.21112684944481028035745464625802 y[1] (numeric) = 0.21112684944481028035745464625804 absolute error = 2e-32 relative error = 9.4729780000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.176 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.932 y[1] (analytic) = 0.211299270763956739432500870553 y[1] (numeric) = 0.21129927076395673943250087055302 absolute error = 2e-32 relative error = 9.4652479999999999999999999999998e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.175 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.931 y[1] (analytic) = 0.2114718844957484634981552250156 y[1] (numeric) = 0.21147188449574846349815522501563 absolute error = 3e-32 relative error = 1.4186283000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.175 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.93 y[1] (analytic) = 0.21164469089292895087726724375119 y[1] (numeric) = 0.21164469089292895087726724375122 absolute error = 3e-32 relative error = 1.4174700000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.174 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.929 y[1] (analytic) = 0.21181769020857899772528982485007 y[1] (numeric) = 0.2118176902085789977252898248501 absolute error = 3e-32 relative error = 1.4163123000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.173 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.928 y[1] (analytic) = 0.21199088269611700539983176403549 y[1] (numeric) = 0.21199088269611700539983176403552 absolute error = 3e-32 relative error = 1.4151552000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.172 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.927 y[1] (analytic) = 0.21216426860929928719170675333718 y[1] (numeric) = 0.21216426860929928719170675333721 absolute error = 3e-32 relative error = 1.4139987000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.171 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.926 y[1] (analytic) = 0.21233784820222037441108097801114 y[1] (numeric) = 0.21233784820222037441108097801117 absolute error = 3e-32 relative error = 1.4128428000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.17 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.925 y[1] (analytic) = 0.21251162172931332182228715632886 y[1] (numeric) = 0.21251162172931332182228715632889 absolute error = 3e-32 relative error = 1.4116875000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.169 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.924 y[1] (analytic) = 0.21268558944535001242083842360844 y[1] (numeric) = 0.21268558944535001242083842360847 absolute error = 3e-32 relative error = 1.4105328000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.168 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.923 y[1] (analytic) = 0.21285975160544146154614086334638 y[1] (numeric) = 0.21285975160544146154614086334641 absolute error = 3e-32 relative error = 1.4093787000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.167 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.922 y[1] (analytic) = 0.21303410846503812032336873392125 y[1] (numeric) = 0.21303410846503812032336873392128 absolute error = 3e-32 relative error = 1.4082252000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.167 Order of pole = 1 memory used=15.2MB, alloc=4.3MB, time=0.84 TOP MAIN SOLVE Loop x[1] = -1.921 y[1] (analytic) = 0.21320866027993017842793152846517 y[1] (numeric) = 0.2132086602799301784279315284652 absolute error = 3e-32 relative error = 1.4070723000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.166 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.92 y[1] (analytic) = 0.21338340730624786616592693752134 y[1] (numeric) = 0.21338340730624786616592693752137 absolute error = 3e-32 relative error = 1.4059200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.165 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.919 y[1] (analytic) = 0.21355834980046175586393855840853 y[1] (numeric) = 0.21355834980046175586393855840856 absolute error = 3e-32 relative error = 1.4047683000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.164 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.918 y[1] (analytic) = 0.21373348801938306256150181117758 y[1] (numeric) = 0.21373348801938306256150181117761 absolute error = 3e-32 relative error = 1.4036172000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.163 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.917 y[1] (analytic) = 0.21390882222016394399952597804996 y[1] (numeric) = 0.21390882222016394399952597804999 absolute error = 3e-32 relative error = 1.4024667000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.162 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.916 y[1] (analytic) = 0.21408435266029779989792458065157 y[1] (numeric) = 0.2140843526602977998979245806516 absolute error = 3e-32 relative error = 1.4013168000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.161 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.915 y[1] (analytic) = 0.21426007959761957051567044657157 y[1] (numeric) = 0.2142600795976195705156704465716 absolute error = 3e-32 relative error = 1.4001675000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.16 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.914 y[1] (analytic) = 0.21443600329030603448645579316018 y[1] (numeric) = 0.21443600329030603448645579316021 absolute error = 3e-32 relative error = 1.3990188000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.159 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.913 y[1] (analytic) = 0.21461212399687610592310147140218 y[1] (numeric) = 0.21461212399687610592310147140222 absolute error = 4e-32 relative error = 1.8638276000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.159 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.912 y[1] (analytic) = 0.21478844197619113078382316553487 y[1] (numeric) = 0.21478844197619113078382316553491 absolute error = 4e-32 relative error = 1.8622976000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.158 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.911 y[1] (analytic) = 0.21496495748745518249342583418764 y[1] (numeric) = 0.21496495748745518249342583418768 absolute error = 4e-32 relative error = 1.8607684000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.157 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.91 y[1] (analytic) = 0.21514167079021535681246100557217 y[1] (numeric) = 0.21514167079021535681246100557221 absolute error = 4e-32 relative error = 1.8592400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.156 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.909 y[1] (analytic) = 0.21531858214436206594734470201092 y[1] (numeric) = 0.21531858214436206594734470201097 absolute error = 5e-32 relative error = 2.3221405000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.155 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.908 y[1] (analytic) = 0.21549569181012933189439676721983 y[1] (numeric) = 0.21549569181012933189439676721987 absolute error = 4e-32 relative error = 1.8561856000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.154 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.907 y[1] (analytic) = 0.21567300004809507901072520261939 y[1] (numeric) = 0.21567300004809507901072520261943 absolute error = 4e-32 relative error = 1.8546596000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.153 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.906 y[1] (analytic) = 0.21585050711918142580484178589529 y[1] (numeric) = 0.21585050711918142580484178589533 absolute error = 4e-32 relative error = 1.8531344000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.152 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.905 y[1] (analytic) = 0.21602821328465497593985774542155 y[1] (numeric) = 0.21602821328465497593985774542159 absolute error = 4e-32 relative error = 1.8516100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.152 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.904 y[1] (analytic) = 0.21620611880612710844207059735156 y[1] (numeric) = 0.2162061188061271084420705973516 absolute error = 4e-32 relative error = 1.8500864000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.151 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.903 y[1] (analytic) = 0.21638422394555426710771541752742 y[1] (numeric) = 0.21638422394555426710771541752746 absolute error = 4e-32 relative error = 1.8485636000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.15 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.902 y[1] (analytic) = 0.21656252896523824910061581720737 y[1] (numeric) = 0.2165625289652382491006158172074 absolute error = 3e-32 relative error = 1.3852812000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.149 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.901 y[1] (analytic) = 0.21674103412782649273343171931342 y[1] (numeric) = 0.21674103412782649273343171931346 absolute error = 4e-32 relative error = 1.8455204000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.148 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.9 y[1] (analytic) = 0.21691973969631236442516268980477 y[1] (numeric) = 0.21691973969631236442516268980481 absolute error = 4e-32 relative error = 1.8440000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.147 Order of pole = 1 TOP MAIN SOLVE Loop memory used=19.0MB, alloc=4.3MB, time=1.06 x[1] = -1.899 y[1] (analytic) = 0.21709864593403544482752706623094 y[1] (numeric) = 0.21709864593403544482752706623097 absolute error = 3e-32 relative error = 1.3818603000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.146 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.898 y[1] (analytic) = 0.21727775310468181411279844185778 y[1] (numeric) = 0.21727775310468181411279844185781 absolute error = 3e-32 relative error = 1.3807212000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.145 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.897 y[1] (analytic) = 0.21745706147228433641564220832865 y[1] (numeric) = 0.21745706147228433641564220832868 absolute error = 3e-32 relative error = 1.3795827000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.144 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.896 y[1] (analytic) = 0.21763657130122294342145583196367 y[1] (numeric) = 0.2176365713012229434214558319637 absolute error = 3e-32 relative error = 1.3784448000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.144 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.895 y[1] (analytic) = 0.21781628285622491709367733784939 y[1] (numeric) = 0.21781628285622491709367733784942 absolute error = 3e-32 relative error = 1.3773075000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.143 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.894 y[1] (analytic) = 0.21799619640236517153248710116506 y[1] (numeric) = 0.21799619640236517153248710116509 absolute error = 3e-32 relative error = 1.3761708000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.142 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.893 y[1] (analytic) = 0.21817631220506653395728849606486 y[1] (numeric) = 0.21817631220506653395728849606489 absolute error = 3e-32 relative error = 1.3750347000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.141 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.892 y[1] (analytic) = 0.21835663053010002480531322821936 y[1] (numeric) = 0.21835663053010002480531322821939 absolute error = 3e-32 relative error = 1.3738992000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.14 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.891 y[1] (analytic) = 0.2185371516435851369386572771451 y[1] (numeric) = 0.21853715164358513693865727714513 absolute error = 3e-32 relative error = 1.3727643000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.139 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.89 y[1] (analytic) = 0.21871787581199011395201329804685 y[1] (numeric) = 0.21871787581199011395201329804688 absolute error = 3e-32 relative error = 1.3716300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.138 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.889 y[1] (analytic) = 0.21889880330213222757332507938912 y[1] (numeric) = 0.21889880330213222757332507938915 absolute error = 3e-32 relative error = 1.3704963000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.137 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.888 y[1] (analytic) = 0.21907993438117805414954922112702 y[1] (numeric) = 0.21907993438117805414954922112704 absolute error = 2e-32 relative error = 9.1290879999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.136 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.887 y[1] (analytic) = 0.21926126931664375020966858878404 y[1] (numeric) = 0.21926126931664375020966858878406 absolute error = 2e-32 relative error = 9.1215380000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.136 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.886 y[1] (analytic) = 0.21944280837639532709706130968735 y[1] (numeric) = 0.21944280837639532709706130968737 absolute error = 2e-32 relative error = 9.1139919999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.135 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.885 y[1] (analytic) = 0.2196245518286489246632881089777 y[1] (numeric) = 0.21962455182864892466328810897773 absolute error = 3e-32 relative error = 1.3659675000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.134 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.884 y[1] (analytic) = 0.21980649994197108401531963381996 y[1] (numeric) = 0.21980649994197108401531963381998 absolute error = 2e-32 relative error = 9.0989119999999999999999999999998e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 2.133 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.883 y[1] (analytic) = 0.21998865298527901930818408386495 y[1] (numeric) = 0.21998865298527901930818408386498 absolute error = 3e-32 relative error = 1.3637067000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.132 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.882 y[1] (analytic) = 0.22017101122784088857497395376937 y[1] (numeric) = 0.2201710112278408885749739537694 absolute error = 3e-32 relative error = 1.3625772000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.131 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.881 y[1] (analytic) = 0.22035357493927606358610899877726 y[1] (numeric) = 0.22035357493927606358610899877729 absolute error = 3e-32 relative error = 1.3614483000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.13 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.88 y[1] (analytic) = 0.22053634438955539872971065631616 y[1] (numeric) = 0.22053634438955539872971065631619 absolute error = 3e-32 relative error = 1.3603200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.129 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.879 y[1] (analytic) = 0.22071931984900149890490109456918 y[1] (numeric) = 0.22071931984900149890490109456921 absolute error = 3e-32 relative error = 1.3591923000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.129 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.878 y[1] (analytic) = 0.22090250158828898641979781235835 y[1] (numeric) = 0.22090250158828898641979781235838 absolute error = 3e-32 relative error = 1.3580652000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.128 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.877 y[1] (analytic) = 0.22108588987844476688593228271845 y[1] (numeric) = 0.22108588987844476688593228271848 absolute error = 3e-32 relative error = 1.3569387000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.127 Order of pole = 1 TOP MAIN SOLVE Loop memory used=22.8MB, alloc=4.3MB, time=1.29 x[1] = -1.876 y[1] (analytic) = 0.22126948499084829410077851455599 y[1] (numeric) = 0.22126948499084829410077851455603 absolute error = 4e-32 relative error = 1.8077504000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.126 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.875 y[1] (analytic) = 0.22145328719723183391003460207612 y[1] (numeric) = 0.22145328719723183391003460207616 absolute error = 4e-32 relative error = 1.8062500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.125 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.874 y[1] (analytic) = 0.22163729676968072704125733951908 y[1] (numeric) = 0.22163729676968072704125733951912 absolute error = 4e-32 relative error = 1.8047504000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.124 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.873 y[1] (analytic) = 0.22182151398063365090040679847449 y[1] (numeric) = 0.22182151398063365090040679847453 absolute error = 4e-32 relative error = 1.8032516000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.123 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.872 y[1] (analytic) = 0.22200593910288288032281439593072 y[1] (numeric) = 0.22200593910288288032281439593076 absolute error = 4e-32 relative error = 1.8017536000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.122 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.871 y[1] (analytic) = 0.22219057240957454727004442256114 y[1] (numeric) = 0.22219057240957454727004442256118 absolute error = 4e-32 relative error = 1.8002564000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.121 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.87 y[1] (analytic) = 0.22237541417420889946407525184016 y[1] (numeric) = 0.22237541417420889946407525184019 absolute error = 3e-32 relative error = 1.3490700000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.121 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.869 y[1] (analytic) = 0.22256046467064055795018251070905 y[1] (numeric) = 0.22256046467064055795018251070909 absolute error = 4e-32 relative error = 1.7972644000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.12 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.868 y[1] (analytic) = 0.22274572417307877357986236096212 y[1] (numeric) = 0.22274572417307877357986236096216 absolute error = 4e-32 relative error = 1.7957696000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.119 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.867 y[1] (analytic) = 0.22293119295608768240508871658289 y[1] (numeric) = 0.22293119295608768240508871658293 absolute error = 4e-32 relative error = 1.7942756000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.118 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.866 y[1] (analytic) = 0.22311687129458655997515370521263 y[1] (numeric) = 0.22311687129458655997515370521267 absolute error = 4e-32 relative error = 1.7927824000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.117 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.865 y[1] (analytic) = 0.22330275946385007452729597105996 y[1] (numeric) = 0.22330275946385007452729597106 absolute error = 4e-32 relative error = 1.7912900000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.116 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.864 y[1] (analytic) = 0.22348885773950853906227651114226 y[1] (numeric) = 0.2234888577395085390622765111423 absolute error = 4e-32 relative error = 1.7897984000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.115 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.863 y[1] (analytic) = 0.22367516639754816229601663606418 y[1] (numeric) = 0.22367516639754816229601663606422 absolute error = 4e-32 relative error = 1.7883076000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.114 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.862 y[1] (analytic) = 0.22386168571431129847836734986268 y[1] (numeric) = 0.22386168571431129847836734986273 absolute error = 5e-32 relative error = 2.2335220000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.114 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.861 y[1] (analytic) = 0.22404841596649669607003395005647 y[1] (numeric) = 0.22404841596649669607003395005652 absolute error = 5e-32 relative error = 2.2316605000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.113 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.86 y[1] (analytic) = 0.22423535743115974526863395820253 y[1] (numeric) = 0.22423535743115974526863395820258 absolute error = 5e-32 relative error = 2.2298000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.112 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.859 y[1] (analytic) = 0.22442251038571272437482060225576 y[1] (numeric) = 0.22442251038571272437482060225581 absolute error = 5e-32 relative error = 2.2279405000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.111 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.858 y[1] (analytic) = 0.22460987510792504498935798411739 y[1] (numeric) = 0.22460987510792504498935798411744 absolute error = 5e-32 relative error = 2.2260820000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.11 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.857 y[1] (analytic) = 0.22479745187592349603198777821214 y[1] (numeric) = 0.22479745187592349603198777821219 absolute error = 5e-32 relative error = 2.2242245000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.109 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.856 y[1] (analytic) = 0.22498524096819248657288081901827 y[1] (numeric) = 0.22498524096819248657288081901833 absolute error = 6e-32 relative error = 2.6668416000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.108 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.855 y[1] (analytic) = 0.22517324266357428746742024645211 y[1] (numeric) = 0.22517324266357428746742024645217 absolute error = 6e-32 relative error = 2.6646150000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.107 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.854 y[1] (analytic) = 0.22536145724126927178501598714178 y[1] (numeric) = 0.22536145724126927178501598714183 absolute error = 5e-32 relative error = 2.2186580000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.106 Order of pole = 1 memory used=26.7MB, alloc=4.4MB, time=1.52 TOP MAIN SOLVE Loop x[1] = -1.853 y[1] (analytic) = 0.22554988498083615402260325617347 y[1] (numeric) = 0.22554988498083615402260325617352 absolute error = 5e-32 relative error = 2.2168045000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.106 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.852 y[1] (analytic) = 0.22573852616219222809343046711622 y[1] (numeric) = 0.22573852616219222809343046711627 absolute error = 5e-32 relative error = 2.2149520000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.105 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.851 y[1] (analytic) = 0.2259273810656136040816944372838 y[1] (numeric) = 0.22592738106561360408169443728385 absolute error = 5e-32 relative error = 2.2131005000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.104 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.85 y[1] (analytic) = 0.22611644997173544375353306953081 y[1] (numeric) = 0.22611644997173544375353306953086 absolute error = 5e-32 relative error = 2.2112500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.103 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.849 y[1] (analytic) = 0.22630573316155219481483778065588 y[1] (numeric) = 0.22630573316155219481483778065594 absolute error = 6e-32 relative error = 2.6512806000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.102 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.848 y[1] (analytic) = 0.2264952309164178239062998289508 y[1] (numeric) = 0.22649523091641782390629982895086 absolute error = 6e-32 relative error = 2.6490624000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.101 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.847 y[1] (analytic) = 0.22668494351804604832605636883816 y[1] (numeric) = 0.22668494351804604832605636883822 absolute error = 6e-32 relative error = 2.6468454000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.846 y[1] (analytic) = 0.22687487124851056647025352813112 y[1] (numeric) = 0.22687487124851056647025352813118 absolute error = 6e-32 relative error = 2.6446296000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.099 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.845 y[1] (analytic) = 0.22706501439024528698179506247126 y[1] (numeric) = 0.22706501439024528698179506247132 absolute error = 6e-32 relative error = 2.6424150000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.099 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.844 y[1] (analytic) = 0.22725537322604455659749619119994 y[1] (numeric) = 0.2272553732260445565974961912 absolute error = 6e-32 relative error = 2.6402016000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.098 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.843 y[1] (analytic) = 0.22744594803906338668381305853617 y[1] (numeric) = 0.22744594803906338668381305853623 absolute error = 6e-32 relative error = 2.6379894000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.097 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.842 y[1] (analytic) = 0.22763673911281767845126889271116 y[1] (numeric) = 0.22763673911281767845126889271122 absolute error = 6e-32 relative error = 2.6357784000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.096 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.841 y[1] (analytic) = 0.22782774673118444683764835288513 y[1] (numeric) = 0.22782774673118444683764835288519 absolute error = 6e-32 relative error = 2.6335686000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.095 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.84 y[1] (analytic) = 0.22801897117840204304998175848231 y[1] (numeric) = 0.22801897117840204304998175848236 absolute error = 5e-32 relative error = 2.1928000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.094 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.839 y[1] (analytic) = 0.22821041273907037575529088726155 y[1] (numeric) = 0.2282104127390703757552908872616 absolute error = 5e-32 relative error = 2.1909605000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.093 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.838 y[1] (analytic) = 0.22840207169815113091001780622551 y[1] (numeric) = 0.22840207169815113091001780622556 absolute error = 5e-32 relative error = 2.1891220000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.092 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.837 y[1] (analytic) = 0.2285939483409679902180077625933 y[1] (numeric) = 0.22859394834096799021800776259335 absolute error = 5e-32 relative error = 2.1872845000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.092 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.836 y[1] (analytic) = 0.22878604295320684820686650974995 y[1] (numeric) = 0.22878604295320684820686650975 absolute error = 5e-32 relative error = 2.1854480000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.091 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.835 y[1] (analytic) = 0.22897835582091602791246157456966 y[1] (numeric) = 0.22897835582091602791246157456972 absolute error = 6e-32 relative error = 2.6203350000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.09 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.834 y[1] (analytic) = 0.22917088723050649516128588701509 y[1] (numeric) = 0.22917088723050649516128588701514 absolute error = 5e-32 relative error = 2.1817780000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.089 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.833 y[1] (analytic) = 0.22936363746875207144035088966715 y[1] (numeric) = 0.2293636374687520714403508896672 absolute error = 5e-32 relative error = 2.1799445000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.088 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.832 y[1] (analytic) = 0.22955660682278964534422472306291 y[1] (numeric) = 0.22955660682278964534422472306296 absolute error = 5e-32 relative error = 2.1781120000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.087 Order of pole = 1 TOP MAIN SOLVE Loop memory used=30.5MB, alloc=4.4MB, time=1.75 x[1] = -1.831 y[1] (analytic) = 0.22974979558011938258877934163358 y[1] (numeric) = 0.22974979558011938258877934163363 absolute error = 5e-32 relative error = 2.1762805000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.086 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.83 y[1] (analytic) = 0.2299432040286049345811584538619 y[1] (numeric) = 0.22994320402860493458115845386195 absolute error = 5e-32 relative error = 2.1744500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.085 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.829 y[1] (analytic) = 0.23013683245647364553542599823577 y[1] (numeric) = 0.23013683245647364553542599823582 absolute error = 5e-32 relative error = 2.1726205000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.085 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.828 y[1] (analytic) = 0.23033068115231675812330246287991 y[1] (numeric) = 0.23033068115231675812330246287996 absolute error = 5e-32 relative error = 2.1707920000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.084 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.827 y[1] (analytic) = 0.23052475040508961764934373061431 y[1] (numeric) = 0.23052475040508961764934373061436 absolute error = 5e-32 relative error = 2.1689645000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.083 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.826 y[1] (analytic) = 0.23071904050411187473986428183161 y[1] (numeric) = 0.23071904050411187473986428183166 absolute error = 5e-32 relative error = 2.1671380000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.082 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.825 y[1] (analytic) = 0.23091355173906768653485351421562 y[1] (numeric) = 0.23091355173906768653485351421566 absolute error = 4e-32 relative error = 1.7322500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.081 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.824 y[1] (analytic) = 0.23110828440000591637208064015146 y[1] (numeric) = 0.2311082844000059163720806401515 absolute error = 4e-32 relative error = 1.7307904000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.08 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.823 y[1] (analytic) = 0.2313032387773403319525300989122 y[1] (numeric) = 0.23130323877734033195253009891224 absolute error = 4e-32 relative error = 1.7293316000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.079 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.822 y[1] (analytic) = 0.23149841516184980197625567055368 y[1] (numeric) = 0.23149841516184980197625567055372 absolute error = 4e-32 relative error = 1.7278736000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.078 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.821 y[1] (analytic) = 0.23169381384467849123768750111503 y[1] (numeric) = 0.23169381384467849123768750111507 absolute error = 4e-32 relative error = 1.7264164000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.078 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.82 y[1] (analytic) = 0.2318894351173360541693720434097 y[1] (numeric) = 0.23188943511733605416937204340975 absolute error = 5e-32 relative error = 2.1562000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.077 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.819 y[1] (analytic) = 0.23208527927169782682307048360306 y[1] (numeric) = 0.23208527927169782682307048360311 absolute error = 5e-32 relative error = 2.1543805000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.076 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.818 y[1] (analytic) = 0.23228134660000501727708656010837 y[1] (numeric) = 0.23228134660000501727708656010842 absolute error = 5e-32 relative error = 2.1525620000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.075 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.817 y[1] (analytic) = 0.23247763739486489445863978729226 y[1] (numeric) = 0.23247763739486489445863978729231 absolute error = 5e-32 relative error = 2.1507445000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.074 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.816 y[1] (analytic) = 0.23267415194925097537004497126009 y[1] (numeric) = 0.23267415194925097537004497126014 absolute error = 5e-32 relative error = 2.1489280000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.073 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.815 y[1] (analytic) = 0.23287089055650321070740354778802 y[1] (numeric) = 0.23287089055650321070740354778807 absolute error = 5e-32 relative error = 2.1471125000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.072 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.814 y[1] (analytic) = 0.23306785351032816886045668247488 y[1] (numeric) = 0.23306785351032816886045668247493 absolute error = 5e-32 relative error = 2.1452980000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.071 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.813 y[1] (analytic) = 0.23326504110479921828219424959686 y[1] (numeric) = 0.23326504110479921828219424959691 absolute error = 5e-32 relative error = 2.1434845000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.07 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.812 y[1] (analytic) = 0.23346245363435670821675774815191 y[1] (numeric) = 0.23346245363435670821675774815196 absolute error = 5e-32 relative error = 2.1416720000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.07 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.811 y[1] (analytic) = 0.23366009139380814777411892036887 y[1] (numeric) = 0.23366009139380814777411892036892 absolute error = 5e-32 relative error = 2.1398605000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.069 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.81 y[1] (analytic) = 0.23385795467832838333995930871589 y[1] (numeric) = 0.23385795467832838333995930871593 absolute error = 4e-32 relative error = 1.7104400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.068 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.809 y[1] (analytic) = 0.23405604378345977430911922136108 y[1] (numeric) = 0.23405604378345977430911922136112 absolute error = 4e-32 relative error = 1.7089924000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.067 Order of pole = 1 TOP MAIN SOLVE Loop memory used=34.3MB, alloc=4.4MB, time=1.98 x[1] = -1.808 y[1] (analytic) = 0.23425435900511236713092757230027 y[1] (numeric) = 0.23425435900511236713092757230031 absolute error = 4e-32 relative error = 1.7075456000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.066 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.807 y[1] (analytic) = 0.23445290063956406765466682015517 y[1] (numeric) = 0.23445290063956406765466682015521 absolute error = 4e-32 relative error = 1.7060996000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.065 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.806 y[1] (analytic) = 0.23465166898346081176336974814367 y[1] (numeric) = 0.23465166898346081176336974814372 absolute error = 5e-32 relative error = 2.1308180000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.064 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.805 y[1] (analytic) = 0.2348506643338167342840871061114 y[1] (numeric) = 0.23485066433381673428408710611145 absolute error = 5e-32 relative error = 2.1290125000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.063 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.804 y[1] (analytic) = 0.23504988698801433616270717297039 y[1] (numeric) = 0.23504988698801433616270717297044 absolute error = 5e-32 relative error = 2.1272080000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.063 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.803 y[1] (analytic) = 0.23524933724380464989135009359395 y[1] (numeric) = 0.235249337243804649891350093594 absolute error = 5e-32 relative error = 2.1254045000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.062 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.802 y[1] (analytic) = 0.23544901539930740317630139734282 y[1] (numeric) = 0.23544901539930740317630139734287 absolute error = 5e-32 relative error = 2.1236020000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.061 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.801 y[1] (analytic) = 0.2356489217530111808343904151215 y[1] (numeric) = 0.23564892175301118083439041512155 absolute error = 5e-32 relative error = 2.1218005000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.06 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.8 y[1] (analytic) = 0.23584905660377358490566037735849 y[1] (numeric) = 0.23584905660377358490566037735854 absolute error = 5e-32 relative error = 2.1200000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.059 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.799 y[1] (analytic) = 0.23604942025082139297011779574219 y[1] (numeric) = 0.23604942025082139297011779574224 absolute error = 5e-32 relative error = 2.1182005000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.058 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.798 y[1] (analytic) = 0.23625001299375071465628930609591 y[1] (numeric) = 0.23625001299375071465628930609596 absolute error = 5e-32 relative error = 2.1164020000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.057 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.797 y[1] (analytic) = 0.23645083513252714632925447761035 y[1] (numeric) = 0.2364508351325271463292544776104 absolute error = 5e-32 relative error = 2.1146045000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.057 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.796 y[1] (analytic) = 0.23665188696748592394576317393724 y[1] (numeric) = 0.23665188696748592394576317393729 absolute error = 5e-32 relative error = 2.1128080000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.056 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.795 y[1] (analytic) = 0.23685316879933207406398588355114 y[1] (numeric) = 0.23685316879933207406398588355119 absolute error = 5e-32 relative error = 2.1110125000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.055 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.794 y[1] (analytic) = 0.23705468092914056299538501947167 y[1] (numeric) = 0.23705468092914056299538501947172 absolute error = 5e-32 relative error = 2.1092180000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.054 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.793 y[1] (analytic) = 0.23725642365835644408613452107062 y[1] (numeric) = 0.23725642365835644408613452107067 absolute error = 5e-32 relative error = 2.1074245000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.053 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.792 y[1] (analytic) = 0.23745839728879500311545417242899 y[1] (numeric) = 0.23745839728879500311545417242904 absolute error = 5e-32 relative error = 2.1056320000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.052 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.791 y[1] (analytic) = 0.23766060212264190179816388172012 y[1] (numeric) = 0.23766060212264190179816388172017 absolute error = 5e-32 relative error = 2.1038405000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.051 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.79 y[1] (analytic) = 0.23786303846245331937870174353607 y[1] (numeric) = 0.23786303846245331937870174353612 absolute error = 5e-32 relative error = 2.1020500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.05 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.789 y[1] (analytic) = 0.23806570661115609230378803010388 y[1] (numeric) = 0.23806570661115609230378803010393 absolute error = 5e-32 relative error = 2.1002605000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.05 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.788 y[1] (analytic) = 0.2382686068720478519608553271142 y[1] (numeric) = 0.23826860687204785196085532711425 absolute error = 5e-32 relative error = 2.0984720000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.049 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.787 y[1] (analytic) = 0.23847173954879716046930284456245 y[1] (numeric) = 0.2384717395487971604693028445625 absolute error = 5e-32 relative error = 2.0966845000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.048 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.786 y[1] (analytic) = 0.23867510494544364451157049173755 y[1] (numeric) = 0.23867510494544364451157049173759 absolute error = 4e-32 relative error = 1.6759184000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.047 Order of pole = 1 TOP MAIN SOLVE Loop memory used=38.1MB, alloc=4.4MB, time=2.21 x[1] = -1.785 y[1] (analytic) = 0.23887870336639812719096560743868 y[1] (numeric) = 0.23887870336639812719096560743873 absolute error = 5e-32 relative error = 2.0931125000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.046 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.784 y[1] (analytic) = 0.23908253511644275790311228080913 y[1] (numeric) = 0.23908253511644275790311228080918 absolute error = 5e-32 relative error = 2.0913280000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.045 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.783 y[1] (analytic) = 0.2392866005007311402078299839989 y[1] (numeric) = 0.23928660050073114020782998399895 absolute error = 5e-32 relative error = 2.0895445000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.044 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.782 y[1] (analytic) = 0.23949089982478845768818476435532 y[1] (numeric) = 0.23949089982478845768818476435537 absolute error = 5e-32 relative error = 2.0877620000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.043 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.781 y[1] (analytic) = 0.23969543339451159778339251014091 y[1] (numeric) = 0.23969543339451159778339251014096 absolute error = 5e-32 relative error = 2.0859805000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.043 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.78 y[1] (analytic) = 0.23990020151616927358218980903944 y[1] (numeric) = 0.23990020151616927358218980903949 absolute error = 5e-32 relative error = 2.0842000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.042 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.779 y[1] (analytic) = 0.24010520449640214356322366207978 y[1] (numeric) = 0.24010520449640214356322366207983 absolute error = 5e-32 relative error = 2.0824205000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.041 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.778 y[1] (analytic) = 0.24031044264222292926894679622924 y[1] (numeric) = 0.24031044264222292926894679622929 absolute error = 5e-32 relative error = 2.0806420000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.04 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.777 y[1] (analytic) = 0.24051591626101653089944053592719 y[1] (numeric) = 0.24051591626101653089944053592723 absolute error = 4e-32 relative error = 1.6630916000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.039 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.776 y[1] (analytic) = 0.24072162566054014081252214638956 y[1] (numeric) = 0.24072162566054014081252214638961 absolute error = 5e-32 relative error = 2.0770880000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.038 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.775 y[1] (analytic) = 0.24092757114892335491642824875772 y[1] (numeric) = 0.24092757114892335491642824875777 absolute error = 5e-32 relative error = 2.0753125000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.037 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.774 y[1] (analytic) = 0.24113375303466828194130032823126 y[1] (numeric) = 0.24113375303466828194130032823132 absolute error = 6e-32 relative error = 2.4882456000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.036 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.773 y[1] (analytic) = 0.2413401716266496505756325103553 y[1] (numeric) = 0.24134017162664965057563251035536 absolute error = 6e-32 relative error = 2.4861174000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.036 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.772 y[1] (analytic) = 0.24154682723411491445377566676586 y[1] (numeric) = 0.24154682723411491445377566676592 absolute error = 6e-32 relative error = 2.4839904000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.035 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.771 y[1] (analytic) = 0.24175372016668435498052552907197 y[1] (numeric) = 0.24175372016668435498052552907203 absolute error = 6e-32 relative error = 2.4818646000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.034 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.77 y[1] (analytic) = 0.24196085073435118197875583730552 y[1] (numeric) = 0.24196085073435118197875583730558 absolute error = 6e-32 relative error = 2.4797400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.033 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.769 y[1] (analytic) = 0.24216821924748163214599062663691 y[1] (numeric) = 0.24216821924748163214599062663696 absolute error = 5e-32 relative error = 2.0646805000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.032 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.768 y[1] (analytic) = 0.24237582601681506530574256197065 y[1] (numeric) = 0.24237582601681506530574256197071 absolute error = 6e-32 relative error = 2.4754944000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.031 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.767 y[1] (analytic) = 0.24258367135346405843937676373491 y[1] (numeric) = 0.24258367135346405843937676373496 absolute error = 5e-32 relative error = 2.0611445000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.03 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.766 y[1] (analytic) = 0.24279175556891449748419182879491 y[1] (numeric) = 0.24279175556891449748419182879496 absolute error = 5e-32 relative error = 2.0593780000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.029 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.765 y[1] (analytic) = 0.24300007897502566688334173708606 y[1] (numeric) = 0.24300007897502566688334173708612 absolute error = 6e-32 relative error = 2.4691350000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.029 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.764 y[1] (analytic) = 0.2432086418840303368731540464081 y[1] (numeric) = 0.24320864188403033687315404640816 absolute error = 6e-32 relative error = 2.4670176000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.028 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.763 y[1] (analytic) = 0.24341744460853484849333121397878 y[1] (numeric) = 0.24341744460853484849333121397884 absolute error = 6e-32 relative error = 2.4649014000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.027 Order of pole = 1 memory used=41.9MB, alloc=4.4MB, time=2.43 TOP MAIN SOLVE Loop x[1] = -1.762 y[1] (analytic) = 0.24362648746151919630545304294355 y[1] (numeric) = 0.24362648746151919630545304294361 absolute error = 6e-32 relative error = 2.4627864000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.026 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.761 y[1] (analytic) = 0.24383577075633710880512913420501 y[1] (numeric) = 0.24383577075633710880512913420507 absolute error = 6e-32 relative error = 2.4606726000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.025 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.76 y[1] (analytic) = 0.24404529480671612651308082780164 y[1] (numeric) = 0.2440452948067161265130808278017 absolute error = 6e-32 relative error = 2.4585600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.024 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.759 y[1] (analytic) = 0.24425505992675767773036244275577 y[1] (numeric) = 0.24425505992675767773036244275583 absolute error = 6e-32 relative error = 2.4564486000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.023 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.758 y[1] (analytic) = 0.24446506643093715194286166895323 y[1] (numeric) = 0.24446506643093715194286166895329 absolute error = 6e-32 relative error = 2.4543384000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.023 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.757 y[1] (analytic) = 0.24467531463410397086014872833675 y[1] (numeric) = 0.24467531463410397086014872833681 absolute error = 6e-32 relative error = 2.4522294000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.022 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.756 y[1] (analytic) = 0.24488580485148165707367340461796 y[1] (numeric) = 0.24488580485148165707367340461802 absolute error = 6e-32 relative error = 2.4501216000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.021 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.755 y[1] (analytic) = 0.24509653739866790031923823996176 y[1] (numeric) = 0.24509653739866790031923823996183 absolute error = 7e-32 relative error = 2.8560175000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.02 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.754 y[1] (analytic) = 0.2453075125916346213286051127973 y[1] (numeric) = 0.24530751259163462132860511279737 absolute error = 7e-32 relative error = 2.8535612000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.019 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.753 y[1] (analytic) = 0.24551873074672803325502104218282 y[1] (numeric) = 0.24551873074672803325502104218289 absolute error = 7e-32 relative error = 2.8511063000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.018 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.752 y[1] (analytic) = 0.24573019218066870065737741012172 y[1] (numeric) = 0.2457301921806687006573774101218 absolute error = 8e-32 relative error = 3.2556032000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.017 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.751 y[1] (analytic) = 0.24594189721055159602764485301405 y[1] (numeric) = 0.24594189721055159602764485301413 absolute error = 8e-32 relative error = 3.2528008000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.016 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.75 y[1] (analytic) = 0.24615384615384615384615384615385 y[1] (numeric) = 0.24615384615384615384615384615392 absolute error = 7e-32 relative error = 2.8437500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.016 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.749 y[1] (analytic) = 0.24636603932839632214921848996834 y[1] (numeric) = 0.24636603932839632214921848996842 absolute error = 8e-32 relative error = 3.2472008000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.015 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.748 y[1] (analytic) = 0.24657847705242061159352820265989 y[1] (numeric) = 0.24657847705242061159352820265997 absolute error = 8e-32 relative error = 3.2444032000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.014 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.747 y[1] (analytic) = 0.24679115964451214200165893017513 y[1] (numeric) = 0.24679115964451214200165893017521 absolute error = 8e-32 relative error = 3.2416072000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.013 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.746 y[1] (analytic) = 0.24700408742363868637298210010779 y[1] (numeric) = 0.24700408742363868637298210010787 absolute error = 8e-32 relative error = 3.2388128000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.012 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.745 y[1] (analytic) = 0.24721726070914271234417587035927 y[1] (numeric) = 0.24721726070914271234417587035935 absolute error = 8e-32 relative error = 3.2360200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.011 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.744 y[1] (analytic) = 0.24743067982074142108346925525345 y[1] (numeric) = 0.24743067982074142108346925525353 absolute error = 8e-32 relative error = 3.2332288000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.01 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.743 y[1] (analytic) = 0.24764434507852678360267545044649 y[1] (numeric) = 0.24764434507852678360267545044657 absolute error = 8e-32 relative error = 3.2304392000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.009 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.742 y[1] (analytic) = 0.24785825680296557447099612250543 y[1] (numeric) = 0.24785825680296557447099612250551 absolute error = 8e-32 relative error = 3.2276512000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.009 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.741 y[1] (analytic) = 0.24807241531489940291450357856863 y[1] (numeric) = 0.24807241531489940291450357856871 absolute error = 8e-32 relative error = 3.2248648000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.008 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.74 y[1] (analytic) = 0.24828682093554474128513258516238 y[1] (numeric) = 0.24828682093554474128513258516246 absolute error = 8e-32 relative error = 3.2220800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.007 memory used=45.7MB, alloc=4.4MB, time=2.65 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.739 y[1] (analytic) = 0.24850147398649295088293816214771 y[1] (numeric) = 0.24850147398649295088293816214779 absolute error = 8e-32 relative error = 3.2192968000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.006 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.738 y[1] (analytic) = 0.24871637478971030511529993702501 y[1] (numeric) = 0.2487163747897103051152999370251 absolute error = 9e-32 relative error = 3.6185796000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.005 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.737 y[1] (analytic) = 0.24893152366753800997667760554759 y[1] (numeric) = 0.24893152366753800997667760554767 absolute error = 8e-32 relative error = 3.2137352000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.004 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.736 y[1] (analytic) = 0.24914692094269222183244570590299 y[1] (numeric) = 0.24914692094269222183244570590307 absolute error = 8e-32 relative error = 3.2109568000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.735 y[1] (analytic) = 0.24936256693826406249025927472897 y[1] (numeric) = 0.24936256693826406249025927472906 absolute error = 9e-32 relative error = 3.6092025000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.734 y[1] (analytic) = 0.24957846197771963154232501305295 y[1] (numeric) = 0.24957846197771963154232501305304 absolute error = 9e-32 relative error = 3.6060804000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.733 y[1] (analytic) = 0.24979460638490001596187534799511 y[1] (numeric) = 0.2497946063849000159618753479952 absolute error = 9e-32 relative error = 3.6029601000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.732 y[1] (analytic) = 0.25001100048402129693706523087016 y[1] (numeric) = 0.25001100048402129693706523087025 absolute error = 9e-32 relative error = 3.5998416000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 2 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.731 y[1] (analytic) = 0.25022764459967455392543366327516 y[1] (numeric) = 0.25022764459967455392543366327526 absolute error = 1.0e-31 relative error = 3.9963610000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.999 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.73 y[1] (analytic) = 0.25044453905682586591199378897543 y[1] (numeric) = 0.25044453905682586591199378897553 absolute error = 1.0e-31 relative error = 3.9929000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.998 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.729 y[1] (analytic) = 0.250661684180816309853936930011 y[1] (numeric) = 0.2506616841808163098539369300111 absolute error = 1.0e-31 relative error = 3.9894409999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.997 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.728 y[1] (analytic) = 0.25087908029736195629485717955717 y[1] (numeric) = 0.25087908029736195629485717955727 absolute error = 1.0e-31 relative error = 3.9859840000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.996 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.727 y[1] (analytic) = 0.25109672773255386213132409079758 y[1] (numeric) = 0.25109672773255386213132409079768 absolute error = 1.0e-31 relative error = 3.9825290000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.996 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.726 y[1] (analytic) = 0.25131462681285806051455161952172 y[1] (numeric) = 0.25131462681285806051455161952182 absolute error = 1.0e-31 relative error = 3.9790760000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.995 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.725 y[1] (analytic) = 0.2515327778651155478698317874548 y[1] (numeric) = 0.2515327778651155478698317874549 absolute error = 1.0e-31 relative error = 3.9756250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.994 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.724 y[1] (analytic) = 0.25175118121654226801632153258063 y[1] (numeric) = 0.25175118121654226801632153258073 absolute error = 1.0e-31 relative error = 3.9721760000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.993 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.723 y[1] (analytic) = 0.25196983719472909336969090104162 y[1] (numeric) = 0.25196983719472909336969090104172 absolute error = 1.0e-31 relative error = 3.9687290000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.992 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.722 y[1] (analytic) = 0.25218874612764180321006011170953 y[1] (numeric) = 0.25218874612764180321006011170963 absolute error = 1.0e-31 relative error = 3.9652840000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.991 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.721 y[1] (analytic) = 0.25240790834362105899757208832964 y[1] (numeric) = 0.25240790834362105899757208832975 absolute error = 1.1e-31 relative error = 4.3580251000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.99 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.72 y[1] (analytic) = 0.2526273241713823767178658043654 y[1] (numeric) = 0.25262732417138237671786580436551 absolute error = 1.1e-31 relative error = 4.3542400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.99 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.719 y[1] (analytic) = 0.25284699394001609623963422142469 y[1] (numeric) = 0.2528469939400160962396342214248 absolute error = 1.1e-31 relative error = 4.3504570999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.989 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.718 y[1] (analytic) = 0.25306691797898734766636872254857 y[1] (numeric) = 0.25306691797898734766636872254868 absolute error = 1.1e-31 relative error = 4.3466763999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.988 Order of pole = 1 TOP MAIN SOLVE Loop memory used=49.5MB, alloc=4.4MB, time=2.87 x[1] = -1.717 y[1] (analytic) = 0.2532870966181360146643097458036 y[1] (numeric) = 0.25328709661813601466430974580372 absolute error = 1.2e-31 relative error = 4.7377068000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.987 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.716 y[1] (analytic) = 0.25350753018767669474854081065624 y[1] (numeric) = 0.25350753018767669474854081065636 absolute error = 1.2e-31 relative error = 4.7335872000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.986 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.715 y[1] (analytic) = 0.25372821901819865650908029863811 y[1] (numeric) = 0.25372821901819865650908029863823 absolute error = 1.2e-31 relative error = 4.7294700000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.985 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.714 y[1] (analytic) = 0.25394916344066579375874219995144 y[1] (numeric) = 0.25394916344066579375874219995156 absolute error = 1.2e-31 relative error = 4.7253552000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.984 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.713 y[1] (analytic) = 0.25417036378641657658445356803086 y[1] (numeric) = 0.25417036378641657658445356803097 absolute error = 1.1e-31 relative error = 4.3278059000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.984 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.712 y[1] (analytic) = 0.25439182038716399928363263378975 y[1] (numeric) = 0.25439182038716399928363263378986 absolute error = 1.1e-31 relative error = 4.3240383999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.983 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.711 y[1] (analytic) = 0.25461353357499552516714741945365 y[1] (numeric) = 0.25461353357499552516714741945376 absolute error = 1.1e-31 relative error = 4.3202730999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.982 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.71 y[1] (analytic) = 0.25483550368237302821029025763869 y[1] (numeric) = 0.25483550368237302821029025763881 absolute error = 1.2e-31 relative error = 4.7089200000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.981 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.709 y[1] (analytic) = 0.25505773104213273153311886378922 y[1] (numeric) = 0.25505773104213273153311886378934 absolute error = 1.2e-31 relative error = 4.7048172000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.98 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.708 y[1] (analytic) = 0.2552802159874851426914295283647 y[1] (numeric) = 0.25528021598748514269142952836481 absolute error = 1.1e-31 relative error = 4.3089903999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.979 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.707 y[1] (analytic) = 0.25550295885201498575954258838294 y[1] (numeric) = 0.25550295885201498575954258838306 absolute error = 1.2e-31 relative error = 4.6966188000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.978 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.706 y[1] (analytic) = 0.25572595996968113018599460520515 y[1] (numeric) = 0.25572595996968113018599460520526 absolute error = 1.1e-31 relative error = 4.3014796000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.977 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.705 y[1] (analytic) = 0.2559492196748165164031456159098 y[1] (numeric) = 0.25594921967481651640314561590992 absolute error = 1.2e-31 relative error = 4.6884300000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.977 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.704 y[1] (analytic) = 0.25617273830212807817162343837099 y[1] (numeric) = 0.2561727383021280781716234383711 absolute error = 1.1e-31 relative error = 4.2939776000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.976 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.703 y[1] (analytic) = 0.25639651618669666164044029435346 y[1] (numeric) = 0.25639651618669666164044029435357 absolute error = 1.1e-31 relative error = 4.2902298999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.975 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.702 y[1] (analytic) = 0.25662055366397694110352996968798 y[1] (numeric) = 0.25662055366397694110352996968809 absolute error = 1.1e-31 relative error = 4.2864844000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.974 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.701 y[1] (analytic) = 0.25684485106979733143336635501969 y[1] (numeric) = 0.2568448510697973314333663550198 absolute error = 1.1e-31 relative error = 4.2827410999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.973 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.7 y[1] (analytic) = 0.25706940874035989717223650385604 y[1] (numeric) = 0.25706940874035989717223650385616 absolute error = 1.2e-31 relative error = 4.6680000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.972 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.699 y[1] (analytic) = 0.25729422701224025826165330580628 y[1] (numeric) = 0.2572942270122402582616533058064 absolute error = 1.2e-31 relative error = 4.6639212000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.971 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.698 y[1] (analytic) = 0.25751930622238749239030450112845 y[1] (numeric) = 0.25751930622238749239030450112857 absolute error = 1.2e-31 relative error = 4.6598448000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.971 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.697 y[1] (analytic) = 0.25774464670812403394084605711261 y[1] (numeric) = 0.25774464670812403394084605711273 absolute error = 1.2e-31 relative error = 4.6557707999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.97 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.696 y[1] (analytic) = 0.25797024880714556951575888655913 y[1] (numeric) = 0.25797024880714556951575888655926 absolute error = 1.3e-31 relative error = 5.0393408000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.969 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.695 y[1] (analytic) = 0.25819611285752093002239851279039 y[1] (numeric) = 0.25819611285752093002239851279052 absolute error = 1.3e-31 relative error = 5.0349325000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.968 Order of pole = 1 TOP MAIN SOLVE Loop memory used=53.4MB, alloc=4.4MB, time=3.10 x[1] = -1.694 y[1] (analytic) = 0.2584222391976919792972775733945 y[1] (numeric) = 0.25842223919769197929727757339463 absolute error = 1.3e-31 relative error = 5.0305268000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.967 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.693 y[1] (analytic) = 0.25864862816647349924953100537498 y[1] (numeric) = 0.25864862816647349924953100537511 absolute error = 1.3e-31 relative error = 5.0261236999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.966 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.692 y[1] (analytic) = 0.25887528010305307150342336670408 y[1] (numeric) = 0.25887528010305307150342336670422 absolute error = 1.4e-31 relative error = 5.4080096000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.965 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.691 y[1] (analytic) = 0.25910219534699095551966702258672 y[1] (numeric) = 0.25910219534699095551966702258685 absolute error = 1.3e-31 relative error = 5.0173252999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.965 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.69 y[1] (analytic) = 0.25932937423821996317522885817277 y[1] (numeric) = 0.2593293742382199631752288581729 absolute error = 1.3e-31 relative error = 5.0129299999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.964 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.689 y[1] (analytic) = 0.25955681711704532978121177214753 y[1] (numeric) = 0.25955681711704532978121177214766 absolute error = 1.3e-31 relative error = 5.0085373000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.963 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.688 y[1] (analytic) = 0.25978452432414458151830545672198 y[1] (numeric) = 0.25978452432414458151830545672211 absolute error = 1.3e-31 relative error = 5.0041471999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.962 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.687 y[1] (analytic) = 0.26001249620056739926920887817869 y[1] (numeric) = 0.26001249620056739926920887817882 absolute error = 1.3e-31 relative error = 4.9997596999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.961 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.686 y[1] (analytic) = 0.26024073308773547882733443744802 y[1] (numeric) = 0.26024073308773547882733443744815 absolute error = 1.3e-31 relative error = 4.9953747999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.96 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.685 y[1] (analytic) = 0.26046923532744238746101101133692 y[1] (numeric) = 0.26046923532744238746101101133706 absolute error = 1.4e-31 relative error = 5.3749150000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.959 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.684 y[1] (analytic) = 0.26069800326185341681230995115562 y[1] (numeric) = 0.26069800326185341681230995115576 absolute error = 1.4e-31 relative error = 5.3701984000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.959 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.683 y[1] (analytic) = 0.26092703723350543210952464573284 y[1] (numeric) = 0.26092703723350543210952464573298 absolute error = 1.4e-31 relative error = 5.3654846000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.958 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.682 y[1] (analytic) = 0.26115633758530671767224043932764 y[1] (numeric) = 0.26115633758530671767224043932778 absolute error = 1.4e-31 relative error = 5.3607735999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.957 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.681 y[1] (analytic) = 0.26138590466053681868783753088601 y[1] (numeric) = 0.26138590466053681868783753088615 absolute error = 1.4e-31 relative error = 5.3560654000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.956 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.68 y[1] (analytic) = 0.26161573880284637923817496860611 y[1] (numeric) = 0.26161573880284637923817496860625 absolute error = 1.4e-31 relative error = 5.3513600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.955 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.679 y[1] (analytic) = 0.26184584035625697655510899202182 y[1] (numeric) = 0.26184584035625697655510899202196 absolute error = 1.4e-31 relative error = 5.3466574000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.954 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.678 y[1] (analytic) = 0.26207620966516095148340376194674 y[1] (numeric) = 0.26207620966516095148340376194688 absolute error = 1.4e-31 relative error = 5.3419576000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.953 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.677 y[1] (analytic) = 0.26230684707432123512949695579789 y[1] (numeric) = 0.26230684707432123512949695579802 absolute error = 1.3e-31 relative error = 4.9560276999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.953 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.676 y[1] (analytic) = 0.26253775292887117167448679120057 y[1] (numeric) = 0.26253775292887117167448679120071 absolute error = 1.4e-31 relative error = 5.3325664000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.952 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.675 y[1] (analytic) = 0.26276892757431433732961077352603 y[1] (numeric) = 0.26276892757431433732961077352617 absolute error = 1.4e-31 relative error = 5.3278750000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.951 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.674 y[1] (analytic) = 0.26300037135652435541238984229446 y[1] (numeric) = 0.2630003713565243554123898422946 absolute error = 1.4e-31 relative error = 5.3231863999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.95 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.673 y[1] (analytic) = 0.26323208462174470752151461635635 y[1] (numeric) = 0.26323208462174470752151461635649 absolute error = 1.4e-31 relative error = 5.3185005999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.949 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.672 y[1] (analytic) = 0.26346406771658854078845310761137 y[1] (numeric) = 0.26346406771658854078845310761151 absolute error = 1.4e-31 relative error = 5.3138176000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.948 Order of pole = 1 TOP MAIN SOLVE Loop memory used=57.2MB, alloc=4.4MB, time=3.33 x[1] = -1.671 y[1] (analytic) = 0.26369632098803847118366158690864 y[1] (numeric) = 0.26369632098803847118366158690878 absolute error = 1.4e-31 relative error = 5.3091374000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.947 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.67 y[1] (analytic) = 0.26392884478344638285518224286732 y[1] (numeric) = 0.26392884478344638285518224286747 absolute error = 1.5e-31 relative error = 5.6833500000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.947 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.669 y[1] (analytic) = 0.26416163945053322347731287383825 y[1] (numeric) = 0.2641616394505332234773128738384 absolute error = 1.5e-31 relative error = 5.6783415000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.946 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.668 y[1] (analytic) = 0.26439470533738879558693509427258 y[1] (numeric) = 0.26439470533738879558693509427273 absolute error = 1.5e-31 relative error = 5.6733359999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.945 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.667 y[1] (analytic) = 0.26462804279247154388498841855371 y[1] (numeric) = 0.26462804279247154388498841855386 absolute error = 1.5e-31 relative error = 5.6683334999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.944 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.666 y[1] (analytic) = 0.26486165216460833848047810706556 y[1] (numeric) = 0.26486165216460833848047810706571 absolute error = 1.5e-31 relative error = 5.6633339999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.943 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.665 y[1] (analytic) = 0.26509553380299425405430482009954 y[1] (numeric) = 0.2650955338029942540543048200997 absolute error = 1.6e-31 relative error = 6.0355600000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.942 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.664 y[1] (analytic) = 0.26532968805719234492010392433222 y[1] (numeric) = 0.26532968805719234492010392433237 absolute error = 1.5e-31 relative error = 5.6533440000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.941 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.663 y[1] (analytic) = 0.26556411527713341595918173322544 y[1] (numeric) = 0.2655641152771334159591817332256 absolute error = 1.6e-31 relative error = 6.0249104000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.941 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.662 y[1] (analytic) = 0.26579881581311578940653503600511 y[1] (numeric) = 0.26579881581311578940653503600526 absolute error = 1.5e-31 relative error = 5.6433659999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.94 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.661 y[1] (analytic) = 0.26603379001580506746483897905809 y[1] (numeric) = 0.26603379001580506746483897905824 absolute error = 1.5e-31 relative error = 5.6383814999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.939 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.66 y[1] (analytic) = 0.26626903823623389072318670784961 y[1] (numeric) = 0.26626903823623389072318670784977 absolute error = 1.6e-31 relative error = 6.0089600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.938 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.659 y[1] (analytic) = 0.26650456082580169235726215600591 y[1] (numeric) = 0.26650456082580169235726215600607 absolute error = 1.6e-31 relative error = 6.0036495999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.937 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.658 y[1] (analytic) = 0.26674035813627444808752498023454 y[1] (numeric) = 0.2667403581362744480875249802347 absolute error = 1.6e-31 relative error = 5.9983424000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.936 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.657 y[1] (analytic) = 0.26697643051978442187188388447503 y[1] (numeric) = 0.26697643051978442187188388447519 absolute error = 1.6e-31 relative error = 5.9930383999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.935 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.656 y[1] (analytic) = 0.26721277832882990730923145329548 y[1] (numeric) = 0.26721277832882990730923145329564 absolute error = 1.6e-31 relative error = 5.9877376000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.935 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.655 y[1] (analytic) = 0.26744940191627496473011012229124 y[1] (numeric) = 0.2674494019162749647301101222914 absolute error = 1.6e-31 relative error = 5.9824400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.934 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.654 y[1] (analytic) = 0.26768630163534915395067505131546 y[1] (numeric) = 0.26768630163534915395067505131562 absolute error = 1.6e-31 relative error = 5.9771456000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.933 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.653 y[1] (analytic) = 0.26792347783964726266601543399986 y[1] (numeric) = 0.26792347783964726266601543400002 absolute error = 1.6e-31 relative error = 5.9718544000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.932 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.652 y[1] (analytic) = 0.26816093088312903045879117342933 y[1] (numeric) = 0.26816093088312903045879117342948 absolute error = 1.5e-31 relative error = 5.5936560000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.931 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.651 y[1] (analytic) = 0.26839866112011886839903687824444 y[1] (numeric) = 0.26839866112011886839903687824459 absolute error = 1.5e-31 relative error = 5.5887014999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.93 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.65 y[1] (analytic) = 0.26863666890530557421087978509066 y[1] (numeric) = 0.26863666890530557421087978509082 absolute error = 1.6e-31 relative error = 5.9560000000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.929 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.649 y[1] (analytic) = 0.26887495459374204298181249144642 y[1] (numeric) = 0.26887495459374204298181249144657 absolute error = 1.5e-31 relative error = 5.5788014999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.929 Order of pole = 1 TOP MAIN SOLVE Loop memory used=61.0MB, alloc=4.4MB, time=3.56 x[1] = -1.648 y[1] (analytic) = 0.26911351854084497339005528668125 y[1] (numeric) = 0.2691135185408449733900552866814 absolute error = 1.5e-31 relative error = 5.5738560000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.928 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.647 y[1] (analytic) = 0.26935236110239456942543639796165 y[1] (numeric) = 0.2693523611023945694254363979618 absolute error = 1.5e-31 relative error = 5.5689135000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.927 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.646 y[1] (analytic) = 0.2695914826345342375791116205791 y[1] (numeric) = 0.26959148263453423757911162057926 absolute error = 1.6e-31 relative error = 5.9349056000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.926 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.645 y[1] (analytic) = 0.26983088349377027947733757867257 y[1] (numeric) = 0.26983088349377027947733757867272 absolute error = 1.5e-31 relative error = 5.5590374999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.925 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.644 y[1] (analytic) = 0.2700705640369715799344052614067 y[1] (numeric) = 0.27007056403697157993440526140685 absolute error = 1.5e-31 relative error = 5.5541040000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.924 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.643 y[1] (analytic) = 0.27031052462136929039973250070483 y[1] (numeric) = 0.27031052462136929039973250070498 absolute error = 1.5e-31 relative error = 5.5491735000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.923 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.642 y[1] (analytic) = 0.27055076560455650777400569888133 y[1] (numeric) = 0.27055076560455650777400569888147 absolute error = 1.4e-31 relative error = 5.1746295999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.923 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.641 y[1] (analytic) = 0.27079128734448794856915237723609 y[1] (numeric) = 0.27079128734448794856915237723624 absolute error = 1.5e-31 relative error = 5.5393215000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.922 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.64 y[1] (analytic) = 0.2710320901994796183868169991327 y[1] (numeric) = 0.27103209019947961838681699913284 absolute error = 1.4e-31 relative error = 5.1654399999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.921 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.639 y[1] (analytic) = 0.27127317452820847668990302255284 y[1] (numeric) = 0.27127317452820847668990302255298 absolute error = 1.4e-31 relative error = 5.1608494000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.92 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.638 y[1] (analytic) = 0.27151454068971209684163425688099 y[1] (numeric) = 0.27151454068971209684163425688114 absolute error = 1.5e-31 relative error = 5.5245660000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.919 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.637 y[1] (analytic) = 0.27175618904338832138647833600424 y[1] (numeric) = 0.27175618904338832138647833600439 absolute error = 1.5e-31 relative error = 5.5196535000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.918 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.636 y[1] (analytic) = 0.27199811994899491254716447399916 y[1] (numeric) = 0.2719981199489949125471644739993 absolute error = 1.4e-31 relative error = 5.1470943999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.917 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.635 y[1] (analytic) = 0.2722403337666491979119166400098 y[1] (numeric) = 0.27224033376664919791191664000994 absolute error = 1.4e-31 relative error = 5.1425150000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.917 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.634 y[1] (analytic) = 0.27248283085682771128591187469278 y[1] (numeric) = 0.27248283085682771128591187469291 absolute error = 1.3e-31 relative error = 4.7709427999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.916 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.633 y[1] (analytic) = 0.27272561158036582868086167111528 y[1] (numeric) = 0.27272561158036582868086167111541 absolute error = 1.3e-31 relative error = 4.7666956999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.915 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.632 y[1] (analytic) = 0.27296867629845739941650215754442 y[1] (numeric) = 0.27296867629845739941650215754455 absolute error = 1.3e-31 relative error = 4.7624512000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.914 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.631 y[1] (analytic) = 0.27321202537265437230766624746835 y[1] (numeric) = 0.27321202537265437230766624746848 absolute error = 1.3e-31 relative error = 4.7582093000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.913 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.63 y[1] (analytic) = 0.27345565916486641691049796275534 y[1] (numeric) = 0.27345565916486641691049796275547 absolute error = 1.3e-31 relative error = 4.7539700000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.912 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.629 y[1] (analytic) = 0.27369957803736053980125578840395 y[1] (numeric) = 0.27369957803736053980125578840408 absolute error = 1.3e-31 relative error = 4.7497333000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.911 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.628 y[1] (analytic) = 0.27394378235276069586103818118861 y[1] (numeric) = 0.27394378235276069586103818118874 absolute error = 1.3e-31 relative error = 4.7454992000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.911 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.627 y[1] (analytic) = 0.27418827247404739453965022898834 y[1] (numeric) = 0.27418827247404739453965022898847 absolute error = 1.3e-31 relative error = 4.7412676999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.91 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.626 y[1] (analytic) = 0.27443304876455730107171594203535 y[1] (numeric) = 0.27443304876455730107171594203548 absolute error = 1.3e-31 relative error = 4.7370388000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.909 Order of pole = 1 TOP MAIN SOLVE Loop memory used=64.8MB, alloc=4.4MB, time=3.79 x[1] = -1.625 y[1] (analytic) = 0.27467811158798283261802575107296 y[1] (numeric) = 0.27467811158798283261802575107309 absolute error = 1.3e-31 relative error = 4.7328125000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.908 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.624 y[1] (analytic) = 0.27492346130837174930499348981244 y[1] (numeric) = 0.27492346130837174930499348981256 absolute error = 1.2e-31 relative error = 4.3648511999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.907 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.623 y[1] (analytic) = 0.27516909829012674013498144947524 y[1] (numeric) = 0.27516909829012674013498144947536 absolute error = 1.2e-31 relative error = 4.3609548000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.906 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.622 y[1] (analytic) = 0.27541502289800500374013601095491 y[1] (numeric) = 0.27541502289800500374013601095503 absolute error = 1.2e-31 relative error = 4.3570608000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.905 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.621 y[1] (analytic) = 0.27566123549711782395225988459167 y[1] (numeric) = 0.27566123549711782395225988459179 absolute error = 1.2e-31 relative error = 4.3531692000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.905 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.62 y[1] (analytic) = 0.27590773645293014016113011808851 y[1] (numeric) = 0.27590773645293014016113011808863 absolute error = 1.2e-31 relative error = 4.3492800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.904 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.619 y[1] (analytic) = 0.27615452613126011243355376908124 y[1] (numeric) = 0.27615452613126011243355376908136 absolute error = 1.2e-31 relative error = 4.3453932000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.903 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.618 y[1] (analytic) = 0.27640160489827868136533547968393 y[1] (numeric) = 0.27640160489827868136533547968405 absolute error = 1.2e-31 relative error = 4.3415088000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.902 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.617 y[1] (analytic) = 0.27664897312050912263821313534857 y[1] (numeric) = 0.27664897312050912263821313534869 absolute error = 1.2e-31 relative error = 4.3376268000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.901 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.616 y[1] (analytic) = 0.27689663116482659625369933899236 y[1] (numeric) = 0.27689663116482659625369933899248 absolute error = 1.2e-31 relative error = 4.3337472000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.9 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.615 y[1] (analytic) = 0.27714457939845769041564758295284 y[1] (numeric) = 0.27714457939845769041564758295295 absolute error = 1.1e-31 relative error = 3.9690475000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.9 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.614 y[1] (analytic) = 0.27739281818897996003324275533177 y[1] (numeric) = 0.27739281818897996003324275533188 absolute error = 1.1e-31 relative error = 3.9654956000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.899 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.613 y[1] (analytic) = 0.27764134790432145981599597308989 y[1] (numeric) = 0.27764134790432145981599597309 absolute error = 1.1e-31 relative error = 3.9619459000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.898 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.612 y[1] (analytic) = 0.27789016891276027193220369127069 y[1] (numeric) = 0.2778901689127602719322036912708 absolute error = 1.1e-31 relative error = 3.9583984000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.897 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.611 y[1] (analytic) = 0.27813928158292402820221059538216 y[1] (numeric) = 0.27813928158292402820221059538227 absolute error = 1.1e-31 relative error = 3.9548531000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.896 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.61 y[1] (analytic) = 0.27838868628378942679769494167757 y[1] (numeric) = 0.27838868628378942679769494167768 absolute error = 1.1e-31 relative error = 3.9513100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.895 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.609 y[1] (analytic) = 0.27863838338468174341807376728289 y[1] (numeric) = 0.278638383384681743418073767283 absolute error = 1.1e-31 relative error = 3.9477691000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.894 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.608 y[1] (analytic) = 0.27888837325527433691500374825974 y[1] (numeric) = 0.27888837325527433691500374825984 absolute error = 1.0e-31 relative error = 3.5856640000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.894 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.607 y[1] (analytic) = 0.27913865626558814933583143821447 y[1] (numeric) = 0.27913865626558814933583143821458 absolute error = 1.1e-31 relative error = 3.9406939000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.893 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.606 y[1] (analytic) = 0.27938923278599120035672417242115 y[1] (numeric) = 0.27938923278599120035672417242126 absolute error = 1.1e-31 relative error = 3.9371596000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.892 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.605 y[1] (analytic) = 0.27964010318719807607609007207724 y[1] (numeric) = 0.27964010318719807607609007207734 absolute error = 1.0e-31 relative error = 3.5760250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.891 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.604 y[1] (analytic) = 0.27989126784026941213877232972535 y[1] (numeric) = 0.27989126784026941213877232972545 absolute error = 1.0e-31 relative error = 3.5728160000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.89 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.603 y[1] (analytic) = 0.28014272711661137116137929952552 y[1] (numeric) = 0.28014272711661137116137929952562 absolute error = 1.0e-31 relative error = 3.5696090000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.889 Order of pole = 1 memory used=68.6MB, alloc=4.4MB, time=4.02 TOP MAIN SOLVE Loop x[1] = -1.602 y[1] (analytic) = 0.28039448138797511442898785443264 y[1] (numeric) = 0.28039448138797511442898785443274 absolute error = 1.0e-31 relative error = 3.5664040000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.888 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.601 y[1] (analytic) = 0.28064653102645626783333300591238 y[1] (numeric) = 0.28064653102645626783333300591248 absolute error = 1.0e-31 relative error = 3.5632010000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.888 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.6 y[1] (analytic) = 0.28089887640449438202247191011236 y[1] (numeric) = 0.28089887640449438202247191011246 absolute error = 1.0e-31 relative error = 3.5600000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.887 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.599 y[1] (analytic) = 0.28115151789487238673178510689802 y[1] (numeric) = 0.28115151789487238673178510689812 absolute error = 1.0e-31 relative error = 3.5568010000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.886 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.598 y[1] (analytic) = 0.28140445587071603926605215437623 y[1] (numeric) = 0.28140445587071603926605215437633 absolute error = 1.0e-31 relative error = 3.5536040000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.885 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.597 y[1] (analytic) = 0.28165769070549336710221273098395 y[1] (numeric) = 0.28165769070549336710221273098405 absolute error = 1.0e-31 relative error = 3.5504090000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.884 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.596 y[1] (analytic) = 0.28191122277301410458229777944168 y[1] (numeric) = 0.28191122277301410458229777944178 absolute error = 1.0e-31 relative error = 3.5472160000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.883 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.595 y[1] (analytic) = 0.282165052447429123665888361397 y[1] (numeric) = 0.2821650524474291236658883613971 absolute error = 1.0e-31 relative error = 3.5440250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.883 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.594 y[1] (analytic) = 0.28241918010322985871133257795617 y[1] (numeric) = 0.28241918010322985871133257795627 absolute error = 1.0e-31 relative error = 3.5408360000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.882 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.593 y[1] (analytic) = 0.28267360611524772525482318907274 y[1] (numeric) = 0.28267360611524772525482318907285 absolute error = 1.1e-31 relative error = 3.8914139000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.881 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.592 y[1] (analytic) = 0.28292833085865353275631043349147 y[1] (numeric) = 0.28292833085865353275631043349158 absolute error = 1.1e-31 relative error = 3.8879104000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.88 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.591 y[1] (analytic) = 0.2831833547089568912810960102014 y[1] (numeric) = 0.28318335470895689128109601020151 absolute error = 1.1e-31 relative error = 3.8844091000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.879 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.59 y[1] (analytic) = 0.28343867804200561208582523171112 y[1] (numeric) = 0.28343867804200561208582523171123 absolute error = 1.1e-31 relative error = 3.8809100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.878 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.589 y[1] (analytic) = 0.28369430123398510207746499850635 y[1] (numeric) = 0.28369430123398510207746499850646 absolute error = 1.1e-31 relative error = 3.8774131000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.877 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.588 y[1] (analytic) = 0.28395022466141775211372547237959 y[1] (numeric) = 0.2839502246614177521137254723797 absolute error = 1.1e-31 relative error = 3.8739184000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.877 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.587 y[1] (analytic) = 0.28420644870116231911325314353648 y[1] (numeric) = 0.28420644870116231911325314353658 absolute error = 1.0e-31 relative error = 3.5185690000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.876 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.586 y[1] (analytic) = 0.28446297373041330194379239209466 y[1] (numeric) = 0.28446297373041330194379239209476 absolute error = 1.0e-31 relative error = 3.5153960000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.875 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.585 y[1] (analytic) = 0.28471980012670031105638163842009 y[1] (numeric) = 0.28471980012670031105638163842019 absolute error = 1.0e-31 relative error = 3.5122250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.874 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.584 y[1] (analytic) = 0.28497692826788743183351875832133 y[1] (numeric) = 0.28497692826788743183351875832143 absolute error = 1.0e-31 relative error = 3.5090560000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.873 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.583 y[1] (analytic) = 0.28523435853217258161909860808485 y[1] (numeric) = 0.28523435853217258161909860808496 absolute error = 1.1e-31 relative error = 3.8564779000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.872 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.582 y[1] (analytic) = 0.2854920912980868603977932603311 y[1] (numeric) = 0.28549209129808686039779326033121 absolute error = 1.1e-31 relative error = 3.8529964000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.872 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.581 y[1] (analytic) = 0.28575012694449389509141289436018 y[1] (numeric) = 0.28575012694449389509141289436029 absolute error = 1.1e-31 relative error = 3.8495171000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.871 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.58 y[1] (analytic) = 0.28600846585058917743965221370553 y[1] (numeric) = 0.28600846585058917743965221370564 absolute error = 1.1e-31 relative error = 3.8460399999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.87 Order of pole = 1 memory used=72.4MB, alloc=4.4MB, time=4.24 TOP MAIN SOLVE Loop x[1] = -1.579 y[1] (analytic) = 0.28626710839589939543249377870007 y[1] (numeric) = 0.28626710839589939543249377870018 absolute error = 1.1e-31 relative error = 3.8425651000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.869 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.578 y[1] (analytic) = 0.2865260549602817582614057426698 y[1] (numeric) = 0.28652605496028175826140574266992 absolute error = 1.2e-31 relative error = 4.1881008000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.868 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.577 y[1] (analytic) = 0.28678530592392331475633716660133 y[1] (numeric) = 0.28678530592392331475633716660144 absolute error = 1.1e-31 relative error = 3.8356219000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.867 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.576 y[1] (analytic) = 0.28704486166734026527537935848918 y[1] (numeric) = 0.28704486166734026527537935848929 absolute error = 1.1e-31 relative error = 3.8321536000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.866 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.575 y[1] (analytic) = 0.28730472257137726701382653977375 y[1] (numeric) = 0.28730472257137726701382653977386 absolute error = 1.1e-31 relative error = 3.8286875000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.866 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.574 y[1] (analytic) = 0.28756488901720673269923358205779 y[1] (numeric) = 0.2875648890172067326992335820579 absolute error = 1.1e-31 relative error = 3.8252236000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.865 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.573 y[1] (analytic) = 0.28782536138632812263893258237778 y[1] (numeric) = 0.28782536138632812263893258237789 absolute error = 1.1e-31 relative error = 3.8217619000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.864 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.572 y[1] (analytic) = 0.28808614006056723008633365445335 y[1] (numeric) = 0.28808614006056723008633365445346 absolute error = 1.1e-31 relative error = 3.8183024000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.863 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.571 y[1] (analytic) = 0.2883472254220754598921985063037 y[1] (numeric) = 0.28834722542207545989219850630381 absolute error = 1.1e-31 relative error = 3.8148451000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.862 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.57 y[1] (analytic) = 0.28860861785332910040693815117319 y[1] (numeric) = 0.2886086178533291004069381511733 absolute error = 1.1e-31 relative error = 3.8113900000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.861 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.569 y[1] (analytic) = 0.28887031773712858859984845863132 y[1] (numeric) = 0.28887031773712858859984845863142 absolute error = 1.0e-31 relative error = 3.4617609999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.861 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.568 y[1] (analytic) = 0.28913232545659776836105919579578 y[1] (numeric) = 0.28913232545659776836105919579589 absolute error = 1.1e-31 relative error = 3.8044864000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.86 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.567 y[1] (analytic) = 0.28939464139518314195183373467547 y[1] (numeric) = 0.28939464139518314195183373467557 absolute error = 1.0e-31 relative error = 3.4554890000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.859 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.566 y[1] (analytic) = 0.28965726593665311456871771045628 y[1] (numeric) = 0.28965726593665311456871771045638 absolute error = 1.0e-31 relative error = 3.4523560000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.858 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.565 y[1] (analytic) = 0.28992019946509723198689560698418 y[1] (numeric) = 0.28992019946509723198689560698428 absolute error = 1.0e-31 relative error = 3.4492250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.857 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.564 y[1] (analytic) = 0.29018344236492541124797451957229 y[1] (numeric) = 0.2901834423649254112479745195724 absolute error = 1.1e-31 relative error = 3.7907056000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.856 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.563 y[1] (analytic) = 0.29044699502086716435727420142325 y[1] (numeric) = 0.29044699502086716435727420142336 absolute error = 1.1e-31 relative error = 3.7872659000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.856 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.562 y[1] (analytic) = 0.29071085781797081495556193827394 y[1] (numeric) = 0.29071085781797081495556193827406 absolute error = 1.2e-31 relative error = 4.1278128000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.855 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.561 y[1] (analytic) = 0.29097503114160270793002981621144 y[1] (numeric) = 0.29097503114160270793002981621156 absolute error = 1.2e-31 relative error = 4.1240652000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.854 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.56 y[1] (analytic) = 0.2912395153774464119291705498602 y[1] (numeric) = 0.29123951537744641192917054986032 absolute error = 1.2e-31 relative error = 4.1203200000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.853 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.559 y[1] (analytic) = 0.29150431091150191474606622220033 y[1] (numeric) = 0.29150431091150191474606622220044 absolute error = 1.1e-31 relative error = 3.7735291000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.852 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.558 y[1] (analytic) = 0.29176941813008481153446205305302 y[1] (numeric) = 0.29176941813008481153446205305313 absolute error = 1.1e-31 relative error = 3.7701004000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.851 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.557 y[1] (analytic) = 0.29203483741982548582185466068618 y[1] (numeric) = 0.2920348374198254858218546606863 absolute error = 1.2e-31 relative error = 4.1090988000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.85 memory used=76.2MB, alloc=4.4MB, time=4.47 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.556 y[1] (analytic) = 0.29230056916766828328368120998405 y[1] (numeric) = 0.29230056916766828328368120998417 absolute error = 1.2e-31 relative error = 4.1053632000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.85 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.555 y[1] (analytic) = 0.29256661376087067824255235113845 y[1] (numeric) = 0.29256661376087067824255235113857 absolute error = 1.2e-31 relative error = 4.1016300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.849 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.554 y[1] (analytic) = 0.29283297158700243285632794481621 y[1] (numeric) = 0.29283297158700243285632794481633 absolute error = 1.2e-31 relative error = 4.0978992000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.848 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.553 y[1] (analytic) = 0.29309964303394474895869024321115 y[1] (numeric) = 0.29309964303394474895869024321127 absolute error = 1.2e-31 relative error = 4.0941708000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.847 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.552 y[1] (analytic) = 0.29336662848988941251572445128706 y[1] (numeric) = 0.29336662848988941251572445128718 absolute error = 1.2e-31 relative error = 4.0904448000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.846 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.551 y[1] (analytic) = 0.29363392834333793066187142886087 y[1] (numeric) = 0.29363392834333793066187142886099 absolute error = 1.2e-31 relative error = 4.0867212000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.845 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.55 y[1] (analytic) = 0.29390154298310066127847171197649 y[1] (numeric) = 0.29390154298310066127847171197661 absolute error = 1.2e-31 relative error = 4.0830000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.845 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.549 y[1] (analytic) = 0.29416947279829593507797403130728 y[1] (numeric) = 0.2941694727982959350779740313074 absolute error = 1.2e-31 relative error = 4.0792812000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.844 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.548 y[1] (analytic) = 0.2944377181783491701567350861407 y[1] (numeric) = 0.29443771817834917015673508614082 absolute error = 1.2e-31 relative error = 4.0755648000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.843 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.547 y[1] (analytic) = 0.29470627951299197897919049489731 y[1] (numeric) = 0.29470627951299197897919049489743 absolute error = 1.2e-31 relative error = 4.0718508000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.842 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.546 y[1] (analytic) = 0.29497515719226126775602958718817 y[1] (numeric) = 0.29497515719226126775602958718829 absolute error = 1.2e-31 relative error = 4.0681392000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.841 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.545 y[1] (analytic) = 0.29524435160649832817885902820322 y[1] (numeric) = 0.29524435160649832817885902820334 absolute error = 1.2e-31 relative error = 4.0644300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.84 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.544 y[1] (analytic) = 0.29551386314634792147369217384726 y[1] (numeric) = 0.29551386314634792147369217384738 absolute error = 1.2e-31 relative error = 4.0607232000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.84 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.543 y[1] (analytic) = 0.29578369220275735473545254461231 y[1] (numeric) = 0.29578369220275735473545254461244 absolute error = 1.3e-31 relative error = 4.3951037000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.839 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.542 y[1] (analytic) = 0.29605383916697554950553087782332 y[1] (numeric) = 0.29605383916697554950553087782344 absolute error = 1.2e-31 relative error = 4.0533168000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.838 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.541 y[1] (analytic) = 0.29632430443055210255428587176092 y[1] (numeric) = 0.29632430443055210255428587176104 absolute error = 1.2e-31 relative error = 4.0496171999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.837 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.54 y[1] (analytic) = 0.29659508838533633883022897140823 y[1] (numeric) = 0.29659508838533633883022897140836 absolute error = 1.3e-31 relative error = 4.3830800000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.836 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.539 y[1] (analytic) = 0.2968661914234763565374833643608 y[1] (numeric) = 0.29686619142347635653748336436092 absolute error = 1.2e-31 relative error = 4.0422252000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.835 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.538 y[1] (analytic) = 0.29713761393741806430295675696877 y[1] (numeric) = 0.29713761393741806430295675696889 absolute error = 1.2e-31 relative error = 4.0385328000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.835 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.537 y[1] (analytic) = 0.29740935631990421039451648525192 y[1] (numeric) = 0.29740935631990421039451648525204 absolute error = 1.2e-31 relative error = 4.0348427999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.834 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.536 y[1] (analytic) = 0.2976814189639734039513040827602 y[1] (numeric) = 0.29768141896397340395130408276032 absolute error = 1.2e-31 relative error = 4.0311552000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.833 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.535 y[1] (analytic) = 0.29795380226295912818717457858159 y[1] (numeric) = 0.29795380226295912818717457858171 absolute error = 1.2e-31 relative error = 4.0274700000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.832 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.534 y[1] (analytic) = 0.29822650661048874552809353337572 y[1] (numeric) = 0.29822650661048874552809353337584 memory used=80.1MB, alloc=4.4MB, time=4.70 absolute error = 1.2e-31 relative error = 4.0237872000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.831 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.533 y[1] (analytic) = 0.29849953240048249464417213990434 y[1] (numeric) = 0.29849953240048249464417213990446 absolute error = 1.2e-31 relative error = 4.0201068000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.83 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.532 y[1] (analytic) = 0.29877288002715247933686761732213 y[1] (numeric) = 0.29877288002715247933686761732225 absolute error = 1.2e-31 relative error = 4.0164288000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.829 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.531 y[1] (analytic) = 0.2990465498850016492417226157841 y[1] (numeric) = 0.29904654988500164924172261578421 absolute error = 1.1e-31 relative error = 3.6783570999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.829 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.53 y[1] (analytic) = 0.29932054236882277230686342003652 y[1] (numeric) = 0.29932054236882277230686342003663 absolute error = 1.1e-31 relative error = 3.6749900000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.828 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.529 y[1] (analytic) = 0.29959485787369739900732239792129 y[1] (numeric) = 0.2995948578736973990073223979214 absolute error = 1.1e-31 relative error = 3.6716251000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.827 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.528 y[1] (analytic) = 0.29986949679499481825509538248954 y[1] (numeric) = 0.29986949679499481825509538248965 absolute error = 1.1e-31 relative error = 3.6682624000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.826 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.527 y[1] (analytic) = 0.30014445952837100496468950505878 y[1] (numeric) = 0.30014445952837100496468950505889 absolute error = 1.1e-31 relative error = 3.6649019000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.825 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.526 y[1] (analytic) = 0.30041974646976755923376141144407 y[1] (numeric) = 0.30041974646976755923376141144417 absolute error = 1.0e-31 relative error = 3.3286760000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.824 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.525 y[1] (analytic) = 0.30069535801541063709828979515129 y[1] (numeric) = 0.30069535801541063709828979515139 absolute error = 1.0e-31 relative error = 3.3256250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.824 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.524 y[1] (analytic) = 0.30097129456180987282156976996162 y[1] (numeric) = 0.30097129456180987282156976996172 absolute error = 1.0e-31 relative error = 3.3225760000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.823 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.523 y[1] (analytic) = 0.30124755650575729267615978049898 y[1] (numeric) = 0.30124755650575729267615978049908 absolute error = 1.0e-31 relative error = 3.3195290000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.822 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.522 y[1] (analytic) = 0.30152414424432622017775451351492 y[1] (numeric) = 0.30152414424432622017775451351501 absolute error = 9e-32 relative error = 2.9848356000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.821 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.521 y[1] (analytic) = 0.30180105817487017272979962522345 y[1] (numeric) = 0.30180105817487017272979962522354 absolute error = 9e-32 relative error = 2.9820969000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.82 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.52 y[1] (analytic) = 0.30207829869502174963750604156597 y[1] (numeric) = 0.30207829869502174963750604156607 absolute error = 1.0e-31 relative error = 3.3104000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.819 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.519 y[1] (analytic) = 0.30235586620269151144976311929662 y[1] (numeric) = 0.30235586620269151144976311929672 absolute error = 1.0e-31 relative error = 3.3073610000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.819 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.518 y[1] (analytic) = 0.30263376109606685058729107678303 y[1] (numeric) = 0.30263376109606685058729107678312 absolute error = 9e-32 relative error = 2.9738916000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.818 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.517 y[1] (analytic) = 0.30291198377361085321521381496743 y[1] (numeric) = 0.30291198377361085321521381496752 absolute error = 9e-32 relative error = 2.9711601000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.817 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.516 y[1] (analytic) = 0.30319053463406115231807355159818 y[1] (numeric) = 0.30319053463406115231807355159827 absolute error = 9e-32 relative error = 2.9684304000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.816 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.515 y[1] (analytic) = 0.30346941407642877193514858621187 y[1] (numeric) = 0.30346941407642877193514858621196 absolute error = 9e-32 relative error = 2.9657025000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.815 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.514 y[1] (analytic) = 0.30374862249999696251377500003037 y[1] (numeric) = 0.30374862249999696251377500003047 absolute error = 1.0e-31 relative error = 3.2921960000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.814 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.513 y[1] (analytic) = 0.30402816030432002733821217456446 y[1] (numeric) = 0.30402816030432002733821217456455 absolute error = 9e-32 relative error = 2.9602521000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.814 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.512 y[1] (analytic) = 0.30430802788922213999143068593464 y[1] (numeric) = 0.30430802788922213999143068593473 absolute error = 9e-32 relative error = 2.9575296000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.813 Order of pole = 1 TOP MAIN SOLVE Loop memory used=83.9MB, alloc=4.4MB, time=4.92 x[1] = -1.511 y[1] (analytic) = 0.30458822565479615280703939940075 y[1] (numeric) = 0.30458822565479615280703939940084 absolute error = 9e-32 relative error = 2.9548089000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.812 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.51 y[1] (analytic) = 0.30486875400140239626840645102283 y[1] (numeric) = 0.30486875400140239626840645102292 absolute error = 9e-32 relative error = 2.9520900000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.811 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.509 y[1] (analytic) = 0.30514961332966746931186626146867 y[1] (numeric) = 0.30514961332966746931186626146875 absolute error = 8e-32 relative error = 2.6216648000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.81 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.508 y[1] (analytic) = 0.30543080404048302049074178146792 y[1] (numeric) = 0.30543080404048302049074178146801 absolute error = 9e-32 relative error = 2.9466576000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.809 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.507 y[1] (analytic) = 0.30571232653500451995674782004183 y[1] (numeric) = 0.30571232653500451995674782004191 absolute error = 8e-32 relative error = 2.6168392000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.809 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.506 y[1] (analytic) = 0.30599418121465002221517755618359 y[1] (numeric) = 0.30599418121465002221517755618367 absolute error = 8e-32 relative error = 2.6144288000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.808 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.505 y[1] (analytic) = 0.30627636848109891961011018292356 y[1] (numeric) = 0.30627636848109891961011018292364 absolute error = 8e-32 relative error = 2.6120200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.807 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.504 y[1] (analytic) = 0.30655888873629068649571308049991 y[1] (numeric) = 0.30655888873629068649571308049999 absolute error = 8e-32 relative error = 2.6096128000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.806 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.503 y[1] (analytic) = 0.30684174238242361404954696350946 y[1] (numeric) = 0.30684174238242361404954696350954 absolute error = 8e-32 relative error = 2.6072072000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.805 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.502 y[1] (analytic) = 0.30712492982195353568361709629349 y[1] (numeric) = 0.30712492982195353568361709629357 absolute error = 8e-32 relative error = 2.6048032000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.804 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.501 y[1] (analytic) = 0.30740845145759254300874792230313 y[1] (numeric) = 0.30740845145759254300874792230321 absolute error = 8e-32 relative error = 2.6024008000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.804 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.5 y[1] (analytic) = 0.30769230769230769230769230769231 y[1] (numeric) = 0.30769230769230769230769230769239 absolute error = 8e-32 relative error = 2.6000000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.803 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.499 y[1] (analytic) = 0.30797649892931970147222005783183 y[1] (numeric) = 0.30797649892931970147222005783191 absolute error = 8e-32 relative error = 2.5976008000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.802 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.498 y[1] (analytic) = 0.30826102557210163735926342877506 y[1] (numeric) = 0.30826102557210163735926342877514 absolute error = 8e-32 relative error = 2.5952032000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.801 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.497 y[1] (analytic) = 0.30854588802437759352103002490891 y[1] (numeric) = 0.30854588802437759352103002490899 absolute error = 8e-32 relative error = 2.5928072000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.8 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.496 y[1] (analytic) = 0.30883108669012135826382575008894 y[1] (numeric) = 0.30883108669012135826382575008902 absolute error = 8e-32 relative error = 2.5904128000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.799 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.495 y[1] (analytic) = 0.30911662197355507299016236350569 y[1] (numeric) = 0.30911662197355507299016236350577 absolute error = 8e-32 relative error = 2.5880200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.799 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.494 y[1] (analytic) = 0.30940249427914788077855568440451 y[1] (numeric) = 0.30940249427914788077855568440458 absolute error = 7e-32 relative error = 2.2624252000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.798 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.493 y[1] (analytic) = 0.30968870401161456515525159265158 y[1] (numeric) = 0.30968870401161456515525159265166 absolute error = 8e-32 relative error = 2.5832392000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.797 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.492 y[1] (analytic) = 0.30997525157591417901194768609674 y[1] (numeric) = 0.30997525157591417901194768609682 absolute error = 8e-32 relative error = 2.5808512000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.796 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.491 y[1] (analytic) = 0.31026213737724866362340878184569 y[1] (numeric) = 0.31026213737724866362340878184577 absolute error = 8e-32 relative error = 2.5784648000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.795 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.49 y[1] (analytic) = 0.31054936182106145771870438806248 y[1] (numeric) = 0.31054936182106145771870438806256 absolute error = 8e-32 relative error = 2.5760800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.794 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.489 y[1] (analytic) = 0.31083692531303609655962582694279 y[1] (numeric) = 0.31083692531303609655962582694286 absolute error = 7e-32 relative error = 2.2519847000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.794 Order of pole = 1 TOP MAIN SOLVE Loop memory used=87.7MB, alloc=4.4MB, time=5.15 x[1] = -1.488 y[1] (analytic) = 0.31112482825909480097966985922224 y[1] (numeric) = 0.31112482825909480097966985922231 absolute error = 7e-32 relative error = 2.2499008000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.793 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.487 y[1] (analytic) = 0.31141307106539705633680444722779 y[1] (numeric) = 0.31141307106539705633680444722786 absolute error = 7e-32 relative error = 2.2478183000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.792 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.486 y[1] (analytic) = 0.31170165413833818133306069828651 y[1] (numeric) = 0.31170165413833818133306069828659 absolute error = 8e-32 relative error = 2.5665568000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.791 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.485 y[1] (analytic) = 0.31199057788454788665382305454375 y[1] (numeric) = 0.31199057788454788665382305454383 absolute error = 8e-32 relative error = 2.5641800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.79 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.484 y[1] (analytic) = 0.31227984271088882337951744020466 y[1] (numeric) = 0.31227984271088882337951744020473 absolute error = 7e-32 relative error = 2.2415792000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.789 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.483 y[1] (analytic) = 0.31256944902445512112222434422148 y[1] (numeric) = 0.31256944902445512112222434422156 absolute error = 8e-32 relative error = 2.5594312000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.789 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.482 y[1] (analytic) = 0.31285939723257091583957070684949 y[1] (numeric) = 0.31285939723257091583957070684957 absolute error = 8e-32 relative error = 2.5570592000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.788 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.481 y[1] (analytic) = 0.31314968774278886727808099366154 y[1] (numeric) = 0.31314968774278886727808099366161 absolute error = 7e-32 relative error = 2.2353527000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.787 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.48 y[1] (analytic) = 0.31344032096288866599799398194584 y[1] (numeric) = 0.31344032096288866599799398194591 absolute error = 7e-32 relative error = 2.2332800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.786 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.479 y[1] (analytic) = 0.31373129730087552993137755334138 y[1] (numeric) = 0.31373129730087552993137755334145 absolute error = 7e-32 relative error = 2.2312087000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.785 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.478 y[1] (analytic) = 0.31402261716497869042519918454607 y[1] (numeric) = 0.31402261716497869042519918454614 absolute error = 7e-32 relative error = 2.2291388000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.785 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.477 y[1] (analytic) = 0.31431428096364986772083485644795 y[1] (numeric) = 0.31431428096364986772083485644803 absolute error = 8e-32 relative error = 2.5452232000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.784 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.476 y[1] (analytic) = 0.31460628910556173582132376259054 y[1] (numeric) = 0.31460628910556173582132376259062 absolute error = 8e-32 relative error = 2.5428608000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.783 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.475 y[1] (analytic) = 0.31489864199960637669750049202913 y[1] (numeric) = 0.3148986419996063766975004920292 absolute error = 7e-32 relative error = 2.2229375000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.782 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.474 y[1] (analytic) = 0.31519134005489372378396029093421 y[1] (numeric) = 0.31519134005489372378396029093429 absolute error = 8e-32 relative error = 2.5381408000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.781 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.473 y[1] (analytic) = 0.31548438368074999471563657334744 y[1] (numeric) = 0.31548438368074999471563657334751 absolute error = 7e-32 relative error = 2.2188103000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.78 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.472 y[1] (analytic) = 0.31577777328671611325559305592045 y[1] (numeric) = 0.31577777328671611325559305592053 absolute error = 8e-32 relative error = 2.5334272000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.78 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.471 y[1] (analytic) = 0.31607150928254612036445573592352 y[1] (numeric) = 0.31607150928254612036445573592359 absolute error = 7e-32 relative error = 2.2146887000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.779 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.47 y[1] (analytic) = 0.31636559207820557436173241798222 y[1] (numeric) = 0.31636559207820557436173241798229 absolute error = 7e-32 relative error = 2.2126300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.778 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.469 y[1] (analytic) = 0.31666002208386994012908962460271 y[1] (numeric) = 0.31666002208386994012908962460278 absolute error = 7e-32 relative error = 2.2105727000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.777 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.468 y[1] (analytic) = 0.31695479970992296730547850032203 y[1] (numeric) = 0.3169547997099229673054785003221 absolute error = 7e-32 relative error = 2.2085168000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.776 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.467 y[1] (analytic) = 0.3172499253669550574238227410457 y[1] (numeric) = 0.31724992536695505742382274104577 absolute error = 7e-32 relative error = 2.2064623000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.775 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.466 y[1] (analytic) = 0.31754539946576161993880265061496 y[1] (numeric) = 0.31754539946576161993880265061503 absolute error = 7e-32 relative error = 2.2044092000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.775 Order of pole = 1 TOP MAIN SOLVE Loop memory used=91.5MB, alloc=4.4MB, time=5.38 x[1] = -1.465 y[1] (analytic) = 0.31784122241734141709509014771671 y[1] (numeric) = 0.31784122241734141709509014771678 absolute error = 7e-32 relative error = 2.2023575000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.774 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.464 y[1] (analytic) = 0.31813739463289489758520991977847 y[1] (numeric) = 0.31813739463289489758520991977855 absolute error = 8e-32 relative error = 2.5146368000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.773 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.463 y[1] (analytic) = 0.31843391652382251894602194837613 y[1] (numeric) = 0.31843391652382251894602194837621 absolute error = 8e-32 relative error = 2.5122952000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.772 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.462 y[1] (analytic) = 0.31873078850172305864264031485502 y[1] (numeric) = 0.3187307885017230586426403148551 absolute error = 8e-32 relative error = 2.5099552000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.771 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.461 y[1] (analytic) = 0.3190280109783919137884225372872 y[1] (numeric) = 0.31902801097839191378842253728727 absolute error = 7e-32 relative error = 2.1941647000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.77 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.46 y[1] (analytic) = 0.31932558436581938944948269255333 y[1] (numeric) = 0.3193255843658193894494826925534 absolute error = 7e-32 relative error = 2.1921200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.77 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.459 y[1] (analytic) = 0.31962350907618897548200024227462 y[1] (numeric) = 0.31962350907618897548200024227469 absolute error = 7e-32 relative error = 2.1900767000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.769 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.458 y[1] (analytic) = 0.31992178552187561185041481058711 y[1] (numeric) = 0.31992178552187561185041481058718 absolute error = 7e-32 relative error = 2.1880348000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.768 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.457 y[1] (analytic) = 0.32022041411544394237441515744117 y[1] (numeric) = 0.32022041411544394237441515744124 absolute error = 7e-32 relative error = 2.1859943000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.767 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.456 y[1] (analytic) = 0.32051939526964655685244825534883 y[1] (numeric) = 0.3205193952696465568524482553489 absolute error = 7e-32 relative error = 2.1839552000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.766 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.455 y[1] (analytic) = 0.32081872939742222150929171245017 y[1] (numeric) = 0.32081872939742222150929171245025 absolute error = 8e-32 relative error = 2.4936200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.766 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.454 y[1] (analytic) = 0.32111841691189409771504979262173 y[1] (numeric) = 0.3211184169118940977150497926218 absolute error = 7e-32 relative error = 2.1798812000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.765 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.453 y[1] (analytic) = 0.32141845822636794892274996633142 y[1] (numeric) = 0.32141845822636794892274996633149 absolute error = 7e-32 relative error = 2.1778463000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.764 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.452 y[1] (analytic) = 0.32171885375433033577153328631948 y[1] (numeric) = 0.32171885375433033577153328631956 absolute error = 8e-32 relative error = 2.4866432000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.763 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.451 y[1] (analytic) = 0.32201960390944679930224792224901 y[1] (numeric) = 0.32201960390944679930224792224909 absolute error = 8e-32 relative error = 2.4843208000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.762 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.45 y[1] (analytic) = 0.322320709105560032232070910556 y[1] (numeric) = 0.32232070910556003223207091055608 absolute error = 8e-32 relative error = 2.4820000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.761 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.449 y[1] (analytic) = 0.32262216975668803823459858220461 y[1] (numeric) = 0.32262216975668803823459858220469 absolute error = 8e-32 relative error = 2.4796808000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.761 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.448 y[1] (analytic) = 0.32292398627702227917166122432108 y[1] (numeric) = 0.32292398627702227917166122432116 absolute error = 8e-32 relative error = 2.4773632000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.76 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.447 y[1] (analytic) = 0.32322615908092581022293231417971 y[1] (numeric) = 0.32322615908092581022293231417978 absolute error = 7e-32 relative error = 2.1656663000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.759 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.446 y[1] (analytic) = 0.32352868858293140285921713822051 y[1] (numeric) = 0.32352868858293140285921713822059 absolute error = 8e-32 relative error = 2.4727328000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.758 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.445 y[1] (analytic) = 0.32383157519773965560511977720388 y[1] (numeric) = 0.32383157519773965560511977720395 absolute error = 7e-32 relative error = 2.1616175000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.757 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.444 y[1] (analytic) = 0.3241348193402170925366013037999 y[1] (numeric) = 0.32413481934021709253660130379997 absolute error = 7e-32 relative error = 2.1595952000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.756 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.443 y[1] (analytic) = 0.32443842142539424945875560345709 y[1] (numeric) = 0.32443842142539424945875560345716 absolute error = 7e-32 relative error = 2.1575743000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.756 Order of pole = 1 memory used=95.3MB, alloc=4.4MB, time=5.61 TOP MAIN SOLVE Loop x[1] = -1.442 y[1] (analytic) = 0.32474238186846374770894249591799 y[1] (numeric) = 0.32474238186846374770894249591806 absolute error = 7e-32 relative error = 2.1555548000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.755 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.441 y[1] (analytic) = 0.32504670108477835553023080591104 y[1] (numeric) = 0.32504670108477835553023080591111 absolute error = 7e-32 relative error = 2.1535367000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.754 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.44 y[1] (analytic) = 0.32535137948984903695991671004685 y[1] (numeric) = 0.32535137948984903695991671004692 absolute error = 7e-32 relative error = 2.1515200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.753 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.439 y[1] (analytic) = 0.32565641749934298817769507552135 y[1] (numeric) = 0.32565641749934298817769507552142 absolute error = 7e-32 relative error = 2.1495047000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.752 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.438 y[1] (analytic) = 0.3259618155290816612578736076541 y[1] (numeric) = 0.32596181552908166125787360765417 absolute error = 7e-32 relative error = 2.1474908000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.752 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.437 y[1] (analytic) = 0.32626757399503877526983144038325 y[1] (numeric) = 0.32626757399503877526983144038331 absolute error = 6e-32 relative error = 1.8389814000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.751 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.436 y[1] (analytic) = 0.32657369331333831467073533945376 y[1] (numeric) = 0.32657369331333831467073533945382 absolute error = 6e-32 relative error = 1.8372576000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.75 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.435 y[1] (analytic) = 0.32688017390025251493433794506779 y[1] (numeric) = 0.32688017390025251493433794506785 absolute error = 6e-32 relative error = 1.8355350000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.749 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.434 y[1] (analytic) = 0.32718701617219983535949346214904 y[1] (numeric) = 0.32718701617219983535949346214911 absolute error = 7e-32 relative error = 2.1394492000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.748 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.433 y[1] (analytic) = 0.32749422054574291900183691508304 y[1] (numeric) = 0.32749422054574291900183691508311 absolute error = 7e-32 relative error = 2.1374423000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.747 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.432 y[1] (analytic) = 0.32780178743758653967188352284647 y[1] (numeric) = 0.32780178743758653967188352284654 absolute error = 7e-32 relative error = 2.1354368000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.747 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.431 y[1] (analytic) = 0.32810971726457553594261492288929 y[1] (numeric) = 0.32810971726457553594261492288936 absolute error = 7e-32 relative error = 2.1334327000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.746 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.43 y[1] (analytic) = 0.32841801044369273210942888107984 y[1] (numeric) = 0.3284180104436927321094288810799 absolute error = 6e-32 relative error = 1.8269400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.745 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.429 y[1] (analytic) = 0.32872666739205684604513877360627 y[1] (numeric) = 0.32872666739205684604513877360633 absolute error = 6e-32 relative error = 1.8252246000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.744 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.428 y[1] (analytic) = 0.32903568852692038389251851812855 y[1] (numeric) = 0.32903568852692038389251851812861 absolute error = 6e-32 relative error = 1.8235104000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.743 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.427 y[1] (analytic) = 0.32934507426566752153669776891766 y[1] (numeric) = 0.32934507426566752153669776891772 absolute error = 6e-32 relative error = 1.8217974000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.743 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.426 y[1] (analytic) = 0.3296548250258119727995210774702 y[1] (numeric) = 0.32965482502581197279952107747026 absolute error = 6e-32 relative error = 1.8200856000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.742 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.425 y[1] (analytic) = 0.32996494122499484429779335945556 y[1] (numeric) = 0.32996494122499484429779335945562 absolute error = 6e-32 relative error = 1.8183750000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.741 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.424 y[1] (analytic) = 0.33027542328098247690714240419371 y[1] (numeric) = 0.33027542328098247690714240419377 absolute error = 6e-32 relative error = 1.8166656000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.74 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.423 y[1] (analytic) = 0.3305862716116642737730373175701 y[1] (numeric) = 0.33058627161166427377303731757016 absolute error = 6e-32 relative error = 1.8149574000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.739 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.422 y[1] (analytic) = 0.33089748663505051481030970681159 y[1] (numeric) = 0.33089748663505051481030970681165 absolute error = 6e-32 relative error = 1.8132504000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.738 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.421 y[1] (analytic) = 0.33120906876927015763233209935875 y[1] (numeric) = 0.33120906876927015763233209935881 absolute error = 6e-32 relative error = 1.8115446000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.738 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.42 y[1] (analytic) = 0.33152101843256862485081554170534 y[1] (numeric) = 0.33152101843256862485081554170541 absolute error = 7e-32 relative error = 2.1114800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 memory used=99.1MB, alloc=4.4MB, time=5.84 Complex estimate of poles used Radius of convergence = 1.737 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.419 y[1] (analytic) = 0.33183333604330557768699555111046 y[1] (numeric) = 0.33183333604330557768699555111053 absolute error = 7e-32 relative error = 2.1094927000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.736 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.418 y[1] (analytic) = 0.33214602201995267583478259714275 y[1] (numeric) = 0.33214602201995267583478259714281 absolute error = 6e-32 relative error = 1.8064344000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.735 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.417 y[1] (analytic) = 0.33245907678109132351626007475675 y[1] (numeric) = 0.33245907678109132351626007475681 absolute error = 6e-32 relative error = 1.8047334000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.734 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.416 y[1] (analytic) = 0.33277250074541040166971929974017 y[1] (numeric) = 0.33277250074541040166971929974023 absolute error = 6e-32 relative error = 1.8030336000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.734 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.415 y[1] (analytic) = 0.33308629433170398621022741466745 y[1] (numeric) = 0.33308629433170398621022741466751 absolute error = 6e-32 relative error = 1.8013350000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.733 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.414 y[1] (analytic) = 0.33340045795886905230253024275554 y[1] (numeric) = 0.3334004579588690523025302427556 absolute error = 6e-32 relative error = 1.7996376000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.732 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.413 y[1] (analytic) = 0.33371499204590316458589807209512 y[1] (numeric) = 0.33371499204590316458589807209518 absolute error = 6e-32 relative error = 1.7979414000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.731 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.412 y[1] (analytic) = 0.33402989701190215329032809752604 y[1] (numeric) = 0.3340298970119021532903280975261 absolute error = 6e-32 relative error = 1.7962464000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.73 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.411 y[1] (analytic) = 0.33434517327605777618332279588796 y[1] (numeric) = 0.33434517327605777618332279588801 absolute error = 5e-32 relative error = 1.4954605000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.729 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.41 y[1] (analytic) = 0.3346608212576553662862688665038 y[1] (numeric) = 0.33466082125765536628626886650385 absolute error = 5e-32 relative error = 1.4940500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.729 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.409 y[1] (analytic) = 0.33497684137607146529924653659069 y[1] (numeric) = 0.33497684137607146529924653659074 absolute error = 5e-32 relative error = 1.4926405000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.728 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.408 y[1] (analytic) = 0.3352932340507714426729040149353 y[1] (numeric) = 0.33529323405077144267290401493535 absolute error = 5e-32 relative error = 1.4912320000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.727 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.407 y[1] (analytic) = 0.33560999970130710026583668076341 y[1] (numeric) = 0.33560999970130710026583668076345 absolute error = 4e-32 relative error = 1.1918596000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.726 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.406 y[1] (analytic) = 0.33592713874731426252571522247111 y[1] (numeric) = 0.33592713874731426252571522247115 absolute error = 4e-32 relative error = 1.1907344000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.725 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.405 y[1] (analytic) = 0.33624465160851035213221139701247 y[1] (numeric) = 0.33624465160851035213221139701251 absolute error = 4e-32 relative error = 1.1896100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.725 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.404 y[1] (analytic) = 0.33656253870469195103957436955105 y[1] (numeric) = 0.3365625387046919510395743695511 absolute error = 5e-32 relative error = 1.4856080000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.724 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.403 y[1] (analytic) = 0.33688080045573234685651471882749 y[1] (numeric) = 0.33688080045573234685651471882754 absolute error = 5e-32 relative error = 1.4842045000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.723 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.402 y[1] (analytic) = 0.33719943728157906450085716096957 y[1] (numeric) = 0.33719943728157906450085716096962 absolute error = 5e-32 relative error = 1.4828020000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.722 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.401 y[1] (analytic) = 0.3375184496022513830662268576256 y[1] (numeric) = 0.33751844960225138306622685762566 absolute error = 6e-32 relative error = 1.7776806000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.721 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.4 y[1] (analytic) = 0.33783783783783783783783783783784 y[1] (numeric) = 0.33783783783783783783783783783789 absolute error = 5e-32 relative error = 1.4800000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.72 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.399 y[1] (analytic) = 0.33815760240849370739425558154485 y[1] (numeric) = 0.3381576024084937073942555815449 absolute error = 5e-32 relative error = 1.4786005000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.72 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.398 y[1] (analytic) = 0.33847774373443848573180919061848 y[1] (numeric) = 0.33847774373443848573180919061853 absolute error = 5e-32 relative error = 1.4772020000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.719 Order of pole = 1 TOP MAIN SOLVE Loop memory used=103.0MB, alloc=4.4MB, time=6.07 x[1] = -1.397 y[1] (analytic) = 0.33879826223595333934813181556229 y[1] (numeric) = 0.33879826223595333934813181556234 absolute error = 5e-32 relative error = 1.4758045000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.718 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.396 y[1] (analytic) = 0.3391191583333785492211111171399 y[1] (numeric) = 0.33911915833337854922111111713994 absolute error = 4e-32 relative error = 1.1795264000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.717 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.395 y[1] (analytic) = 0.33944043244711093761933452703219 y[1] (numeric) = 0.33944043244711093761933452703223 absolute error = 4e-32 relative error = 1.1784100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.716 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.394 y[1] (analytic) = 0.33976208499760127967991693496546 y[1] (numeric) = 0.3397620849976012796799169349655 absolute error = 4e-32 relative error = 1.1772944000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.716 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.393 y[1] (analytic) = 0.34008411640535169968940117648699 y[1] (numeric) = 0.34008411640535169968940117648703 absolute error = 4e-32 relative error = 1.1761796000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.715 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.392 y[1] (analytic) = 0.34040652709091305200322433062461 y[1] (numeric) = 0.34040652709091305200322433062464 absolute error = 3e-32 relative error = 8.8129919999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.714 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.391 y[1] (analytic) = 0.34072931747488228653904536504206 y[1] (numeric) = 0.34072931747488228653904536504209 absolute error = 3e-32 relative error = 8.8046429999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.713 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.39 y[1] (analytic) = 0.34105248797789979877903209303912 y[1] (numeric) = 0.34105248797789979877903209303915 absolute error = 3e-32 relative error = 8.7963000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.712 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.389 y[1] (analytic) = 0.34137603902064676421600773694655 y[1] (numeric) = 0.34137603902064676421600773694658 absolute error = 3e-32 relative error = 8.7879630000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.712 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.388 y[1] (analytic) = 0.34169997102384245717815963129206 y[1] (numeric) = 0.34169997102384245717815963129209 absolute error = 3e-32 relative error = 8.7796320000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.711 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.387 y[1] (analytic) = 0.34202428440824155396681475178101 y[1] (numeric) = 0.34202428440824155396681475178103 absolute error = 2e-32 relative error = 5.8475379999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.71 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.386 y[1] (analytic) = 0.34234897959463142024158882792034 y[1] (numeric) = 0.34234897959463142024158882792036 absolute error = 2e-32 relative error = 5.8419920000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.709 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.385 y[1] (analytic) = 0.34267405700382938258701779335041 y[1] (numeric) = 0.34267405700382938258701779335043 absolute error = 2e-32 relative error = 5.8364500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.708 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.384 y[1] (analytic) = 0.34299951705667998419458225402819 y[1] (numeric) = 0.34299951705667998419458225402821 absolute error = 2e-32 relative error = 5.8309119999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.707 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.383 y[1] (analytic) = 0.34332536017405222459383751578009 y[1] (numeric) = 0.34332536017405222459383751578012 absolute error = 3e-32 relative error = 8.7380670000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.707 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.382 y[1] (analytic) = 0.34365158677683678336616351492341 y[1] (numeric) = 0.34365158677683678336616351492344 absolute error = 3e-32 relative error = 8.7297720000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.706 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.381 y[1] (analytic) = 0.34397819728594322777445074421403 y[1] (numeric) = 0.34397819728594322777445074421405 absolute error = 2e-32 relative error = 5.8143220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.705 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.38 y[1] (analytic) = 0.3443051921222972042418399669467 y[1] (numeric) = 0.34430519212229720424183996694672 absolute error = 2e-32 relative error = 5.8088000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.704 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.379 y[1] (analytic) = 0.34463257170683761361243517030535 y[1] (numeric) = 0.34463257170683761361243517030537 absolute error = 2e-32 relative error = 5.8032820000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.703 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.378 y[1] (analytic) = 0.34496033646051377012671083078868 y[1] (numeric) = 0.34496033646051377012671083078869 absolute error = 1e-32 relative error = 2.8988840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.703 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.377 y[1] (analytic) = 0.34528848680428254404413615553727 y[1] (numeric) = 0.34528848680428254404413615553728 absolute error = 1e-32 relative error = 2.8961290000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.702 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.376 y[1] (analytic) = 0.34561702315910548784534052954058 y[1] (numeric) = 0.34561702315910548784534052954059 absolute error = 1e-32 relative error = 2.8933760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.701 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.375 y[1] (analytic) = 0.34594594594594594594594594594595 y[1] (numeric) = 0.34594594594594594594594594594596 absolute error = 1e-32 relative error = 2.8906250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.7 Order of pole = 1 TOP MAIN SOLVE Loop memory used=106.8MB, alloc=4.4MB, time=6.30 x[1] = -1.374 y[1] (analytic) = 0.34627525558576614785399373103277 y[1] (numeric) = 0.34627525558576614785399373103279 absolute error = 2e-32 relative error = 5.7757520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.699 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.373 y[1] (analytic) = 0.34660495249952428470269440291925 y[1] (numeric) = 0.34660495249952428470269440291926 absolute error = 1e-32 relative error = 2.8851290000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.699 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.372 y[1] (analytic) = 0.34693503710817156909003102986972 y[1] (numeric) = 0.34693503710817156909003102986973 absolute error = 1e-32 relative error = 2.8823840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.698 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.371 y[1] (analytic) = 0.34726550983264927815654798636358 y[1] (numeric) = 0.34726550983264927815654798636359 absolute error = 1e-32 relative error = 2.8796410000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.697 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.37 y[1] (analytic) = 0.34759637109388577983245854913275 y[1] (numeric) = 0.34759637109388577983245854913276 absolute error = 1e-32 relative error = 2.8769000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.696 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.369 y[1] (analytic) = 0.34792762131279354218500633750162 y[1] (numeric) = 0.34792762131279354218500633750164 absolute error = 2e-32 relative error = 5.7483220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.695 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.368 y[1] (analytic) = 0.34825926091026612579681718896269 y[1] (numeric) = 0.34825926091026612579681718896271 absolute error = 2e-32 relative error = 5.7428480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.695 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.367 y[1] (analytic) = 0.34859129030717515910577967845242 y[1] (numeric) = 0.34859129030717515910577967845244 absolute error = 2e-32 relative error = 5.7373780000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.694 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.366 y[1] (analytic) = 0.34892370992436729663679414478101 y[1] (numeric) = 0.34892370992436729663679414478103 absolute error = 2e-32 relative error = 5.7319120000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.693 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.365 y[1] (analytic) = 0.34925652018266116005553178670904 y[1] (numeric) = 0.34925652018266116005553178670906 absolute error = 2e-32 relative error = 5.7264500000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.692 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.364 y[1] (analytic) = 0.34958972150284426197414714091542 y[1] (numeric) = 0.34958972150284426197414714091544 absolute error = 2e-32 relative error = 5.7209920000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.691 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.363 y[1] (analytic) = 0.34992331430566991243868906129222 y[1] (numeric) = 0.34992331430566991243868906129224 absolute error = 2e-32 relative error = 5.7155380000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.69 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.362 y[1] (analytic) = 0.35025729901185410802775719043209 y[1] (numeric) = 0.35025729901185410802775719043211 absolute error = 2e-32 relative error = 5.7100880000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.69 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.361 y[1] (analytic) = 0.35059167604207240349175285670862 y[1] (numeric) = 0.35059167604207240349175285670864 absolute error = 2e-32 relative error = 5.7046420000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.689 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.36 y[1] (analytic) = 0.35092644581695676586187535092645 y[1] (numeric) = 0.35092644581695676586187535092646 absolute error = 1e-32 relative error = 2.8496000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.688 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.359 y[1] (analytic) = 0.35126160875709241095781664214275 y[1] (numeric) = 0.35126160875709241095781664214277 absolute error = 2e-32 relative error = 5.6937620000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.687 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.358 y[1] (analytic) = 0.35159716528301462222290979001211 y[1] (numeric) = 0.35159716528301462222290979001213 absolute error = 2e-32 relative error = 5.6883280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.686 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.357 y[1] (analytic) = 0.35193311581520555181528860803062 y[1] (numeric) = 0.35193311581520555181528860803064 absolute error = 2e-32 relative error = 5.6828980000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.686 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.356 y[1] (analytic) = 0.35226946077409100388341853557358 y[1] (numeric) = 0.3522694607740910038834185355736 absolute error = 2e-32 relative error = 5.6774720000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.685 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.355 y[1] (analytic) = 0.3526062005800371999541611939246 y[1] (numeric) = 0.35260620058003719995416119392462 absolute error = 2e-32 relative error = 5.6720499999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.684 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.354 y[1] (analytic) = 0.35294333565334752636133773994853 y[1] (numeric) = 0.35294333565334752636133773994855 absolute error = 2e-32 relative error = 5.6666319999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.683 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.353 y[1] (analytic) = 0.35328086641425926364255889810285 y[1] (numeric) = 0.35328086641425926364255889810287 absolute error = 2e-32 relative error = 5.6612179999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.682 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.352 y[1] (analytic) = 0.35361879328294029783189245462364 y[1] (numeric) = 0.35361879328294029783189245462366 absolute error = 2e-32 relative error = 5.6558079999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.682 Order of pole = 1 TOP MAIN SOLVE Loop memory used=110.6MB, alloc=4.4MB, time=6.53 x[1] = -1.351 y[1] (analytic) = 0.35395711667948581357574204454833 y[1] (numeric) = 0.35395711667948581357574204454836 absolute error = 3e-32 relative error = 8.4756030000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.681 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.35 y[1] (analytic) = 0.35429583702391496899911426040744 y[1] (numeric) = 0.35429583702391496899911426040747 absolute error = 3e-32 relative error = 8.4675000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.68 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.349 y[1] (analytic) = 0.35463495473616755224925446866641 y[1] (numeric) = 0.35463495473616755224925446866644 absolute error = 3e-32 relative error = 8.4594029999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.679 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.348 y[1] (analytic) = 0.35497447023610061964343524413724 y[1] (numeric) = 0.35497447023610061964343524413728 absolute error = 4e-32 relative error = 1.1268416000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.678 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.347 y[1] (analytic) = 0.35531438394348511534748503149329 y[1] (numeric) = 0.35531438394348511534748503149333 absolute error = 4e-32 relative error = 1.1257636000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.678 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.346 y[1] (analytic) = 0.35565469627800247251144852467319 y[1] (numeric) = 0.35565469627800247251144852467323 absolute error = 4e-32 relative error = 1.1246864000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.677 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.345 y[1] (analytic) = 0.35599540765924119578857432739118 y[1] (numeric) = 0.35599540765924119578857432739122 absolute error = 4e-32 relative error = 1.1236100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.676 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.344 y[1] (analytic) = 0.35633651850669342516362972929827 y[1] (numeric) = 0.35633651850669342516362972929832 absolute error = 5e-32 relative error = 1.4031680000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.675 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.343 y[1] (analytic) = 0.35667802923975148101634691075809 y[1] (numeric) = 0.35667802923975148101634691075813 absolute error = 4e-32 relative error = 1.1214596000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.674 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.342 y[1] (analytic) = 0.35701994027770439034560958298643 y[1] (numeric) = 0.35701994027770439034560958298647 absolute error = 4e-32 relative error = 1.1203856000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.674 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.341 y[1] (analytic) = 0.35736225203973439407979398780894 y[1] (numeric) = 0.35736225203973439407979398780899 absolute error = 5e-32 relative error = 1.3991405000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.673 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.34 y[1] (analytic) = 0.35770496494491343539848333094863 y[1] (numeric) = 0.35770496494491343539848333094868 absolute error = 5e-32 relative error = 1.3978000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.672 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.339 y[1] (analytic) = 0.35804807941219962899058011307874 y[1] (numeric) = 0.35804807941219962899058011307879 absolute error = 5e-32 relative error = 1.3964605000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.671 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.338 y[1] (analytic) = 0.35839159586043371117364646245991 y[1] (numeric) = 0.35839159586043371117364646245996 absolute error = 5e-32 relative error = 1.3951220000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.67 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.337 y[1] (analytic) = 0.35873551470833547079910847049885 y[1] (numeric) = 0.35873551470833547079910847049889 absolute error = 4e-32 relative error = 1.1150276000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.67 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.336 y[1] (analytic) = 0.35907983637450016086776669577607 y[1] (numeric) = 0.35907983637450016086776669577612 absolute error = 5e-32 relative error = 1.3924480000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.669 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.335 y[1] (analytic) = 0.35942456127739489077986144183163 y[1] (numeric) = 0.35942456127739489077986144183168 absolute error = 5e-32 relative error = 1.3911125000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.668 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.334 y[1] (analytic) = 0.35976968983535499914374813819186 y[1] (numeric) = 0.35976968983535499914374813819191 absolute error = 5e-32 relative error = 1.3897780000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.667 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.333 y[1] (analytic) = 0.36011522246658040706704517177316 y[1] (numeric) = 0.36011522246658040706704517177322 absolute error = 6e-32 relative error = 1.6661334000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.666 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.332 y[1] (analytic) = 0.36046115958913195185392383599882 y[1] (numeric) = 0.36046115958913195185392383599888 absolute error = 6e-32 relative error = 1.6645344000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.666 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.331 y[1] (analytic) = 0.36080750162092770103201769688634 y[1] (numeric) = 0.3608075016209277010320176968864 absolute error = 6e-32 relative error = 1.6629366000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.665 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.33 y[1] (analytic) = 0.36115424897973924663223662826393 y[1] (numeric) = 0.36115424897973924663223662826399 absolute error = 6e-32 relative error = 1.6613400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.664 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.329 y[1] (analytic) = 0.36150140208318797964457905149985 y[1] (numeric) = 0.36150140208318797964457905149991 absolute error = 6e-32 relative error = 1.6597446000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.663 Order of pole = 1 memory used=114.4MB, alloc=4.4MB, time=6.75 TOP MAIN SOLVE Loop x[1] = -1.328 y[1] (analytic) = 0.36184896134874134457284453810704 y[1] (numeric) = 0.3618489613487413445728445381071 absolute error = 6e-32 relative error = 1.6581504000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.662 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.327 y[1] (analytic) = 0.36219692719370907401095790583532 y[1] (numeric) = 0.36219692719370907401095790583538 absolute error = 6e-32 relative error = 1.6565574000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.662 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.326 y[1] (analytic) = 0.36254530003523940316342526998748 y[1] (numeric) = 0.36254530003523940316342526998755 absolute error = 7e-32 relative error = 1.9307932000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.661 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.325 y[1] (analytic) = 0.3628940802903152642322522113858 y[1] (numeric) = 0.36289408029031526423225221138587 absolute error = 7e-32 relative error = 1.9289375000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.66 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.324 y[1] (analytic) = 0.36324326837575046059246430045158 y[1] (numeric) = 0.36324326837575046059246430045165 absolute error = 7e-32 relative error = 1.9270832000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.659 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.323 y[1] (analytic) = 0.363592864708185820678180683111 y[1] (numeric) = 0.36359286470818582067818068311107 absolute error = 7e-32 relative error = 1.9252303000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.658 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.322 y[1] (analytic) = 0.36394286970408533150100229866316 y[1] (numeric) = 0.36394286970408533150100229866323 absolute error = 7e-32 relative error = 1.9233788000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.658 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.321 y[1] (analytic) = 0.36429328377973225172228757238963 y[1] (numeric) = 0.36429328377973225172228757238969 absolute error = 6e-32 relative error = 1.6470246000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.657 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.32 y[1] (analytic) = 0.36464410735122520420070011668611 y[1] (numeric) = 0.36464410735122520420070011668618 absolute error = 7e-32 relative error = 1.9196800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.656 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.319 y[1] (analytic) = 0.36499534083447424793622509408667 y[1] (numeric) = 0.36499534083447424793622509408674 absolute error = 7e-32 relative error = 1.9178327000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.655 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.318 y[1] (analytic) = 0.36534698464519692933166345404885 y[1] (numeric) = 0.36534698464519692933166345404891 absolute error = 6e-32 relative error = 1.6422744000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.654 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.317 y[1] (analytic) = 0.36569903919891431269242626318848 y[1] (numeric) = 0.36569903919891431269242626318854 absolute error = 6e-32 relative error = 1.6406934000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.654 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.316 y[1] (analytic) = 0.36605150491094698988526481630071 y[1] (numeric) = 0.36605150491094698988526481630077 absolute error = 6e-32 relative error = 1.6391136000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.653 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.315 y[1] (analytic) = 0.3664043821964110690763861535784 y[1] (numeric) = 0.36640438219641106907638615357845 absolute error = 5e-32 relative error = 1.3646125000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.652 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.314 y[1] (analytic) = 0.3667576714702141424692180286335 y[1] (numeric) = 0.36675767147021414246921802863356 absolute error = 6e-32 relative error = 1.6359576000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.651 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.313 y[1] (analytic) = 0.36711137314705123296190228302892 y[1] (numeric) = 0.36711137314705123296190228302897 absolute error = 5e-32 relative error = 1.3619845000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.65 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.312 y[1] (analytic) = 0.36746548764140071964441099691917 y[1] (numeric) = 0.36746548764140071964441099691922 absolute error = 5e-32 relative error = 1.3606720000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.65 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.311 y[1] (analytic) = 0.36782001536752024205499571305772 y[1] (numeric) = 0.36782001536752024205499571305777 absolute error = 5e-32 relative error = 1.3593605000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.649 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.31 y[1] (analytic) = 0.36817495673944258311549648392916 y[1] (numeric) = 0.36817495673944258311549648392921 absolute error = 5e-32 relative error = 1.3580500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.648 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.309 y[1] (analytic) = 0.36853031217097153066485448027828 y[1] (numeric) = 0.36853031217097153066485448027833 absolute error = 5e-32 relative error = 1.3567405000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.647 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.308 y[1] (analytic) = 0.36888608207567771750998943510261 y[1] (numeric) = 0.36888608207567771750998943510265 absolute error = 4e-32 relative error = 1.0843456000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.646 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.307 y[1] (analytic) = 0.36924226686689443991302129161683 y[1] (numeric) = 0.36924226686689443991302129161688 absolute error = 5e-32 relative error = 1.3541245000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.646 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.306 y[1] (analytic) = 0.36959886695771345443363408825134 y[1] (numeric) = 0.36959886695771345443363408825138 absolute error = 4e-32 relative error = 1.0822544000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.645 Order of pole = 1 memory used=118.2MB, alloc=4.4MB, time=6.98 TOP MAIN SOLVE Loop x[1] = -1.305 y[1] (analytic) = 0.36995588276098075304519935997632 y[1] (numeric) = 0.36995588276098075304519935997636 absolute error = 4e-32 relative error = 1.0812100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.644 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.304 y[1] (analytic) = 0.37031331468929231644309617481158 y[1] (numeric) = 0.37031331468929231644309617481162 absolute error = 4e-32 relative error = 1.0801664000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.643 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.303 y[1] (analytic) = 0.37067116315498984546348536905318 y[1] (numeric) = 0.37067116315498984546348536905322 absolute error = 4e-32 relative error = 1.0791236000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.643 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.302 y[1] (analytic) = 0.37102942857015647053061660638675 y[1] (numeric) = 0.37102942857015647053061660638679 absolute error = 4e-32 relative error = 1.0780816000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.642 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.301 y[1] (analytic) = 0.37138811134661243905056857662907 y[1] (numeric) = 0.3713881113466124390505685766291 absolute error = 3e-32 relative error = 8.0778029999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.641 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.3 y[1] (analytic) = 0.37174721189591078066914498141264 y[1] (numeric) = 0.37174721189591078066914498141267 absolute error = 3e-32 relative error = 8.0700000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.64 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.299 y[1] (analytic) = 0.37210673062933295031147193887328 y[1] (numeric) = 0.37210673062933295031147193887331 absolute error = 3e-32 relative error = 8.0622030000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.639 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.298 y[1] (analytic) = 0.37246666795788444892066608959164 y[1] (numeric) = 0.37246666795788444892066608959167 absolute error = 3e-32 relative error = 8.0544120000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.639 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.297 y[1] (analytic) = 0.37282702429229042181276701405446 y[1] (numeric) = 0.37282702429229042181276701405449 absolute error = 3e-32 relative error = 8.0466270000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.638 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.296 y[1] (analytic) = 0.37318780004299123456495259022188 y[1] (numeric) = 0.37318780004299123456495259022191 absolute error = 3e-32 relative error = 8.0388480000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.637 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.295 y[1] (analytic) = 0.37354899562013802635388164100074 y[1] (numeric) = 0.37354899562013802635388164100077 absolute error = 3e-32 relative error = 8.0310750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.636 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.294 y[1] (analytic) = 0.37391061143358824066083465822327 y[1] (numeric) = 0.3739106114335882406608346582233 absolute error = 3e-32 relative error = 8.0233079999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.635 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.293 y[1] (analytic) = 0.37427264789290113326015055491534 y[1] (numeric) = 0.37427264789290113326015055491537 absolute error = 3e-32 relative error = 8.0155470000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.635 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.292 y[1] (analytic) = 0.37463510540733325740728530411379 y[1] (numeric) = 0.37463510540733325740728530411382 absolute error = 3e-32 relative error = 8.0077920000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.634 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.291 y[1] (analytic) = 0.37499798438583392614264698327246 y[1] (numeric) = 0.37499798438583392614264698327249 absolute error = 3e-32 relative error = 8.0000430000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.633 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.29 y[1] (analytic) = 0.37536128523704065162719117150257 y[1] (numeric) = 0.3753612852370406516271911715026 absolute error = 3e-32 relative error = 7.9923000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.632 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.289 y[1] (analytic) = 0.37572500836927456142559085575504 y[1] (numeric) = 0.37572500836927456142559085575507 absolute error = 3e-32 relative error = 7.9845629999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.631 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.288 y[1] (analytic) = 0.37608915419053579165262600491022 y[1] (numeric) = 0.37608915419053579165262600491025 absolute error = 3e-32 relative error = 7.9768320000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.631 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.287 y[1] (analytic) = 0.37645372310849885689826978104322 y[1] (numeric) = 0.37645372310849885689826978104325 absolute error = 3e-32 relative error = 7.9691070000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.63 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.286 y[1] (analytic) = 0.37681871553050799684678098844071 y[1] (numeric) = 0.37681871553050799684678098844074 absolute error = 3e-32 relative error = 7.9613880000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.629 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.285 y[1] (analytic) = 0.37718413186357249950494582692906 y[1] (numeric) = 0.37718413186357249950494582692909 absolute error = 3e-32 relative error = 7.9536750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.628 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.284 y[1] (analytic) = 0.37754997251436200095444633051631 y[1] (numeric) = 0.37754997251436200095444633051634 absolute error = 3e-32 relative error = 7.9459679999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.627 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.283 y[1] (analytic) = 0.37791623788920176154316804914725 y[1] (numeric) = 0.37791623788920176154316804914728 absolute error = 3e-32 relative error = 7.9382670000000000000000000000000e-30 % Correct digits = 31 h = 0.001 memory used=122.0MB, alloc=4.4MB, time=7.21 Complex estimate of poles used Radius of convergence = 1.627 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.282 y[1] (analytic) = 0.37828292839406791843009558453035 y[1] (numeric) = 0.37828292839406791843009558453038 absolute error = 3e-32 relative error = 7.9305719999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.626 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.281 y[1] (analytic) = 0.37865004443458271439828153463834 y[1] (numeric) = 0.37865004443458271439828153463837 absolute error = 3e-32 relative error = 7.9228830000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.625 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.28 y[1] (analytic) = 0.37901758641600970285021224984839 y[1] (numeric) = 0.37901758641600970285021224984842 absolute error = 3e-32 relative error = 7.9152000000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.624 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.279 y[1] (analytic) = 0.37938555474324892889973257112246 y[1] (numeric) = 0.37938555474324892889973257112249 absolute error = 3e-32 relative error = 7.9075230000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.624 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.278 y[1] (analytic) = 0.37975394982083208647453142160132 y[1] (numeric) = 0.37975394982083208647453142160134 absolute error = 2e-32 relative error = 5.2665679999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.623 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.277 y[1] (analytic) = 0.38012277205291765134303077207877 y[1] (numeric) = 0.38012277205291765134303077207879 absolute error = 2e-32 relative error = 5.2614579999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.622 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.276 y[1] (analytic) = 0.38049202184328598997936211273522 y[1] (numeric) = 0.38049202184328598997936211273524 absolute error = 2e-32 relative error = 5.2563520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.621 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.275 y[1] (analytic) = 0.3808616995953344441799571530588 y[1] (numeric) = 0.38086169959533444417995715305882 absolute error = 2e-32 relative error = 5.2512499999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.62 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.274 y[1] (analytic) = 0.38123180571207239134512305400225 y[1] (numeric) = 0.38123180571207239134512305400227 absolute error = 2e-32 relative error = 5.2461520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.62 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.273 y[1] (analytic) = 0.38160234059611628033881708616848 y[1] (numeric) = 0.3816023405961162803388170861685 absolute error = 2e-32 relative error = 5.2410580000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.619 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.272 y[1] (analytic) = 0.38197330464968464283968122035887 y[1] (numeric) = 0.38197330464968464283968122035889 absolute error = 2e-32 relative error = 5.2359680000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.618 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.271 y[1] (analytic) = 0.38234469827459308009624380744968 y[1] (numeric) = 0.3823446982745930800962438074497 absolute error = 2e-32 relative error = 5.2308820000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.617 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.27 y[1] (analytic) = 0.38271652187224922499904320869532 y[1] (numeric) = 0.38271652187224922499904320869534 absolute error = 2e-32 relative error = 5.2258000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.616 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.269 y[1] (analytic) = 0.38308877584364767938227701072763 y[1] (numeric) = 0.38308877584364767938227701072766 absolute error = 3e-32 relative error = 7.8310830000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.616 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.268 y[1] (analytic) = 0.38346146058936492646743031738338 y[1] (numeric) = 0.38346146058936492646743031738341 absolute error = 3e-32 relative error = 7.8234720000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.615 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.267 y[1] (analytic) = 0.38383457650955421836118756882634 y[1] (numeric) = 0.38383457650955421836118756882637 absolute error = 3e-32 relative error = 7.8158669999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.614 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.266 y[1] (analytic) = 0.38420812400394043851978441313746 y[1] (numeric) = 0.38420812400394043851978441313749 absolute error = 3e-32 relative error = 7.8082680000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.613 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.265 y[1] (analytic) = 0.38458210347181493909180936265131 y[1] (numeric) = 0.38458210347181493909180936265134 absolute error = 3e-32 relative error = 7.8006750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.613 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.264 y[1] (analytic) = 0.38495651531203035305131932296928 y[1] (numeric) = 0.38495651531203035305131932296931 absolute error = 3e-32 relative error = 7.7930879999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.612 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.263 y[1] (analytic) = 0.38533135992299538103298860305437 y[1] (numeric) = 0.3853313599229953810329886030544 absolute error = 3e-32 relative error = 7.7855070000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.611 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.262 y[1] (analytic) = 0.38570663770266955278086771650871 y[1] (numeric) = 0.38570663770266955278086771650874 absolute error = 3e-32 relative error = 7.7779319999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.61 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.261 y[1] (analytic) = 0.38608234904855796312218618357984 y[1] (numeric) = 0.38608234904855796312218618357987 absolute error = 3e-32 relative error = 7.7703630000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.609 Order of pole = 1 TOP MAIN SOLVE Loop memory used=125.8MB, alloc=4.5MB, time=7.44 x[1] = -1.26 y[1] (analytic) = 0.38645849435770598237749265728861 y[1] (numeric) = 0.38645849435770598237749265728864 absolute error = 3e-32 relative error = 7.7627999999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.609 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.259 y[1] (analytic) = 0.38683507402669394111828604210081 y[1] (numeric) = 0.38683507402669394111828604210084 absolute error = 3e-32 relative error = 7.7552430000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.608 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.258 y[1] (analytic) = 0.38721208845163178918315286668598 y[1] (numeric) = 0.38721208845163178918315286668601 absolute error = 3e-32 relative error = 7.7476919999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.607 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.257 y[1] (analytic) = 0.38758953802815372886328903055717 y[1] (numeric) = 0.38758953802815372886328903055721 absolute error = 4e-32 relative error = 1.0320196000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.606 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.256 y[1] (analytic) = 0.38796742315141282216814818493321 y[1] (numeric) = 0.38796742315141282216814818493325 absolute error = 4e-32 relative error = 1.0310144000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.605 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.255 y[1] (analytic) = 0.38834574421607557208182444830633 y[1] (numeric) = 0.38834574421607557208182444830637 absolute error = 4e-32 relative error = 1.0300100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.605 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.254 y[1] (analytic) = 0.38872450161631647772064391436244 y[1] (numeric) = 0.38872450161631647772064391436248 absolute error = 4e-32 relative error = 1.0290064000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.604 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.253 y[1] (analytic) = 0.38910369574581256330230750164688 y[1] (numeric) = 0.38910369574581256330230750164692 absolute error = 4e-32 relative error = 1.0280036000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.603 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.252 y[1] (analytic) = 0.3894833269977378808367971383881 y[1] (numeric) = 0.38948332699773788083679713838814 absolute error = 4e-32 relative error = 1.0270016000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.602 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.251 y[1] (analytic) = 0.38986339576475798644912809000854 y[1] (numeric) = 0.38986339576475798644912809000858 absolute error = 4e-32 relative error = 1.0260004000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.602 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.25 y[1] (analytic) = 0.39024390243902439024390243902439 y[1] (numeric) = 0.39024390243902439024390243902443 absolute error = 4e-32 relative error = 1.0250000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.601 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.249 y[1] (analytic) = 0.39062484741216897962149233535456 y[1] (numeric) = 0.3906248474121689796214923353546 absolute error = 4e-32 relative error = 1.0240004000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.6 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.248 y[1] (analytic) = 0.39100623107529841595555666775106 y[1] (numeric) = 0.3910062310752984159555566677511 absolute error = 4e-32 relative error = 1.0230016000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.599 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.247 y[1] (analytic) = 0.39138805381898850454147128248863 y[1] (numeric) = 0.39138805381898850454147128248868 absolute error = 5e-32 relative error = 1.2775045000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.598 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.246 y[1] (analytic) = 0.39177031603327853772513081210852 y[1] (numeric) = 0.39177031603327853772513081210857 absolute error = 5e-32 relative error = 1.2762580000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.598 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.245 y[1] (analytic) = 0.3921530181076656111214595935334 y[1] (numeric) = 0.39215301810766561112145959353344 absolute error = 4e-32 relative error = 1.0200100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.597 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.244 y[1] (analytic) = 0.39253616043109891283185007002845 y[1] (numeric) = 0.39253616043109891283185007002849 absolute error = 4e-32 relative error = 1.0190144000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.596 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.243 y[1] (analytic) = 0.39291974339197398556962950418636 y[1] (numeric) = 0.3929197433919739855696295041864 absolute error = 4e-32 relative error = 1.0180196000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.595 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.242 y[1] (analytic) = 0.39330376737812696160253979840822 y[1] (numeric) = 0.39330376737812696160253979840826 absolute error = 4e-32 relative error = 1.0170256000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.595 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.241 y[1] (analytic) = 0.39368823277682877042110074442508 y[1] (numeric) = 0.39368823277682877042110074442512 absolute error = 4e-32 relative error = 1.0160324000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.594 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.24 y[1] (analytic) = 0.39407313997477931904161412358134 y[1] (numeric) = 0.39407313997477931904161412358138 absolute error = 4e-32 relative error = 1.0150400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.593 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.239 y[1] (analytic) = 0.39445848935810164485245477434805 y[1] (numeric) = 0.39445848935810164485245477434809 absolute error = 4e-32 relative error = 1.0140484000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.592 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.238 y[1] (analytic) = 0.39484428131233604091218505245901 y[1] (numeric) = 0.39484428131233604091218505245905 absolute error = 4e-32 relative error = 1.0130576000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.591 Order of pole = 1 TOP MAIN SOLVE Loop memory used=129.7MB, alloc=4.5MB, time=7.67 x[1] = -1.237 y[1] (analytic) = 0.39523051622243415360792105191392 y[1] (numeric) = 0.39523051622243415360792105191396 absolute error = 4e-32 relative error = 1.0120676000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.591 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.236 y[1] (analytic) = 0.39561719447275305258227255176255 y[1] (numeric) = 0.39561719447275305258227255176259 absolute error = 4e-32 relative error = 1.0110784000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.59 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.235 y[1] (analytic) = 0.39600431644704927283707392410577 y[1] (numeric) = 0.39600431644704927283707392410581 absolute error = 4e-32 relative error = 1.0100900000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.589 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.234 y[1] (analytic) = 0.39639188252847282892202020330147 y[1] (numeric) = 0.39639188252847282892202020330151 absolute error = 4e-32 relative error = 1.0091024000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.588 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.233 y[1] (analytic) = 0.39677989309956120111622119526769 y[1] (numeric) = 0.39677989309956120111622119526773 absolute error = 4e-32 relative error = 1.0081156000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.588 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.232 y[1] (analytic) = 0.39716834854223329351058691949874 y[1] (numeric) = 0.39716834854223329351058691949879 absolute error = 5e-32 relative error = 1.2589120000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.587 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.231 y[1] (analytic) = 0.39755724923778336389885984556491 y[1] (numeric) = 0.39755724923778336389885984556496 absolute error = 5e-32 relative error = 1.2576805000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.586 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.23 y[1] (analytic) = 0.39794659556687492538501333121095 y[1] (numeric) = 0.397946595566874925385013331211 absolute error = 5e-32 relative error = 1.2564500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.585 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.229 y[1] (analytic) = 0.39833638790953461961464141160856 y[1] (numeric) = 0.39833638790953461961464141160861 absolute error = 5e-32 relative error = 1.2552205000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.584 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.228 y[1] (analytic) = 0.39872662664514606153787264990526 y[1] (numeric) = 0.39872662664514606153787264990531 absolute error = 5e-32 relative error = 1.2539920000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.584 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.227 y[1] (analytic) = 0.39911731215244365561125015914803 y[1] (numeric) = 0.39911731215244365561125015914808 absolute error = 5e-32 relative error = 1.2527645000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.583 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.226 y[1] (analytic) = 0.39950844480950638334593116629299 y[1] (numeric) = 0.39950844480950638334593116629304 absolute error = 5e-32 relative error = 1.2515380000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.582 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.225 y[1] (analytic) = 0.39990002499375156210947263184204 y[1] (numeric) = 0.39990002499375156210947263184209 absolute error = 5e-32 relative error = 1.2503125000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.581 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.224 y[1] (analytic) = 0.40029205308192857508838448532049 y[1] (numeric) = 0.40029205308192857508838448532054 absolute error = 5e-32 relative error = 1.2490880000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.581 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.223 y[1] (analytic) = 0.40068452945011257231854900912719 y[1] (numeric) = 0.40068452945011257231854900912724 absolute error = 5e-32 relative error = 1.2478645000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.58 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.222 y[1] (analytic) = 0.40107745447369814269052382319864 y[1] (numeric) = 0.40107745447369814269052382319869 absolute error = 5e-32 relative error = 1.2466420000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.579 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.221 y[1] (analytic) = 0.4014708285273929568366668125344 y[1] (numeric) = 0.40147082852739295683666681253445 absolute error = 5e-32 relative error = 1.2454205000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.578 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.22 y[1] (analytic) = 0.4018646519852113808069442211863 y[1] (numeric) = 0.40186465198521138080694422118635 absolute error = 5e-32 relative error = 1.2442000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.577 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.219 y[1] (analytic) = 0.40225892522046806044020803222577 y[1] (numeric) = 0.40225892522046806044020803222581 absolute error = 4e-32 relative error = 9.9438439999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.577 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.218 y[1] (analytic) = 0.40265364860577147633765568603323 y[1] (numeric) = 0.40265364860577147633765568603328 absolute error = 5e-32 relative error = 1.2417620000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.576 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.217 y[1] (analytic) = 0.40304882251301746934511418171617 y[1] (numeric) = 0.40304882251301746934511418171622 absolute error = 5e-32 relative error = 1.2405445000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.575 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.216 y[1] (analytic) = 0.40344444731338273645072168142735 y[1] (numeric) = 0.4034444473133827364507216814274 absolute error = 5e-32 relative error = 1.2393280000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.574 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.215 y[1] (analytic) = 0.40384052337731829700451291784874 y[1] (numeric) = 0.40384052337731829700451291784879 absolute error = 5e-32 relative error = 1.2381125000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.574 Order of pole = 1 TOP MAIN SOLVE Loop memory used=133.5MB, alloc=4.5MB, time=7.90 x[1] = -1.214 y[1] (analytic) = 0.40423705107454292916635001430999 y[1] (numeric) = 0.40423705107454292916635001431004 absolute error = 5e-32 relative error = 1.2368980000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.573 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.213 y[1] (analytic) = 0.4046340307740365764885777882623 y[1] (numeric) = 0.40463403077403657648857778826234 absolute error = 4e-32 relative error = 9.8854759999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.572 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.212 y[1] (analytic) = 0.40503146284403372453972224562404 y[1] (numeric) = 0.40503146284403372453972224562408 absolute error = 4e-32 relative error = 9.8757760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.571 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.211 y[1] (analytic) = 0.4054293476520167474754928095078 y[1] (numeric) = 0.40542934765201674747549280950784 absolute error = 4e-32 relative error = 9.8660840000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.571 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.21 y[1] (analytic) = 0.40582768556470922446329288584067 y[1] (numeric) = 0.40582768556470922446329288584071 absolute error = 4e-32 relative error = 9.8564000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.57 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.209 y[1] (analytic) = 0.40622647694806922586638967437292 y[1] (numeric) = 0.40622647694806922586638967437296 absolute error = 4e-32 relative error = 9.8467240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.569 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.208 y[1] (analytic) = 0.40662572216728256909384271066465 y[1] (numeric) = 0.4066257221672825690938427106647 absolute error = 5e-32 relative error = 1.2296320000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.568 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.207 y[1] (analytic) = 0.40702542158675604402224149713719 y[1] (numeric) = 0.40702542158675604402224149713723 absolute error = 4e-32 relative error = 9.8273959999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.567 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.206 y[1] (analytic) = 0.40742557557011060789525577362783 y[1] (numeric) = 0.40742557557011060789525577362787 absolute error = 4e-32 relative error = 9.8177440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.567 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.205 y[1] (analytic) = 0.40782618448017454960695751470723 y[1] (numeric) = 0.40782618448017454960695751470727 absolute error = 4e-32 relative error = 9.8081000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.566 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.204 y[1] (analytic) = 0.40822724867897662327483164708264 y[1] (numeric) = 0.40822724867897662327483164708268 absolute error = 4e-32 relative error = 9.7984640000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.565 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.203 y[1] (analytic) = 0.40862876852773915100835278065748 y[1] (numeric) = 0.40862876852773915100835278065751 absolute error = 3e-32 relative error = 7.3416269999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.564 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.202 y[1] (analytic) = 0.40903074438687109477896796634822 y[1] (numeric) = 0.40903074438687109477896796634826 absolute error = 4e-32 relative error = 9.7792160000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.564 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.201 y[1] (analytic) = 0.40943317661596109729729065784038 y[1] (numeric) = 0.40943317661596109729729065784042 absolute error = 4e-32 relative error = 9.7696040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.563 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.2 y[1] (analytic) = 0.40983606557377049180327868852459 y[1] (numeric) = 0.40983606557377049180327868852463 absolute error = 4e-32 relative error = 9.7600000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.562 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.199 y[1] (analytic) = 0.41023941161822628067513920448835 y[1] (numeric) = 0.41023941161822628067513920448839 absolute error = 4e-32 relative error = 9.7504039999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.561 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.198 y[1] (analytic) = 0.41064321510641408276267614540712 y[1] (numeric) = 0.41064321510641408276267614540716 absolute error = 4e-32 relative error = 9.7408160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.561 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.197 y[1] (analytic) = 0.41104747639457104935077106340859 y[1] (numeric) = 0.41104747639457104935077106340863 absolute error = 4e-32 relative error = 9.7312360000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.56 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.196 y[1] (analytic) = 0.41145219583807874865866584156786 y[1] (numeric) = 0.4114521958380787486586658415679 absolute error = 4e-32 relative error = 9.7216640000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.559 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.195 y[1] (analytic) = 0.41185737379145601878069624489039 y[1] (numeric) = 0.41185737379145601878069624489043 absolute error = 4e-32 relative error = 9.7121000000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.558 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.194 y[1] (analytic) = 0.41226301060835178897410823388175 y[1] (numeric) = 0.41226301060835178897410823388179 absolute error = 4e-32 relative error = 9.7025440000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.557 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.193 y[1] (analytic) = 0.41266910664153786919957462068487 y[1] (numeric) = 0.41266910664153786919957462068491 absolute error = 4e-32 relative error = 9.6929960000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.557 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.192 y[1] (analytic) = 0.41307566224290170782001797705282 y[1] (numeric) = 0.41307566224290170782001797705286 absolute error = 4e-32 relative error = 9.6834560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.556 Order of pole = 1 memory used=137.3MB, alloc=4.5MB, time=8.13 TOP MAIN SOLVE Loop x[1] = -1.191 y[1] (analytic) = 0.41348267776343911736333673905232 y[1] (numeric) = 0.41348267776343911736333673905236 absolute error = 4e-32 relative error = 9.6739240000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.555 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.19 y[1] (analytic) = 0.41389015355324696825462522246596 y[1] (numeric) = 0.413890153553246968254625222466 absolute error = 4e-32 relative error = 9.6643999999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.554 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.189 y[1] (analytic) = 0.41429808996151585042347479265416 y[1] (numeric) = 0.41429808996151585042347479265421 absolute error = 5e-32 relative error = 1.2068605000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.554 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.188 y[1] (analytic) = 0.41470648733652270269194275059884 y[1] (numeric) = 0.41470648733652270269194275059888 absolute error = 4e-32 relative error = 9.6453759999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.553 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.187 y[1] (analytic) = 0.41511534602562340984877763059633 y[1] (numeric) = 0.41511534602562340984877763059637 absolute error = 4e-32 relative error = 9.6358759999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.552 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.186 y[1] (analytic) = 0.4155246663752453673154945823894 y[1] (numeric) = 0.41552466637524536731549458238944 absolute error = 4e-32 relative error = 9.6263840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.551 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.185 y[1] (analytic) = 0.41593444873088001330990235938816 y[1] (numeric) = 0.4159344487308800133099023593882 absolute error = 4e-32 relative error = 9.6169000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.551 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.184 y[1] (analytic) = 0.41634469343707532841269418316502 y[1] (numeric) = 0.41634469343707532841269418316506 absolute error = 4e-32 relative error = 9.6074240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.55 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.183 y[1] (analytic) = 0.41675540083742830244272843092842 y[1] (numeric) = 0.41675540083742830244272843092846 absolute error = 4e-32 relative error = 9.5979560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.549 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.182 y[1] (analytic) = 0.41716657127457736854664172566793 y[1] (numeric) = 0.41716657127457736854664172566797 absolute error = 4e-32 relative error = 9.5884959999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.548 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.181 y[1] (analytic) = 0.4175782050901948044084566267782 y[1] (numeric) = 0.41757820509019480440845662677825 absolute error = 5e-32 relative error = 1.1973805000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.548 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.18 y[1] (analytic) = 0.41799030262497910048486875104498 y[1] (numeric) = 0.41799030262497910048486875104502 absolute error = 4e-32 relative error = 9.5695999999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.547 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.179 y[1] (analytic) = 0.41840286421864729517192382892176 y[1] (numeric) = 0.41840286421864729517192382892181 absolute error = 5e-32 relative error = 1.1950205000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.546 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.178 y[1] (analytic) = 0.41881589020992727680882394822765 y[1] (numeric) = 0.4188158902099272768088239482277 absolute error = 5e-32 relative error = 1.1938420000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.545 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.177 y[1] (analytic) = 0.41922938093655005242463408611558 y[1] (numeric) = 0.41922938093655005242463408611563 absolute error = 5e-32 relative error = 1.1926645000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.544 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.176 y[1] (analytic) = 0.41964333673524198313369500993715 y[1] (numeric) = 0.4196433367352419831336950099372 absolute error = 5e-32 relative error = 1.1914880000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.544 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.175 y[1] (analytic) = 0.42005775794171698608558676818062 y[1] (numeric) = 0.42005775794171698608558676818067 absolute error = 5e-32 relative error = 1.1903125000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.543 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.174 y[1] (analytic) = 0.42047264489066870287552832387831 y[1] (numeric) = 0.42047264489066870287552832387835 absolute error = 4e-32 relative error = 9.5131039999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.542 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.173 y[1] (analytic) = 0.4208879979157626343211434348417 y[1] (numeric) = 0.42088799791576263432114343484174 absolute error = 4e-32 relative error = 9.5037159999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.541 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.172 y[1] (analytic) = 0.42130381734962824151157068803969 y[1] (numeric) = 0.42130381734962824151157068803973 absolute error = 4e-32 relative error = 9.4943360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.541 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.171 y[1] (analytic) = 0.42172010352385101303494667981871 y[1] (numeric) = 0.42172010352385101303494667981875 absolute error = 4e-32 relative error = 9.4849640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.54 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.17 y[1] (analytic) = 0.42213685676896449829034573008569 y[1] (numeric) = 0.42213685676896449829034573008573 absolute error = 4e-32 relative error = 9.4756000000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.539 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.169 y[1] (analytic) = 0.42255407741444230679031725782686 y[1] (numeric) = 0.4225540774144423067903172578269 absolute error = 4e-32 relative error = 9.4662440000000000000000000000001e-30 % Correct digits = 31 h = 0.001 memory used=141.1MB, alloc=4.5MB, time=8.36 Complex estimate of poles used Radius of convergence = 1.538 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.168 y[1] (analytic) = 0.42297176578869007336022305839041 y[1] (numeric) = 0.42297176578869007336022305839044 absolute error = 3e-32 relative error = 7.0926719999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.538 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.167 y[1] (analytic) = 0.4233899222190373891406412409728 y[1] (numeric) = 0.42338992221903738914064124097283 absolute error = 3e-32 relative error = 7.0856670000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.537 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.166 y[1] (analytic) = 0.42380854703172969829917153905226 y[1] (numeric) = 0.42380854703172969829917153905229 absolute error = 3e-32 relative error = 7.0786680000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.536 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.165 y[1] (analytic) = 0.42422764055192016035804812862582 y[1] (numeric) = 0.42422764055192016035804812862585 absolute error = 3e-32 relative error = 7.0716750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.535 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.164 y[1] (analytic) = 0.42464720310366147804404101072829 y[1] (numeric) = 0.42464720310366147804404101072832 absolute error = 3e-32 relative error = 7.0646879999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.535 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.163 y[1] (analytic) = 0.42506723500989769056720546772486 y[1] (numeric) = 0.42506723500989769056720546772489 absolute error = 3e-32 relative error = 7.0577070000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.534 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.162 y[1] (analytic) = 0.4254877365924559322351211193391 y[1] (numeric) = 0.42548773659245593223512111933913 absolute error = 3e-32 relative error = 7.0507320000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.533 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.161 y[1] (analytic) = 0.42590870817203815630934771655435 y[1] (numeric) = 0.42590870817203815630934771655438 absolute error = 3e-32 relative error = 7.0437630000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.532 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.16 y[1] (analytic) = 0.42633015006821282401091405184175 y[1] (numeric) = 0.42633015006821282401091405184178 absolute error = 3e-32 relative error = 7.0367999999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.532 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.159 y[1] (analytic) = 0.42675206259940655858174926523964 y[1] (numeric) = 0.42675206259940655858174926523967 absolute error = 3e-32 relative error = 7.0298429999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.531 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.158 y[1] (analytic) = 0.42717444608289576430906242043876 y[1] (numeric) = 0.42717444608289576430906242043879 absolute error = 3e-32 relative error = 7.0228920000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.53 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.157 y[1] (analytic) = 0.42759730083479821041977654620253 y[1] (numeric) = 0.42759730083479821041977654620256 absolute error = 3e-32 relative error = 7.0159470000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.529 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.156 y[1] (analytic) = 0.42802062717006457975222741934379 y[1] (numeric) = 0.42802062717006457975222741934382 absolute error = 3e-32 relative error = 7.0090080000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.529 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.155 y[1] (analytic) = 0.42844442540246998211244523944688 y[1] (numeric) = 0.42844442540246998211244523944691 absolute error = 3e-32 relative error = 7.0020750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.528 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.154 y[1] (analytic) = 0.42886869584460543222244904611025 y[1] (numeric) = 0.42886869584460543222244904611028 absolute error = 3e-32 relative error = 6.9951479999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.527 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.153 y[1] (analytic) = 0.42929343880786929216809929042087 y[1] (numeric) = 0.42929343880786929216809929042091 absolute error = 4e-32 relative error = 9.3176360000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.526 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.152 y[1] (analytic) = 0.4297186546024586782541734275735 y[1] (numeric) = 0.42971865460245867825417342757353 absolute error = 3e-32 relative error = 6.9813120000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.525 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.151 y[1] (analytic) = 0.43014434353736083217445278111976 y[1] (numeric) = 0.43014434353736083217445278111979 absolute error = 3e-32 relative error = 6.9744030000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.525 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.15 y[1] (analytic) = 0.43057050592034445640473627556512 y[1] (numeric) = 0.43057050592034445640473627556515 absolute error = 3e-32 relative error = 6.9675000000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.524 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.149 y[1] (analytic) = 0.43099714205795101372682797740368 y[1] (numeric) = 0.43099714205795101372682797740371 absolute error = 3e-32 relative error = 6.9606030000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.523 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.148 y[1] (analytic) = 0.43142425225548599079168075985891 y[1] (numeric) = 0.43142425225548599079168075985894 absolute error = 3e-32 relative error = 6.9537120000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.522 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.147 y[1] (analytic) = 0.43185183681701012563001784843642 y[1] (numeric) = 0.43185183681701012563001784843645 absolute error = 3e-32 relative error = 6.9468269999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.522 Order of pole = 1 TOP MAIN SOLVE Loop memory used=144.9MB, alloc=4.5MB, time=8.59 x[1] = -1.146 y[1] (analytic) = 0.43227989604533059901889754793552 y[1] (numeric) = 0.43227989604533059901889754793555 absolute error = 3e-32 relative error = 6.9399480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.521 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.145 y[1] (analytic) = 0.43270843024199218961283413204098 y[1] (numeric) = 0.43270843024199218961283413204101 absolute error = 3e-32 relative error = 6.9330750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.52 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.144 y[1] (analytic) = 0.43313743970726839274823972944503 y[1] (numeric) = 0.43313743970726839274823972944506 absolute error = 3e-32 relative error = 6.9262080000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.519 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.143 y[1] (analytic) = 0.43356692474015250283010810124135 y[1] (numeric) = 0.43356692474015250283010810124138 absolute error = 3e-32 relative error = 6.9193469999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.519 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.142 y[1] (analytic) = 0.43399688563834865921002150888565 y[1] (numeric) = 0.43399688563834865921002150888569 absolute error = 4e-32 relative error = 9.2166560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.518 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.141 y[1] (analytic) = 0.43442732269826285546472645631985 y[1] (numeric) = 0.43442732269826285546472645631989 absolute error = 4e-32 relative error = 9.2075240000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.517 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.14 y[1] (analytic) = 0.43485823621499391198469299008523 y[1] (numeric) = 0.43485823621499391198469299008527 absolute error = 4e-32 relative error = 9.1984000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.516 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.139 y[1] (analytic) = 0.43528962648232441178224549377296 y[1] (numeric) = 0.435289626482324411782245493773 absolute error = 4e-32 relative error = 9.1892840000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.516 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.138 y[1] (analytic) = 0.43572149379271159942903055453403 y[1] (numeric) = 0.43572149379271159942903055453407 absolute error = 4e-32 relative error = 9.1801760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.515 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.137 y[1] (analytic) = 0.43615383843727824303276954634331 y[1] (numeric) = 0.43615383843727824303276954634335 absolute error = 4e-32 relative error = 9.1710760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.514 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.136 y[1] (analytic) = 0.43658666070580345916343010422197 y[1] (numeric) = 0.43658666070580345916343010422201 absolute error = 4e-32 relative error = 9.1619840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.513 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.135 y[1] (analytic) = 0.43701996088671350063914169279682 y[1] (numeric) = 0.43701996088671350063914169279686 absolute error = 4e-32 relative error = 9.1529000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.513 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.134 y[1] (analytic) = 0.4374537392670725070823760387339 y[1] (numeric) = 0.43745373926707250708237603873395 absolute error = 5e-32 relative error = 1.1429780000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.512 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.133 y[1] (analytic) = 0.43788799613257321815711333723638 y[1] (numeric) = 0.43788799613257321815711333723642 absolute error = 4e-32 relative error = 9.1347559999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.511 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.132 y[1] (analytic) = 0.43832273176752764939791989564412 y[1] (numeric) = 0.43832273176752764939791989564417 absolute error = 5e-32 relative error = 1.1407120000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.51 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.131 y[1] (analytic) = 0.43875794645485773054207228010658 y[1] (numeric) = 0.43875794645485773054207228010663 absolute error = 5e-32 relative error = 1.1395805000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.51 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.13 y[1] (analytic) = 0.43919364047608590627607712240327 y[1] (numeric) = 0.43919364047608590627607712240331 absolute error = 4e-32 relative error = 9.1076000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.509 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.129 y[1] (analytic) = 0.43962981411132569930815456153301 y[1] (numeric) = 0.43962981411132569930815456153305 absolute error = 4e-32 relative error = 9.0985639999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.508 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.128 y[1] (analytic) = 0.44006646763927223567847687714752 y[1] (numeric) = 0.44006646763927223567847687714757 absolute error = 5e-32 relative error = 1.1361920000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.507 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.127 y[1] (analytic) = 0.44050360133719273221918225792455 y[1] (numeric) = 0.4405036013371927322191822579246 absolute error = 5e-32 relative error = 1.1350645000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.507 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.126 y[1] (analytic) = 0.4409412154809169460764168764077 y[1] (numeric) = 0.44094121548091694607641687640776 absolute error = 6e-32 relative error = 1.3607256000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.506 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.125 y[1] (analytic) = 0.44137931034482758620689655172414 y[1] (numeric) = 0.44137931034482758620689655172419 absolute error = 5e-32 relative error = 1.1328125000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.505 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.124 y[1] (analytic) = 0.44181788620185068676172231215671 y[1] (numeric) = 0.44181788620185068676172231215676 absolute error = 5e-32 relative error = 1.1316880000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.504 Order of pole = 1 TOP MAIN SOLVE Loop memory used=148.7MB, alloc=4.5MB, time=8.81 x[1] = -1.123 y[1] (analytic) = 0.44225694332344594227043216021731 y[1] (numeric) = 0.44225694332344594227043216021736 absolute error = 5e-32 relative error = 1.1305645000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.504 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.122 y[1] (analytic) = 0.44269648197959700453852433325483 y[1] (numeric) = 0.44269648197959700453852433325488 absolute error = 5e-32 relative error = 1.1294420000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.503 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.121 y[1] (analytic) = 0.4431365024388017411719453825398 y[1] (numeric) = 0.44313650243880174117194538253985 absolute error = 5e-32 relative error = 1.1283205000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.502 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.12 y[1] (analytic) = 0.44357700496806245564229950319375 y[1] (numeric) = 0.4435770049680624556422995031938 absolute error = 5e-32 relative error = 1.1272000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.501 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.119 y[1] (analytic) = 0.44401798983287606880680377646181 y[1] (numeric) = 0.44401798983287606880680377646185 absolute error = 4e-32 relative error = 9.0086439999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.501 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.118 y[1] (analytic) = 0.44445945729722426179728737504022 y[1] (numeric) = 0.44445945729722426179728737504027 absolute error = 5e-32 relative error = 1.1249620000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.5 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.117 y[1] (analytic) = 0.4449014076235635801928113720359 y[1] (numeric) = 0.44490140762356358019281137203595 absolute error = 5e-32 relative error = 1.1238445000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.499 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.116 y[1] (analytic) = 0.44534384107281549939076962541239 y[1] (numeric) = 0.44534384107281549939076962541244 absolute error = 5e-32 relative error = 1.1227280000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.498 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.115 y[1] (analytic) = 0.44578675790435645109162032341829 y[1] (numeric) = 0.44578675790435645109162032341834 absolute error = 5e-32 relative error = 1.1216125000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.498 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.114 y[1] (analytic) = 0.44623015837600781081269221364072 y[1] (numeric) = 0.44623015837600781081269221364077 absolute error = 5e-32 relative error = 1.1204980000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.497 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.113 y[1] (analytic) = 0.44667404274402584634680934031157 y[1] (numeric) = 0.44667404274402584634680934031162 absolute error = 5e-32 relative error = 1.1193845000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.496 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.112 y[1] (analytic) = 0.44711841126309162708178332284095 y[1] (numeric) = 0.447118411263091627081783322841 absolute error = 5e-32 relative error = 1.1182720000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.496 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.111 y[1] (analytic) = 0.4475632641863008940971328649733 y[1] (numeric) = 0.44756326418630089409713286497334 absolute error = 4e-32 relative error = 8.9372839999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.495 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.11 y[1] (analytic) = 0.44800860176515389095470633036154 y[1] (numeric) = 0.44800860176515389095470633036159 absolute error = 5e-32 relative error = 1.1160500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.494 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.109 y[1] (analytic) = 0.44845442424954515510020489882644 y[1] (numeric) = 0.44845442424954515510020489882649 absolute error = 5e-32 relative error = 1.1149405000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.493 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.108 y[1] (analytic) = 0.44890073188775326979293107039482 y[1] (numeric) = 0.44890073188775326979293107039487 absolute error = 5e-32 relative error = 1.1138320000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.493 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.107 y[1] (analytic) = 0.44934752492643057648142015386558 y[1] (numeric) = 0.44934752492643057648142015386563 absolute error = 5e-32 relative error = 1.1127245000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.492 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.106 y[1] (analytic) = 0.44979480361059284754295090579678 y[1] (numeric) = 0.44979480361059284754295090579683 absolute error = 5e-32 relative error = 1.1116180000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.491 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.105 y[1] (analytic) = 0.45024256818360891930527571729269 y[1] (numeric) = 0.45024256818360891930527571729275 absolute error = 6e-32 relative error = 1.3326150000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.49 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.104 y[1] (analytic) = 0.45069081888719028526926072283596 y[1] (numeric) = 0.45069081888719028526926072283602 absolute error = 6e-32 relative error = 1.3312896000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.49 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.103 y[1] (analytic) = 0.45113955596138064945148197088436 y[1] (numeric) = 0.45113955596138064945148197088441 absolute error = 5e-32 relative error = 1.1083045000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.489 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.102 y[1] (analytic) = 0.45158877964454543976618539345124 y[1] (numeric) = 0.45158877964454543976618539345129 absolute error = 5e-32 relative error = 1.1072020000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.488 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.101 y[1] (analytic) = 0.45203849017336128136638578501682 y[1] (numeric) = 0.45203849017336128136638578501687 absolute error = 5e-32 relative error = 1.1061005000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.487 Order of pole = 1 TOP MAIN SOLVE Loop memory used=152.5MB, alloc=4.5MB, time=9.03 x[1] = -1.1 y[1] (analytic) = 0.45248868778280542986425339366516 y[1] (numeric) = 0.45248868778280542986425339366521 absolute error = 5e-32 relative error = 1.1050000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.487 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.099 y[1] (analytic) = 0.4529393727061451643513160832883 y[1] (numeric) = 0.45293937270614516435131608328836 absolute error = 6e-32 relative error = 1.3246806000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.486 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.098 y[1] (analytic) = 0.45339054517492714013939038920858 y[1] (numeric) = 0.45339054517492714013939038920864 absolute error = 6e-32 relative error = 1.3233624000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.485 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.097 y[1] (analytic) = 0.45384220541896670114354620499417 y[1] (numeric) = 0.45384220541896670114354620499423 absolute error = 6e-32 relative error = 1.3220454000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.484 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.096 y[1] (analytic) = 0.45429435366633715182880735011921 y[1] (numeric) = 0.45429435366633715182880735011927 absolute error = 6e-32 relative error = 1.3207296000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.484 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.095 y[1] (analytic) = 0.45474699014335898864269392116961 y[1] (numeric) = 0.45474699014335898864269392116967 absolute error = 6e-32 relative error = 1.3194150000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.483 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.094 y[1] (analytic) = 0.45520011507458909085612216842768 y[1] (numeric) = 0.45520011507458909085612216842774 absolute error = 6e-32 relative error = 1.3181016000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.482 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.093 y[1] (analytic) = 0.45565372868280987073559370997367 y[1] (numeric) = 0.45565372868280987073559370997372 absolute error = 5e-32 relative error = 1.0973245000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.481 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.092 y[1] (analytic) = 0.45610783118901838297002824219691 y[1] (numeric) = 0.45610783118901838297002824219696 absolute error = 5e-32 relative error = 1.0962320000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.481 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.091 y[1] (analytic) = 0.45656242281241539327602257427243 y[1] (numeric) = 0.45656242281241539327602257427249 absolute error = 6e-32 relative error = 1.3141686000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.48 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.09 y[1] (analytic) = 0.45701750377039440610575385037247 y[1] (numeric) = 0.45701750377039440610575385037253 absolute error = 6e-32 relative error = 1.3128600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.479 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.089 y[1] (analytic) = 0.45747307427853065138218627297144 y[1] (numeric) = 0.4574730742785306513821862729715 absolute error = 6e-32 relative error = 1.3115526000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.478 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.088 y[1] (analytic) = 0.45792913455057003018668854957358 y[1] (numeric) = 0.45792913455057003018668854957364 absolute error = 6e-32 relative error = 1.3102464000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.478 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.087 y[1] (analytic) = 0.45838568479841801932462369973171 y[1] (numeric) = 0.45838568479841801932462369973177 absolute error = 6e-32 relative error = 1.3089414000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.477 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.086 y[1] (analytic) = 0.45884272523212853469493382570217 y[1] (numeric) = 0.45884272523212853469493382570223 absolute error = 6e-32 relative error = 1.3076376000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.476 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.085 y[1] (analytic) = 0.45930025605989275339021001504208 y[1] (numeric) = 0.45930025605989275339021001504215 absolute error = 7e-32 relative error = 1.5240575000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.476 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.084 y[1] (analytic) = 0.45975827748802789445421175362841 y[1] (numeric) = 0.45975827748802789445421175362848 absolute error = 7e-32 relative error = 1.5225392000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.475 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.083 y[1] (analytic) = 0.46021678972096595822428112986904 y[1] (numeric) = 0.4602167897209659582242811298691 absolute error = 6e-32 relative error = 1.3037334000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.474 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.082 y[1] (analytic) = 0.46067579296124242418658475236833 y[1] (numeric) = 0.4606757929612424241865847523684 absolute error = 7e-32 relative error = 1.5195068000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.473 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.081 y[1] (analytic) = 0.46113528740948490727261073126373 y[1] (numeric) = 0.46113528740948490727261073126379 absolute error = 6e-32 relative error = 1.3011366000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.473 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.08 y[1] (analytic) = 0.46159527326440177252584933530281 y[1] (numeric) = 0.46159527326440177252584933530287 absolute error = 6e-32 relative error = 1.2998400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.472 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.079 y[1] (analytic) = 0.46205575072277070806809408009552 y[1] (numeric) = 0.46205575072277070806809408009558 absolute error = 6e-32 relative error = 1.2985446000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.471 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.078 y[1] (analytic) = 0.46251671997942725629531507563998 y[1] (numeric) = 0.46251671997942725629531507564005 absolute error = 7e-32 relative error = 1.5134588000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.47 Order of pole = 1 memory used=156.4MB, alloc=4.5MB, time=9.27 TOP MAIN SOLVE Loop x[1] = -1.077 y[1] (analytic) = 0.46297818122725330323357851114551 y[1] (numeric) = 0.46297818122725330323357851114557 absolute error = 6e-32 relative error = 1.2959574000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.47 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.076 y[1] (analytic) = 0.46344013465716552598601523049659 y[1] (numeric) = 0.46344013465716552598601523049665 absolute error = 6e-32 relative error = 1.2946656000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.469 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.075 y[1] (analytic) = 0.46390258045810379820237750072485 y[1] (numeric) = 0.46390258045810379820237750072491 absolute error = 6e-32 relative error = 1.2933750000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.468 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.074 y[1] (analytic) = 0.46436551881701955350326634705936 y[1] (numeric) = 0.46436551881701955350326634705942 absolute error = 6e-32 relative error = 1.2920856000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.467 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.073 y[1] (analytic) = 0.46482894991886410679166227015952 y[1] (numeric) = 0.46482894991886410679166227015958 absolute error = 6e-32 relative error = 1.2907974000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.467 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.072 y[1] (analytic) = 0.46529287394657693338494982281647 y[1] (numeric) = 0.46529287394657693338494982281654 absolute error = 7e-32 relative error = 1.5044288000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.466 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.071 y[1] (analytic) = 0.46575729108107390590119145372631 y[1] (numeric) = 0.46575729108107390590119145372638 absolute error = 7e-32 relative error = 1.5029287000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.465 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.07 y[1] (analytic) = 0.46622220150123548883397827404541 y[1] (numeric) = 0.46622220150123548883397827404548 absolute error = 7e-32 relative error = 1.5014300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.465 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.069 y[1] (analytic) = 0.46668760538389489075076501765713 y[1] (numeric) = 0.4666876053838948907507650176572 absolute error = 7e-32 relative error = 1.4999327000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.464 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.068 y[1] (analytic) = 0.46715350290382617405018349789594 y[1] (numeric) = 0.46715350290382617405018349789602 absolute error = 8e-32 relative error = 1.7124992000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.463 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.067 y[1] (analytic) = 0.46761989423373232221442336154172 y[1] (numeric) = 0.4676198942337323222144233615418 absolute error = 8e-32 relative error = 1.7107912000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.462 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.066 y[1] (analytic) = 0.46808677954423326449337095502809 y[1] (numeric) = 0.46808677954423326449337095502817 absolute error = 8e-32 relative error = 1.7090848000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.462 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.065 y[1] (analytic) = 0.4685541590038538579578066979817 y[1] (numeric) = 0.46855415900385385795780669798178 absolute error = 8e-32 relative error = 1.7073800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.461 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.064 y[1] (analytic) = 0.46902203277901182685957855556223 y[1] (numeric) = 0.4690220327790118268595785555623 absolute error = 7e-32 relative error = 1.4924672000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.46 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.063 y[1] (analytic) = 0.46949040103400565923729406390422 y[1] (numeric) = 0.46949040103400565923729406390429 absolute error = 7e-32 relative error = 1.4909783000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.459 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.062 y[1] (analytic) = 0.46995926393100246070670594272888 y[1] (numeric) = 0.46995926393100246070670594272896 absolute error = 8e-32 relative error = 1.7022752000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.459 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.061 y[1] (analytic) = 0.47042862163002576537560667651117 y[1] (numeric) = 0.47042862163002576537560667651125 absolute error = 8e-32 relative error = 1.7005768000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.458 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.06 y[1] (analytic) = 0.47089847428894330382369561122622 y[1] (numeric) = 0.4708984742889433038236956112263 absolute error = 8e-32 relative error = 1.6988800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.457 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.059 y[1] (analytic) = 0.47136882206345472808853814858582 y[1] (numeric) = 0.4713688220634547280885381485859 absolute error = 8e-32 relative error = 1.6971848000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.457 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.058 y[1] (analytic) = 0.47183966510707929359940057488945 y[1] (numeric) = 0.47183966510707929359940057488953 absolute error = 8e-32 relative error = 1.6954912000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.456 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.057 y[1] (analytic) = 0.47231100357114349800141598838871 y[1] (numeric) = 0.47231100357114349800141598838879 absolute error = 8e-32 relative error = 1.6937992000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.455 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.056 y[1] (analytic) = 0.47278283760476867681321673878181 y[1] (numeric) = 0.47278283760476867681321673878189 absolute error = 8e-32 relative error = 1.6921088000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.454 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.055 y[1] (analytic) = 0.47325516735485855586185681664912 y[1] (numeric) = 0.4732551673548585558618568166492 absolute error = 8e-32 relative error = 1.6904200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.454 Order of pole = 1 memory used=160.2MB, alloc=4.5MB, time=9.51 TOP MAIN SOLVE Loop x[1] = -1.054 y[1] (analytic) = 0.47372799296608676043954378099365 y[1] (numeric) = 0.47372799296608676043954378099374 absolute error = 9e-32 relative error = 1.8998244000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.453 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.053 y[1] (analytic) = 0.47420131458088428112740414138976 y[1] (numeric) = 0.47420131458088428112740414138985 absolute error = 9e-32 relative error = 1.8979281000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.452 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.052 y[1] (analytic) = 0.47467513233942689623221866954256 y[1] (numeric) = 0.47467513233942689623221866954265 absolute error = 9e-32 relative error = 1.8960336000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.451 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.051 y[1] (analytic) = 0.47514944637962255078278495543811 y[1] (numeric) = 0.47514944637962255078278495543819 absolute error = 8e-32 relative error = 1.6836808000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.451 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.05 y[1] (analytic) = 0.4756242568370986920332936979786 y[1] (numeric) = 0.47562425683709869203329369797868 absolute error = 8e-32 relative error = 1.6820000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.45 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.049 y[1] (analytic) = 0.47609956384518956142184278144983 y[1] (numeric) = 0.47609956384518956142184278144991 absolute error = 8e-32 relative error = 1.6803208000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.449 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.048 y[1] (analytic) = 0.47657536753492344293295918989813 y[1] (numeric) = 0.47657536753492344293295918989821 absolute error = 8e-32 relative error = 1.6786432000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.449 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.047 y[1] (analytic) = 0.47705166803500986781375330417912 y[1] (numeric) = 0.4770516680350098678137533041792 absolute error = 8e-32 relative error = 1.6769672000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.448 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.046 y[1] (analytic) = 0.4775284654718267755940931638935 y[1] (numeric) = 0.47752846547182677559409316389358 absolute error = 8e-32 relative error = 1.6752928000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.447 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.045 y[1] (analytic) = 0.47800575996940763136195791159283 y[1] (numeric) = 0.47800575996940763136195791159292 absolute error = 9e-32 relative error = 1.8828225000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.446 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.044 y[1] (analytic) = 0.4784835516494284992459099226005 y[1] (numeric) = 0.47848355164942849924590992260059 absolute error = 9e-32 relative error = 1.8809424000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.446 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.043 y[1] (analytic) = 0.47896184063119507205741411376014 y[1] (numeric) = 0.47896184063119507205741411376023 absolute error = 9e-32 relative error = 1.8790641000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.445 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.042 y[1] (analytic) = 0.47944062703162965704653067173467 y[1] (numeric) = 0.47944062703162965704653067173476 absolute error = 9e-32 relative error = 1.8771876000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.444 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.041 y[1] (analytic) = 0.47991991096525811772531399959975 y[1] (numeric) = 0.47991991096525811772531399959983 absolute error = 8e-32 relative error = 1.6669448000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.443 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.04 y[1] (analytic) = 0.48039969254419677171406610299769 y[1] (numeric) = 0.48039969254419677171406610299778 absolute error = 9e-32 relative error = 1.8734400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.443 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.039 y[1] (analytic) = 0.48087997187813924456641697775594 y[1] (numeric) = 0.48087997187813924456641697775602 absolute error = 8e-32 relative error = 1.6636168000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.442 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.038 y[1] (analytic) = 0.48136074907434327953003787346374 y[1] (numeric) = 0.48136074907434327953003787346382 absolute error = 8e-32 relative error = 1.6619552000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.441 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.037 y[1] (analytic) = 0.48184202423761750320063564599837 y[1] (numeric) = 0.48184202423761750320063564599846 absolute error = 9e-32 relative error = 1.8678321000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.441 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.036 y[1] (analytic) = 0.48232379747030814702772783046897 y[1] (numeric) = 0.48232379747030814702772783046906 absolute error = 9e-32 relative error = 1.8659664000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.44 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.035 y[1] (analytic) = 0.48280606887228572463155861869184 y[1] (numeric) = 0.48280606887228572463155861869192 absolute error = 8e-32 relative error = 1.6569800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.439 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.034 y[1] (analytic) = 0.48328883854093166489138566642631 y[1] (numeric) = 0.48328883854093166489138566642639 absolute error = 8e-32 relative error = 1.6553248000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.438 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.033 y[1] (analytic) = 0.483772106571124900766246639598 y[1] (numeric) = 0.48377210657112490076624663959808 absolute error = 8e-32 relative error = 1.6536712000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.438 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.032 y[1] (analytic) = 0.48425587305522841381020269013823 y[1] (numeric) = 0.4842558730552284138102026901383 absolute error = 7e-32 relative error = 1.4455168000000000000000000000000e-29 % Correct digits = 30 h = 0.001 memory used=164.0MB, alloc=4.5MB, time=9.76 Complex estimate of poles used Radius of convergence = 1.437 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.031 y[1] (analytic) = 0.48474013808307573434495368550351 y[1] (numeric) = 0.48474013808307573434495368550358 absolute error = 7e-32 relative error = 1.4440727000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.436 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.03 y[1] (analytic) = 0.48522490174195739725362705614052 y[1] (numeric) = 0.48522490174195739725362705614059 absolute error = 7e-32 relative error = 1.4426300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.436 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.029 y[1] (analytic) = 0.48571016411660735336045862696537 y[1] (numeric) = 0.48571016411660735336045862696543 absolute error = 6e-32 relative error = 1.2353046000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.435 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.028 y[1] (analytic) = 0.48619592528918933636200981726812 y[1] (numeric) = 0.48619592528918933636200981726819 absolute error = 7e-32 relative error = 1.4397488000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.434 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.027 y[1] (analytic) = 0.48668218533928318527650118336773 y[1] (numeric) = 0.4866821853392831852765011833678 absolute error = 7e-32 relative error = 1.4383103000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.433 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.026 y[1] (analytic) = 0.4871689443438711223787874949578 y[1] (numeric) = 0.48716894434387112237878749495787 absolute error = 7e-32 relative error = 1.4368732000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.433 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.025 y[1] (analytic) = 0.48765620237732398658945443462359 y[1] (numeric) = 0.48765620237732398658945443462366 absolute error = 7e-32 relative error = 1.4354375000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.432 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.024 y[1] (analytic) = 0.48814395951138742228748164578712 y[1] (numeric) = 0.48814395951138742228748164578719 absolute error = 7e-32 relative error = 1.4340032000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.431 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.023 y[1] (analytic) = 0.48863221581516802351689128275241 y[1] (numeric) = 0.48863221581516802351689128275247 absolute error = 6e-32 relative error = 1.2279174000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.431 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.022 y[1] (analytic) = 0.48912097135511943355878549306329 y[1] (numeric) = 0.48912097135511943355878549306335 absolute error = 6e-32 relative error = 1.2266904000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.43 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.021 y[1] (analytic) = 0.48961022619502839984117044262233 y[1] (numeric) = 0.4896102261950283998411704426224 absolute error = 7e-32 relative error = 1.4297087000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.429 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.02 y[1] (analytic) = 0.49009998039600078415996863360125 y[1] (numeric) = 0.49009998039600078415996863360132 absolute error = 7e-32 relative error = 1.4282800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.428 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.019 y[1] (analytic) = 0.49059023401644752818563541982995 y[1] (numeric) = 0.49059023401644752818563541983002 absolute error = 7e-32 relative error = 1.4268527000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.428 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.018 y[1] (analytic) = 0.49108098711207057423081984988636 y[1] (numeric) = 0.49108098711207057423081984988643 absolute error = 7e-32 relative error = 1.4254268000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.427 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.017 y[1] (analytic) = 0.49157223973584874125554432039892 y[1] (numeric) = 0.49157223973584874125554432039899 absolute error = 7e-32 relative error = 1.4240023000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.426 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.016 y[1] (analytic) = 0.49206399193802355608742205706368 y[1] (numeric) = 0.49206399193802355608742205706375 absolute error = 7e-32 relative error = 1.4225792000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.426 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.015 y[1] (analytic) = 0.49255624376608503983548621458213 y[1] (numeric) = 0.4925562437660850398354862145822 absolute error = 7e-32 relative error = 1.4211575000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.425 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.014 y[1] (analytic) = 0.4930489952647574494772694552203 y[1] (numeric) = 0.49304899526475744947726945522038 absolute error = 8e-32 relative error = 1.6225568000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.424 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.013 y[1] (analytic) = 0.49354224647598497459984828511343 y[1] (numeric) = 0.49354224647598497459984828511351 absolute error = 8e-32 relative error = 1.6209352000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.423 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.012 y[1] (analytic) = 0.49403599743891738927665225398983 y[1] (numeric) = 0.49403599743891738927665225398991 absolute error = 8e-32 relative error = 1.6193152000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.423 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.011 y[1] (analytic) = 0.49453024818989565906293441391489 y[1] (numeric) = 0.49453024818989565906293441391497 absolute error = 8e-32 relative error = 1.6176968000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.422 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.01 y[1] (analytic) = 0.49502499876243750309390624226523 y[1] (numeric) = 0.49502499876243750309390624226531 absolute error = 8e-32 relative error = 1.6160800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.421 Order of pole = 1 TOP MAIN SOLVE Loop memory used=167.8MB, alloc=4.5MB, time=10.01 x[1] = -1.009 y[1] (analytic) = 0.4955202491872229112706576197883 y[1] (numeric) = 0.49552024918722291127065761978838 absolute error = 8e-32 relative error = 1.6144648000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.421 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.008 y[1] (analytic) = 0.49601599949207961652011047268341 y[1] (numeric) = 0.49601599949207961652011047268348 absolute error = 7e-32 relative error = 1.4112448000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.42 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.007 y[1] (analytic) = 0.49651224970196852211639339459963 y[1] (numeric) = 0.49651224970196852211639339459971 absolute error = 8e-32 relative error = 1.6112392000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.419 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.006 y[1] (analytic) = 0.4970089998389690840521740167671 y[1] (numeric) = 0.49700899983896908405217401676717 absolute error = 7e-32 relative error = 1.4084252000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.418 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.005 y[1] (analytic) = 0.49750624992226464844964614867974 y[1] (numeric) = 0.49750624992226464844964614867982 absolute error = 8e-32 relative error = 1.6080200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.418 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.004 y[1] (analytic) = 0.49800399996812774400203982438387 y[1] (numeric) = 0.49800399996812774400203982438395 absolute error = 8e-32 relative error = 1.6064128000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.417 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.003 y[1] (analytic) = 0.49850224998990532943770441707889 y[1] (numeric) = 0.49850224998990532943770441707897 absolute error = 8e-32 relative error = 1.6048072000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.416 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.002 y[1] (analytic) = 0.499000999998003996000007984016 y[1] (numeric) = 0.49900099999800399600000798401608 absolute error = 8e-32 relative error = 1.6032032000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.416 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.001 y[1] (analytic) = 0.49950024999987512493750003121877 y[1] (numeric) = 0.49950024999987512493750003121885 absolute error = 8e-32 relative error = 1.6016008000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.415 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1 y[1] (analytic) = 0.5 y[1] (numeric) = 0.50000000000000000000000000000008 absolute error = 8e-32 relative error = 1.6000000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.415 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.999 y[1] (analytic) = 0.50050024999987487493750003128127 y[1] (numeric) = 0.50050024999987487493750003128135 absolute error = 8e-32 relative error = 1.5984008000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.414 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.998 y[1] (analytic) = 0.501000999997995996000008016016 y[1] (numeric) = 0.50100099999799599600000801601608 absolute error = 8e-32 relative error = 1.5968032000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.413 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.997 y[1] (analytic) = 0.50150224998984457943770564726639 y[1] (numeric) = 0.50150224998984457943770564726647 absolute error = 8e-32 relative error = 1.5952072000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.412 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.996 y[1] (analytic) = 0.50200399996787174400205620838387 y[1] (numeric) = 0.50200399996787174400205620838395 absolute error = 8e-32 relative error = 1.5936128000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.411 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.995 y[1] (analytic) = 0.50250624992148339844976821899222 y[1] (numeric) = 0.50250624992148339844976821899231 absolute error = 9e-32 relative error = 1.7910225000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.411 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.994 y[1] (analytic) = 0.50300899983702508405280387276689 y[1] (numeric) = 0.50300899983702508405280387276698 absolute error = 9e-32 relative error = 1.7892324000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.41 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.993 y[1] (analytic) = 0.50351224969776677211891549503562 y[1] (numeric) = 0.50351224969776677211891549503571 absolute error = 9e-32 relative error = 1.7874441000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.409 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.992 y[1] (analytic) = 0.50401599948388761652849908067482 y[1] (numeric) = 0.50401599948388761652849908067491 absolute error = 9e-32 relative error = 1.7856576000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.409 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.991 y[1] (analytic) = 0.50452024917246066129487140031109 y[1] (numeric) = 0.50452024917246066129487140031118 absolute error = 9e-32 relative error = 1.7838729000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.408 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.99 y[1] (analytic) = 0.50502499873743750315640624210898 y[1] (numeric) = 0.50502499873743750315640624210908 absolute error = 1.0e-31 relative error = 1.9801000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.407 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.989 y[1] (analytic) = 0.50553024814963290921030614406298 y[1] (numeric) = 0.50553024814963290921030614406307 absolute error = 9e-32 relative error = 1.7803089000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.406 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.988 y[1] (analytic) = 0.50603599737670938959913852431807 y[1] (numeric) = 0.50603599737670938959913852431816 absolute error = 9e-32 relative error = 1.7785296000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.406 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.987 y[1] (analytic) = 0.50654224638316172526262949119351 y[1] (numeric) = 0.5065422463831617252626294911936 absolute error = 9e-32 relative error = 1.7767521000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.405 Order of pole = 1 TOP MAIN SOLVE Loop memory used=171.6MB, alloc=4.5MB, time=10.25 x[1] = -0.986 y[1] (analytic) = 0.50704899513030145076858486681851 y[1] (numeric) = 0.5070489951303014507685848668186 absolute error = 9e-32 relative error = 1.7749764000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.404 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.985 y[1] (analytic) = 0.50755624357624129223819614511033 y[1] (numeric) = 0.50755624357624129223819614511042 absolute error = 9e-32 relative error = 1.7732025000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.404 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.984 y[1] (analytic) = 0.50806399167587956038238928269493 y[1] (numeric) = 0.50806399167587956038238928269502 absolute error = 9e-32 relative error = 1.7714304000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.403 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.983 y[1] (analytic) = 0.50857223938088449866728644670239 y[1] (numeric) = 0.50857223938088449866728644670248 absolute error = 9e-32 relative error = 1.7696601000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.402 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.982 y[1] (analytic) = 0.50908098663967858662827517252755 y[1] (numeric) = 0.50908098663967858662827517252763 absolute error = 8e-32 relative error = 1.5714592000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.402 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.981 y[1] (analytic) = 0.50959023339742279835361587393961 y[1] (numeric) = 0.50959023339742279835361587393969 absolute error = 8e-32 relative error = 1.5698888000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.401 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.98 y[1] (analytic) = 0.51009997959600081615996735360131 y[1] (numeric) = 0.51009997959600081615996735360139 absolute error = 8e-32 relative error = 1.5683200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.4 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.979 y[1] (analytic) = 0.51061022517400319948367094030405 y[1] (numeric) = 0.51061022517400319948367094030413 absolute error = 8e-32 relative error = 1.5667528000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.399 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.978 y[1] (analytic) = 0.51112097006671150901310718615639 y[1] (numeric) = 0.51112097006671150901310718615647 absolute error = 8e-32 relative error = 1.5651872000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.399 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.977 y[1] (analytic) = 0.5116322142060823860889247486223 y[1] (numeric) = 0.51163221420608238608892474862238 absolute error = 8e-32 relative error = 1.5636232000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.398 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.976 y[1] (analytic) = 0.51214395752073158740043921465797 y[1] (numeric) = 0.51214395752073158740043921465805 absolute error = 8e-32 relative error = 1.5620608000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.397 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.975 y[1] (analytic) = 0.512656199935917975008010253124 y[1] (numeric) = 0.51265619993591797500801025312408 absolute error = 8e-32 relative error = 1.5605000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.397 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.974 y[1] (analytic) = 0.51316894137352746172272866294859 y[1] (numeric) = 0.51316894137352746172272866294867 absolute error = 8e-32 relative error = 1.5589408000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.396 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.973 y[1] (analytic) = 0.51368218175205691187628067388938 y[1] (numeric) = 0.51368218175205691187628067388946 absolute error = 8e-32 relative error = 1.5573832000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.395 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.972 y[1] (analytic) = 0.51419592098659799751540530979276 y[1] (numeric) = 0.51419592098659799751540530979284 absolute error = 8e-32 relative error = 1.5558272000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.395 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.971 y[1] (analytic) = 0.51471015898882101005692179648257 y[1] (numeric) = 0.51471015898882101005692179648266 absolute error = 9e-32 relative error = 1.7485569000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.394 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.97 y[1] (analytic) = 0.51522489566695862744087794322222 y[1] (numeric) = 0.5152248956669586274408779432223 absolute error = 8e-32 relative error = 1.5527200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.393 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.969 y[1] (analytic) = 0.5157401309257896368209572033682 y[1] (numeric) = 0.51574013092578963682095720336828 absolute error = 8e-32 relative error = 1.5511688000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.392 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.968 y[1] (analytic) = 0.51625586466662261283288178153704 y[1] (numeric) = 0.51625586466662261283288178153712 absolute error = 8e-32 relative error = 1.5496192000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.392 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.967 y[1] (analytic) = 0.51677209678727955148316175638433 y[1] (numeric) = 0.51677209678727955148316175638441 absolute error = 8e-32 relative error = 1.5480712000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.391 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.966 y[1] (analytic) = 0.51728882718207945970216578486165 y[1] (numeric) = 0.51728882718207945970216578486172 absolute error = 7e-32 relative error = 1.3532092000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.39 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.965 y[1] (analytic) = 0.51780605574182190060712760035729 y[1] (numeric) = 0.51780605574182190060712760035736 absolute error = 7e-32 relative error = 1.3518575000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.39 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.964 y[1] (analytic) = 0.51832378235377049452235426808535 y[1] (numeric) = 0.51832378235377049452235426808543 absolute error = 8e-32 relative error = 1.5434368000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.389 Order of pole = 1 TOP MAIN SOLVE Loop memory used=175.4MB, alloc=4.5MB, time=10.49 x[1] = -0.963 y[1] (analytic) = 0.51884200690163637580556707096565 y[1] (numeric) = 0.51884200690163637580556707096573 absolute error = 8e-32 relative error = 1.5418952000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.388 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.962 y[1] (analytic) = 0.51936072926556160553098402238652 y[1] (numeric) = 0.5193607292655616055309840223866 absolute error = 8e-32 relative error = 1.5403552000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.388 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.961 y[1] (analytic) = 0.5198799493221025400814443928608 y[1] (numeric) = 0.51987994932210254008144439286088 absolute error = 8e-32 relative error = 1.5388168000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.387 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.96 y[1] (analytic) = 0.52039966694421315570358034970858 y[1] (numeric) = 0.52039966694421315570358034970866 absolute error = 8e-32 relative error = 1.5372800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.386 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.959 y[1] (analytic) = 0.52091988200122832908175889639997 y[1] (numeric) = 0.52091988200122832908175889640006 absolute error = 9e-32 relative error = 1.7277129000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.386 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.958 y[1] (analytic) = 0.52144059435884707398824881476553 y[1] (numeric) = 0.52144059435884707398824881476561 absolute error = 8e-32 relative error = 1.5342112000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.385 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.957 y[1] (analytic) = 0.5219618038791157340688123124526 y[1] (numeric) = 0.52196180387911573406881231245268 absolute error = 8e-32 relative error = 1.5326792000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.384 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.956 y[1] (analytic) = 0.52248351042041113182467961311141 y[1] (numeric) = 0.52248351042041113182467961311149 absolute error = 8e-32 relative error = 1.5311488000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.383 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.955 y[1] (analytic) = 0.5230057138374236738536368509826 y[1] (numeric) = 0.52300571383742367385363685098268 absolute error = 8e-32 relative error = 1.5296200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.383 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.954 y[1] (analytic) = 0.52352841398114041241474339778317 y[1] (numeric) = 0.52352841398114041241474339778325 absolute error = 8e-32 relative error = 1.5280928000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.382 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.953 y[1] (analytic) = 0.52405161069882806338299421080186 y[1] (numeric) = 0.52405161069882806338299421080194 absolute error = 8e-32 relative error = 1.5265672000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.381 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.952 y[1] (analytic) = 0.52457530383401598066205599946283 y[1] (numeric) = 0.52457530383401598066205599946292 absolute error = 9e-32 relative error = 1.7156736000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.381 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.951 y[1] (analytic) = 0.52509949322647908712503301563064 y[1] (numeric) = 0.52509949322647908712503301563072 absolute error = 8e-32 relative error = 1.5235208000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.38 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.95 y[1] (analytic) = 0.52562417871222076215505913272011 y[1] (numeric) = 0.52562417871222076215505913272019 absolute error = 8e-32 relative error = 1.5220000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.379 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.949 y[1] (analytic) = 0.52614936012345568585936764213004 y[1] (numeric) = 0.52614936012345568585936764213013 absolute error = 9e-32 relative error = 1.7105409000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.379 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.948 y[1] (analytic) = 0.52667503728859264003235891429101 y[1] (numeric) = 0.5266750372885926400323589142911 absolute error = 9e-32 relative error = 1.7088336000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.378 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.947 y[1] (analytic) = 0.5272012100322172659450687971219 y[1] (numeric) = 0.52720121003221726594506879712199 absolute error = 9e-32 relative error = 1.7071281000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.377 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.946 y[1] (analytic) = 0.52772787817507477904033740809619 y[1] (numeric) = 0.52772787817507477904033740809628 absolute error = 9e-32 relative error = 1.7054244000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.377 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.945 y[1] (analytic) = 0.52825504153405264061488886834564 y[1] (numeric) = 0.52825504153405264061488886834573 absolute error = 9e-32 relative error = 1.7037225000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.376 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.944 y[1] (analytic) = 0.52878269992216318657145757893668 y[1] (numeric) = 0.52878269992216318657145757893677 absolute error = 9e-32 relative error = 1.7020224000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.375 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.943 y[1] (analytic) = 0.52931085314852621332603590103793 y[1] (numeric) = 0.52931085314852621332603590103801 absolute error = 8e-32 relative error = 1.5113992000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.374 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.942 y[1] (analytic) = 0.52983950101835152095727162327988 y[1] (numeric) = 0.52983950101835152095727162327996 absolute error = 8e-32 relative error = 1.5098912000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.374 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.941 y[1] (analytic) = 0.53036864333292141368701143103537 y[1] (numeric) = 0.53036864333292141368701143103545 absolute error = 8e-32 relative error = 1.5083848000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.373 Order of pole = 1 TOP MAIN SOLVE Loop memory used=179.2MB, alloc=4.5MB, time=10.74 x[1] = -0.94 y[1] (analytic) = 0.53089827988957315778296878318114 y[1] (numeric) = 0.53089827988957315778296878318122 absolute error = 8e-32 relative error = 1.5068800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.372 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.939 y[1] (analytic) = 0.53142841048168139697649120140552 y[1] (numeric) = 0.5314284104816813969764912014056 absolute error = 8e-32 relative error = 1.5053768000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.372 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.938 y[1] (analytic) = 0.53195903489864052549041303427306 y[1] (numeric) = 0.53195903489864052549041303427313 absolute error = 7e-32 relative error = 1.3158908000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.371 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.937 y[1] (analytic) = 0.53249015292584701877400532170659 y[1] (numeric) = 0.53249015292584701877400532170666 absolute error = 7e-32 relative error = 1.3145783000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.37 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.936 y[1] (analytic) = 0.53302176434468172204407450365013 y[1] (numeric) = 0.5330217643446817220440745036502 absolute error = 7e-32 relative error = 1.3132672000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.37 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.935 y[1] (analytic) = 0.53355386893249209673331643746082 y[1] (numeric) = 0.53355386893249209673331643746088 absolute error = 6e-32 relative error = 1.1245350000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.369 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.934 y[1] (analytic) = 0.53408646646257442494910155974612 y[1] (numeric) = 0.53408646646257442494910155974618 absolute error = 6e-32 relative error = 1.1234136000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.368 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.933 y[1] (analytic) = 0.53461955670415597204795109727991 y[1] (numeric) = 0.53461955670415597204795109727997 absolute error = 6e-32 relative error = 1.1222934000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.368 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.932 y[1] (analytic) = 0.53515313942237710743306304532105 y[1] (numeric) = 0.53515313942237710743306304532111 absolute error = 6e-32 relative error = 1.1211744000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.367 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.931 y[1] (analytic) = 0.53568721437827338368436023679518 y[1] (numeric) = 0.53568721437827338368436023679524 absolute error = 6e-32 relative error = 1.1200566000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.366 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.93 y[1] (analytic) = 0.53622178132875757413266126870073 y[1] (numeric) = 0.5362217813287575741326612687008 absolute error = 7e-32 relative error = 1.3054300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.366 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.929 y[1] (analytic) = 0.53675684002660166899171837871523 y[1] (numeric) = 0.53675684002660166899171837871529 absolute error = 6e-32 relative error = 1.1178246000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.365 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.928 y[1] (analytic) = 0.53729239022041883016402462088649 y[1] (numeric) = 0.53729239022041883016402462088655 absolute error = 6e-32 relative error = 1.1167104000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.364 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.927 y[1] (analytic) = 0.53782843165464530483846591969469 y[1] (numeric) = 0.53782843165464530483846591969475 absolute error = 6e-32 relative error = 1.1155974000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.364 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.926 y[1] (analytic) = 0.53836496406952229800008183147454 y[1] (numeric) = 0.5383649640695222980000818314746 absolute error = 6e-32 relative error = 1.1144856000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.363 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.925 y[1] (analytic) = 0.53890198720107780397440215560795 y[1] (numeric) = 0.53890198720107780397440215560801 absolute error = 6e-32 relative error = 1.1133750000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.362 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.924 y[1] (analytic) = 0.53943950078110839713104495904575 y[1] (numeric) = 0.53943950078110839713104495904581 absolute error = 6e-32 relative error = 1.1122656000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.362 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.923 y[1] (analytic) = 0.53997750453716098187349515019204 y[1] (numeric) = 0.5399775045371609818734951501921 absolute error = 6e-32 relative error = 1.1111574000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.361 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.922 y[1] (analytic) = 0.54051599819251450204423150516409 y[1] (numeric) = 0.54051599819251450204423150516415 absolute error = 6e-32 relative error = 1.1100504000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.36 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.921 y[1] (analytic) = 0.5410549814661616098766340536759 y[1] (numeric) = 0.54105498146616160987663405367596 absolute error = 6e-32 relative error = 1.1089446000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.36 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.92 y[1] (analytic) = 0.54159445407279029462738301559792 y[1] (numeric) = 0.54159445407279029462738301559798 absolute error = 6e-32 relative error = 1.1078400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.359 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.919 y[1] (analytic) = 0.54213441572276547102535508448894 y[1] (numeric) = 0.542134415722765471025355084489 absolute error = 6e-32 relative error = 1.1067366000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.358 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.918 y[1] (analytic) = 0.54267486612211052767533282249539 y[1] (numeric) = 0.54267486612211052767533282249545 absolute error = 6e-32 relative error = 1.1056344000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.357 Order of pole = 1 TOP MAIN SOLVE Loop memory used=183.1MB, alloc=4.5MB, time=10.98 x[1] = -0.917 y[1] (analytic) = 0.54321580497248883555716830292321 y[1] (numeric) = 0.54321580497248883555716830292326 absolute error = 5e-32 relative error = 9.2044450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.357 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.916 y[1] (analytic) = 0.54375723197118521676338295299327 y[1] (numeric) = 0.54375723197118521676338295299333 absolute error = 6e-32 relative error = 1.1034336000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.356 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.915 y[1] (analytic) = 0.54429914681108737362054184980065 y[1] (numeric) = 0.54429914681108737362054184980071 absolute error = 6e-32 relative error = 1.1023350000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.355 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.914 y[1] (analytic) = 0.54484154918066727834211254682913 y[1] (numeric) = 0.54484154918066727834211254682919 absolute error = 6e-32 relative error = 1.1012376000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.355 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.913 y[1] (analytic) = 0.54538443876396252336290589555124 y[1] (numeric) = 0.5453844387639625233629058955513 absolute error = 6e-32 relative error = 1.1001414000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.354 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.912 y[1] (analytic) = 0.54592781524055763250759931518815 y[1] (numeric) = 0.5459278152405576325075993151882 absolute error = 5e-32 relative error = 9.1587200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.353 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.911 y[1] (analytic) = 0.54647167828556533314826159162062 y[1] (numeric) = 0.54647167828556533314826159162067 absolute error = 5e-32 relative error = 9.1496050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.353 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.91 y[1] (analytic) = 0.54701602756960778950823259121492 y[1] (numeric) = 0.54701602756960778950823259121497 absolute error = 5e-32 relative error = 9.1405000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.352 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.909 y[1] (analytic) = 0.54756086275879779727216129390822 y[1] (numeric) = 0.54756086275879779727216129390827 absolute error = 5e-32 relative error = 9.1314050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.351 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.908 y[1] (analytic) = 0.54810618351471993966447131869963 y[1] (numeric) = 0.54810618351471993966447131869968 absolute error = 5e-32 relative error = 9.1223200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.351 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.907 y[1] (analytic) = 0.54865198949441170516100466957708 y[1] (numeric) = 0.54865198949441170516100466957713 absolute error = 5e-32 relative error = 9.1132450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.35 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.906 y[1] (analytic) = 0.54919828035034456700109180618134 y[1] (numeric) = 0.54919828035034456700109180618138 absolute error = 4e-32 relative error = 7.2833440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.349 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.905 y[1] (analytic) = 0.54974505573040502466980937590193 y[1] (numeric) = 0.54974505573040502466980937590197 absolute error = 4e-32 relative error = 7.2760999999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.349 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.904 y[1] (analytic) = 0.55029231527787560752271606677467 y[1] (numeric) = 0.55029231527787560752271606677472 absolute error = 5e-32 relative error = 9.0860800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.348 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.903 y[1] (analytic) = 0.5508400586314158407279020870779 y[1] (numeric) = 0.55084005863141584072790208707795 absolute error = 5e-32 relative error = 9.0770450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.347 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.902 y[1] (analytic) = 0.5513882854250431737027487808805 y[1] (numeric) = 0.55138828542504317370274878088055 absolute error = 5e-32 relative error = 9.0680200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.347 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.901 y[1] (analytic) = 0.551936995288113871225371881349 y[1] (numeric) = 0.55193699528811387122537188134905 absolute error = 5e-32 relative error = 9.0590050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.346 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.9 y[1] (analytic) = 0.55248618784530386740331491712707 y[1] (numeric) = 0.55248618784530386740331491712712 absolute error = 5e-32 relative error = 9.0500000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.345 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.899 y[1] (analytic) = 0.55303586271658958268466835268867 y[1] (numeric) = 0.55303586271658958268466835268871 absolute error = 4e-32 relative error = 7.2328040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.345 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.898 y[1] (analytic) = 0.55358601951722870409941519172898 y[1] (numeric) = 0.55358601951722870409941519172903 absolute error = 5e-32 relative error = 9.0320200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.344 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.897 y[1] (analytic) = 0.55413665785774092892144503324543 y[1] (numeric) = 0.55413665785774092892144503324548 absolute error = 5e-32 relative error = 9.0230450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.343 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.896 y[1] (analytic) = 0.55468777734388867194433597216799 y[1] (numeric) = 0.55468777734388867194433597216804 absolute error = 5e-32 relative error = 9.0140799999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.343 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.895 y[1] (analytic) = 0.55523937757665773656667730875474 y[1] (numeric) = 0.55523937757665773656667730875479 absolute error = 5e-32 relative error = 9.0051249999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.342 Order of pole = 1 memory used=186.9MB, alloc=4.5MB, time=11.23 TOP MAIN SOLVE Loop x[1] = -0.894 y[1] (analytic) = 0.55579145815223794988539580132901 y[1] (numeric) = 0.55579145815223794988539580132906 absolute error = 5e-32 relative error = 8.9961800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.341 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.893 y[1] (analytic) = 0.55634401866200376199825419246944 y[1] (numeric) = 0.55634401866200376199825419246949 absolute error = 5e-32 relative error = 8.9872450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.341 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.892 y[1] (analytic) = 0.55689705869249480971941298594837 y[1] (numeric) = 0.55689705869249480971941298594842 absolute error = 5e-32 relative error = 8.9783200000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.34 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.891 y[1] (analytic) = 0.55745057782539644491468497631671 y[1] (numeric) = 0.55745057782539644491468497631676 absolute error = 5e-32 relative error = 8.9694050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.339 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.89 y[1] (analytic) = 0.55800457563752022766586686010825 y[1] (numeric) = 0.5580045756375202276658668601083 absolute error = 5e-32 relative error = 8.9605000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.339 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.889 y[1] (analytic) = 0.55855905170078438447630341151112 y[1] (numeric) = 0.55855905170078438447630341151117 absolute error = 5e-32 relative error = 8.9516050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.338 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.888 y[1] (analytic) = 0.55911400558219423173262720961855 y[1] (numeric) = 0.5591140055821942317326272096186 absolute error = 5e-32 relative error = 8.9427200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.337 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.887 y[1] (analytic) = 0.5596694368438225646404207818694 y[1] (numeric) = 0.55966943684382256464042078186945 absolute error = 5e-32 relative error = 8.9338449999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.337 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.886 y[1] (analytic) = 0.56022534504279001185436830110544 y[1] (numeric) = 0.56022534504279001185436830110549 absolute error = 5e-32 relative error = 8.9249799999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.336 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.885 y[1] (analytic) = 0.5607817297312453560263006631244 y[1] (numeric) = 0.56078172973124535602630066312445 absolute error = 5e-32 relative error = 8.9161249999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.335 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.884 y[1] (analytic) = 0.56133859045634582049739089823156 y[1] (numeric) = 0.56133859045634582049739089823161 absolute error = 5e-32 relative error = 8.9072800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.335 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.883 y[1] (analytic) = 0.56189592676023732236362645383547 y[1] (numeric) = 0.56189592676023732236362645383552 absolute error = 5e-32 relative error = 8.8984450000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.334 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.882 y[1] (analytic) = 0.56245373818003469214657094453981 y[1] (numeric) = 0.56245373818003469214657094453986 absolute error = 5e-32 relative error = 8.8896200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.333 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.881 y[1] (analytic) = 0.56301202424780186030433051958691 y[1] (numeric) = 0.56301202424780186030433051958696 absolute error = 5e-32 relative error = 8.8808049999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.333 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.88 y[1] (analytic) = 0.56357078449053201082055906221821 y[1] (numeric) = 0.56357078449053201082055906221827 absolute error = 6e-32 relative error = 1.0646400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.332 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.879 y[1] (analytic) = 0.56413001843012770211227202800793 y[1] (numeric) = 0.56413001843012770211227202800798 absolute error = 5e-32 relative error = 8.8632050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.331 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.878 y[1] (analytic) = 0.56468972558338095550019086512725 y[1] (numeric) = 0.5646897255833809555001908651273 absolute error = 5e-32 relative error = 8.8544200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.331 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.877 y[1] (analytic) = 0.56524990546195331148830865358038 y[1] (numeric) = 0.56524990546195331148830865358043 absolute error = 5e-32 relative error = 8.8456450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.33 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.876 y[1] (analytic) = 0.56581055757235585410235286662261 y[1] (numeric) = 0.56581055757235585410235286662266 absolute error = 5e-32 relative error = 8.8368800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.329 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.875 y[1] (analytic) = 0.56637168141592920353982300884956 y[1] (numeric) = 0.56637168141592920353982300884961 absolute error = 5e-32 relative error = 8.8281250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.329 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.874 y[1] (analytic) = 0.56693327648882347738729933396679 y[1] (numeric) = 0.56693327648882347738729933396684 absolute error = 5e-32 relative error = 8.8193799999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.328 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.873 y[1] (analytic) = 0.56749534228197822066375390223985 y[1] (numeric) = 0.5674953422819782206637539022399 absolute error = 5e-32 relative error = 8.8106450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.327 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.872 y[1] (analytic) = 0.56805787828110230495164691340071 y[1] (numeric) = 0.56805787828110230495164691340077 absolute error = 6e-32 relative error = 1.0562304000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.327 memory used=190.7MB, alloc=4.5MB, time=11.48 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.871 y[1] (analytic) = 0.56862088396665379688065955473573 y[1] (numeric) = 0.56862088396665379688065955473579 absolute error = 6e-32 relative error = 1.0551846000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.326 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.87 y[1] (analytic) = 0.56918435881381979623199954465251 y[1] (numeric) = 0.56918435881381979623199954465257 absolute error = 6e-32 relative error = 1.0541400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.325 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.869 y[1] (analytic) = 0.56974830229249624393431713671851 y[1] (numeric) = 0.56974830229249624393431713671857 absolute error = 6e-32 relative error = 1.0530966000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.325 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.868 y[1] (analytic) = 0.57031271386726770022538758452034 y[1] (numeric) = 0.5703127138672677002253875845204 absolute error = 6e-32 relative error = 1.0520544000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.324 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.867 y[1] (analytic) = 0.57087759299738709325685095927416 y[1] (numeric) = 0.57087759299738709325685095927422 absolute error = 6e-32 relative error = 1.0510134000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.324 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.866 y[1] (analytic) = 0.57144293913675543842245176450151 y[1] (numeric) = 0.57144293913675543842245176450156 absolute error = 5e-32 relative error = 8.7497800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.323 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.865 y[1] (analytic) = 0.57200875173390152869338900885184 y[1] (numeric) = 0.57200875173390152869338900885189 absolute error = 5e-32 relative error = 8.7411249999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.322 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.864 y[1] (analytic) = 0.57257503023196159624757228187182 y[1] (numeric) = 0.57257503023196159624757228187187 absolute error = 5e-32 relative error = 8.7324799999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.322 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.863 y[1] (analytic) = 0.57314177406865894568278092973912 y[1] (numeric) = 0.57314177406865894568278092973918 absolute error = 6e-32 relative error = 1.0468614000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.321 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.862 y[1] (analytic) = 0.57370898267628355910694164920679 y[1] (numeric) = 0.57370898267628355910694164920685 absolute error = 6e-32 relative error = 1.0458264000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.32 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.861 y[1] (analytic) = 0.57427665548167167340197470770754 y[1] (numeric) = 0.5742766554816716734019747077076 absolute error = 6e-32 relative error = 1.0447926000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.32 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.86 y[1] (analytic) = 0.57484479190618532996091055415038 y[1] (numeric) = 0.57484479190618532996091055415044 absolute error = 6e-32 relative error = 1.0437600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.319 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.859 y[1] (analytic) = 0.57541339136569189720124680573641 y[1] (numeric) = 0.57541339136569189720124680573647 absolute error = 6e-32 relative error = 1.0427286000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.318 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.858 y[1] (analytic) = 0.57598245327054356616080047737426 y[1] (numeric) = 0.57598245327054356616080047737432 absolute error = 6e-32 relative error = 1.0416984000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.318 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.857 y[1] (analytic) = 0.57655197702555681948561185713734 y[1] (numeric) = 0.5765519770255568194856118571374 absolute error = 6e-32 relative error = 1.0406694000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.317 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.856 y[1] (analytic) = 0.57712196202999187412277461771441 y[1] (numeric) = 0.57712196202999187412277461771447 absolute error = 6e-32 relative error = 1.0396416000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.316 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.855 y[1] (analytic) = 0.5776924076775320980344015828772 y[1] (numeric) = 0.57769240767753209803440158287725 absolute error = 5e-32 relative error = 8.6551250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.316 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.854 y[1] (analytic) = 0.57826331335626340125228703140432 y[1] (numeric) = 0.57826331335626340125228703140438 absolute error = 6e-32 relative error = 1.0375896000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.315 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.853 y[1] (analytic) = 0.57883467844865360159619450929001 y[1] (numeric) = 0.57883467844865360159619450929006 absolute error = 5e-32 relative error = 8.6380450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.314 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.852 y[1] (analytic) = 0.57940650233153176538208382389751 y[1] (numeric) = 0.57940650233153176538208382389756 absolute error = 5e-32 relative error = 8.6295199999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.314 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.851 y[1] (analytic) = 0.57997878437606752344999219928535 y[1] (numeric) = 0.5799787843760675234499921992854 absolute error = 5e-32 relative error = 8.6210050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.313 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.85 y[1] (analytic) = 0.58055152394775036284470246734398 y[1] (numeric) = 0.58055152394775036284470246734403 absolute error = 5e-32 relative error = 8.6125000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.312 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.849 memory used=194.5MB, alloc=4.5MB, time=11.74 y[1] (analytic) = 0.58112472040636889448576564053601 y[1] (numeric) = 0.58112472040636889448576564053606 absolute error = 5e-32 relative error = 8.6040049999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.312 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.848 y[1] (analytic) = 0.58169837310599009716689624362459 y[1] (numeric) = 0.58169837310599009716689624362464 absolute error = 5e-32 relative error = 8.5955199999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.311 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.847 y[1] (analytic) = 0.5822724813949385382282263572626 y[1] (numeric) = 0.58227248139493853822822635726265 absolute error = 5e-32 relative error = 8.5870450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.31 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.846 y[1] (analytic) = 0.58284704461577557124838842792164 y[1] (numeric) = 0.58284704461577557124838842792169 absolute error = 5e-32 relative error = 8.5785800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.31 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.845 y[1] (analytic) = 0.58342206210527851110689750732924 y[1] (numeric) = 0.58342206210527851110689750732929 absolute error = 5e-32 relative error = 8.5701250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.309 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.844 y[1] (analytic) = 0.58399753319441978677082068005345 y[1] (numeric) = 0.5839975331944197867708206800535 absolute error = 5e-32 relative error = 8.5616800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.309 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.843 y[1] (analytic) = 0.58457345720834607216325499854149 y[1] (numeric) = 0.58457345720834607216325499854154 absolute error = 5e-32 relative error = 8.5532450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.308 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.842 y[1] (analytic) = 0.58514983346635739547468524790458 y[1] (numeric) = 0.58514983346635739547468524790463 absolute error = 5e-32 relative error = 8.5448200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.307 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.841 y[1] (analytic) = 0.58572666128188622728185928385544 y[1] (numeric) = 0.58572666128188622728185928385549 absolute error = 5e-32 relative error = 8.5364050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.307 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.84 y[1] (analytic) = 0.58630393996247654784240150093809 y[1] (numeric) = 0.58630393996247654784240150093814 absolute error = 5e-32 relative error = 8.5279999999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.306 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.839 y[1] (analytic) = 0.58688166880976289393698416769322 y[1] (numeric) = 0.58688166880976289393698416769327 absolute error = 5e-32 relative error = 8.5196050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.305 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.838 y[1] (analytic) = 0.58745984711944938563449188247983 y[1] (numeric) = 0.58745984711944938563449188247988 absolute error = 5e-32 relative error = 8.5112200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.305 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.837 y[1] (analytic) = 0.58803847418128873335924622876226 y[1] (numeric) = 0.5880384741812887333592462287623 absolute error = 4e-32 relative error = 6.8022759999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.304 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.836 y[1] (analytic) = 0.58861754927906122564300581083245 y[1] (numeric) = 0.58861754927906122564300581083249 absolute error = 4e-32 relative error = 6.7955840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.303 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.835 y[1] (analytic) = 0.58919707169055369794812119783765 y[1] (numeric) = 0.58919707169055369794812119783769 absolute error = 4e-32 relative error = 6.7889000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.303 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.834 y[1] (analytic) = 0.58977704068753848295190486188601 y[1] (numeric) = 0.58977704068753848295190486188606 absolute error = 5e-32 relative error = 8.4777800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.302 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.833 y[1] (analytic) = 0.59035745553575234268597292974923 y[1] (numeric) = 0.59035745553575234268597292974928 absolute error = 5e-32 relative error = 8.4694450000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.301 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.832 y[1] (analytic) = 0.59093831549487538292802844067925 y[1] (numeric) = 0.59093831549487538292802844067929 absolute error = 4e-32 relative error = 6.7688960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.301 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.831 y[1] (analytic) = 0.59151961981850995024728477706513 y[1] (numeric) = 0.59151961981850995024728477706517 absolute error = 4e-32 relative error = 6.7622440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.3 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.83 y[1] (analytic) = 0.59210136775415951210847297057256 y[1] (numeric) = 0.5921013677541595121084729705726 absolute error = 4e-32 relative error = 6.7556000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.3 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.829 y[1] (analytic) = 0.59268355854320752044313764305159 y[1] (numeric) = 0.59268355854320752044313764305162 absolute error = 3e-32 relative error = 5.0617230000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.299 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.828 y[1] (analytic) = 0.59326619142089625910070337639655 y[1] (numeric) = 0.59326619142089625910070337639658 absolute error = 3e-32 relative error = 5.0567520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.298 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.827 y[1] (analytic) = 0.59384926561630567559558627471823 y[1] (numeric) = 0.59384926561630567559558627471826 absolute error = 3e-32 relative error = 5.0517870000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.298 Order of pole = 1 TOP MAIN SOLVE Loop memory used=198.3MB, alloc=4.5MB, time=11.98 x[1] = -0.826 y[1] (analytic) = 0.59443278035233219757043434014395 y[1] (numeric) = 0.59443278035233219757043434014397 absolute error = 2e-32 relative error = 3.3645520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.297 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.825 y[1] (analytic) = 0.59501673484566753439940498326515 y[1] (numeric) = 0.59501673484566753439940498326518 absolute error = 3e-32 relative error = 5.0418750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.296 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.824 y[1] (analytic) = 0.59560112830677746435922848212244 y[1] (numeric) = 0.59560112830677746435922848212246 absolute error = 2e-32 relative error = 3.3579520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.296 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.823 y[1] (analytic) = 0.59618595993988060779966243950948 y[1] (numeric) = 0.59618595993988060779966243950951 absolute error = 3e-32 relative error = 5.0319870000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.295 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.822 y[1] (analytic) = 0.59677122894292718674881421556809 y[1] (numeric) = 0.59677122894292718674881421556812 absolute error = 3e-32 relative error = 5.0270520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.294 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.821 y[1] (analytic) = 0.597356934507577771392695877819 y[1] (numeric) = 0.59735693450757777139269587781903 absolute error = 3e-32 relative error = 5.0221230000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.294 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.82 y[1] (analytic) = 0.59794307581918201387227935900502 y[1] (numeric) = 0.59794307581918201387227935900505 absolute error = 3e-32 relative error = 5.0172000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.293 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.819 y[1] (analytic) = 0.59852965205675736984523818786768 y[1] (numeric) = 0.59852965205675736984523818786771 absolute error = 3e-32 relative error = 5.0122830000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.293 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.818 y[1] (analytic) = 0.59911666239296780826349630105373 y[1] (numeric) = 0.59911666239296780826349630105375 absolute error = 2e-32 relative error = 3.3382480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.292 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.817 y[1] (analytic) = 0.59970410599410250982165399591841 y[1] (numeric) = 0.59970410599410250982165399591844 absolute error = 3e-32 relative error = 5.0024670000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.291 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.816 y[1] (analytic) = 0.60029198202005455453532598255792 y[1] (numeric) = 0.60029198202005455453532598255794 absolute error = 2e-32 relative error = 3.3317120000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.291 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.815 y[1] (analytic) = 0.60088028962429959891240667578002 y[1] (numeric) = 0.60088028962429959891240667578004 absolute error = 2e-32 relative error = 3.3284500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.29 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.814 y[1] (analytic) = 0.60146902795387454318427326903228 y[1] (numeric) = 0.60146902795387454318427326903231 absolute error = 3e-32 relative error = 4.9877880000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.289 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.813 y[1] (analytic) = 0.60205819614935618906794768595922 y[1] (numeric) = 0.60205819614935618906794768595925 absolute error = 3e-32 relative error = 4.9829070000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.289 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.812 y[1] (analytic) = 0.60264779334483988853426414293841 y[1] (numeric) = 0.60264779334483988853426414293844 absolute error = 3e-32 relative error = 4.9780320000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.288 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.811 y[1] (analytic) = 0.60323781866791818406112970759253 y[1] (numeric) = 0.60323781866791818406112970759256 absolute error = 3e-32 relative error = 4.9731630000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.288 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.81 y[1] (analytic) = 0.60382827123965944085502083207536 y[1] (numeric) = 0.60382827123965944085502083207539 absolute error = 3e-32 relative error = 4.9683000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.287 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.809 y[1] (analytic) = 0.60441915017458647152792930230084 y[1] (numeric) = 0.60441915017458647152792930230087 absolute error = 3e-32 relative error = 4.9634430000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.286 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.808 y[1] (analytic) = 0.60501045458065515372105629985286 y[1] (numeric) = 0.60501045458065515372105629985289 absolute error = 3e-32 relative error = 4.9585920000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.286 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.807 y[1] (analytic) = 0.60560218355923304117065324490734 y[1] (numeric) = 0.60560218355923304117065324490737 absolute error = 3e-32 relative error = 4.9537470000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.285 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.806 y[1] (analytic) = 0.60619433620507796871552269712834 y[1] (numeric) = 0.60619433620507796871552269712837 absolute error = 3e-32 relative error = 4.9489080000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.284 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.805 y[1] (analytic) = 0.60678691160631665174982175634472 y[1] (numeric) = 0.60678691160631665174982175634475 absolute error = 3e-32 relative error = 4.9440750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.284 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.804 y[1] (analytic) = 0.60737990884442328062895404320658 y[1] (numeric) = 0.60737990884442328062895404320661 absolute error = 3e-32 relative error = 4.9392480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.283 Order of pole = 1 TOP MAIN SOLVE Loop memory used=202.1MB, alloc=4.5MB, time=12.23 x[1] = -0.803 y[1] (analytic) = 0.60797332699419811054049436743111 y[1] (numeric) = 0.60797332699419811054049436743114 absolute error = 3e-32 relative error = 4.9344270000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.283 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.802 y[1] (analytic) = 0.60856716512374604735626252126942 y[1] (numeric) = 0.60856716512374604735626252126945 absolute error = 3e-32 relative error = 4.9296120000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.282 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.801 y[1] (analytic) = 0.6091614222944552299858491801601 y[1] (numeric) = 0.60916142229445522998584918016013 absolute error = 3e-32 relative error = 4.9248030000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.281 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.8 y[1] (analytic) = 0.60975609756097560975609756097561 y[1] (numeric) = 0.60975609756097560975609756097564 absolute error = 3e-32 relative error = 4.9200000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.281 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.799 y[1] (analytic) = 0.61035118997119752734525918868458 y[1] (numeric) = 0.61035118997119752734525918868461 absolute error = 3e-32 relative error = 4.9152030000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.28 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.798 y[1] (analytic) = 0.61094669856623028780477076057976 y[1] (numeric) = 0.6109466985662302878047707605798 absolute error = 4e-32 relative error = 6.5472160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.279 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.797 y[1] (analytic) = 0.6115426223803807342058415774375 y[1] (numeric) = 0.61154262238038073420584157743754 absolute error = 4e-32 relative error = 6.5408360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.279 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.796 y[1] (analytic) = 0.61213896044113182045229723509074 y[1] (numeric) = 0.61213896044113182045229723509078 absolute error = 4e-32 relative error = 6.5344640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.278 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.795 y[1] (analytic) = 0.61273571176912118380539513794213 y[1] (numeric) = 0.61273571176912118380539513794216 absolute error = 3e-32 relative error = 4.8960750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.278 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.794 y[1] (analytic) = 0.61333287537811971767061080594393 y[1] (numeric) = 0.61333287537811971767061080594396 absolute error = 3e-32 relative error = 4.8913080000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.277 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.793 y[1] (analytic) = 0.61393045027501014520069079454265 y[1] (numeric) = 0.61393045027501014520069079454268 absolute error = 3e-32 relative error = 4.8865470000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.276 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.792 y[1] (analytic) = 0.61452843545976559427357822701172 y[1] (numeric) = 0.61452843545976559427357822701175 absolute error = 3e-32 relative error = 4.8817920000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.276 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.791 y[1] (analytic) = 0.6151268299254281744081403424165 y[1] (numeric) = 0.61512682992542817440814034241653 absolute error = 3e-32 relative error = 4.8770430000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.275 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.79 y[1] (analytic) = 0.61572563265808755618496398005049 y[1] (numeric) = 0.61572563265808755618496398005052 absolute error = 3e-32 relative error = 4.8723000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.274 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.789 y[1] (analytic) = 0.61632484263685955374383444035547 y[1] (numeric) = 0.6163248426368595537438344403555 absolute error = 3e-32 relative error = 4.8675630000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.274 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.788 y[1] (analytic) = 0.61692445883386471093387556880435 y[1] (numeric) = 0.61692445883386471093387556880438 absolute error = 3e-32 relative error = 4.8628320000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.273 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.787 y[1] (analytic) = 0.61752448021420689169670408659175 y[1] (numeric) = 0.61752448021420689169670408659178 absolute error = 3e-32 relative error = 4.8581070000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.273 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.786 y[1] (analytic) = 0.6181249057359518752673390217308 y[1] (numeric) = 0.61812490573595187526733902173083 absolute error = 3e-32 relative error = 4.8533880000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.272 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.785 y[1] (analytic) = 0.6187257343501059567820074556451 y[1] (numeric) = 0.61872573435010595678200745564513 absolute error = 3e-32 relative error = 4.8486750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.271 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.784 y[1] (analytic) = 0.61932696500059455388640057077173 y[1] (numeric) = 0.61932696500059455388640057077176 absolute error = 3e-32 relative error = 4.8439680000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.271 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.783 y[1] (analytic) = 0.61992859662424081994235903908588 y[1] (numeric) = 0.61992859662424081994235903908591 absolute error = 3e-32 relative error = 4.8392670000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.27 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.782 y[1] (analytic) = 0.62053062815074426443540400267076 y[1] (numeric) = 0.6205306281507442644354040026708 absolute error = 4e-32 relative error = 6.4460960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.269 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.781 y[1] (analytic) = 0.62113305850265938118997913614056 y[1] (numeric) = 0.6211330585026593811899791361406 absolute error = 4e-32 relative error = 6.4398440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.269 Order of pole = 1 TOP MAIN SOLVE Loop memory used=206.0MB, alloc=4.5MB, time=12.47 x[1] = -0.78 y[1] (analytic) = 0.62173588659537428500373041531957 y[1] (numeric) = 0.62173588659537428500373041531961 absolute error = 4e-32 relative error = 6.4336000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.268 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.779 y[1] (analytic) = 0.62233911133708935731662311330119 y[1] (numeric) = 0.62233911133708935731662311330123 absolute error = 4e-32 relative error = 6.4273640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.268 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.778 y[1] (analytic) = 0.622942731628795901535180067826 y[1] (numeric) = 0.62294273162879590153518006782604 absolute error = 4e-32 relative error = 6.4211360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.267 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.777 y[1] (analytic) = 0.62354674636425480863662127454202 y[1] (numeric) = 0.62354674636425480863662127454206 absolute error = 4e-32 relative error = 6.4149160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.266 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.776 y[1] (analytic) = 0.62415115442997523368219221858273 y[1] (numeric) = 0.62415115442997523368219221858277 absolute error = 4e-32 relative error = 6.4087040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.266 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.775 y[1] (analytic) = 0.6247559547051932838734869191722 y[1] (numeric) = 0.62475595470519328387348691917224 absolute error = 4e-32 relative error = 6.4025000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.265 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.774 y[1] (analytic) = 0.62536114606185071879010128349122 y[1] (numeric) = 0.62536114606185071879010128349126 absolute error = 4e-32 relative error = 6.3963040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.265 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.773 y[1] (analytic) = 0.62596672736457366345149289934643 y[1] (numeric) = 0.62596672736457366345149289934647 absolute error = 4e-32 relative error = 6.3901160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.264 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.772 y[1] (analytic) = 0.6265726974706513348504746914756 y[1] (numeric) = 0.62657269747065133485047469147565 absolute error = 5e-32 relative error = 7.9799200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.263 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.771 y[1] (analytic) = 0.62717905523001478261033177144843 y[1] (numeric) = 0.62717905523001478261033177144847 absolute error = 4e-32 relative error = 6.3777640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.263 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.77 y[1] (analytic) = 0.62778579948521564442212317157386 y[1] (numeric) = 0.6277857994852156444221231715739 absolute error = 4e-32 relative error = 6.3716000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.262 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.769 y[1] (analytic) = 0.62839292907140491692331281211491 y[1] (numeric) = 0.62839292907140491692331281211495 absolute error = 4e-32 relative error = 6.3654440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.261 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.768 y[1] (analytic) = 0.62900044281631174268346684916066 y[1] (numeric) = 0.6290004428163117426834668491607 absolute error = 4e-32 relative error = 6.3592960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.261 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.767 y[1] (analytic) = 0.6296083395402222139673573260282 y[1] (numeric) = 0.62960833954022221396735732602824 absolute error = 4e-32 relative error = 6.3531560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.26 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.766 y[1] (analytic) = 0.63021661805595819395042463995725 y[1] (numeric) = 0.63021661805595819395042463995729 absolute error = 4e-32 relative error = 6.3470240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.26 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.765 y[1] (analytic) = 0.63082527716885615606617357157501 y[1] (numeric) = 0.63082527716885615606617357157506 absolute error = 5e-32 relative error = 7.9261250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.259 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.764 y[1] (analytic) = 0.63143431567674604216970933815581 y[1] (numeric) = 0.63143431567674604216970933815585 absolute error = 4e-32 relative error = 6.3347840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.258 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.763 y[1] (analytic) = 0.6320437323699301402062611516216 y[1] (numeric) = 0.63204373236993014020626115162165 absolute error = 5e-32 relative error = 7.9108450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.258 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.762 y[1] (analytic) = 0.63265352603116198207819091458924 y[1] (numeric) = 0.63265352603116198207819091458929 absolute error = 5e-32 relative error = 7.9032200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.257 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.761 y[1] (analytic) = 0.63326369543562526240864379613722 y[1] (numeric) = 0.63326369543562526240864379613726 absolute error = 4e-32 relative error = 6.3164840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.257 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.76 y[1] (analytic) = 0.63387423935091277890466531440162 y[1] (numeric) = 0.63387423935091277890466531440166 absolute error = 4e-32 relative error = 6.3104000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.256 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.759 y[1] (analytic) = 0.63448515653700539502728603415687 y[1] (numeric) = 0.63448515653700539502728603415691 absolute error = 4e-32 relative error = 6.3043240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.255 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.758 y[1] (analytic) = 0.63509644574625102568075988019541 y[1] (numeric) = 0.63509644574625102568075988019544 absolute error = 3e-32 relative error = 4.7236920000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.255 Order of pole = 1 memory used=209.8MB, alloc=4.5MB, time=12.72 TOP MAIN SOLVE Loop x[1] = -0.757 y[1] (analytic) = 0.63570810572334364663783518504509 y[1] (numeric) = 0.63570810572334364663783518504513 absolute error = 4e-32 relative error = 6.2921960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.254 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.756 y[1] (analytic) = 0.63632013520530232842263874324228 y[1] (numeric) = 0.63632013520530232842263874324232 absolute error = 4e-32 relative error = 6.2861440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.254 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.755 y[1] (analytic) = 0.63693253292145029537746214232257 y[1] (numeric) = 0.63693253292145029537746214232261 absolute error = 4e-32 relative error = 6.2801000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.253 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.754 y[1] (analytic) = 0.63754529759339401064445628861931 y[1] (numeric) = 0.63754529759339401064445628861934 absolute error = 3e-32 relative error = 4.7055480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.252 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.753 y[1] (analytic) = 0.6381584279350022877979641469832 y[1] (numeric) = 0.63815842793500228779796414698324 absolute error = 4e-32 relative error = 6.2680360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.252 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.752 y[1] (analytic) = 0.6387719226523854298679530681493 y[1] (numeric) = 0.63877192265238542986795306814934 absolute error = 4e-32 relative error = 6.2620160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.251 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.751 y[1] (analytic) = 0.63938578044387439649974648353805 y[1] (numeric) = 0.6393857804438743964997464835381 absolute error = 5e-32 relative error = 7.8200050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.251 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.75 y[1] (analytic) = 0.64 y[1] (numeric) = 0.64000000000000000000000000000005 absolute error = 5e-32 relative error = 7.8125000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.25 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.749 y[1] (analytic) = 0.64061458000347213102361881895015 y[1] (numeric) = 0.6406145800034721310236188189502 absolute error = 5e-32 relative error = 7.8050050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.249 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.748 y[1] (analytic) = 0.64122951912915901466107172536909 y[1] (numeric) = 0.64122951912915901466107172536914 absolute error = 5e-32 relative error = 7.7975200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.249 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.747 y[1] (analytic) = 0.64184481604406649769032142946543 y[1] (numeric) = 0.64184481604406649769032142946548 absolute error = 5e-32 relative error = 7.7900450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.248 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.746 y[1] (analytic) = 0.64246046940731736776236158189187 y[1] (numeric) = 0.64246046940731736776236158189192 absolute error = 5e-32 relative error = 7.7825800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.248 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.745 y[1] (analytic) = 0.64307647787013070529412710406585 y[1] (numeric) = 0.6430764778701307052941271040659 absolute error = 5e-32 relative error = 7.7751250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.247 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.744 y[1] (analytic) = 0.64369284007580126884732635741946 y[1] (numeric) = 0.64369284007580126884732635741951 absolute error = 5e-32 relative error = 7.7676800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.246 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.743 y[1] (analytic) = 0.64430955465967891477653089560961 y[1] (numeric) = 0.64430955465967891477653089560966 absolute error = 5e-32 relative error = 7.7602450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.246 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.742 y[1] (analytic) = 0.64492662024914805193465087542339 y[1] (numeric) = 0.64492662024914805193465087542344 absolute error = 5e-32 relative error = 7.7528200000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.245 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.741 y[1] (analytic) = 0.64554403546360713222872141611704 y[1] (numeric) = 0.64554403546360713222872141611709 absolute error = 5e-32 relative error = 7.7454050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.245 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.74 y[1] (analytic) = 0.64616179891444817782372706125614 y[1] (numeric) = 0.64616179891444817782372706125619 absolute error = 5e-32 relative error = 7.7380000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.244 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.739 y[1] (analytic) = 0.64677990920503634579699777701745 y[1] (numeric) = 0.6467799092050363457969977770175 absolute error = 5e-32 relative error = 7.7306050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.243 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.738 y[1] (analytic) = 0.64739836493068953105052037880573 y[1] (numeric) = 0.64739836493068953105052037880578 absolute error = 5e-32 relative error = 7.7232200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.243 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.737 y[1] (analytic) = 0.64801716467865800829332367355747 y[1] (numeric) = 0.64801716467865800829332367355751 absolute error = 4e-32 relative error = 6.1726760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.242 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.736 y[1] (analytic) = 0.64863630702810411391091369504753 y[1] (numeric) = 0.64863630702810411391091369504758 absolute error = 5e-32 relative error = 7.7084800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.242 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.735 y[1] (analytic) = 0.64925579055008196854355694784853 y[1] (numeric) = 0.64925579055008196854355694784858 absolute error = 5e-32 relative error = 7.7011250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 memory used=213.6MB, alloc=4.5MB, time=12.96 Complex estimate of poles used Radius of convergence = 1.241 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.734 y[1] (analytic) = 0.64987561380751724120003431343241 y[1] (numeric) = 0.64987561380751724120003431343246 absolute error = 5e-32 relative error = 7.6937800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.24 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.733 y[1] (analytic) = 0.65049577535518695573831595750701 y[1] (numeric) = 0.65049577535518695573831595750706 absolute error = 5e-32 relative error = 7.6864450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.24 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.732 y[1] (analytic) = 0.65111627373969934054943795643251 y[1] (numeric) = 0.65111627373969934054943795643255 absolute error = 4e-32 relative error = 6.1432960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.239 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.731 y[1] (analytic) = 0.65173710749947372228569417496925 y[1] (numeric) = 0.6517371074994737222856941749693 absolute error = 5e-32 relative error = 7.6718050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.239 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.73 y[1] (analytic) = 0.65235827516472046447909191728097 y[1] (numeric) = 0.65235827516472046447909191728102 absolute error = 5e-32 relative error = 7.6645000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.238 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.729 y[1] (analytic) = 0.65297977525742095190085677476312 y[1] (numeric) = 0.65297977525742095190085677476316 absolute error = 4e-32 relative error = 6.1257640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.238 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.728 y[1] (analytic) = 0.65360160629130762151761064167991 y[1] (numeric) = 0.65360160629130762151761064167996 absolute error = 5e-32 relative error = 7.6499200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.237 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.727 y[1] (analytic) = 0.65422376677184404090468679364278 y[1] (numeric) = 0.65422376677184404090468679364282 absolute error = 4e-32 relative error = 6.1141160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.236 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.726 y[1] (analytic) = 0.65484625519620503498188695258127 y[1] (numeric) = 0.65484625519620503498188695258132 absolute error = 5e-32 relative error = 7.6353800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.236 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.725 y[1] (analytic) = 0.65546907005325686194182712003277 y[1] (numeric) = 0.65546907005325686194182712003282 absolute error = 5e-32 relative error = 7.6281250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.235 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.724 y[1] (analytic) = 0.65609220982353743924586137034043 y[1] (numeric) = 0.65609220982353743924586137034048 absolute error = 5e-32 relative error = 7.6208800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.235 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.723 y[1] (analytic) = 0.65671567297923662056741547576752 y[1] (numeric) = 0.65671567297923662056741547576757 absolute error = 5e-32 relative error = 7.6136450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.234 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.722 y[1] (analytic) = 0.65733945798417652456740490270061 y[1] (numeric) = 0.65733945798417652456740490270066 absolute error = 5e-32 relative error = 7.6064200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.233 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.721 y[1] (analytic) = 0.65796356329379191639125408513127 y[1] (numeric) = 0.65796356329379191639125408513132 absolute error = 5e-32 relative error = 7.5992050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.233 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.72 y[1] (analytic) = 0.65858798735511064278187565858799 y[1] (numeric) = 0.65858798735511064278187565858803 absolute error = 4e-32 relative error = 6.0736000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.232 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.719 y[1] (analytic) = 0.65921272860673412170780923174689 y[1] (numeric) = 0.65921272860673412170780923174694 absolute error = 5e-32 relative error = 7.5848050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.232 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.718 y[1] (analytic) = 0.65983778547881788741055898817835 y[1] (numeric) = 0.65983778547881788741055898817839 absolute error = 4e-32 relative error = 6.0620960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.231 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.717 y[1] (analytic) = 0.66046315639305219178000764816335 y[1] (numeric) = 0.66046315639305219178000764816339 absolute error = 4e-32 relative error = 6.0563560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.23 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.716 y[1] (analytic) = 0.66108883976264266297162077828667 y[1] (numeric) = 0.66108883976264266297162077828671 absolute error = 4e-32 relative error = 6.0506240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.23 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.715 y[1] (analytic) = 0.66171483399229102218398980959156 y[1] (numeric) = 0.6617148339922910221839898095916 absolute error = 4e-32 relative error = 6.0449000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.229 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.714 y[1] (analytic) = 0.66234113747817585952009410542881 y[1] (numeric) = 0.66234113747817585952009410542886 absolute error = 5e-32 relative error = 7.5489800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.229 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.713 y[1] (analytic) = 0.66296774860793346986049169666043 y[1] (numeric) = 0.66296774860793346986049169666048 absolute error = 5e-32 relative error = 7.5418450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.228 Order of pole = 1 TOP MAIN SOLVE Loop memory used=217.4MB, alloc=4.5MB, time=13.21 x[1] = -0.712 y[1] (analytic) = 0.66359466576063874968147456043489 y[1] (numeric) = 0.66359466576063874968147456043494 absolute error = 5e-32 relative error = 7.5347200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.228 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.711 y[1] (analytic) = 0.66422188730678615575604724211751 y[1] (numeric) = 0.66422188730678615575604724211756 absolute error = 5e-32 relative error = 7.5276050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.227 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.71 y[1] (analytic) = 0.6648494116082707266804068878399 y[1] (numeric) = 0.66484941160827072668040688783995 absolute error = 5e-32 relative error = 7.5205000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.226 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.709 y[1] (analytic) = 0.66547723701836916817341804414909 y[1] (numeric) = 0.66547723701836916817341804414914 absolute error = 5e-32 relative error = 7.5134050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.226 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.708 y[1] (analytic) = 0.66610536188172100310138656492129 y[1] (numeric) = 0.66610536188172100310138656492134 absolute error = 5e-32 relative error = 7.5063200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.225 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.707 y[1] (analytic) = 0.66673378453430978718524331449366 y[1] (numeric) = 0.66673378453430978718524331449371 absolute error = 5e-32 relative error = 7.4992450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.225 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.706 y[1] (analytic) = 0.66736250330344439135204973719265 y[1] (numeric) = 0.6673625033034443913520497371927 absolute error = 5e-32 relative error = 7.4921800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.224 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.705 y[1] (analytic) = 0.6679915165077403516975334413253 y[1] (numeric) = 0.66799151650774035169753344132535 absolute error = 5e-32 relative error = 7.4851249999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.224 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.704 y[1] (analytic) = 0.66862082245710128803115238135992 y[1] (numeric) = 0.66862082245710128803115238135998 absolute error = 6e-32 relative error = 8.9736960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.223 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.703 y[1] (analytic) = 0.66925041945270039197997067344662 y[1] (numeric) = 0.66925041945270039197997067344668 absolute error = 6e-32 relative error = 8.9652540000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.222 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.702 y[1] (analytic) = 0.66988030578696198563240720148124 y[1] (numeric) = 0.6698803057869619856324072014813 absolute error = 6e-32 relative error = 8.9568240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.222 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.701 y[1] (analytic) = 0.67051047974354315170768961533484 y[1] (numeric) = 0.6705104797435431517076896153349 absolute error = 6e-32 relative error = 8.9484060000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.221 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.7 y[1] (analytic) = 0.67114093959731543624161073825503 y[1] (numeric) = 0.67114093959731543624161073825509 absolute error = 6e-32 relative error = 8.9400000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.221 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.699 y[1] (analytic) = 0.67177168361434662478394143225754 y[1] (numeric) = 0.67177168361434662478394143225759 absolute error = 5e-32 relative error = 7.4430050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.22 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.698 y[1] (analytic) = 0.67240271005188259310760326088418 y[1] (numeric) = 0.67240271005188259310760326088424 absolute error = 6e-32 relative error = 8.9232240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.22 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.697 y[1] (analytic) = 0.67303401715832923343444547717775 y[1] (numeric) = 0.67303401715832923343444547717781 absolute error = 6e-32 relative error = 8.9148540000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.219 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.696 y[1] (analytic) = 0.6736656031732344571872035871346 y[1] (numeric) = 0.67366560317323445718720358713466 absolute error = 6e-32 relative error = 8.9064960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.218 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.695 y[1] (analytic) = 0.67429746632727027528194062810809 y[1] (numeric) = 0.67429746632727027528194062810815 absolute error = 6e-32 relative error = 8.8981500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.218 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.694 y[1] (analytic) = 0.67492960484221495697998698735722 y[1] (numeric) = 0.67492960484221495697998698735728 absolute error = 6e-32 relative error = 8.8898160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.217 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.693 y[1] (analytic) = 0.67556201693093526832309969471352 y[1] (numeric) = 0.67556201693093526832309969471359 absolute error = 7e-32 relative error = 1.0361743000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.217 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.692 y[1] (analytic) = 0.67619470079736879118025727855976 y[1] (numeric) = 0.67619470079736879118025727855982 absolute error = 6e-32 relative error = 8.8731840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.216 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.691 y[1] (analytic) = 0.67682765463650632393919109619684 y[1] (numeric) = 0.6768276546365063239391910961969 absolute error = 6e-32 relative error = 8.8648860000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.216 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.69 y[1] (analytic) = 0.67746087663437436488042815527403 y[1] (numeric) = 0.6774608766343743648804281552741 absolute error = 7e-32 relative error = 1.0332700000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.215 Order of pole = 1 TOP MAIN SOLVE Loop memory used=221.2MB, alloc=4.5MB, time=13.46 x[1] = -0.689 y[1] (analytic) = 0.67809436496801767927628344615693 y[1] (numeric) = 0.678094364968017679276283446157 absolute error = 7e-32 relative error = 1.0323047000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.214 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.688 y[1] (analytic) = 0.67872811780548195126189131662395 y[1] (numeric) = 0.67872811780548195126189131662402 absolute error = 7e-32 relative error = 1.0313408000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.214 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.687 y[1] (analytic) = 0.67936213330579652153000504766065 y[1] (numeric) = 0.67936213330579652153000504766072 absolute error = 7e-32 relative error = 1.0303783000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.213 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.686 y[1] (analytic) = 0.6799964096189572119059211367364 y[1] (numeric) = 0.67999640961895721190592113673647 absolute error = 7e-32 relative error = 1.0294172000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.213 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.685 y[1] (analytic) = 0.68063094488590923786349946400313 y[1] (numeric) = 0.6806309448859092378634994640032 absolute error = 7e-32 relative error = 1.0284575000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.212 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.684 y[1] (analytic) = 0.68126573723853021004785210538363 y[1] (numeric) = 0.6812657372385302100478521053837 absolute error = 7e-32 relative error = 1.0274992000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.212 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.683 y[1] (analytic) = 0.68190078479961322587486165937828 y[1] (numeric) = 0.68190078479961322587486165937835 absolute error = 7e-32 relative error = 1.0265423000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.211 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.682 y[1] (analytic) = 0.68253608568285005228226416330631 y[1] (numeric) = 0.68253608568285005228226416330638 absolute error = 7e-32 relative error = 1.0255868000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.21 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.681 y[1] (analytic) = 0.68317163799281440071159157813332 y[1] (numeric) = 0.68317163799281440071159157813338 absolute error = 6e-32 relative error = 8.7825659999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.21 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.68 y[1] (analytic) = 0.68380743982494529540481400437637 y[1] (numeric) = 0.68380743982494529540481400437643 absolute error = 6e-32 relative error = 8.7744000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.209 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.679 y[1] (analytic) = 0.6844434892655305361040518370121 y[1] (numeric) = 0.68444348926553053610405183701217 absolute error = 7e-32 relative error = 1.0227287000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.209 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.678 y[1] (analytic) = 0.68507978439169025624724255386782 y[1] (numeric) = 0.68507978439169025624724255386789 absolute error = 7e-32 relative error = 1.0217788000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.208 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.677 y[1] (analytic) = 0.68571632327136057775714533551757 y[1] (numeric) = 0.68571632327136057775714533551763 absolute error = 6e-32 relative error = 8.7499740000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.208 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.676 y[1] (analytic) = 0.68635310396327736352554880794193 y[1] (numeric) = 0.68635310396327736352554880794199 absolute error = 6e-32 relative error = 8.7418560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.207 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.675 y[1] (analytic) = 0.68699012451696006869901245169601 y[1] (numeric) = 0.68699012451696006869901245169607 absolute error = 6e-32 relative error = 8.7337500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.206 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.674 y[1] (analytic) = 0.68762738297269569187692019946695 y[1] (numeric) = 0.68762738297269569187692019946701 absolute error = 6e-32 relative error = 8.7256560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.206 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.673 y[1] (analytic) = 0.68826487736152282733705501094685 y[1] (numeric) = 0.68826487736152282733705501094691 absolute error = 6e-32 relative error = 8.7175740000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.205 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.672 y[1] (analytic) = 0.6889026057052158194083153300119 y[1] (numeric) = 0.68890260570521581940831533001196 absolute error = 6e-32 relative error = 8.7095040000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.205 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.671 y[1] (analytic) = 0.68954056601626902011458785126058 y[1] (numeric) = 0.68954056601626902011458785126064 absolute error = 6e-32 relative error = 8.7014460000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.204 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.67 y[1] (analytic) = 0.69017875629788115121816550486576 y[1] (numeric) = 0.69017875629788115121816550486582 absolute error = 6e-32 relative error = 8.6934000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.204 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.669 y[1] (analytic) = 0.69081717454393977179545456115494 y[1] (numeric) = 0.690817174543939771795454561155 absolute error = 6e-32 relative error = 8.6853659999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.203 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.668 y[1] (analytic) = 0.69145581873900585248204980694554 y[1] (numeric) = 0.6914558187390058524820498069456 absolute error = 6e-32 relative error = 8.6773439999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.203 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.667 y[1] (analytic) = 0.69209468685829845752857139891023 y[1] (numeric) = 0.69209468685829845752857139891029 absolute error = 6e-32 relative error = 8.6693340000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.202 Order of pole = 1 TOP MAIN SOLVE Loop memory used=225.0MB, alloc=4.5MB, time=13.71 x[1] = -0.666 y[1] (analytic) = 0.6927337768676795358129507965053 y[1] (numeric) = 0.69273377686767953581295079650536 absolute error = 6e-32 relative error = 8.6613360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.201 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.665 y[1] (analytic) = 0.69337308672363882195912565653764 y[1] (numeric) = 0.6933730867236388219591256565377 absolute error = 6e-32 relative error = 8.6533500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.201 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.664 y[1] (analytic) = 0.69401261437327884871635426845518 y[1] (numeric) = 0.69401261437327884871635426845524 absolute error = 6e-32 relative error = 8.6453760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.2 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.663 y[1] (analytic) = 0.6946523577543000717575885560192 y[1] (numeric) = 0.69465235775430007175758855601925 absolute error = 5e-32 relative error = 7.1978450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.2 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.662 y[1] (analytic) = 0.69529231479498610805955039617756 y[1] (numeric) = 0.69529231479498610805955039617761 absolute error = 5e-32 relative error = 7.1912200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.199 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.661 y[1] (analytic) = 0.69593248341418908903133853566062 y[1] (numeric) = 0.69593248341418908903133853566067 absolute error = 5e-32 relative error = 7.1846050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.199 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.66 y[1] (analytic) = 0.69657286152131512956255224296461 y[1] (numeric) = 0.69657286152131512956255224296466 absolute error = 5e-32 relative error = 7.1780000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.198 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.659 y[1] (analytic) = 0.69721344701630991416605253782209 y[1] (numeric) = 0.69721344701630991416605253782213 absolute error = 4e-32 relative error = 5.7371240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.198 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.658 y[1] (analytic) = 0.69785423778964440139459190879883 y[1] (numeric) = 0.69785423778964440139459190879887 absolute error = 4e-32 relative error = 5.7318560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.197 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.657 y[1] (analytic) = 0.69849523172230064771462837608939 y[1] (numeric) = 0.69849523172230064771462837608944 absolute error = 5e-32 relative error = 7.1582450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.197 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.656 y[1] (analytic) = 0.69913642668575775202469909168195 y[1] (numeric) = 0.699136426685757752024699091682 absolute error = 5e-32 relative error = 7.1516800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.196 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.655 y[1] (analytic) = 0.69977782054197792200976190059656 y[1] (numeric) = 0.69977782054197792200976190059661 absolute error = 5e-32 relative error = 7.1451250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.195 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.654 y[1] (analytic) = 0.70041941114339266352691991964789 y[1] (numeric) = 0.70041941114339266352691991964793 absolute error = 4e-32 relative error = 5.7108640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.195 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.653 y[1] (analytic) = 0.70106119633288909422192372594396 y[1] (numeric) = 0.70106119633288909422192372594401 absolute error = 5e-32 relative error = 7.1320450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.194 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.652 y[1] (analytic) = 0.70170317394379638257979768494089 y[1] (numeric) = 0.70170317394379638257979768494094 absolute error = 5e-32 relative error = 7.1255200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.194 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.651 y[1] (analytic) = 0.70234534179987231361686078321338 y[1] (numeric) = 0.70234534179987231361686078321344 absolute error = 6e-32 relative error = 8.5428060000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.193 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.65 y[1] (analytic) = 0.70298769771528998242530755711775 y[1] (numeric) = 0.70298769771528998242530755711781 absolute error = 6e-32 relative error = 8.5350000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.193 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.649 y[1] (analytic) = 0.70363023949462461678538081524007 y[1] (numeric) = 0.70363023949462461678538081524013 absolute error = 6e-32 relative error = 8.5272060000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.192 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.648 y[1] (analytic) = 0.7042729649328405300640043270531 y[1] (numeric) = 0.70427296493284053006400432705316 absolute error = 6e-32 relative error = 8.5194240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.192 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.647 y[1] (analytic) = 0.70491587181527820562254997677302 y[1] (numeric) = 0.70491587181527820562254997677309 absolute error = 7e-32 relative error = 9.9302630000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.191 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.646 y[1] (analytic) = 0.70555895791764151396018954135845 y[1] (numeric) = 0.70555895791764151396018954135852 absolute error = 7e-32 relative error = 9.9212120000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.191 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.645 y[1] (analytic) = 0.7062022210059850638230257234159 y[1] (numeric) = 0.70620222100598506382302572341597 absolute error = 7e-32 relative error = 9.9121750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.19 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.644 y[1] (analytic) = 0.70684565883670168851290982911299 y[1] (numeric) = 0.70684565883670168851290982911306 absolute error = 7e-32 relative error = 9.9031520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.189 Order of pole = 1 memory used=228.8MB, alloc=4.5MB, time=13.96 TOP MAIN SOLVE Loop x[1] = -0.643 y[1] (analytic) = 0.70748926915651006863353400087304 y[1] (numeric) = 0.70748926915651006863353400087311 absolute error = 7e-32 relative error = 9.8941430000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.189 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.642 y[1] (analytic) = 0.70813304970244249251503366464518 y[1] (numeric) = 0.70813304970244249251503366464525 absolute error = 7e-32 relative error = 9.8851480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.188 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.641 y[1] (analytic) = 0.70877699820183275556195029913933 y[1] (numeric) = 0.7087769982018327555619502991394 absolute error = 7e-32 relative error = 9.8761670000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.188 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.64 y[1] (analytic) = 0.70942111237230419977298524404086 y[1] (numeric) = 0.70942111237230419977298524404093 absolute error = 7e-32 relative error = 9.8672000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.187 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.639 y[1] (analytic) = 0.71006538992175789468452149758471 y[1] (numeric) = 0.71006538992175789468452149758478 absolute error = 7e-32 relative error = 9.8582470000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.187 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.638 y[1] (analytic) = 0.71070982854836096099340176995176 y[1] (numeric) = 0.71070982854836096099340176995182 absolute error = 6e-32 relative error = 8.4422640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.186 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.637 y[1] (analytic) = 0.71135442594053503811792691402357 y[1] (numeric) = 0.71135442594053503811792691402363 absolute error = 6e-32 relative error = 8.4346140000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.186 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.636 y[1] (analytic) = 0.71199917977694489695947870268053 y[1] (numeric) = 0.71199917977694489695947870268059 absolute error = 6e-32 relative error = 8.4269760000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.185 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.635 y[1] (analytic) = 0.71264408772648719913057421297369 y[1] (numeric) = 0.71264408772648719913057421297374 absolute error = 5e-32 relative error = 7.0161250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.185 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.634 y[1] (analytic) = 0.71328914744827940391852526042187 y[1] (numeric) = 0.71328914744827940391852526042192 absolute error = 5e-32 relative error = 7.0097800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.184 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.633 y[1] (analytic) = 0.71393435659164882425720484704313 y[1] (numeric) = 0.71393435659164882425720484704319 absolute error = 6e-32 relative error = 8.4041340000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.184 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.632 y[1] (analytic) = 0.71457971279612183298271288758804 y[1] (numeric) = 0.71457971279612183298271288758809 absolute error = 5e-32 relative error = 6.9971200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.183 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.631 y[1] (analytic) = 0.71522521369141322065198500029682 y[1] (numeric) = 0.71522521369141322065198500029687 absolute error = 5e-32 relative error = 6.9908050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.182 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.63 y[1] (analytic) = 0.71587085689741570620660032930059 y[1] (numeric) = 0.71587085689741570620660032930065 absolute error = 6e-32 relative error = 8.3814000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.182 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.629 y[1] (analytic) = 0.71651664002418960176721664095566 y[1] (numeric) = 0.71651664002418960176721664095572 absolute error = 6e-32 relative error = 8.3738460000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.181 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.628 y[1] (analytic) = 0.71716256067195263284719273887251 y[1] (numeric) = 0.71716256067195263284719273887256 absolute error = 5e-32 relative error = 6.9719200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.181 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.627 y[1] (analytic) = 0.71780861643106991527704900264082 y[1] (numeric) = 0.71780861643106991527704900264087 absolute error = 5e-32 relative error = 6.9656450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.18 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.626 y[1] (analytic) = 0.71845480488204409013446600128172 y[1] (numeric) = 0.71845480488204409013446600128178 absolute error = 6e-32 relative error = 8.3512560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.18 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.625 y[1] (analytic) = 0.71910112359550561797752808988764 y[1] (numeric) = 0.7191011235955056179775280898877 absolute error = 6e-32 relative error = 8.3437500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.179 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.624 y[1] (analytic) = 0.71974757013220323368188308996269 y[1] (numeric) = 0.71974757013220323368188308996275 absolute error = 6e-32 relative error = 8.3362560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.179 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.623 y[1] (analytic) = 0.72039414204299456318541000152003 y[1] (numeric) = 0.72039414204299456318541000152009 absolute error = 6e-32 relative error = 8.3287740000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.178 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.622 y[1] (analytic) = 0.72104083686883690344686361656779 y[1] (numeric) = 0.72104083686883690344686361656785 absolute error = 6e-32 relative error = 8.3213040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.178 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.621 y[1] (analytic) = 0.72168765214077816692779731546627 y[1] (numeric) = 0.72168765214077816692779731546633 memory used=232.7MB, alloc=4.5MB, time=14.21 absolute error = 6e-32 relative error = 8.3138460000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.177 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.62 y[1] (analytic) = 0.72233458537994799190985264374458 y[1] (numeric) = 0.72233458537994799190985264374464 absolute error = 6e-32 relative error = 8.3064000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.177 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.619 y[1] (analytic) = 0.72298163409754901996224589906743 y[1] (numeric) = 0.72298163409754901996224589906748 absolute error = 5e-32 relative error = 6.9158050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.176 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.618 y[1] (analytic) = 0.72362879579484834187697731568451 y[1] (numeric) = 0.72362879579484834187697731568456 absolute error = 5e-32 relative error = 6.9096200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.176 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.617 y[1] (analytic) = 0.72427606796316911339193692424579 y[1] (numeric) = 0.72427606796316911339193692424584 absolute error = 5e-32 relative error = 6.9034450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.175 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.616 y[1] (analytic) = 0.72492344808388234202468219356036 y[1] (numeric) = 0.72492344808388234202468219356041 absolute error = 5e-32 relative error = 6.8972800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.175 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.615 y[1] (analytic) = 0.72557093362839884634221553084583 y[1] (numeric) = 0.72557093362839884634221553084588 absolute error = 5e-32 relative error = 6.8911250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.174 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.614 y[1] (analytic) = 0.7262185220581613889945940293218 y[1] (numeric) = 0.72621852205816138899459402932184 absolute error = 4e-32 relative error = 5.5079840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.173 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.613 y[1] (analytic) = 0.72686621082463698484265890567384 y[1] (numeric) = 0.72686621082463698484265890567389 absolute error = 5e-32 relative error = 6.8788450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.173 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.612 y[1] (analytic) = 0.72751399736930938551257726198652 y[1] (numeric) = 0.72751399736930938551257726198657 absolute error = 5e-32 relative error = 6.8727200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.172 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.611 y[1] (analytic) = 0.72816187912367174171224353228415 y[1] (numeric) = 0.7281618791236717417122435322842 absolute error = 5e-32 relative error = 6.8666050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.172 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.61 y[1] (analytic) = 0.72880985350921944464689162597478 y[1] (numeric) = 0.72880985350921944464689162597483 absolute error = 5e-32 relative error = 6.8605000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.171 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.609 y[1] (analytic) = 0.72945791793744314787352075052466 y[1] (numeric) = 0.72945791793744314787352075052471 absolute error = 5e-32 relative error = 6.8544050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.171 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.608 y[1] (analytic) = 0.73010606980982197093593757301061 y[1] (numeric) = 0.73010606980982197093593757301065 absolute error = 4e-32 relative error = 5.4786560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.17 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.607 y[1] (analytic) = 0.73075430651781688612436415240904 y[1] (numeric) = 0.73075430651781688612436415240908 absolute error = 4e-32 relative error = 5.4737960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.17 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.606 y[1] (analytic) = 0.73140262544286428970565432741677 y[1] (numeric) = 0.73140262544286428970565432741681 absolute error = 4e-32 relative error = 5.4689440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.169 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.605 y[1] (analytic) = 0.73205102395636975897220036236526 y[1] (numeric) = 0.73205102395636975897220036236529 absolute error = 3e-32 relative error = 4.0980750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.169 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.604 y[1] (analytic) = 0.732699499419701996459596018804 y[1] (numeric) = 0.73269949941970199645959601880403 absolute error = 3e-32 relative error = 4.0944480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.168 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.603 y[1] (analytic) = 0.73334804918418696268505121336101 y[1] (numeric) = 0.73334804918418696268505121336104 absolute error = 3e-32 relative error = 4.0908270000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.168 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.602 y[1] (analytic) = 0.73399667059110219876042642270575 y[1] (numeric) = 0.73399667059110219876042642270577 absolute error = 2e-32 relative error = 2.7248080000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.167 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.601 y[1] (analytic) = 0.73464536097167134023557138144918 y[1] (numeric) = 0.7346453609716713402355713814492 absolute error = 2e-32 relative error = 2.7224020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.167 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.6 y[1] (analytic) = 0.73529411764705882352941176470588 y[1] (numeric) = 0.73529411764705882352941176470591 absolute error = 3e-32 relative error = 4.0800000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.166 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.599 y[1] (analytic) = 0.73594293792836478630792882843036 y[1] (numeric) = 0.73594293792836478630792882843039 absolute error = 3e-32 relative error = 4.0764030000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.166 Order of pole = 1 TOP MAIN SOLVE Loop memory used=236.5MB, alloc=4.5MB, time=14.45 x[1] = -0.598 y[1] (analytic) = 0.7365918191166201631698197707137 y[1] (numeric) = 0.73659181911662016316981977071373 absolute error = 3e-32 relative error = 4.0728120000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.165 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.597 y[1] (analytic) = 0.73724075850278197800221024779399 y[1] (numeric) = 0.73724075850278197800221024779402 absolute error = 3e-32 relative error = 4.0692270000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.165 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.596 y[1] (analytic) = 0.73788975336772883437031440006611 y[1] (numeric) = 0.73788975336772883437031440006614 absolute error = 3e-32 relative error = 4.0656480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.164 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.595 y[1] (analytic) = 0.73853880098225660530640128505751 y[1] (numeric) = 0.73853880098225660530640128505754 absolute error = 3e-32 relative error = 4.0620750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.164 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.594 y[1] (analytic) = 0.73918789860707432386482914410912 y[1] (numeric) = 0.73918789860707432386482914410914 absolute error = 2e-32 relative error = 2.7056720000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.163 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.593 y[1] (analytic) = 0.73983704349280027581124981411594 y[1] (numeric) = 0.73983704349280027581124981411597 absolute error = 3e-32 relative error = 4.0549470000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.163 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.592 y[1] (analytic) = 0.74048623287995829581536420074878 y[1] (numeric) = 0.74048623287995829581536420074881 absolute error = 3e-32 relative error = 4.0513920000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.162 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.591 y[1] (analytic) = 0.74113546399897426851782541961237 y[1] (numeric) = 0.7411354639989742685178254196124 absolute error = 3e-32 relative error = 4.0478430000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.162 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.59 y[1] (analytic) = 0.74178473407017283584303835027075 y[1] (numeric) = 0.74178473407017283584303835027078 absolute error = 3e-32 relative error = 4.0443000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.161 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.589 y[1] (analytic) = 0.74243404030377431193069229746956 y[1] (numeric) = 0.74243404030377431193069229746959 absolute error = 3e-32 relative error = 4.0407630000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.161 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.588 y[1] (analytic) = 0.74308337989989180705988657575289 y[1] (numeric) = 0.74308337989989180705988657575292 absolute error = 3e-32 relative error = 4.0372320000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.16 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.587 y[1] (analytic) = 0.74373275004852856194066648866663 y[1] (numeric) = 0.74373275004852856194066648866666 absolute error = 3e-32 relative error = 4.0337070000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.16 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.586 y[1] (analytic) = 0.74438214792957549374867872168742 y[1] (numeric) = 0.74438214792957549374867872168746 absolute error = 4e-32 relative error = 5.3735840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.159 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.585 y[1] (analytic) = 0.74503157071280895527947996796364 y[1] (numeric) = 0.74503157071280895527947996796368 absolute error = 4e-32 relative error = 5.3689000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.159 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.584 y[1] (analytic) = 0.74568101555788870859979001622602 y[1] (numeric) = 0.74568101555788870859979001622606 absolute error = 4e-32 relative error = 5.3642240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.158 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.583 y[1] (analytic) = 0.74633047961435611457366990847749 y[1] (numeric) = 0.74633047961435611457366990847753 absolute error = 4e-32 relative error = 5.3595560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.158 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.582 y[1] (analytic) = 0.74697996002163253964222647834804 y[1] (numeric) = 0.74697996002163253964222647834808 absolute error = 4e-32 relative error = 5.3548960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.157 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.581 y[1] (analytic) = 0.74762945390901798123599596579147 y[1] (numeric) = 0.74762945390901798123599596579151 absolute error = 4e-32 relative error = 5.3502440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.157 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.58 y[1] (analytic) = 0.74827895839568991319964082609997 y[1] (numeric) = 0.74827895839568991319964082610001 absolute error = 4e-32 relative error = 5.3456000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.156 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.579 y[1] (analytic) = 0.7489284705907023526090046665733 y[1] (numeric) = 0.74892847059070235260900466657334 absolute error = 4e-32 relative error = 5.3409640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.156 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.578 y[1] (analytic) = 0.74957798759298514936090980777822 y[1] (numeric) = 0.74957798759298514936090980777826 absolute error = 4e-32 relative error = 5.3363360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.155 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.577 y[1] (analytic) = 0.75022750649134349991634963302622 y[1] (numeric) = 0.75022750649134349991634963302625 absolute error = 3e-32 relative error = 3.9987870000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.155 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.576 y[1] (analytic) = 0.75087702436445768657792301408045 y[1] (numeric) = 0.75087702436445768657792301408048 absolute error = 3e-32 relative error = 3.9953280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.154 Order of pole = 1 TOP MAIN SOLVE Loop memory used=240.3MB, alloc=4.5MB, time=14.70 x[1] = -0.575 y[1] (analytic) = 0.75152653828088304368248003757633 y[1] (numeric) = 0.75152653828088304368248003757636 absolute error = 3e-32 relative error = 3.9918750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.154 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.574 y[1] (analytic) = 0.75217604529905015208999635946794 y[1] (numeric) = 0.75217604529905015208999635946797 absolute error = 3e-32 relative error = 3.9884280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.153 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.573 y[1] (analytic) = 0.7528255424672652633496671381864 y[1] (numeric) = 0.75282554246726526334966713818643 absolute error = 3e-32 relative error = 3.9849870000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.153 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.572 y[1] (analytic) = 0.75347502682371095492410999529832 y[1] (numeric) = 0.75347502682371095492410999529835 absolute error = 3e-32 relative error = 3.9815520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.152 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.571 y[1] (analytic) = 0.75412449539644701785238917952009 y[1] (numeric) = 0.75412449539644701785238917952012 absolute error = 3e-32 relative error = 3.9781230000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.152 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.57 y[1] (analytic) = 0.75477394520341157823231942033361 y[1] (numeric) = 0.75477394520341157823231942033364 absolute error = 3e-32 relative error = 3.9747000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.151 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.569 y[1] (analytic) = 0.75542337325242245390217720570405 y[1] (numeric) = 0.75542337325242245390217720570408 absolute error = 3e-32 relative error = 3.9712830000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.151 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.568 y[1] (analytic) = 0.75607277654117874770153875931482 y[1] (numeric) = 0.75607277654117874770153875931485 absolute error = 3e-32 relative error = 3.9678720000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.15 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.567 y[1] (analytic) = 0.75672215205726267869047718142187 y[1] (numeric) = 0.7567221520572626786904771814219 absolute error = 3e-32 relative error = 3.9644670000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.15 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.566 y[1] (analytic) = 0.75737149677814165270578540938959 y[1] (numeric) = 0.75737149677814165270578540938962 absolute error = 3e-32 relative error = 3.9610680000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.149 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.565 y[1] (analytic) = 0.75802080767117057363224620515833 y[1] (numeric) = 0.75802080767117057363224620515836 absolute error = 3e-32 relative error = 3.9576750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.149 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.564 y[1] (analytic) = 0.75867008169359439676624464378922 y[1] (numeric) = 0.75867008169359439676624464378925 absolute error = 3e-32 relative error = 3.9542880000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.148 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.563 y[1] (analytic) = 0.75931931579255092564821191690921 y[1] (numeric) = 0.75931931579255092564821191690923 absolute error = 2e-32 relative error = 2.6339380000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.148 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.562 y[1] (analytic) = 0.75996850690507385373950103507711 y[1] (numeric) = 0.75996850690507385373950103507713 absolute error = 2e-32 relative error = 2.6316880000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.147 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.561 y[1] (analytic) = 0.76061765195809605231832457228568 y[1] (numeric) = 0.7606176519580960523183245722857 absolute error = 2e-32 relative error = 2.6294420000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.147 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.56 y[1] (analytic) = 0.76126674786845310596833130328867 y[1] (numeric) = 0.76126674786845310596833130328869 absolute error = 2e-32 relative error = 2.6272000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.146 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.559 y[1] (analytic) = 0.7619157915428870970322618003613 y[1] (numeric) = 0.76191579154288709703226180036132 absolute error = 2e-32 relative error = 2.6249620000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.146 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.558 y[1] (analytic) = 0.76256477987805064040190214158693 y[1] (numeric) = 0.76256477987805064040190214158695 absolute error = 2e-32 relative error = 2.6227280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.145 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.557 y[1] (analytic) = 0.76321370976051117001424919996123 y[1] (numeric) = 0.76321370976051117001424919996125 absolute error = 2e-32 relative error = 2.6204980000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.145 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.556 y[1] (analytic) = 0.76386257806675547842240989477029 y[1] (numeric) = 0.76386257806675547842240989477031 absolute error = 2e-32 relative error = 2.6182720000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.144 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.555 y[1] (analytic) = 0.76451138166319451080827965826341 y[1] (numeric) = 0.76451138166319451080827965826343 absolute error = 2e-32 relative error = 2.6160500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.144 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.554 y[1] (analytic) = 0.76516011740616841480248156729277 y[1] (numeric) = 0.76516011740616841480248156729279 absolute error = 2e-32 relative error = 2.6138320000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.143 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.553 y[1] (analytic) = 0.76580878214195184747539647835173 y[1] (numeric) = 0.76580878214195184747539647835175 absolute error = 2e-32 relative error = 2.6116180000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.143 Order of pole = 1 memory used=244.1MB, alloc=4.5MB, time=14.94 TOP MAIN SOLVE Loop x[1] = -0.552 y[1] (analytic) = 0.76645737270675954086137545374276 y[1] (numeric) = 0.76645737270675954086137545374278 absolute error = 2e-32 relative error = 2.6094080000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.142 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.551 y[1] (analytic) = 0.76710588592675212737639814636534 y[1] (numeric) = 0.76710588592675212737639814636535 absolute error = 1e-32 relative error = 1.3036010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.142 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.55 y[1] (analytic) = 0.76775431861804222648752399232246 y[1] (numeric) = 0.76775431861804222648752399232247 absolute error = 1e-32 relative error = 1.3025000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.141 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.549 y[1] (analytic) = 0.76840266758670079399047641733793 y[1] (numeric) = 0.76840266758670079399047641733794 absolute error = 1e-32 relative error = 1.3014010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.141 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.548 y[1] (analytic) = 0.76905092962876373524960316972031 y[1] (numeric) = 0.76905092962876373524960316972032 absolute error = 1e-32 relative error = 1.3003040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.14 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.547 y[1] (analytic) = 0.76969910153023878375226772597788 y[1] (numeric) = 0.76969910153023878375226772597789 absolute error = 1e-32 relative error = 1.2992090000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.14 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.546 y[1] (analytic) = 0.77034718006711264632744685374805 y[1] (numeric) = 0.77034718006711264632744685374805 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.139 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.545 y[1] (analytic) = 0.77099516200535841637593724099381 y[1] (numeric) = 0.77099516200535841637593724099382 absolute error = 1e-32 relative error = 1.2970250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.139 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.544 y[1] (analytic) = 0.77164304410094325645710899303669 y[1] (numeric) = 0.7716430441009432564571089930367 absolute error = 1e-32 relative error = 1.2959360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.138 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.543 y[1] (analytic) = 0.7722908230998363515745851446771 y[1] (numeric) = 0.77229082309983635157458514467711 absolute error = 1e-32 relative error = 1.2948490000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.138 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.542 y[1] (analytic) = 0.77293849573801713450057352036384 y[1] (numeric) = 0.77293849573801713450057352036385 absolute error = 1e-32 relative error = 1.2937640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.137 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.541 y[1] (analytic) = 0.77358605874148378447582969038765 y[1] (numeric) = 0.77358605874148378447582969038766 absolute error = 1e-32 relative error = 1.2926810000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.137 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.54 y[1] (analytic) = 0.77423350882626200061938680706101 y[1] (numeric) = 0.77423350882626200061938680706102 absolute error = 1e-32 relative error = 1.2916000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.136 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.539 y[1] (analytic) = 0.77488084269841405137924915596104 y[1] (numeric) = 0.77488084269841405137924915596105 absolute error = 1e-32 relative error = 1.2905210000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.136 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.538 y[1] (analytic) = 0.77552805705404810135221072027944 y[1] (numeric) = 0.77552805705404810135221072027945 absolute error = 1e-32 relative error = 1.2894440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.136 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.537 y[1] (analytic) = 0.7761751485793278167978273305241 y[1] (numeric) = 0.77617514857932781679782733052411 absolute error = 1e-32 relative error = 1.2883690000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.135 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.536 y[1] (analytic) = 0.77682211395048225116834045938153 y[1] (numeric) = 0.77682211395048225116834045938154 absolute error = 1e-32 relative error = 1.2872960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.135 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.535 y[1] (analytic) = 0.77746894983381601197302182744077 y[1] (numeric) = 0.77746894983381601197302182744078 absolute error = 1e-32 relative error = 1.2862250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.134 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.534 y[1] (analytic) = 0.77811565288571971029198011758884 y[1] (numeric) = 0.77811565288571971029198011758885 absolute error = 1e-32 relative error = 1.2851560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.134 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.533 y[1] (analytic) = 0.77876221975268069425094366511979 y[1] (numeric) = 0.7787622197526806942509436651198 absolute error = 1e-32 relative error = 1.2840890000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.133 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.532 y[1] (analytic) = 0.77940864707129406776490541096659 y[1] (numeric) = 0.77940864707129406776490541096661 absolute error = 2e-32 relative error = 2.5660480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.133 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.531 y[1] (analytic) = 0.78005493146827399585478809417759 y[1] (numeric) = 0.78005493146827399585478809417761 absolute error = 2e-32 relative error = 2.5639220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.132 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.53 y[1] (analytic) = 0.78070106956046529783745803731751 y[1] (numeric) = 0.78070106956046529783745803731753 absolute error = 2e-32 relative error = 2.5618000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.132 Order of pole = 1 memory used=247.9MB, alloc=4.5MB, time=15.18 TOP MAIN SOLVE Loop x[1] = -0.529 y[1] (analytic) = 0.78134705795485532968548436876143 y[1] (numeric) = 0.78134705795485532968548436876145 absolute error = 2e-32 relative error = 2.5596820000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.131 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.528 y[1] (analytic) = 0.78199289324858615684900655622842 y[1] (numeric) = 0.78199289324858615684900655622843 absolute error = 1e-32 relative error = 1.2787840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.131 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.527 y[1] (analytic) = 0.78263857202896701882793612730086 y[1] (numeric) = 0.78263857202896701882793612730087 absolute error = 1e-32 relative error = 1.2777290000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.13 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.526 y[1] (analytic) = 0.78328409087348708677847785969189 y[1] (numeric) = 0.7832840908734870867784778596919 absolute error = 1e-32 relative error = 1.2766760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.13 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.525 y[1] (analytic) = 0.78392944634982851543361097501225 y[1] (numeric) = 0.78392944634982851543361097501226 absolute error = 1e-32 relative error = 1.2756250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.129 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.524 y[1] (analytic) = 0.784574635015879790612721406962 y[1] (numeric) = 0.78457463501587979061272140696201 absolute error = 1e-32 relative error = 1.2745760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.129 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.523 y[1] (analytic) = 0.78521965341974937359102148439494 y[1] (numeric) = 0.78521965341974937359102148439495 absolute error = 1e-32 relative error = 1.2735290000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.129 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.522 y[1] (analytic) = 0.78586449809977964359473282178794 y[1] (numeric) = 0.78586449809977964359473282178795 absolute error = 1e-32 relative error = 1.2724840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.128 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.521 y[1] (analytic) = 0.78650916558456113968324129865247 y[1] (numeric) = 0.78650916558456113968324129865249 absolute error = 2e-32 relative error = 2.5428820000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.128 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.52 y[1] (analytic) = 0.78715365239294710327455919395466 y[1] (numeric) = 0.78715365239294710327455919395468 absolute error = 2e-32 relative error = 2.5408000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.127 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.519 y[1] (analytic) = 0.78779795503406832256544828460934 y[1] (numeric) = 0.78779795503406832256544828460936 absolute error = 2e-32 relative error = 2.5387220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.127 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.518 y[1] (analytic) = 0.78844207000734828009246848597046 y[1] (numeric) = 0.78844207000734828009246848597048 absolute error = 2e-32 relative error = 2.5366480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.126 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.517 y[1] (analytic) = 0.7890859938025186046750188788824 y[1] (numeric) = 0.78908599380251860467501887888242 absolute error = 2e-32 relative error = 2.5345780000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.126 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.516 y[1] (analytic) = 0.78972972289963482897613120885508 y[1] (numeric) = 0.7897297228996348289761312088551 absolute error = 2e-32 relative error = 2.5325120000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.125 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.515 y[1] (analytic) = 0.7903732537690924539113596395898 y[1] (numeric) = 0.79037325376909245391135963958981 absolute error = 1e-32 relative error = 1.2652250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.125 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.514 y[1] (analytic) = 0.79101658287164332113058418156678 y[1] (numeric) = 0.7910165828716433211305841815668 absolute error = 2e-32 relative error = 2.5283920000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.124 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.513 y[1] (analytic) = 0.7916597066584122947919082878063 y[1] (numeric) = 0.79165970665841229479190828780632 absolute error = 2e-32 relative error = 2.5263380000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.124 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.512 y[1] (analytic) = 0.79230262157091425384108310937579 y[1] (numeric) = 0.79230262157091425384108310937581 absolute error = 2e-32 relative error = 2.5242880000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.123 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.511 y[1] (analytic) = 0.79294532404107139600403133402742 y[1] (numeric) = 0.79294532404107139600403133402744 absolute error = 2e-32 relative error = 2.5222420000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.123 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.51 y[1] (analytic) = 0.79358781049123085469407189905563 y[1] (numeric) = 0.79358781049123085469407189905565 absolute error = 2e-32 relative error = 2.5202000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.123 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.509 y[1] (analytic) = 0.79423007733418263002936268595904 y[1] (numeric) = 0.79423007733418263002936268595906 absolute error = 2e-32 relative error = 2.5181620000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.122 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.508 y[1] (analytic) = 0.7948721209731778351498810871307 y[1] (numeric) = 0.79487212097317783514988108713072 absolute error = 2e-32 relative error = 2.5161280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.122 Order of pole = 1 TOP MAIN SOLVE Loop memory used=251.7MB, alloc=4.5MB, time=15.43 x[1] = -0.507 y[1] (analytic) = 0.79551393780194725901695160650062 y[1] (numeric) = 0.79551393780194725901695160650064 absolute error = 2e-32 relative error = 2.5140980000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.121 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.506 y[1] (analytic) = 0.79615552420472024687190494539965 y[1] (numeric) = 0.79615552420472024687190494539967 absolute error = 2e-32 relative error = 2.5120720000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.121 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.505 y[1] (analytic) = 0.79679687655624389952391386625764 y[1] (numeric) = 0.79679687655624389952391386625766 absolute error = 2e-32 relative error = 2.5100500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.12 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.504 y[1] (analytic) = 0.79743799122180259263039706032459 y[1] (numeric) = 0.7974379912218025926303970603246 absolute error = 1e-32 relative error = 1.2540160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.12 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.503 y[1] (analytic) = 0.79807886455723781712661281762541 y[1] (numeric) = 0.79807886455723781712661281762542 absolute error = 1e-32 relative error = 1.2530090000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.119 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.502 y[1] (analytic) = 0.7987194929089683419541790601308 y[1] (numeric) = 0.79871949290896834195417906013081 absolute error = 1e-32 relative error = 1.2520040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.119 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.501 y[1] (analytic) = 0.79935987261401070023125481114723 y[1] (numeric) = 0.79935987261401070023125481114724 absolute error = 1e-32 relative error = 1.2510010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.118 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.5 y[1] (analytic) = 0.8 y[1] (numeric) = 0.80000000000000000000000000000001 absolute error = 1e-32 relative error = 1.2500000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.118 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.499 y[1] (analytic) = 0.80063987138521106067969521241376 y[1] (numeric) = 0.80063987138521106067969521241377 absolute error = 1e-32 relative error = 1.2490010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.118 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.498 y[1] (analytic) = 0.80127948307857987634655017131355 y[1] (numeric) = 0.80127948307857987634655017131356 absolute error = 1e-32 relative error = 1.2480040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.117 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.497 y[1] (analytic) = 0.80191883137972540695375895442615 y[1] (numeric) = 0.80191883137972540695375895442616 absolute error = 1e-32 relative error = 1.2470090000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.117 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.496 y[1] (analytic) = 0.80255791257897169859777081514202 y[1] (numeric) = 0.80255791257897169859777081514203 absolute error = 1e-32 relative error = 1.2460160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.116 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.495 y[1] (analytic) = 0.80319672295737033392903756952672 y[1] (numeric) = 0.80319672295737033392903756952673 absolute error = 1e-32 relative error = 1.2450250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.116 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.494 y[1] (analytic) = 0.80383525878672321379767145002235 y[1] (numeric) = 0.80383525878672321379767145002236 absolute error = 1e-32 relative error = 1.2440360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.115 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.493 y[1] (analytic) = 0.80447351632960567121650071718814 y[1] (numeric) = 0.80447351632960567121650071718815 absolute error = 1e-32 relative error = 1.2430490000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.115 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.492 y[1] (analytic) = 0.80511149183938991871594378389519 y[1] (numeric) = 0.8051114918393899187159437838952 absolute error = 1e-32 relative error = 1.2420640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.114 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.491 y[1] (analytic) = 0.80574918156026883015693576809249 y[1] (numeric) = 0.8057491815602688301569357680925 absolute error = 1e-32 relative error = 1.2410810000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.114 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.49 y[1] (analytic) = 0.80638658172728005805983388436416 y[1] (numeric) = 0.80638658172728005805983388436417 absolute error = 1e-32 relative error = 1.2401000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.114 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.489 y[1] (analytic) = 0.80702368856633048749879955226326 y[1] (numeric) = 0.80702368856633048749879955226326 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.113 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.488 y[1] (analytic) = 0.8076604982942210276026051897033 y[1] (numeric) = 0.8076604982942210276026051897033 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.113 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.487 y[1] (analytic) = 0.80829700711867174169414202910031 y[1] (numeric) = 0.80829700711867174169414202910031 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.112 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.486 y[1] (analytic) = 0.80893321123834731709211160689729 y[1] (numeric) = 0.80893321123834731709211160689729 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.112 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.485 y[1] (analytic) = 0.80956910684288287558946750591997 y[1] (numeric) = 0.80956910684288287558946750591998 absolute error = 1e-32 relative error = 1.2352250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.111 Order of pole = 1 TOP MAIN SOLVE Loop memory used=255.5MB, alloc=4.5MB, time=15.67 x[1] = -0.484 y[1] (analytic) = 0.81020469011291012561413515510559 y[1] (numeric) = 0.81020469011291012561413515510559 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.111 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.483 y[1] (analytic) = 0.8108399572200838570683757010725 y[1] (numeric) = 0.8108399572200838570683757010725 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.111 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.482 y[1] (analytic) = 0.81147490432710877983387485758615 y[1] (numeric) = 0.81147490432710877983387485758616 absolute error = 1e-32 relative error = 1.2323240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.11 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.481 y[1] (analytic) = 0.81210952758776670692022891743364 y[1] (numeric) = 0.81210952758776670692022891743364 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.11 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.48 y[1] (analytic) = 0.81274382314694408322496749024707 y[1] (numeric) = 0.81274382314694408322496749024708 absolute error = 1e-32 relative error = 1.2304000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.109 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.479 y[1] (analytic) = 0.81337778714065986086359573171872 y[1] (numeric) = 0.81337778714065986086359573171873 absolute error = 1e-32 relative error = 1.2294410000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.109 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.478 y[1] (analytic) = 0.81401141569609372201835758544678 y[1] (numeric) = 0.81401141569609372201835758544678 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.108 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.477 y[1] (analytic) = 0.81464470493161465024451560818522 y[1] (numeric) = 0.81464470493161465024451560818523 absolute error = 1e-32 relative error = 1.2275290000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.108 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.476 y[1] (analytic) = 0.81527765095680985116291204132479 y[1] (numeric) = 0.8152776509568098511629120413248 absolute error = 1e-32 relative error = 1.2265760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.108 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.475 y[1] (analytic) = 0.81591024987251402345741968383478 y[1] (numeric) = 0.81591024987251402345741968383478 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.107 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.474 y[1] (analytic) = 0.81654249777083898108560958163629 y[1] (numeric) = 0.81654249777083898108560958163629 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.107 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.473 y[1] (analytic) = 0.81717439073520362760055535171594 y[1] (numeric) = 0.81717439073520362760055535171595 absolute error = 1e-32 relative error = 1.2237290000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.106 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.472 y[1] (analytic) = 0.81780592484036428347116089186643 y[1] (numeric) = 0.81780592484036428347116089186644 absolute error = 1e-32 relative error = 1.2227840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.106 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.471 y[1] (analytic) = 0.81843709615244536727773908389062 y[1] (numeric) = 0.81843709615244536727773908389063 absolute error = 1e-32 relative error = 1.2218410000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.105 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.47 y[1] (analytic) = 0.81906790072897043164878368416742 y[1] (numeric) = 0.81906790072897043164878368416743 absolute error = 1e-32 relative error = 1.2209000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.105 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.469 y[1] (analytic) = 0.81969833461889355479396472510187 y[1] (numeric) = 0.81969833461889355479396472510188 absolute error = 1e-32 relative error = 1.2199610000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.105 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.468 y[1] (analytic) = 0.82032839386263108847733924844794 y[1] (numeric) = 0.82032839386263108847733924844795 absolute error = 1e-32 relative error = 1.2190240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.104 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.467 y[1] (analytic) = 0.82095807449209376326360389101289 y[1] (numeric) = 0.8209580744920937632636038910129 absolute error = 1e-32 relative error = 1.2180890000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.104 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.466 y[1] (analytic) = 0.82158737253071915185892358908801 y[1] (numeric) = 0.82158737253071915185892358908802 absolute error = 1e-32 relative error = 1.2171560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.103 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.465 y[1] (analytic) = 0.82221628399350449135645131451828 y[1] (numeric) = 0.8222162839935044913564513145183 absolute error = 2e-32 relative error = 2.4324500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.103 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.464 y[1] (analytic) = 0.82284480488703986518510716730739 y[1] (numeric) = 0.8228448048870398651851071673074 absolute error = 1e-32 relative error = 1.2152960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.102 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.463 y[1] (analytic) = 0.82347293120954174554851120211402 y[1] (numeric) = 0.82347293120954174554851120211403 absolute error = 1e-32 relative error = 1.2143690000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.102 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.462 y[1] (analytic) = 0.82410065895088689712916294447869 y[1] (numeric) = 0.8241006589508868971291629444787 absolute error = 1e-32 relative error = 1.2134440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.102 Order of pole = 1 TOP MAIN SOLVE Loop memory used=259.4MB, alloc=4.5MB, time=15.93 x[1] = -0.461 y[1] (analytic) = 0.82472798409264664282103155326794 y[1] (numeric) = 0.82472798409264664282103155326795 absolute error = 1e-32 relative error = 1.2125210000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.101 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.46 y[1] (analytic) = 0.82535490260812149224166391548366 y[1] (numeric) = 0.82535490260812149224166391548366 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.101 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.459 y[1] (analytic) = 0.82598141046237613376273353591904 y[1] (numeric) = 0.82598141046237613376273353591904 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.458 y[1] (analytic) = 0.82660750361227479078564083573325 y[1] (numeric) = 0.82660750361227479078564083573325 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.457 y[1] (analytic) = 0.82723317800651694297633534047677 y[1] (numeric) = 0.82723317800651694297633534047677 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.099 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.456 y[1] (analytic) = 0.8278584295856734131609621701812 y[1] (numeric) = 0.8278584295856734131609621701812 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.099 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.455 y[1] (analytic) = 0.82848325428222282057123920382759 y[1] (numeric) = 0.82848325428222282057123920382759 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.099 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.454 y[1] (analytic) = 0.8291076480205884011156472511765 y[1] (numeric) = 0.8291076480205884011156472511765 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.098 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.453 y[1] (analytic) = 0.82973160671717519533956351139097 y[1] (numeric) = 0.82973160671717519533956351139097 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.098 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.452 y[1] (analytic) = 0.83035512628040760472438852648501 y[1] (numeric) = 0.83035512628040760472438852648501 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.097 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.451 y[1] (analytic) = 0.83097820261076731696250875643281 y[1] (numeric) = 0.83097820261076731696250875643281 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.097 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.45 y[1] (analytic) = 0.83160083160083160083160083160083 y[1] (numeric) = 0.83160083160083160083160083160083 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.097 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.449 y[1] (analytic) = 0.83222300913531197127831950872211 y[1] (numeric) = 0.83222300913531197127831950872211 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.096 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.448 y[1] (analytic) = 0.83284473109109322530781941261127 y[1] (numeric) = 0.83284473109109322530781941261126 absolute error = 1e-32 relative error = 1.2007040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.096 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.447 y[1] (analytic) = 0.83346599333727284926184084300084 y[1] (numeric) = 0.83346599333727284926184084300084 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.095 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.446 y[1] (analytic) = 0.83408679173520079805424233224012 y[1] (numeric) = 0.83408679173520079805424233224012 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.095 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.445 y[1] (analytic) = 0.83470712213851964691888733540619 y[1] (numeric) = 0.83470712213851964691888733540619 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.095 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.444 y[1] (analytic) = 0.8353269803932051162106895123027 y[1] (numeric) = 0.8353269803932051162106895123027 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.094 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.443 y[1] (analytic) = 0.83594636233760696978639062603187 y[1] (numeric) = 0.83594636233760696978639062603188 absolute error = 1e-32 relative error = 1.1962490000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.094 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.442 y[1] (analytic) = 0.83656526380249028747728725308776 y[1] (numeric) = 0.83656526380249028747728725308777 absolute error = 1e-32 relative error = 1.1953640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.093 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.441 y[1] (analytic) = 0.83718368061107711215163740570172 y[1] (numeric) = 0.83718368061107711215163740570173 absolute error = 1e-32 relative error = 1.1944810000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.093 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.44 y[1] (analytic) = 0.83780160857908847184986595174263 y[1] (numeric) = 0.83780160857908847184986595174263 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.093 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.439 y[1] (analytic) = 0.83841904351478677746094853700069 y[1] (numeric) = 0.83841904351478677746094853700069 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.092 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.438 y[1] (analytic) = 0.83903598121901859639348773832817 y[1] (numeric) = 0.83903598121901859639348773832817 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 memory used=263.2MB, alloc=4.6MB, time=16.16 Complex estimate of poles used Radius of convergence = 1.092 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.437 y[1] (analytic) = 0.83965241748525780268000258612945 y[1] (numeric) = 0.83965241748525780268000258612945 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.091 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.436 y[1] (analytic) = 0.8402683480996491039378335865342 y[1] (numeric) = 0.8402683480996491039378335865342 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.091 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.435 y[1] (analytic) = 0.84088376884105194559482015598394 y[1] (numeric) = 0.84088376884105194559482015598394 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.091 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.434 y[1] (analytic) = 0.84149867548108479277253617602806 y[1] (numeric) = 0.84149867548108479277253617602806 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.09 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.433 y[1] (analytic) = 0.84211306378416979020437241944978 y[1] (numeric) = 0.84211306378416979020437241944978 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.09 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.432 y[1] (analytic) = 0.84272692950757780055013213958255 y[1] (numeric) = 0.84272692950757780055013213958255 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.089 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.431 y[1] (analytic) = 0.84334026840147382145305841565037 y[1] (numeric) = 0.84334026840147382145305841565037 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.089 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.43 y[1] (analytic) = 0.84395307620896278166933918474133 y[1] (numeric) = 0.84395307620896278166933918474133 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.089 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.429 y[1] (analytic) = 0.84456534866613571658413855601284 y[1] (numeric) = 0.84456534866613571658413855601284 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.088 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.428 y[1] (analytic) = 0.84517708150211632341208129927382 y[1] (numeric) = 0.84517708150211632341208129927382 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.088 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.427 y[1] (analytic) = 0.84578827043910789636387164655523 y[1] (numeric) = 0.84578827043910789636387164655523 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.087 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.426 y[1] (analytic) = 0.84639891119244064204435807413777 y[1] (numeric) = 0.84639891119244064204435807413777 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.087 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.425 y[1] (analytic) = 0.84700899947061937533086289041821 y[1] (numeric) = 0.84700899947061937533086289041821 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.087 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.424 y[1] (analytic) = 0.84761853097537159596397960290767 y[1] (numeric) = 0.84761853097537159596397960290767 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.086 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.423 y[1] (analytic) = 0.84822750140169594606630255087456 y[1] (numeric) = 0.84822750140169594606630255087456 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.086 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.422 y[1] (analytic) = 0.84883590643791104878769255842538 y[1] (numeric) = 0.84883590643791104878769255842537 absolute error = 1e-32 relative error = 1.1780840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.085 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.421 y[1] (analytic) = 0.84944374176570472825869979044223 y[1] (numeric) = 0.84944374176570472825869979044222 absolute error = 1e-32 relative error = 1.1772410000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.085 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.42 y[1] (analytic) = 0.85005100306018361101666099965998 y[1] (numeric) = 0.85005100306018361101666099965997 absolute error = 1e-32 relative error = 1.1764000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.085 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.419 y[1] (analytic) = 0.85065768598992310905176337085017 y[1] (numeric) = 0.85065768598992310905176337085016 absolute error = 1e-32 relative error = 1.1755610000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.084 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.418 y[1] (analytic) = 0.85126378621701778460302164593556 y[1] (numeric) = 0.85126378621701778460302164593554 absolute error = 2e-32 relative error = 2.3494480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.084 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.417 y[1] (analytic) = 0.85186929939713209681664961508286 y[1] (numeric) = 0.85186929939713209681664961508284 absolute error = 2e-32 relative error = 2.3477780000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.083 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.416 y[1] (analytic) = 0.85247422117955153036172186153091 y[1] (numeric) = 0.85247422117955153036172186153089 absolute error = 2e-32 relative error = 2.3461120000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.083 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.415 y[1] (analytic) = 0.85307854720723410608031734521956 y[1] (numeric) = 0.85307854720723410608031734521954 absolute error = 2e-32 relative error = 2.3444500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.083 Order of pole = 1 memory used=267.0MB, alloc=4.6MB, time=16.39 TOP MAIN SOLVE Loop x[1] = -0.414 y[1] (analytic) = 0.85368227311686227373151351037565 y[1] (numeric) = 0.85368227311686227373151351037563 absolute error = 2e-32 relative error = 2.3427920000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.082 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.413 y[1] (analytic) = 0.85428539453889518687065862841063 y[1] (numeric) = 0.8542853945388951868706586284106 absolute error = 3e-32 relative error = 3.5117070000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.082 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.412 y[1] (analytic) = 0.85488790709762135988729157832825 y[1] (numeric) = 0.85488790709762135988729157832822 absolute error = 3e-32 relative error = 3.5092320000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.082 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.411 y[1] (analytic) = 0.85548980641121170720690277614997 y[1] (numeric) = 0.85548980641121170720690277614994 absolute error = 3e-32 relative error = 3.5067630000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.081 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.41 y[1] (analytic) = 0.85609108809177296464343806180978 y[1] (numeric) = 0.85609108809177296464343806180975 absolute error = 3e-32 relative error = 3.5043000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.081 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.409 y[1] (analytic) = 0.85669174774540149287103962113664 y[1] (numeric) = 0.85669174774540149287103962113661 absolute error = 3e-32 relative error = 3.5018430000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.08 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.408 y[1] (analytic) = 0.85729178097223746296499506199934 y[1] (numeric) = 0.85729178097223746296499506199931 absolute error = 3e-32 relative error = 3.4993920000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.08 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.407 y[1] (analytic) = 0.85789118336651942394322819304954 y[1] (numeric) = 0.85789118336651942394322819304951 absolute error = 3e-32 relative error = 3.4969470000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.08 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.406 y[1] (analytic) = 0.85848995051663925222091350198655 y[1] (numeric) = 0.85848995051663925222091350198652 absolute error = 3e-32 relative error = 3.4945080000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.079 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.405 y[1] (analytic) = 0.85908807800519748287193144477138 y[1] (numeric) = 0.85908807800519748287193144477135 absolute error = 3e-32 relative error = 3.4920750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.079 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.404 y[1] (analytic) = 0.85968556140905902257190410035625 y[1] (numeric) = 0.85968556140905902257190410035623 absolute error = 2e-32 relative error = 2.3264320000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.079 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.403 y[1] (analytic) = 0.86028239629940924407846119567209 y[1] (numeric) = 0.86028239629940924407846119567207 absolute error = 2e-32 relative error = 2.3248180000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.078 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.402 y[1] (analytic) = 0.86087857824181046208518565707418 y[1] (numeric) = 0.86087857824181046208518565707416 absolute error = 2e-32 relative error = 2.3232080000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.078 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.401 y[1] (analytic) = 0.86147410279625879026637640732563 y[1] (numeric) = 0.86147410279625879026637640732561 absolute error = 2e-32 relative error = 2.3216020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.077 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.4 y[1] (analytic) = 0.86206896551724137931034482758621 y[1] (numeric) = 0.86206896551724137931034482758619 absolute error = 2e-32 relative error = 2.3200000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.077 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.399 y[1] (analytic) = 0.8626631619537940357194308838588 y[1] (numeric) = 0.86266316195379403571943088385878 absolute error = 2e-32 relative error = 2.3184020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.077 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.398 y[1] (analytic) = 0.86325668764955922113528613506169 y[1] (numeric) = 0.86325668764955922113528613506167 absolute error = 2e-32 relative error = 2.3168080000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.076 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.397 y[1] (analytic) = 0.86384953814284443192822446957479 y[1] (numeric) = 0.86384953814284443192822446957477 absolute error = 2e-32 relative error = 2.3152180000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.076 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.396 y[1] (analytic) = 0.86444170896668095876958824912518 y[1] (numeric) = 0.86444170896668095876958824912517 absolute error = 1e-32 relative error = 1.1568160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.076 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.395 y[1] (analytic) = 0.86503319564888302588611837979282 y[1] (numeric) = 0.86503319564888302588611837979281 absolute error = 1e-32 relative error = 1.1560250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.075 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.394 y[1] (analytic) = 0.86562399371210730967525250251897 y[1] (numeric) = 0.86562399371210730967525250251895 absolute error = 2e-32 relative error = 2.3104720000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.075 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.393 y[1] (analytic) = 0.86621409867391283634010683884693 y[1] (numeric) = 0.86621409867391283634010683884691 absolute error = 2e-32 relative error = 2.3088980000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.074 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.392 y[1] (analytic) = 0.86680350604682125818262509708199 y[1] (numeric) = 0.86680350604682125818262509708197 absolute error = 2e-32 relative error = 2.3073280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.074 Order of pole = 1 memory used=270.8MB, alloc=4.6MB, time=16.62 TOP MAIN SOLVE Loop x[1] = -0.391 y[1] (analytic) = 0.86739221133837750817300311133586 y[1] (numeric) = 0.86739221133837750817300311133584 absolute error = 2e-32 relative error = 2.3057620000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.074 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.39 y[1] (analytic) = 0.86798021005121083239302143911119 y[1] (numeric) = 0.86798021005121083239302143911117 absolute error = 2e-32 relative error = 2.3042000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.073 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.389 y[1] (analytic) = 0.86856749768309619993034088668582 y[1] (numeric) = 0.8685674976830961999303408866858 absolute error = 2e-32 relative error = 2.3026420000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.073 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.388 y[1] (analytic) = 0.86915406972701608978013878652185 y[1] (numeric) = 0.86915406972701608978013878652184 absolute error = 1e-32 relative error = 1.1505440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.073 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.387 y[1] (analytic) = 0.86973992167122265428968775467072 y[1] (numeric) = 0.86973992167122265428968775467071 absolute error = 1e-32 relative error = 1.1497690000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.072 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.386 y[1] (analytic) = 0.87032504899930025866060456259204 y[1] (numeric) = 0.87032504899930025866060456259203 absolute error = 1e-32 relative error = 1.1489960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.072 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.385 y[1] (analytic) = 0.87090944719022839600252563739685 y[1] (numeric) = 0.87090944719022839600252563739684 absolute error = 1e-32 relative error = 1.1482250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.072 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.384 y[1] (analytic) = 0.87149311171844497741089854425791 y[1] (numeric) = 0.87149311171844497741089854425789 absolute error = 2e-32 relative error = 2.2949120000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.071 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.383 y[1] (analytic) = 0.8720760380539099965204166081649 y[1] (numeric) = 0.87207603805390999652041660816488 absolute error = 2e-32 relative error = 2.2933780000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.071 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.382 y[1] (analytic) = 0.87265822166216956796436761949309 y[1] (numeric) = 0.87265822166216956796436761949307 absolute error = 2e-32 relative error = 2.2918480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.07 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.381 y[1] (analytic) = 0.87323965800442033914881837575677 y[1] (numeric) = 0.87323965800442033914881837575675 absolute error = 2e-32 relative error = 2.2903220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.07 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.38 y[1] (analytic) = 0.87382034253757427472911569381335 y[1] (numeric) = 0.87382034253757427472911569381333 absolute error = 2e-32 relative error = 2.2888000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.07 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.379 y[1] (analytic) = 0.87440027071432381315465255268043 y[1] (numeric) = 0.87440027071432381315465255268041 absolute error = 2e-32 relative error = 2.2872820000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.069 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.378 y[1] (analytic) = 0.87497943798320739462622628368233 y[1] (numeric) = 0.87497943798320739462622628368231 absolute error = 2e-32 relative error = 2.2857680000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.069 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.377 y[1] (analytic) = 0.87555783978867535978860531516142 y[1] (numeric) = 0.8755578397886753597886053151614 absolute error = 2e-32 relative error = 2.2842580000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.069 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.376 y[1] (analytic) = 0.87613547157115621845912302343838 y[1] (numeric) = 0.87613547157115621845912302343835 absolute error = 3e-32 relative error = 3.4241280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.068 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.375 y[1] (analytic) = 0.87671232876712328767123287671233 y[1] (numeric) = 0.8767123287671232876712328767123 absolute error = 3e-32 relative error = 3.4218750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.068 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.374 y[1] (analytic) = 0.87728840680916169828998943744758 y[1] (numeric) = 0.87728840680916169828998943744755 absolute error = 3e-32 relative error = 3.4196280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.068 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.373 y[1] (analytic) = 0.87786370112603576943436608145346 y[1] (numeric) = 0.87786370112603576943436608145343 absolute error = 3e-32 relative error = 3.4173870000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.067 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.372 y[1] (analytic) = 0.87843820714275674991918368494287 y[1] (numeric) = 0.87843820714275674991918368494284 absolute error = 3e-32 relative error = 3.4151520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.067 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.371 y[1] (analytic) = 0.87901192028065092590720622762365 y[1] (numeric) = 0.87901192028065092590720622762363 absolute error = 2e-32 relative error = 2.2752820000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.067 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.37 y[1] (analytic) = 0.87958483595742809393966048025332 y[1] (numeric) = 0.8795848359574280939396604802533 absolute error = 2e-32 relative error = 2.2738000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.066 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.369 y[1] (analytic) = 0.88015694958725039849105892562762 memory used=274.6MB, alloc=4.6MB, time=16.86 y[1] (numeric) = 0.8801569495872503984910589256276 absolute error = 2e-32 relative error = 2.2723220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.066 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.368 y[1] (analytic) = 0.88072825658080153317174905585931 y[1] (numeric) = 0.88072825658080153317174905585929 absolute error = 2e-32 relative error = 2.2708480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.066 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.367 y[1] (analytic) = 0.8812987523453563046790794658272 y[1] (numeric) = 0.88129875234535630467907946582718 absolute error = 2e-32 relative error = 2.2693780000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.065 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.366 y[1] (analytic) = 0.88186843228485055857546500922434 y[1] (numeric) = 0.88186843228485055857546500922432 absolute error = 2e-32 relative error = 2.2679120000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.065 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.365 y[1] (analytic) = 0.88243729179995146594895100266937 y[1] (numeric) = 0.88243729179995146594895100266935 absolute error = 2e-32 relative error = 2.2664500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.065 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.364 y[1] (analytic) = 0.88300532628812816998912137438013 y[1] (numeric) = 0.88300532628812816998912137438011 absolute error = 2e-32 relative error = 2.2649920000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.064 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.363 y[1] (analytic) = 0.88357253114372279148836909298629 y[1] (numeric) = 0.88357253114372279148836909298627 absolute error = 2e-32 relative error = 2.2635380000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.064 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.362 y[1] (analytic) = 0.88413890175802179225565053172114 y[1] (numeric) = 0.88413890175802179225565053172112 absolute error = 2e-32 relative error = 2.2620880000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.064 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.361 y[1] (analytic) = 0.88470443351932769540687999249771 y[1] (numeric) = 0.88470443351932769540687999249769 absolute error = 2e-32 relative error = 2.2606420000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.063 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.36 y[1] (analytic) = 0.88526912181303116147308781869688 y[1] (numeric) = 0.88526912181303116147308781869687 absolute error = 1e-32 relative error = 1.1296000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.063 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.359 y[1] (analytic) = 0.88583296202168341924436676673626 y[1] (numeric) = 0.88583296202168341924436676673625 absolute error = 1e-32 relative error = 1.1288810000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.062 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.358 y[1] (analytic) = 0.88639594952506905024446800287901 y[1] (numeric) = 0.886395949525069050244468002879 absolute error = 1e-32 relative error = 1.1281640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.062 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.357 y[1] (analytic) = 0.88695807970027912570768167784086 y[1] (numeric) = 0.88695807970027912570768167784085 absolute error = 1e-32 relative error = 1.1274490000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.062 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.356 y[1] (analytic) = 0.88751934792178469490634895840729 y[1] (numeric) = 0.88751934792178469490634895840728 absolute error = 1e-32 relative error = 1.1267360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.061 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.355 y[1] (analytic) = 0.88807974956151062365400412957084 y[1] (numeric) = 0.88807974956151062365400412957082 absolute error = 2e-32 relative error = 2.2520500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.061 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.354 y[1] (analytic) = 0.88863927998890978178573840592331 y[1] (numeric) = 0.8886392799889097817857384059233 absolute error = 1e-32 relative error = 1.1253160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.061 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.353 y[1] (analytic) = 0.8891979345710375783939129066191 y[1] (numeric) = 0.88919793457103757839391290661909 absolute error = 1e-32 relative error = 1.1246090000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.06 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.352 y[1] (analytic) = 0.88975570867262684357382836968282 y[1] (numeric) = 0.88975570867262684357382836968281 absolute error = 1e-32 relative error = 1.1239040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.06 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.351 y[1] (analytic) = 0.89031259765616305541038514032662 y[1] (numeric) = 0.89031259765616305541038514032661 absolute error = 1e-32 relative error = 1.1232010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.06 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.35 y[1] (analytic) = 0.89086859688195991091314031180401 y[1] (numeric) = 0.890868596881959910913140311804 absolute error = 1e-32 relative error = 1.1225000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.059 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.349 y[1] (analytic) = 0.89142370170823523958349118961384 y[1] (numeric) = 0.89142370170823523958349118961384 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.059 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.348 y[1] (analytic) = 0.89197790749118725827398706988825 y[1] (numeric) = 0.89197790749118725827398706988825 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.059 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.347 y[1] (analytic) = 0.89253120958507116597599626564942 y[1] (numeric) = 0.89253120958507116597599626564942 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.058 Order of pole = 1 TOP MAIN SOLVE Loop memory used=278.4MB, alloc=4.6MB, time=17.09 x[1] = -0.346 y[1] (analytic) = 0.89308360334227607714813399111918 y[1] (numeric) = 0.89308360334227607714813399111918 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.058 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.345 y[1] (analytic) = 0.89363508411340229217399075087688 y[1] (numeric) = 0.89363508411340229217399075087688 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.058 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.344 y[1] (analytic) = 0.89418564724733890351379191942314 y[1] (numeric) = 0.89418564724733890351379191942314 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.058 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.343 y[1] (analytic) = 0.89473528809134173609066889515402 y[1] (numeric) = 0.89473528809134173609066889515402 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.057 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.342 y[1] (analytic) = 0.89528400199111162042823224383239 y[1] (numeric) = 0.89528400199111162042823224383238 absolute error = 1e-32 relative error = 1.1169640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.057 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.341 y[1] (analytic) = 0.89583178429087299703210929864434 y[1] (numeric) = 0.89583178429087299703210929864433 absolute error = 1e-32 relative error = 1.1162810000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.057 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.34 y[1] (analytic) = 0.89637863033345285048404446038006 y[1] (numeric) = 0.89637863033345285048404446038006 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.056 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.339 y[1] (analytic) = 0.89692453546035997169306166087104 y[1] (numeric) = 0.89692453546035997169306166087103 absolute error = 1e-32 relative error = 1.1149210000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.056 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.338 y[1] (analytic) = 0.89746949501186454672405684930769 y[1] (numeric) = 0.89746949501186454672405684930768 absolute error = 1e-32 relative error = 1.1142440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.056 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.337 y[1] (analytic) = 0.89801350432707807060002568318622 y[1] (numeric) = 0.89801350432707807060002568318621 absolute error = 1e-32 relative error = 1.1135690000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.055 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.336 y[1] (analytic) = 0.89855655874403358444993961699925 y[1] (numeric) = 0.89855655874403358444993961699924 absolute error = 1e-32 relative error = 1.1128960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.055 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.335 y[1] (analytic) = 0.89909865359976623435006406077907 y[1] (numeric) = 0.89909865359976623435006406077906 absolute error = 1e-32 relative error = 1.1122250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.055 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.334 y[1] (analytic) = 0.89963978423039415018226702028508 y[1] (numeric) = 0.89963978423039415018226702028507 absolute error = 1e-32 relative error = 1.1115560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.054 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.333 y[1] (analytic) = 0.90017994597119964280859743862798 y[1] (numeric) = 0.90017994597119964280859743862797 absolute error = 1e-32 relative error = 1.1108890000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.054 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.332 y[1] (analytic) = 0.90071913415671071783712115753217 y[1] (numeric) = 0.90071913415671071783712115753216 absolute error = 1e-32 relative error = 1.1102240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.054 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.331 y[1] (analytic) = 0.90125734412078290422969084169325 y[1] (numeric) = 0.90125734412078290422969084169323 absolute error = 2e-32 relative error = 2.2191220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.053 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.33 y[1] (analytic) = 0.9017945711966813959779962124628 y[1] (numeric) = 0.90179457119668139597799621246278 absolute error = 2e-32 relative error = 2.2178000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.053 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.329 y[1] (analytic) = 0.90233081071716350504989438217861 y[1] (numeric) = 0.90233081071716350504989438217858 absolute error = 3e-32 relative error = 3.3247230000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.053 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.328 y[1] (analytic) = 0.90286605801456142378365884664278 y[1] (numeric) = 0.90286605801456142378365884664276 absolute error = 2e-32 relative error = 2.2151680000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.052 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.327 y[1] (analytic) = 0.90340030842086529488341167319675 y[1] (numeric) = 0.90340030842086529488341167319672 absolute error = 3e-32 relative error = 3.3207870000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.052 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.326 y[1] (analytic) = 0.90393355726780658714461852196016 y[1] (numeric) = 0.90393355726780658714461852196014 absolute error = 2e-32 relative error = 2.2125520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.052 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.325 y[1] (analytic) = 0.90446579988694177501413227812323 y[1] (numeric) = 0.90446579988694177501413227812321 absolute error = 2e-32 relative error = 2.2112500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.051 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.324 y[1] (analytic) = 0.90499703160973632006487018722579 y[1] (numeric) = 0.90499703160973632006487018722576 absolute error = 3e-32 relative error = 3.3149280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.051 Order of pole = 1 TOP MAIN SOLVE Loop memory used=282.2MB, alloc=4.6MB, time=17.32 x[1] = -0.323 y[1] (analytic) = 0.90552724776764895244080341999531 y[1] (numeric) = 0.90552724776764895244080341999528 absolute error = 3e-32 relative error = 3.3129870000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.051 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.322 y[1] (analytic) = 0.90605644369221625030352890863689 y[1] (numeric) = 0.90605644369221625030352890863686 absolute error = 3e-32 relative error = 3.3110520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.051 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.321 y[1] (analytic) = 0.90658461471513751528728306563401 y[1] (numeric) = 0.90658461471513751528728306563397 absolute error = 4e-32 relative error = 4.4121640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.05 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.32 y[1] (analytic) = 0.90711175616835994194484760522496 y[1] (numeric) = 0.90711175616835994194484760522493 absolute error = 3e-32 relative error = 3.3072000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.05 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.319 y[1] (analytic) = 0.90763786338416407914239113564557 y[1] (numeric) = 0.90763786338416407914239113564554 absolute error = 3e-32 relative error = 3.3052830000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.05 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.318 y[1] (analytic) = 0.90816293169524958133688848848994 y[1] (numeric) = 0.90816293169524958133688848848991 absolute error = 3e-32 relative error = 3.3033720000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.049 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.317 y[1] (analytic) = 0.90868695643482124764536492413827 y[1] (numeric) = 0.90868695643482124764536492413824 absolute error = 3e-32 relative error = 3.3014670000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.049 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.316 y[1] (analytic) = 0.90920993293667534659082643546064 y[1] (numeric) = 0.90920993293667534659082643546061 absolute error = 3e-32 relative error = 3.2995680000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.049 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.315 y[1] (analytic) = 0.90973185653528622438536241442835 y[1] (numeric) = 0.90973185653528622438536241442832 absolute error = 3e-32 relative error = 3.2976750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.048 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.314 y[1] (analytic) = 0.91025272256589319458654500835612 y[1] (numeric) = 0.91025272256589319458654500835609 absolute error = 3e-32 relative error = 3.2957880000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.048 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.313 y[1] (analytic) = 0.91077252636458770693890264661388 y[1] (numeric) = 0.91077252636458770693890264661385 absolute error = 3e-32 relative error = 3.2939070000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.048 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.312 y[1] (analytic) = 0.91129126326840079318791554881605 y[1] (numeric) = 0.91129126326840079318791554881602 absolute error = 3e-32 relative error = 3.2920320000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.048 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.311 y[1] (analytic) = 0.91180892861539078762967062726072 y[1] (numeric) = 0.91180892861539078762967062726069 absolute error = 3e-32 relative error = 3.2901630000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.047 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.31 y[1] (analytic) = 0.91232551774473132013502417662622 y[1] (numeric) = 0.91232551774473132013502417662619 absolute error = 3e-32 relative error = 3.2883000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.047 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.309 y[1] (analytic) = 0.91284102599679957936285522067475 y[1] (numeric) = 0.91284102599679957936285522067472 absolute error = 3e-32 relative error = 3.2864430000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.047 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.308 y[1] (analytic) = 0.91335544871326484385275248798024 y[1] (numeric) = 0.91335544871326484385275248798021 absolute error = 3e-32 relative error = 3.2845920000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.046 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.307 y[1] (analytic) = 0.91386878123717727866326585630876 y[1] (numeric) = 0.91386878123717727866326585630872 absolute error = 4e-32 relative error = 4.3769960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.046 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.306 y[1] (analytic) = 0.91438101891305699519767088866862 y[1] (numeric) = 0.91438101891305699519767088866859 absolute error = 3e-32 relative error = 3.2809080000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.046 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.305 y[1] (analytic) = 0.91489215708698337183504494407722 y[1] (numeric) = 0.91489215708698337183504494407718 absolute error = 4e-32 relative error = 4.3721000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.045 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.304 y[1] (analytic) = 0.91540219110668463296033745386373 y[1] (numeric) = 0.91540219110668463296033745386369 absolute error = 4e-32 relative error = 4.3696640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.045 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.303 y[1] (analytic) = 0.91591111632162768396303749098972 y[1] (numeric) = 0.91591111632162768396303749098968 absolute error = 4e-32 relative error = 4.3672360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.045 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.302 y[1] (analytic) = 0.91641892808310819975000091641893 y[1] (numeric) = 0.91641892808310819975000091641888 absolute error = 5e-32 relative error = 5.4560200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.045 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.301 y[1] (analytic) = 0.91692562174434096429399936365362 y[1] (numeric) = 0.91692562174434096429399936365357 absolute error = 5e-32 relative error = 5.4530050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.044 Order of pole = 1 TOP MAIN SOLVE Loop memory used=286.1MB, alloc=4.6MB, time=17.55 x[1] = -0.3 y[1] (analytic) = 0.91743119266055045871559633027523 y[1] (numeric) = 0.91743119266055045871559633027518 absolute error = 5e-32 relative error = 5.4500000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.044 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.299 y[1] (analytic) = 0.91793563618906169537204390302561 y[1] (numeric) = 0.91793563618906169537204390302556 absolute error = 5e-32 relative error = 5.4470050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.044 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.298 y[1] (analytic) = 0.91843894768939129540302937902506 y[1] (numeric) = 0.91843894768939129540302937902501 absolute error = 5e-32 relative error = 5.4440200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.043 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.297 y[1] (analytic) = 0.91894112252333880715928649735483 y[1] (numeric) = 0.91894112252333880715928649735478 absolute error = 5e-32 relative error = 5.4410450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.043 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.296 y[1] (analytic) = 0.91944215605507826291632340826174 y[1] (numeric) = 0.91944215605507826291632340826169 absolute error = 5e-32 relative error = 5.4380800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.043 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.295 y[1] (analytic) = 0.91994204365124997125181113589844 y[1] (numeric) = 0.91994204365124997125181113589839 absolute error = 5e-32 relative error = 5.4351250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.043 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.294 y[1] (analytic) = 0.92044078068105254244152439720333 y[1] (numeric) = 0.92044078068105254244152439720328 absolute error = 5e-32 relative error = 5.4321800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.042 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.293 y[1] (analytic) = 0.92093836251633514420513349462034 y[1] (numeric) = 0.92093836251633514420513349462029 absolute error = 5e-32 relative error = 5.4292450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.042 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.292 y[1] (analytic) = 0.92143478453168998510961388196789 y[1] (numeric) = 0.92143478453168998510961388196784 absolute error = 5e-32 relative error = 5.4263200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.042 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.291 y[1] (analytic) = 0.92193004210454502291457119650847 y[1] (numeric) = 0.92193004210454502291457119650842 absolute error = 5e-32 relative error = 5.4234050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.041 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.29 y[1] (analytic) = 0.92242413061525689512037634904529 y[1] (numeric) = 0.92242413061525689512037634904524 absolute error = 5e-32 relative error = 5.4205000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.041 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.289 y[1] (analytic) = 0.9229170454472040689566699676333 y[1] (numeric) = 0.92291704544720406895666996763325 absolute error = 5e-32 relative error = 5.4176050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.041 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.288 y[1] (analytic) = 0.92340878198688020802553040600437 y[1] (numeric) = 0.92340878198688020802553040600432 absolute error = 5e-32 relative error = 5.4147200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.041 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.287 y[1] (analytic) = 0.92389933562398775279040696841835 y[1] (numeric) = 0.9238993356239877527904069684183 absolute error = 5e-32 relative error = 5.4118450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.04 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.286 y[1] (analytic) = 0.92438870175153171207880228804691 y[1] (numeric) = 0.92438870175153171207880228804687 absolute error = 4e-32 relative error = 4.3271840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.04 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.285 y[1] (analytic) = 0.92487687576591366274364725195958 y[1] (numeric) = 0.92487687576591366274364725195954 absolute error = 4e-32 relative error = 4.3249000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.04 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.284 y[1] (analytic) = 0.92536385306702595460535082394397 y[1] (numeric) = 0.92536385306702595460535082394393 absolute error = 4e-32 relative error = 4.3226240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.04 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.283 y[1] (analytic) = 0.92584962905834611777362791399598 y[1] (numeric) = 0.92584962905834611777362791399593 absolute error = 5e-32 relative error = 5.4004450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.039 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.282 y[1] (analytic) = 0.92633419914703146942541342295308 y[1] (numeric) = 0.92633419914703146942541342295303 absolute error = 5e-32 relative error = 5.3976200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.039 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.281 y[1] (analytic) = 0.92681755874401391709246210011298 y[1] (numeric) = 0.92681755874401391709246210011293 absolute error = 5e-32 relative error = 5.3948050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.039 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.28 y[1] (analytic) = 0.92729970326409495548961424332344 y[1] (numeric) = 0.92729970326409495548961424332339 absolute error = 5e-32 relative error = 5.3920000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.038 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.279 y[1] (analytic) = 0.92778062812604085389217890208296 y[1] (numeric) = 0.92778062812604085389217890208291 absolute error = 5e-32 relative error = 5.3892050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.038 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.278 y[1] (analytic) = 0.92826032875267803104845147611957 y[1] (numeric) = 0.92826032875267803104845147611952 absolute error = 5e-32 relative error = 5.3864200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.038 Order of pole = 1 TOP MAIN SOLVE Loop memory used=289.9MB, alloc=4.6MB, time=17.79 x[1] = -0.277 y[1] (analytic) = 0.92873880057098861459104380025057 y[1] (numeric) = 0.92873880057098861459104380025052 absolute error = 5e-32 relative error = 5.3836450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.038 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.276 y[1] (analytic) = 0.92921603901220618188846434040529 y[1] (numeric) = 0.92921603901220618188846434040523 absolute error = 6e-32 relative error = 6.4570560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.037 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.275 y[1] (analytic) = 0.92969203951191167925624636839047 y[1] (numeric) = 0.92969203951191167925624636839041 absolute error = 6e-32 relative error = 6.4537500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.037 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.274 y[1] (analytic) = 0.93016679751012951642488531043387 y[1] (numeric) = 0.93016679751012951642488531043381 absolute error = 6e-32 relative error = 6.4504560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.037 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.273 y[1] (analytic) = 0.93064030845142383313991525589351 y[1] (numeric) = 0.93064030845142383313991525589346 absolute error = 5e-32 relative error = 5.3726450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.037 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.272 y[1] (analytic) = 0.93111256778499493474763124962755 y[1] (numeric) = 0.9311125677849949347476312496275 absolute error = 5e-32 relative error = 5.3699200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.036 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.271 y[1] (analytic) = 0.93158357096477589359825085868716 y[1] (numeric) = 0.9315835709647758935982508586871 absolute error = 6e-32 relative error = 6.4406460000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.036 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.27 y[1] (analytic) = 0.9320533134495293130767079876969 y[1] (numeric) = 0.93205331344952931307670798769684 absolute error = 6e-32 relative error = 6.4374000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.036 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.269 y[1] (analytic) = 0.93252179070294425104978640588384 y[1] (numeric) = 0.93252179070294425104978640588378 absolute error = 6e-32 relative error = 6.4341660000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.036 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.268 y[1] (analytic) = 0.93298899819373329949693233217394 y[1] (numeric) = 0.93298899819373329949693233217388 absolute error = 6e-32 relative error = 6.4309440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.035 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.267 y[1] (analytic) = 0.93345493139572981707083709437883 y[1] (numeric) = 0.93345493139572981707083709437877 absolute error = 6e-32 relative error = 6.4277340000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.035 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.266 y[1] (analytic) = 0.93391958578798531131275472656702 y[1] (numeric) = 0.93391958578798531131275472656697 absolute error = 5e-32 relative error = 5.3537800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.035 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.265 y[1] (analytic) = 0.93438295685486696722651778831554 y[1] (numeric) = 0.93438295685486696722651778831549 absolute error = 5e-32 relative error = 5.3511250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.035 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.264 y[1] (analytic) = 0.9348450400861553188943400741893 y[1] (numeric) = 0.93484504008615531889434007418925 absolute error = 5e-32 relative error = 5.3484800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.034 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.263 y[1] (analytic) = 0.93530583097714206079674962517619 y[1] (numeric) = 0.93530583097714206079674962517614 absolute error = 5e-32 relative error = 5.3458450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.034 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.262 y[1] (analytic) = 0.93576532502872799547838194946119 y[1] (numeric) = 0.93576532502872799547838194946114 absolute error = 5e-32 relative error = 5.3432200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.034 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.261 y[1] (analytic) = 0.93622351774752111418088400096993 y[1] (numeric) = 0.93622351774752111418088400096988 absolute error = 5e-32 relative error = 5.3406050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.033 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.26 y[1] (analytic) = 0.93668040464593480704383664293743 y[1] (numeric) = 0.93668040464593480704383664293738 absolute error = 5e-32 relative error = 5.3380000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.033 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.259 y[1] (analytic) = 0.93713598124228619945439943172074 y[1] (numeric) = 0.93713598124228619945439943172069 absolute error = 5e-32 relative error = 5.3354050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.033 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.258 y[1] (analytic) = 0.93759024306089461110631898320213 y[1] (numeric) = 0.93759024306089461110631898320208 absolute error = 5e-32 relative error = 5.3328200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.033 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.257 y[1] (analytic) = 0.93804318563218013430902331881555 y[1] (numeric) = 0.9380431856321801343090233188155 absolute error = 5e-32 relative error = 5.3302450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.032 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.256 y[1] (analytic) = 0.93849480449276232806775181692594 y[1] (numeric) = 0.93849480449276232806775181692589 absolute error = 5e-32 relative error = 5.3276800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.032 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.255 y[1] (analytic) = 0.93894509518555902443604610220417 y[1] (numeric) = 0.93894509518555902443604610220412 absolute error = 5e-32 relative error = 5.3251250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.032 Order of pole = 1 memory used=293.7MB, alloc=4.6MB, time=18.04 TOP MAIN SOLVE Loop x[1] = -0.254 y[1] (analytic) = 0.93939405325988524362245377241864 y[1] (numeric) = 0.93939405325988524362245377241859 absolute error = 5e-32 relative error = 5.3225800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.032 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.253 y[1] (analytic) = 0.93984167427155221431397666749059 y[1] (numeric) = 0.93984167427155221431397666749055 absolute error = 4e-32 relative error = 4.2560360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.032 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.252 y[1] (analytic) = 0.94028795378296649565963080533783 y[1] (numeric) = 0.94028795378296649565963080533778 absolute error = 5e-32 relative error = 5.3175200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.031 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.251 y[1] (analytic) = 0.94073288736322919733847851507195 y[1] (numeric) = 0.94073288736322919733847851507191 absolute error = 4e-32 relative error = 4.2520040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.031 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.25 y[1] (analytic) = 0.94117647058823529411764705882353 y[1] (numeric) = 0.94117647058823529411764705882349 absolute error = 4e-32 relative error = 4.2500000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.031 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.249 y[1] (analytic) = 0.94161869904077303128716451302777 y[1] (numeric) = 0.94161869904077303128716451302773 absolute error = 4e-32 relative error = 4.2480040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.031 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.248 y[1] (analytic) = 0.94205956831062341733992523815266 y[1] (numeric) = 0.94205956831062341733992523815262 absolute error = 4e-32 relative error = 4.2460160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.03 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.247 y[1] (analytic) = 0.9424990739946598002467462575718 y[1] (numeric) = 0.94249907399465980024674625757176 absolute error = 4e-32 relative error = 4.2440360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.03 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.246 y[1] (analytic) = 0.94293721169694752365829464147641 y[1] (numeric) = 0.94293721169694752365829464147637 absolute error = 4e-32 relative error = 4.2420640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.03 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.245 y[1] (analytic) = 0.94337397702884365934765689488455 y[1] (numeric) = 0.94337397702884365934765689488451 absolute error = 4e-32 relative error = 4.2401000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.03 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.244 y[1] (analytic) = 0.94380936560909681218948671871461 y[1] (numeric) = 0.94380936560909681218948671871456 absolute error = 5e-32 relative error = 5.2976800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.029 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.243 y[1] (analytic) = 0.94424337306394699395400968227155 y[1] (numeric) = 0.9442433730639469939540096822715 absolute error = 5e-32 relative error = 5.2952450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.029 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.242 y[1] (analytic) = 0.94467599502722556217668464070193 y[1] (numeric) = 0.94467599502722556217668464070188 absolute error = 5e-32 relative error = 5.2928200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.029 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.241 y[1] (analytic) = 0.94510722714045522034702447166143 y[1] (numeric) = 0.94510722714045522034702447166138 absolute error = 5e-32 relative error = 5.2904050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.029 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.24 y[1] (analytic) = 0.94553706505295007564296520423601 y[1] (numeric) = 0.94553706505295007564296520423595 absolute error = 6e-32 relative error = 6.3456000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.028 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.239 y[1] (analytic) = 0.94596550442191575042024517533944 y[1] (numeric) = 0.94596550442191575042024517533938 absolute error = 6e-32 relative error = 6.3427260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.028 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.238 y[1] (analytic) = 0.94639254091254954364951677196861 y[1] (numeric) = 0.94639254091254954364951677196855 absolute error = 6e-32 relative error = 6.3398640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.028 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.237 y[1] (analytic) = 0.94681817019814063847736489141416 y[1] (numeric) = 0.9468181701981406384773648914141 absolute error = 6e-32 relative error = 6.3370140000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.028 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.236 y[1] (analytic) = 0.94724238796017035207105075703612 y[1] (numeric) = 0.94724238796017035207105075703606 absolute error = 6e-32 relative error = 6.3341760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.027 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.235 y[1] (analytic) = 0.94766518988841242389063943708688 y[1] (numeric) = 0.94766518988841242389063943708682 absolute error = 6e-32 relative error = 6.3313500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.027 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.234 y[1] (analytic) = 0.94808657168103333851620659185632 y[1] (numeric) = 0.94808657168103333851620659185626 absolute error = 6e-32 relative error = 6.3285360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.027 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.233 y[1] (analytic) = 0.94850652904469267914205687434849 y[1] (numeric) = 0.94850652904469267914205687434844 absolute error = 5e-32 relative error = 5.2714450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.027 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.232 y[1] (analytic) = 0.94892505769464350783432527632698 y[1] (numeric) = 0.94892505769464350783432527632692 absolute error = 6e-32 relative error = 6.3229440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.027 Order of pole = 1 memory used=297.5MB, alloc=4.6MB, time=18.29 TOP MAIN SOLVE Loop x[1] = -0.231 y[1] (analytic) = 0.94934215335483276863297577943364 y[1] (numeric) = 0.94934215335483276863297577943358 absolute error = 6e-32 relative error = 6.3201660000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.026 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.23 y[1] (analytic) = 0.94975781175800170956406116440308 y[1] (numeric) = 0.94975781175800170956406116440302 absolute error = 6e-32 relative error = 6.3174000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.026 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.229 y[1] (analytic) = 0.95017202864578631961316596369773 y[1] (numeric) = 0.95017202864578631961316596369767 absolute error = 6e-32 relative error = 6.3146460000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.026 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.228 y[1] (analytic) = 0.95058479976881777669622351670748 y[1] (numeric) = 0.95058479976881777669622351670742 absolute error = 6e-32 relative error = 6.3119040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.026 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.227 y[1] (analytic) = 0.9509961208868229026493800931786 y[1] (numeric) = 0.95099612088682290264938009317854 absolute error = 6e-32 relative error = 6.3091740000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.226 y[1] (analytic) = 0.95140598776872462124527626927073 y[1] (numeric) = 0.95140598776872462124527626927067 absolute error = 6e-32 relative error = 6.3064560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.225 y[1] (analytic) = 0.95181439619274241522903033908388 y[1] (numeric) = 0.95181439619274241522903033908382 absolute error = 6e-32 relative error = 6.3037500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.224 y[1] (analytic) = 0.95222134194649277835334267779877 y[1] (numeric) = 0.95222134194649277835334267779871 absolute error = 6e-32 relative error = 6.3010560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.223 y[1] (analytic) = 0.95262682082708965837849578319738 y[1] (numeric) = 0.95262682082708965837849578319732 absolute error = 6e-32 relative error = 6.2983740000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.222 y[1] (analytic) = 0.95303082864124488698960433972118 y[1] (numeric) = 0.95303082864124488698960433972112 absolute error = 6e-32 relative error = 6.2957040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.024 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.221 y[1] (analytic) = 0.95343336120536859257027518947104 y[1] (numeric) = 0.95343336120536859257027518947098 absolute error = 6e-32 relative error = 6.2930460000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.024 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.22 y[1] (analytic) = 0.95383441434566959175887066005341 y[1] (numeric) = 0.95383441434566959175887066005335 absolute error = 6e-32 relative error = 6.2904000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.024 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.219 y[1] (analytic) = 0.95423398389825575570083237830415 y[1] (numeric) = 0.95423398389825575570083237830409 absolute error = 6e-32 relative error = 6.2877660000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.024 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.218 y[1] (analytic) = 0.95463206570923434689801856568441 y[1] (numeric) = 0.95463206570923434689801856568435 absolute error = 6e-32 relative error = 6.2851440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.217 y[1] (analytic) = 0.95502865563481232254373792485644 y[1] (numeric) = 0.95502865563481232254373792485637 absolute error = 7e-32 relative error = 7.3296230000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.216 y[1] (analytic) = 0.95542374954139660022012963189434 y[1] (numeric) = 0.95542374954139660022012963189427 absolute error = 7e-32 relative error = 7.3265920000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.215 y[1] (analytic) = 0.95581734330569428182274367368396 y[1] (numeric) = 0.95581734330569428182274367368389 absolute error = 7e-32 relative error = 7.3235750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.214 y[1] (analytic) = 0.95620943281481283156562082853635 y[1] (numeric) = 0.95620943281481283156562082853628 absolute error = 7e-32 relative error = 7.3205720000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.213 y[1] (analytic) = 0.95660001396636020390885897706934 y[1] (numeric) = 0.95660001396636020390885897706927 absolute error = 7e-32 relative error = 7.3175830000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.022 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.212 y[1] (analytic) = 0.95698908266854491723958413082424 y[1] (numeric) = 0.95698908266854491723958413082416 absolute error = 8e-32 relative error = 8.3595520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.022 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.211 y[1] (analytic) = 0.95737663484027606912642254200729 y[1] (numeric) = 0.95737663484027606912642254200722 absolute error = 7e-32 relative error = 7.3116470000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.022 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.21 y[1] (analytic) = 0.95776266641126328895699645627813 y[1] (numeric) = 0.95776266641126328895699645627806 absolute error = 7e-32 relative error = 7.3087000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.022 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.209 y[1] (analytic) = 0.95814717332211662375764242139121 y[1] (numeric) = 0.95814717332211662375764242139114 memory used=301.3MB, alloc=4.6MB, time=18.55 absolute error = 7e-32 relative error = 7.3057670000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.022 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.208 y[1] (analytic) = 0.95853015152444635298447947978652 y[1] (numeric) = 0.95853015152444635298447947978645 absolute error = 7e-32 relative error = 7.3028480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.207 y[1] (analytic) = 0.95891159698096272806513694695972 y[1] (numeric) = 0.95891159698096272806513694695966 absolute error = 6e-32 relative error = 6.2570940000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.206 y[1] (analytic) = 0.95929150566557563246088968531401 y[1] (numeric) = 0.95929150566557563246088968531395 absolute error = 6e-32 relative error = 6.2546160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.205 y[1] (analytic) = 0.95966987356349415800964468222931 y[1] (numeric) = 0.95966987356349415800964468222925 absolute error = 6e-32 relative error = 6.2521500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.204 y[1] (analytic) = 0.96004669667132609330117816930616 y[1] (numeric) = 0.96004669667132609330117816930609 absolute error = 7e-32 relative error = 7.2913120000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.203 y[1] (analytic) = 0.96042197099717731982723929585703 y[1] (numeric) = 0.96042197099717731982723929585696 absolute error = 7e-32 relative error = 7.2884630000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.202 y[1] (analytic) = 0.96079569256075111164061629278904 y[1] (numeric) = 0.96079569256075111164061629278897 absolute error = 7e-32 relative error = 7.2856280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.201 y[1] (analytic) = 0.96116785739344733424900591214349 y[1] (numeric) = 0.96116785739344733424900591214342 absolute error = 7e-32 relative error = 7.2828070000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.2 y[1] (analytic) = 0.96153846153846153846153846153846 y[1] (numeric) = 0.96153846153846153846153846153839 absolute error = 7e-32 relative error = 7.2800000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.199 y[1] (analytic) = 0.96190750105088394489809070980116 y[1] (numeric) = 0.96190750105088394489809070980109 absolute error = 7e-32 relative error = 7.2772070000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.198 y[1] (analytic) = 0.96227497199779831486406903745559 y[1] (numeric) = 0.96227497199779831486406903745552 absolute error = 7e-32 relative error = 7.2744280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.197 y[1] (analytic) = 0.96264087045838070328616713948377 y[1] (numeric) = 0.9626408704583807032861671394837 absolute error = 7e-32 relative error = 7.2716630000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.196 y[1] (analytic) = 0.96300519252399808939769803238779 y[1] (numeric) = 0.96300519252399808939769803238772 absolute error = 7e-32 relative error = 7.2689120000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.195 y[1] (analytic) = 0.9633679342983068808554707256569 y[1] (numeric) = 0.96336793429830688085547072565683 absolute error = 7e-32 relative error = 7.2661750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.194 y[1] (analytic) = 0.96372909189735128696382931972291 y[1] (numeric) = 0.96372909189735128696382931972284 absolute error = 7e-32 relative error = 7.2634520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.193 y[1] (analytic) = 0.96408866144966155667539809631053 y[1] (numeric) = 0.96408866144966155667539809631046 absolute error = 7e-32 relative error = 7.2607430000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.192 y[1] (analytic) = 0.96444663909635207703228195790383 y[1] (numeric) = 0.96444663909635207703228195790376 absolute error = 7e-32 relative error = 7.2580480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.191 y[1] (analytic) = 0.96480302099121932770595891289855 y[1] (numeric) = 0.96480302099121932770595891289847 absolute error = 8e-32 relative error = 8.2918480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.19 y[1] (analytic) = 0.96515780330083968728887173052794 y[1] (numeric) = 0.96515780330083968728887173052786 absolute error = 8e-32 relative error = 8.2888000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.189 y[1] (analytic) = 0.96551098220466708698578091976507 y[1] (numeric) = 0.96551098220466708698578091976499 absolute error = 8e-32 relative error = 8.2857680000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.188 y[1] (analytic) = 0.96586255389513050734828231003415 y[1] (numeric) = 0.96586255389513050734828231003407 absolute error = 8e-32 relative error = 8.2827520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.187 y[1] (analytic) = 0.96621251457773131369152119532083 y[1] (numeric) = 0.96621251457773131369152119532074 absolute error = 9e-32 relative error = 9.3147210000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 1 TOP MAIN SOLVE Loop memory used=305.1MB, alloc=4.6MB, time=18.79 x[1] = -0.186 y[1] (analytic) = 0.96656086047114042582805268916563 y[1] (numeric) = 0.96656086047114042582805268916554 absolute error = 9e-32 relative error = 9.3113640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.185 y[1] (analytic) = 0.96690758780729531775000604317242 y[1] (numeric) = 0.96690758780729531775000604317234 absolute error = 8e-32 relative error = 8.2738000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.184 y[1] (analytic) = 0.9672526928314968428872105979943 y[1] (numeric) = 0.96725269283149684288721059799422 absolute error = 8e-32 relative error = 8.2708480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.183 y[1] (analytic) = 0.96759617180250588056573412972949 y[1] (numeric) = 0.9675961718025058805657341297294 absolute error = 9e-32 relative error = 9.3014010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.182 y[1] (analytic) = 0.96793802099263979928837196696621 y[1] (numeric) = 0.96793802099263979928837196696612 absolute error = 9e-32 relative error = 9.2981160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.181 y[1] (analytic) = 0.96827823668786873245600869901168 y[1] (numeric) = 0.96827823668786873245600869901159 absolute error = 9e-32 relative error = 9.2948490000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.18 y[1] (analytic) = 0.96861681518791166214645486245641 y[1] (numeric) = 0.96861681518791166214645486245632 absolute error = 9e-32 relative error = 9.2916000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.179 y[1] (analytic) = 0.96895375280633230656533994288987 y[1] (numeric) = 0.96895375280633230656533994288977 absolute error = 1.0e-31 relative error = 1.0320410000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.178 y[1] (analytic) = 0.96928904587063480678192159614766 y[1] (numeric) = 0.96928904587063480678192159614756 absolute error = 1.0e-31 relative error = 1.0316840000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.177 y[1] (analytic) = 0.96962269072235920836125038663705 y[1] (numeric) = 0.96962269072235920836125038663695 absolute error = 1.0e-31 relative error = 1.0313290000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.176 y[1] (analytic) = 0.96995468371717673350301073933826 y[1] (numeric) = 0.96995468371717673350301073933816 absolute error = 1.0e-31 relative error = 1.0309760000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.175 y[1] (analytic) = 0.97028502122498483929654335961189 y[1] (numeric) = 0.97028502122498483929654335961179 absolute error = 1.0e-31 relative error = 1.0306250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.174 y[1] (analytic) = 0.97061369963000205770104321560436 y[1] (numeric) = 0.97061369963000205770104321560427 absolute error = 9e-32 relative error = 9.2724840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.173 y[1] (analytic) = 0.97094071533086261285972139827114 y[1] (numeric) = 0.97094071533086261285972139827105 absolute error = 9e-32 relative error = 9.2693610000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.172 y[1] (analytic) = 0.97126606474071081135681984180018 y[1] (numeric) = 0.97126606474071081135681984180009 absolute error = 9e-32 relative error = 9.2662560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.171 y[1] (analytic) = 0.97158974428729520102677604176281 y[1] (numeric) = 0.97158974428729520102677604176272 absolute error = 9e-32 relative error = 9.2631690000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.17 y[1] (analytic) = 0.97191175041306249392555155991836 y[1] (numeric) = 0.97191175041306249392555155991827 absolute error = 9e-32 relative error = 9.2601000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.169 y[1] (analytic) = 0.97223207957525124907516423430404 y[1] (numeric) = 0.97223207957525124907516423430395 absolute error = 9e-32 relative error = 9.2570490000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.168 y[1] (analytic) = 0.97255072824598531059380057263787 y[1] (numeric) = 0.97255072824598531059380057263778 absolute error = 9e-32 relative error = 9.2540160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.167 y[1] (analytic) = 0.97286769291236699682553271802695 y[1] (numeric) = 0.97286769291236699682553271802686 absolute error = 9e-32 relative error = 9.2510010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.166 y[1] (analytic) = 0.97318297007657003608562453043922 y[1] (numeric) = 0.97318297007657003608562453043913 absolute error = 9e-32 relative error = 9.2480040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.165 y[1] (analytic) = 0.97349655625593224463968458711577 y[1] (numeric) = 0.97349655625593224463968458711569 absolute error = 8e-32 relative error = 8.2178000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.164 y[1] (analytic) = 0.97380844798304794253751110141631 y[1] (numeric) = 0.97380844798304794253751110141622 absolute error = 9e-32 relative error = 9.2420640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 1 TOP MAIN SOLVE Loop memory used=309.0MB, alloc=4.6MB, time=19.04 x[1] = -0.163 y[1] (analytic) = 0.97411864180586010292537569320718 y[1] (numeric) = 0.97411864180586010292537569320709 absolute error = 9e-32 relative error = 9.2391210000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.162 y[1] (analytic) = 0.97442713428775223046371038466486 y[1] (numeric) = 0.97442713428775223046371038466477 absolute error = 9e-32 relative error = 9.2361960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.161 y[1] (analytic) = 0.9747339220076399644806958820416 y[1] (numeric) = 0.97473392200763996448069588204151 absolute error = 9e-32 relative error = 9.2332890000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.16 y[1] (analytic) = 0.97503900156006240249609984399376 y[1] (numeric) = 0.97503900156006240249609984399367 absolute error = 9e-32 relative error = 9.2304000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.159 y[1] (analytic) = 0.97534236955527313975388210646642 y[1] (numeric) = 0.97534236955527313975388210646633 absolute error = 9e-32 relative error = 9.2275290000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.158 y[1] (analytic) = 0.97564402261933102040657037710593 y[1] (numeric) = 0.97564402261933102040657037710584 absolute error = 9e-32 relative error = 9.2246760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.157 y[1] (analytic) = 0.97594395739419059599921534105826 y[1] (numeric) = 0.97594395739419059599921534105817 absolute error = 9e-32 relative error = 9.2218410000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.156 y[1] (analytic) = 0.9762421705377922869058590150107 y[1] (numeric) = 0.97624217053779228690585901501061 absolute error = 9e-32 relative error = 9.2190240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.155 y[1] (analytic) = 0.97653865872415224237689509533459 y[1] (numeric) = 0.9765386587241522423768950953345 absolute error = 9e-32 relative error = 9.2162250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.154 y[1] (analytic) = 0.97683341864345189486146548456799 y[1] (numeric) = 0.9768334186434518948614654845679 absolute error = 9e-32 relative error = 9.2134440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.153 y[1] (analytic) = 0.97712644700212720427512363092371 y[1] (numeric) = 0.97712644700212720427512363092362 absolute error = 9e-32 relative error = 9.2106810000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.152 y[1] (analytic) = 0.97741774052295758788940322782435 y[1] (numeric) = 0.97741774052295758788940322782426 absolute error = 9e-32 relative error = 9.2079360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.151 y[1] (analytic) = 0.97770729594515453152666061139948 y[1] (numeric) = 0.97770729594515453152666061139939 absolute error = 9e-32 relative error = 9.2052090000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.15 y[1] (analytic) = 0.97799511002444987775061124694377 y[1] (numeric) = 0.97799511002444987775061124694367 absolute error = 1.0e-31 relative error = 1.0225000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.149 y[1] (analytic) = 0.97828117953318378675035536063847 y[1] (numeric) = 0.97828117953318378675035536063837 absolute error = 1.0e-31 relative error = 1.0222010000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.148 y[1] (analytic) = 0.97856550126039236562338536692292 y[1] (numeric) = 0.97856550126039236562338536692282 absolute error = 1.0e-31 relative error = 1.0219040000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.147 y[1] (analytic) = 0.97884807201189496177108854757544 y[1] (numeric) = 0.97884807201189496177108854757534 absolute error = 1.0e-31 relative error = 1.0216090000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.146 y[1] (analytic) = 0.97912888861038111612860270474564 y[1] (numeric) = 0.97912888861038111612860270474554 absolute error = 1.0e-31 relative error = 1.0213160000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.145 y[1] (analytic) = 0.97940794789549717195955045175192 y[1] (numeric) = 0.97940794789549717195955045175181 absolute error = 1.1e-31 relative error = 1.1231275000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.144 y[1] (analytic) = 0.97968524672393253495516960310991 y[1] (numeric) = 0.97968524672393253495516960310981 absolute error = 1.0e-31 relative error = 1.0207360000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.143 y[1] (analytic) = 0.97996078196950558038667292534953 y[1] (numeric) = 0.97996078196950558038667292534942 absolute error = 1.1e-31 relative error = 1.1224939000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.142 y[1] (analytic) = 0.9802345505232492030693104245984 y[1] (numeric) = 0.98023455052324920306931042459829 absolute error = 1.1e-31 relative error = 1.1221804000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.141 y[1] (analytic) = 0.98050654929349600590657145294402 y[1] (numeric) = 0.98050654929349600590657145294391 absolute error = 1.1e-31 relative error = 1.1218691000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 1 memory used=312.8MB, alloc=4.6MB, time=19.29 TOP MAIN SOLVE Loop x[1] = -0.14 y[1] (analytic) = 0.98077677520596312279325225578658 y[1] (numeric) = 0.98077677520596312279325225578647 absolute error = 1.1e-31 relative error = 1.1215600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.139 y[1] (analytic) = 0.98104522520383667166672716445555 y[1] (numeric) = 0.98104522520383667166672716445544 absolute error = 1.1e-31 relative error = 1.1212531000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.138 y[1] (analytic) = 0.98131189624785583350669843500379 y[1] (numeric) = 0.98131189624785583350669843500367 absolute error = 1.2e-31 relative error = 1.2228528000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.137 y[1] (analytic) = 0.98157678531639655309496068294186 y[1] (numeric) = 0.98157678531639655309496068294175 absolute error = 1.1e-31 relative error = 1.1206459000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.136 y[1] (analytic) = 0.98183988940555485735830086716099 y[1] (numeric) = 0.98183988940555485735830086716088 absolute error = 1.1e-31 relative error = 1.1203456000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.135 y[1] (analytic) = 0.98210120552922978712956370153944 y[1] (numeric) = 0.98210120552922978712956370153933 absolute error = 1.1e-31 relative error = 1.1200475000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.134 y[1] (analytic) = 0.98236073071920593817414505145606 y[1] (numeric) = 0.98236073071920593817414505145594 absolute error = 1.2e-31 relative error = 1.2215472000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.133 y[1] (analytic) = 0.98261846202523560734173210086775 y[1] (numeric) = 0.98261846202523560734173210086764 absolute error = 1.1e-31 relative error = 1.1194579000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.132 y[1] (analytic) = 0.98287439651512053971598861438299 y[1] (numeric) = 0.98287439651512053971598861438288 absolute error = 1.1e-31 relative error = 1.1191664000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.131 y[1] (analytic) = 0.98312853127479327264808619284459 y[1] (numeric) = 0.98312853127479327264808619284448 absolute error = 1.1e-31 relative error = 1.1188771000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.13 y[1] (analytic) = 0.98338086340839807257350771953978 y[1] (numeric) = 0.98338086340839807257350771953966 absolute error = 1.2e-31 relative error = 1.2202800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.129 y[1] (analytic) = 0.9836313900383714605253968706751 y[1] (numeric) = 0.98363139003837146052539687067498 absolute error = 1.2e-31 relative error = 1.2199692000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.128 y[1] (analytic) = 0.98388010830552232227189723569045 y[1] (numeric) = 0.98388010830552232227189723569033 absolute error = 1.2e-31 relative error = 1.2196608000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.127 y[1] (analytic) = 0.98412701536911159901941584188622 y[1] (numeric) = 0.9841270153691115990194158418861 absolute error = 1.2e-31 relative error = 1.2193548000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.126 y[1] (analytic) = 0.98437210840693155463855824923514 y[1] (numeric) = 0.98437210840693155463855824923503 absolute error = 1.1e-31 relative error = 1.1174636000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.125 y[1] (analytic) = 0.98461538461538461538461538461538 y[1] (numeric) = 0.98461538461538461538461538461527 absolute error = 1.1e-31 relative error = 1.1171875000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.124 y[1] (analytic) = 0.98485684120956177809993539339122 y[1] (numeric) = 0.9848568412095617780999353933911 absolute error = 1.2e-31 relative error = 1.2184512000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.123 y[1] (analytic) = 0.98509647542332058290128643748726 y[1] (numeric) = 0.98509647542332058290128643748714 absolute error = 1.2e-31 relative error = 1.2181548000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.122 y[1] (analytic) = 0.98533428450936264637140796386582 y[1] (numeric) = 0.98533428450936264637140796386571 absolute error = 1.1e-31 relative error = 1.1163724000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.121 y[1] (analytic) = 0.98557026573931075129035787041919 y[1] (numeric) = 0.98557026573931075129035787041908 absolute error = 1.1e-31 relative error = 1.1161051000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.12 y[1] (analytic) = 0.9858044164037854889589905362776 y[1] (numeric) = 0.98580441640378548895899053627749 absolute error = 1.1e-31 relative error = 1.1158400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.119 y[1] (analytic) = 0.98603673381248145018394515269272 y[1] (numeric) = 0.98603673381248145018394515269261 absolute error = 1.1e-31 relative error = 1.1155771000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.118 y[1] (analytic) = 0.98626721529424296101088444498799 y[1] (numeric) = 0.98626721529424296101088444498788 memory used=316.6MB, alloc=4.6MB, time=19.54 absolute error = 1.1e-31 relative error = 1.1153164000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.117 y[1] (analytic) = 0.98649585819713935931039993528587 y[1] (numeric) = 0.98649585819713935931039993528576 absolute error = 1.1e-31 relative error = 1.1150579000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.116 y[1] (analytic) = 0.98672265988853980833899054325003 y[1] (numeric) = 0.98672265988853980833899054324992 absolute error = 1.1e-31 relative error = 1.1148016000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.115 y[1] (analytic) = 0.9869476177551876434158257050507 y[1] (numeric) = 0.9869476177551876434158257050506 absolute error = 1.0e-31 relative error = 1.0132250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.114 y[1] (analytic) = 0.98717072920327424787462142002535 y[1] (numeric) = 0.98717072920327424787462142002525 absolute error = 1.0e-31 relative error = 1.0129960000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.113 y[1] (analytic) = 0.98739199165851245446888678464684 y[1] (numeric) = 0.98739199165851245446888678464674 absolute error = 1.0e-31 relative error = 1.0127690000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.112 y[1] (analytic) = 0.98761140256620946842803868276342 y[1] (numeric) = 0.98761140256620946842803868276331 absolute error = 1.1e-31 relative error = 1.1137984000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.111 y[1] (analytic) = 0.9878289593913393083814323717477 y[1] (numeric) = 0.98782895939133930838143237174759 absolute error = 1.1e-31 relative error = 1.1135531000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.11 y[1] (analytic) = 0.98804465961861476138721470210454 y[1] (numeric) = 0.98804465961861476138721470210443 absolute error = 1.1e-31 relative error = 1.1133100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.109 y[1] (analytic) = 0.98825850075255884832307356299802 y[1] (numeric) = 0.98825850075255884832307356299792 absolute error = 1.0e-31 relative error = 1.0118810000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.108 y[1] (analytic) = 0.98847048031757579591643075171203 y[1] (numeric) = 0.98847048031757579591643075171193 absolute error = 1.0e-31 relative error = 1.0116640000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.107 y[1] (analytic) = 0.98868059585802151171240467883205 y[1] (numeric) = 0.98868059585802151171240467883195 absolute error = 1.0e-31 relative error = 1.0114490000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.106 y[1] (analytic) = 0.98888884493827355829895296449098 y[1] (numeric) = 0.98888884493827355829895296449088 absolute error = 1.0e-31 relative error = 1.0112360000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.105 y[1] (analytic) = 0.98909522514280062312999183996439 y[1] (numeric) = 0.98909522514280062312999183996429 absolute error = 1.0e-31 relative error = 1.0110250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.104 y[1] (analytic) = 0.98929973407623148030897809294669 y[1] (numeric) = 0.98929973407623148030897809294659 absolute error = 1.0e-31 relative error = 1.0108160000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.103 y[1] (analytic) = 0.98950236936342344071742879788326 y[1] (numeric) = 0.98950236936342344071742879788316 absolute error = 1.0e-31 relative error = 1.0106090000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.102 y[1] (analytic) = 0.98970312864953028689514293292584 y[1] (numeric) = 0.98970312864953028689514293292574 absolute error = 1.0e-31 relative error = 1.0104040000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.101 y[1] (analytic) = 0.98990200960006968910147584490611 y[1] (numeric) = 0.98990200960006968910147584490601 absolute error = 1.0e-31 relative error = 1.0102010000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.1 y[1] (analytic) = 0.99009900990099009900990099009901 y[1] (numeric) = 0.99009900990099009900990099009891 absolute error = 1.0e-31 relative error = 1.0100000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.099 y[1] (analytic) = 0.99029412725873711751127202290352 y[1] (numeric) = 0.99029412725873711751127202290342 absolute error = 1.0e-31 relative error = 1.0098010000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.098 y[1] (analytic) = 0.990487359400319333124670662953 y[1] (numeric) = 0.9904873594003193331246706629529 absolute error = 1.0e-31 relative error = 1.0096040000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.097 y[1] (analytic) = 0.99067870407337362753849034435001 y[1] (numeric) = 0.99067870407337362753849034434991 absolute error = 1.0e-31 relative error = 1.0094090000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.096 y[1] (analytic) = 0.99086815904622994482846090430592 y[1] (numeric) = 0.99086815904622994482846090430582 absolute error = 1.0e-31 relative error = 1.0092160000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1 TOP MAIN SOLVE Loop memory used=320.4MB, alloc=4.6MB, time=19.79 x[1] = -0.095 y[1] (analytic) = 0.99105572210797552092366393300463 y[1] (numeric) = 0.99105572210797552092366393300454 absolute error = 9e-32 relative error = 9.0812250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.094 y[1] (analytic) = 0.99124139106851856991622027762689 y[1] (numeric) = 0.9912413910685185699162202776268 absolute error = 9e-32 relative error = 9.0795240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.093 y[1] (analytic) = 0.99142516375865142383524893198724 y[1] (numeric) = 0.99142516375865142383524893198715 absolute error = 9e-32 relative error = 9.0778410000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.092 y[1] (analytic) = 0.99160703803011312253089847530502 y[1] (numeric) = 0.99160703803011312253089847530493 absolute error = 9e-32 relative error = 9.0761760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.091 y[1] (analytic) = 0.9917870117556514503397366408769 y[1] (numeric) = 0.99178701175565145033973664087681 absolute error = 9e-32 relative error = 9.0745290000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.09 y[1] (analytic) = 0.99196508282908441622854875508382 y[1] (numeric) = 0.99196508282908441622854875508373 absolute error = 9e-32 relative error = 9.0729000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.089 y[1] (analytic) = 0.99214124916536117413963991225503 y[1] (numeric) = 0.99214124916536117413963991225494 absolute error = 9e-32 relative error = 9.0712890000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.088 y[1] (analytic) = 0.99231550870062238028705703035692 y[1] (numeric) = 0.99231550870062238028705703035683 absolute error = 9e-32 relative error = 9.0696960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.087 y[1] (analytic) = 0.99248785939225998417974352128738 y[1] (numeric) = 0.99248785939225998417974352128729 absolute error = 9e-32 relative error = 9.0681210000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.086 y[1] (analytic) = 0.9926582992189764501745093290027 y[1] (numeric) = 0.99265829921897645017450932900261 absolute error = 9e-32 relative error = 9.0665640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.085 y[1] (analytic) = 0.99282682618084340638884062647373 y[1] (numeric) = 0.99282682618084340638884062647364 absolute error = 9e-32 relative error = 9.0650250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.084 y[1] (analytic) = 0.99299343829935971783098457285394 y[1] (numeric) = 0.99299343829935971783098457285386 absolute error = 8e-32 relative error = 8.0564480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.083 y[1] (analytic) = 0.99315813361750898063242323632496 y[1] (numeric) = 0.99315813361750898063242323632487 absolute error = 9e-32 relative error = 9.0620010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.082 y[1] (analytic) = 0.99332091019981643429579507392294 y[1] (numeric) = 0.99332091019981643429579507392285 absolute error = 9e-32 relative error = 9.0605160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.081 y[1] (analytic) = 0.9934817661324052888995301824728 y[1] (numeric) = 0.9934817661324052888995301824727 absolute error = 1.0e-31 relative error = 1.0065610000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.08 y[1] (analytic) = 0.99364069952305246422893481717011 y[1] (numeric) = 0.99364069952305246422893481717002 absolute error = 9e-32 relative error = 9.0576000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.079 y[1] (analytic) = 0.9937977085012437378321893065379 y[1] (numeric) = 0.99379770850124373783218930653781 absolute error = 9e-32 relative error = 9.0561690000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.078 y[1] (analytic) = 0.99395279121822829902870933242155 y[1] (numeric) = 0.99395279121822829902870933242146 absolute error = 9e-32 relative error = 9.0547560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.077 y[1] (analytic) = 0.99410594584707270592656141735649 y[1] (numeric) = 0.99410594584707270592656141735641 absolute error = 8e-32 relative error = 8.0474320000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.076 y[1] (analytic) = 0.99425717058271424253511716326498 y[1] (numeric) = 0.9942571705827142425351171632649 absolute error = 8e-32 relative error = 8.0462080000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.075 y[1] (analytic) = 0.994406463642013673088875077688 y[1] (numeric) = 0.99440646364201367308887507768792 absolute error = 8e-32 relative error = 8.0450000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.074 y[1] (analytic) = 0.99455382326380739072837143800548 y[1] (numeric) = 0.9945538232638073907283714380054 absolute error = 8e-32 relative error = 8.0438080000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.073 y[1] (analytic) = 0.99469924770895895771434028064445 y[1] (numeric) = 0.99469924770895895771434028064436 absolute error = 9e-32 relative error = 9.0479610000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 memory used=324.2MB, alloc=4.6MB, time=20.04 TOP MAIN SOLVE Loop x[1] = -0.072 y[1] (analytic) = 0.99484273526041003438176493059977 y[1] (numeric) = 0.99484273526041003438176493059969 absolute error = 8e-32 relative error = 8.0414720000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.071 y[1] (analytic) = 0.99498428422323069407118714559904 y[1] (numeric) = 0.99498428422323069407118714559895 absolute error = 9e-32 relative error = 9.0453690000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.07 y[1] (analytic) = 0.99512389292466912130560254751717 y[1] (numeric) = 0.99512389292466912130560254751708 absolute error = 9e-32 relative error = 9.0441000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.069 y[1] (analytic) = 0.99526155971420069051247012971244 y[1] (numeric) = 0.99526155971420069051247012971235 absolute error = 9e-32 relative error = 9.0428490000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.068 y[1] (analytic) = 0.99539728296357642262179681154342 y[1] (numeric) = 0.99539728296357642262179681154333 absolute error = 9e-32 relative error = 9.0416160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.067 y[1] (analytic) = 0.99553106106687081690292277964219 y[1] (numeric) = 0.99553106106687081690292277964209 absolute error = 1.0e-31 relative error = 1.0044890000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.066 y[1] (analytic) = 0.9956628924405290554345271995189 y[1] (numeric) = 0.9956628924405290554345271995188 absolute error = 1.0e-31 relative error = 1.0043560000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.065 y[1] (analytic) = 0.99579277552341357763449426174413 y[1] (numeric) = 0.99579277552341357763449426174404 absolute error = 9e-32 relative error = 9.0380250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.064 y[1] (analytic) = 0.99592070877685002230862387660144 y[1] (numeric) = 0.99592070877685002230862387660135 absolute error = 9e-32 relative error = 9.0368640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.063 y[1] (analytic) = 0.99604669068467253470973705363413 y[1] (numeric) = 0.99604669068467253470973705363404 absolute error = 9e-32 relative error = 9.0357210000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.062 y[1] (analytic) = 0.99617071975326843613151047373895 y[1] (numeric) = 0.99617071975326843613151047373886 absolute error = 9e-32 relative error = 9.0345960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.061 y[1] (analytic) = 0.99629279451162225359437532939931 y[1] (numeric) = 0.99629279451162225359437532939922 absolute error = 9e-32 relative error = 9.0334890000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.06 y[1] (analytic) = 0.99641291351135910721402949382224 y[1] (numeric) = 0.99641291351135910721402949382215 absolute error = 9e-32 relative error = 9.0324000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.059 y[1] (analytic) = 0.99653107532678745287653677548454 y[1] (numeric) = 0.99653107532678745287653677548445 absolute error = 9e-32 relative error = 9.0313290000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.058 y[1] (analytic) = 0.99664727855494117787761968737168 y[1] (numeric) = 0.99664727855494117787761968737159 absolute error = 9e-32 relative error = 9.0302760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.057 y[1] (analytic) = 0.99676152181562104721759004992778 y[1] (numeric) = 0.99676152181562104721759004992769 absolute error = 9e-32 relative error = 9.0292410000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.056 y[1] (analytic) = 0.99687380375143549827740206711752 y[1] (numeric) = 0.99687380375143549827740206711742 absolute error = 1.0e-31 relative error = 1.0031360000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.055 y[1] (analytic) = 0.99698412302784078163555245382717 y[1] (numeric) = 0.99698412302784078163555245382707 absolute error = 1.0e-31 relative error = 1.0030250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.054 y[1] (analytic) = 0.99709247833318044581998891233164 y[1] (numeric) = 0.99709247833318044581998891233154 absolute error = 1.0e-31 relative error = 1.0029160000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.053 y[1] (analytic) = 0.99719886837872416382381889273032 y[1] (numeric) = 0.99719886837872416382381889273022 absolute error = 1.0e-31 relative error = 1.0028090000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.052 y[1] (analytic) = 0.99730329189870589924843223922514 y[1] (numeric) = 0.99730329189870589924843223922503 absolute error = 1.1e-31 relative error = 1.1029744000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.051 y[1] (analytic) = 0.9974057476503614099726611084569 y[1] (numeric) = 0.9974057476503614099726611084568 absolute error = 1.0e-31 relative error = 1.0026010000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.05 y[1] (analytic) = 0.99750623441396508728179551122195 y[1] (numeric) = 0.99750623441396508728179551122184 memory used=328.0MB, alloc=4.6MB, time=20.28 absolute error = 1.1e-31 relative error = 1.1027500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.049 y[1] (analytic) = 0.99760475099286612842565001431563 y[1] (numeric) = 0.99760475099286612842565001431552 absolute error = 1.1e-31 relative error = 1.1026411000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.048 y[1] (analytic) = 0.99770129621352404061043356107528 y[1] (numeric) = 0.99770129621352404061043356107517 absolute error = 1.1e-31 relative error = 1.1025344000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.047 y[1] (analytic) = 0.99779586892554347446490702039195 y[1] (numeric) = 0.99779586892554347446490702039184 absolute error = 1.1e-31 relative error = 1.1024299000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.046 y[1] (analytic) = 0.99788846800170838505721892475522 y[1] (numeric) = 0.9978884680017083850572189247551 absolute error = 1.2e-31 relative error = 1.2025392000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.045 y[1] (analytic) = 0.99797909233801551857488585614131 y[1] (numeric) = 0.9979790923380155185748858561412 absolute error = 1.1e-31 relative error = 1.1022275000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.044 y[1] (analytic) = 0.99806774085370722281662701010843 y[1] (numeric) = 0.99806774085370722281662701010832 absolute error = 1.1e-31 relative error = 1.1021296000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.043 y[1] (analytic) = 0.99815441249130357968116951756203 y[1] (numeric) = 0.99815441249130357968116951756192 absolute error = 1.1e-31 relative error = 1.1020339000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.042 y[1] (analytic) = 0.99823910621663385787470901330054 y[1] (numeric) = 0.99823910621663385787470901330043 absolute error = 1.1e-31 relative error = 1.1019404000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.041 y[1] (analytic) = 0.99832182101886728409543557280212 y[1] (numeric) = 0.99832182101886728409543557280201 absolute error = 1.1e-31 relative error = 1.1018491000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.04 y[1] (analytic) = 0.99840255591054313099041533546326 y[1] (numeric) = 0.99840255591054313099041533546315 absolute error = 1.1e-31 relative error = 1.1017600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.039 y[1] (analytic) = 0.99848130992760012021714971528305 y[1] (numeric) = 0.99848130992760012021714971528295 absolute error = 1.0e-31 relative error = 1.0015210000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.038 y[1] (analytic) = 0.99855808212940513897931387077061 y[1] (numeric) = 0.9985580821294051389793138707705 absolute error = 1.1e-31 relative error = 1.1015884000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.037 y[1] (analytic) = 0.99863287159878126844350084733999 y[1] (numeric) = 0.99863287159878126844350084733988 absolute error = 1.1e-31 relative error = 1.1015059000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.036 y[1] (analytic) = 0.99870567744203512248126428149119 y[1] (numeric) = 0.99870567744203512248126428149108 absolute error = 1.1e-31 relative error = 1.1014256000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.035 y[1] (analytic) = 0.99877649878898349521835751204774 y[1] (numeric) = 0.99877649878898349521835751204763 absolute error = 1.1e-31 relative error = 1.1013475000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.034 y[1] (analytic) = 0.99884533479297931591080710698433 y[1] (numeric) = 0.99884533479297931591080710698421 absolute error = 1.2e-31 relative error = 1.2013872000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.033 y[1] (analytic) = 0.99891218463093690970533089465572 y[1] (numeric) = 0.9989121846309369097053308946556 absolute error = 1.2e-31 relative error = 1.2013068000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.032 y[1] (analytic) = 0.99897704750335656287961127805128 y[1] (numeric) = 0.99897704750335656287961127805116 absolute error = 1.2e-31 relative error = 1.2012288000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.031 y[1] (analytic) = 0.99903992263434839119606058577707 y[1] (numeric) = 0.99903992263434839119606058577695 absolute error = 1.2e-31 relative error = 1.2011532000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.03 y[1] (analytic) = 0.99910080927165551004096313318014 y[1] (numeric) = 0.99910080927165551004096313318002 absolute error = 1.2e-31 relative error = 1.2010800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.029 y[1] (analytic) = 0.99915970668667650505924517480799 y[1] (numeric) = 0.99915970668667650505924517480787 absolute error = 1.2e-31 relative error = 1.2010092000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.028 y[1] (analytic) = 0.99921661417448720203360565316792 y[1] (numeric) = 0.9992166141744872020336056531678 absolute error = 1.2e-31 relative error = 1.2009408000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop memory used=331.8MB, alloc=4.6MB, time=20.53 x[1] = -0.027 y[1] (analytic) = 0.9992715310538617347953342013672 y[1] (numeric) = 0.99927153105386173479533420136709 absolute error = 1.1e-31 relative error = 1.1008019000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.026 y[1] (analytic) = 0.99932445666729290999284483689026 y[1] (numeric) = 0.99932445666729290999284483689015 absolute error = 1.1e-31 relative error = 1.1007436000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.025 y[1] (analytic) = 0.99937539038101186758276077451593 y[1] (numeric) = 0.99937539038101186758276077451582 absolute error = 1.1e-31 relative error = 1.1006875000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.024 y[1] (analytic) = 0.99942433158500703594729435844953 y[1] (numeric) = 0.99942433158500703594729435844943 absolute error = 1.0e-31 relative error = 1.0005760000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.023 y[1] (analytic) = 0.99947127969304238058067282407606 y[1] (numeric) = 0.99947127969304238058067282407596 absolute error = 1.0e-31 relative error = 1.0005290000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.022 y[1] (analytic) = 0.99951623414267494532646199239568 y[1] (numeric) = 0.99951623414267494532646199239558 absolute error = 1.0e-31 relative error = 1.0004840000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.021 y[1] (analytic) = 0.99955919439527168518683260682039 y[1] (numeric) = 0.99955919439527168518683260682029 absolute error = 1.0e-31 relative error = 1.0004410000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.02 y[1] (analytic) = 0.9996001599360255897640943622551 y[1] (numeric) = 0.999600159936025589764094362255 absolute error = 1.0e-31 relative error = 1.0004000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.019 y[1] (analytic) = 0.99963913027397109643418725839972 y[1] (numeric) = 0.99963913027397109643418725839962 absolute error = 1.0e-31 relative error = 1.0003610000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.018 y[1] (analytic) = 0.99967610494199879239126523006546 y[1] (numeric) = 0.99967610494199879239126523006536 absolute error = 1.0e-31 relative error = 1.0003240000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.017 y[1] (analytic) = 0.99971108349686940474202955345905 y[1] (numeric) = 0.99971108349686940474202955345895 absolute error = 1.0e-31 relative error = 1.0002890000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.016 y[1] (analytic) = 0.99974406551922707786806577516156 y[1] (numeric) = 0.99974406551922707786806577516146 absolute error = 1.0e-31 relative error = 1.0002560000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.015 y[1] (analytic) = 0.99977505061361193731410432652653 y[1] (numeric) = 0.99977505061361193731410432652643 absolute error = 1.0e-31 relative error = 1.0002250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.014 y[1] (analytic) = 0.99980403840847193949985802782655 y[1] (numeric) = 0.99980403840847193949985802782644 absolute error = 1.1e-31 relative error = 1.1002156000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.013 y[1] (analytic) = 0.99983102855617400659288580229941 y[1] (numeric) = 0.99983102855617400659288580229931 absolute error = 1.0e-31 relative error = 1.0001690000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.012 y[1] (analytic) = 0.99985602073301444591978755059271 y[1] (numeric) = 0.99985602073301444591978755059261 absolute error = 1.0e-31 relative error = 1.0001440000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.011 y[1] (analytic) = 0.99987901463922865333294671344767 y[1] (numeric) = 0.99987901463922865333294671344757 absolute error = 1.0e-31 relative error = 1.0001210000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.01 y[1] (analytic) = 0.99990000999900009999000099990001 y[1] (numeric) = 0.99990000999900009999000099989991 absolute error = 1.0e-31 relative error = 1.0001000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.009 y[1] (analytic) = 0.99991900656046860204323449800566 y[1] (numeric) = 0.99991900656046860204323449800556 absolute error = 1.0e-31 relative error = 1.0000810000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.008 y[1] (analytic) = 0.99993600409573787277614232689108 y[1] (numeric) = 0.99993600409573787277614232689098 absolute error = 1.0e-31 relative error = 1.0000640000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.007 y[1] (analytic) = 0.99995100240088235676451853859161 y[1] (numeric) = 0.99995100240088235676451853859151 absolute error = 1.0e-31 relative error = 1.0000490000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.006 y[1] (analytic) = 0.9999640012959533456795555360007 y[1] (numeric) = 0.9999640012959533456795555360006 absolute error = 1.0e-31 relative error = 1.0000360000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.005 y[1] (analytic) = 0.99997500062498437539061523461913 y[1] (numeric) = 0.99997500062498437539061523461903 absolute error = 1.0e-31 relative error = 1.0000250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used memory used=335.7MB, alloc=4.6MB, time=20.77 Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.004 y[1] (analytic) = 0.99998400025599590406553495144078 y[1] (numeric) = 0.99998400025599590406553495144067 absolute error = 1.1e-31 relative error = 1.1000176000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.003 y[1] (analytic) = 0.99999100008099927100656094095153 y[1] (numeric) = 0.99999100008099927100656094095142 absolute error = 1.1e-31 relative error = 1.1000099000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.002 y[1] (analytic) = 0.999996000015999936000255998976 y[1] (numeric) = 0.99999600001599993600025599897589 absolute error = 1.1e-31 relative error = 1.1000044000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.001 y[1] (analytic) = 0.999999000000999999000000999999 y[1] (numeric) = 0.99999900000099999900000099999889 absolute error = 1.1e-31 relative error = 1.1000011000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0 y[1] (analytic) = 1 y[1] (numeric) = 0.99999999999999999999999999999989 absolute error = 1.1e-31 relative error = 1.1000000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.001 y[1] (analytic) = 0.999999000000999999000000999999 y[1] (numeric) = 0.99999900000099999900000099999889 absolute error = 1.1e-31 relative error = 1.1000011000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.002 y[1] (analytic) = 0.999996000015999936000255998976 y[1] (numeric) = 0.99999600001599993600025599897589 absolute error = 1.1e-31 relative error = 1.1000044000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.003 y[1] (analytic) = 0.99999100008099927100656094095153 y[1] (numeric) = 0.99999100008099927100656094095142 absolute error = 1.1e-31 relative error = 1.1000099000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.004 y[1] (analytic) = 0.99998400025599590406553495144078 y[1] (numeric) = 0.99998400025599590406553495144067 absolute error = 1.1e-31 relative error = 1.1000176000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.005 y[1] (analytic) = 0.99997500062498437539061523461913 y[1] (numeric) = 0.99997500062498437539061523461903 absolute error = 1.0e-31 relative error = 1.0000250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.006 y[1] (analytic) = 0.9999640012959533456795555360007 y[1] (numeric) = 0.9999640012959533456795555360006 absolute error = 1.0e-31 relative error = 1.0000360000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.007 y[1] (analytic) = 0.99995100240088235676451853859161 y[1] (numeric) = 0.99995100240088235676451853859151 absolute error = 1.0e-31 relative error = 1.0000490000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.008 y[1] (analytic) = 0.99993600409573787277614232689108 y[1] (numeric) = 0.99993600409573787277614232689098 absolute error = 1.0e-31 relative error = 1.0000640000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.009 y[1] (analytic) = 0.99991900656046860204323449800566 y[1] (numeric) = 0.99991900656046860204323449800556 absolute error = 1.0e-31 relative error = 1.0000810000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.01 y[1] (analytic) = 0.99990000999900009999000099990001 y[1] (numeric) = 0.99990000999900009999000099989991 absolute error = 1.0e-31 relative error = 1.0001000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.011 y[1] (analytic) = 0.99987901463922865333294671344767 y[1] (numeric) = 0.99987901463922865333294671344757 absolute error = 1.0e-31 relative error = 1.0001210000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.012 y[1] (analytic) = 0.99985602073301444591978755059271 y[1] (numeric) = 0.99985602073301444591978755059261 absolute error = 1.0e-31 relative error = 1.0001440000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.013 y[1] (analytic) = 0.99983102855617400659288580229941 y[1] (numeric) = 0.99983102855617400659288580229931 absolute error = 1.0e-31 relative error = 1.0001690000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.014 y[1] (analytic) = 0.99980403840847193949985802782655 y[1] (numeric) = 0.99980403840847193949985802782644 absolute error = 1.1e-31 relative error = 1.1002156000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.015 y[1] (analytic) = 0.99977505061361193731410432652653 y[1] (numeric) = 0.99977505061361193731410432652643 absolute error = 1.0e-31 relative error = 1.0002250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.016 y[1] (analytic) = 0.99974406551922707786806577516156 y[1] (numeric) = 0.99974406551922707786806577516146 absolute error = 1.0e-31 relative error = 1.0002560000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.017 y[1] (analytic) = 0.99971108349686940474202955345905 y[1] (numeric) = 0.99971108349686940474202955345895 absolute error = 1.0e-31 relative error = 1.0002890000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.018 y[1] (analytic) = 0.99967610494199879239126523006546 y[1] (numeric) = 0.99967610494199879239126523006536 absolute error = 1.0e-31 relative error = 1.0003240000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used memory used=339.5MB, alloc=4.6MB, time=21.02 Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.019 y[1] (analytic) = 0.99963913027397109643418725839972 y[1] (numeric) = 0.99963913027397109643418725839962 absolute error = 1.0e-31 relative error = 1.0003610000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.02 y[1] (analytic) = 0.9996001599360255897640943622551 y[1] (numeric) = 0.999600159936025589764094362255 absolute error = 1.0e-31 relative error = 1.0004000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.021 y[1] (analytic) = 0.99955919439527168518683260682039 y[1] (numeric) = 0.99955919439527168518683260682029 absolute error = 1.0e-31 relative error = 1.0004410000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.022 y[1] (analytic) = 0.99951623414267494532646199239568 y[1] (numeric) = 0.99951623414267494532646199239558 absolute error = 1.0e-31 relative error = 1.0004840000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.023 y[1] (analytic) = 0.99947127969304238058067282407606 y[1] (numeric) = 0.99947127969304238058067282407596 absolute error = 1.0e-31 relative error = 1.0005290000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.024 y[1] (analytic) = 0.99942433158500703594729435844953 y[1] (numeric) = 0.99942433158500703594729435844943 absolute error = 1.0e-31 relative error = 1.0005760000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.025 y[1] (analytic) = 0.99937539038101186758276077451593 y[1] (numeric) = 0.99937539038101186758276077451582 absolute error = 1.1e-31 relative error = 1.1006875000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.026 y[1] (analytic) = 0.99932445666729290999284483689026 y[1] (numeric) = 0.99932445666729290999284483689015 absolute error = 1.1e-31 relative error = 1.1007436000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.027 y[1] (analytic) = 0.9992715310538617347953342013672 y[1] (numeric) = 0.99927153105386173479533420136709 absolute error = 1.1e-31 relative error = 1.1008019000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.028 y[1] (analytic) = 0.99921661417448720203360565316792 y[1] (numeric) = 0.9992166141744872020336056531678 absolute error = 1.2e-31 relative error = 1.2009408000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.029 y[1] (analytic) = 0.99915970668667650505924517480799 y[1] (numeric) = 0.99915970668667650505924517480787 absolute error = 1.2e-31 relative error = 1.2010092000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.03 y[1] (analytic) = 0.99910080927165551004096313318014 y[1] (numeric) = 0.99910080927165551004096313318002 absolute error = 1.2e-31 relative error = 1.2010800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.031 y[1] (analytic) = 0.99903992263434839119606058577707 y[1] (numeric) = 0.99903992263434839119606058577695 absolute error = 1.2e-31 relative error = 1.2011532000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.032 y[1] (analytic) = 0.99897704750335656287961127805128 y[1] (numeric) = 0.99897704750335656287961127805116 absolute error = 1.2e-31 relative error = 1.2012288000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.033 y[1] (analytic) = 0.99891218463093690970533089465572 y[1] (numeric) = 0.9989121846309369097053308946556 absolute error = 1.2e-31 relative error = 1.2013068000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.034 y[1] (analytic) = 0.99884533479297931591080710698433 y[1] (numeric) = 0.99884533479297931591080710698421 absolute error = 1.2e-31 relative error = 1.2013872000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.035 y[1] (analytic) = 0.99877649878898349521835751204774 y[1] (numeric) = 0.99877649878898349521835751204763 absolute error = 1.1e-31 relative error = 1.1013475000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.036 y[1] (analytic) = 0.99870567744203512248126428149119 y[1] (numeric) = 0.99870567744203512248126428149108 absolute error = 1.1e-31 relative error = 1.1014256000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.037 y[1] (analytic) = 0.99863287159878126844350084733999 y[1] (numeric) = 0.99863287159878126844350084733988 absolute error = 1.1e-31 relative error = 1.1015059000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.038 y[1] (analytic) = 0.99855808212940513897931387077061 y[1] (numeric) = 0.9985580821294051389793138707705 absolute error = 1.1e-31 relative error = 1.1015884000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.039 y[1] (analytic) = 0.99848130992760012021714971528305 y[1] (numeric) = 0.99848130992760012021714971528295 absolute error = 1.0e-31 relative error = 1.0015210000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.04 y[1] (analytic) = 0.99840255591054313099041533546326 y[1] (numeric) = 0.99840255591054313099041533546315 absolute error = 1.1e-31 relative error = 1.1017600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop memory used=343.3MB, alloc=4.6MB, time=21.26 x[1] = 0.041 y[1] (analytic) = 0.99832182101886728409543557280212 y[1] (numeric) = 0.99832182101886728409543557280201 absolute error = 1.1e-31 relative error = 1.1018491000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.042 y[1] (analytic) = 0.99823910621663385787470901330054 y[1] (numeric) = 0.99823910621663385787470901330043 absolute error = 1.1e-31 relative error = 1.1019404000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.043 y[1] (analytic) = 0.99815441249130357968116951756203 y[1] (numeric) = 0.99815441249130357968116951756192 absolute error = 1.1e-31 relative error = 1.1020339000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.044 y[1] (analytic) = 0.99806774085370722281662701010843 y[1] (numeric) = 0.99806774085370722281662701010832 absolute error = 1.1e-31 relative error = 1.1021296000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.045 y[1] (analytic) = 0.99797909233801551857488585614131 y[1] (numeric) = 0.9979790923380155185748858561412 absolute error = 1.1e-31 relative error = 1.1022275000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.046 y[1] (analytic) = 0.99788846800170838505721892475522 y[1] (numeric) = 0.9978884680017083850572189247551 absolute error = 1.2e-31 relative error = 1.2025392000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.047 y[1] (analytic) = 0.99779586892554347446490702039195 y[1] (numeric) = 0.99779586892554347446490702039184 absolute error = 1.1e-31 relative error = 1.1024299000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.048 y[1] (analytic) = 0.99770129621352404061043356107528 y[1] (numeric) = 0.99770129621352404061043356107517 absolute error = 1.1e-31 relative error = 1.1025344000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.049 y[1] (analytic) = 0.99760475099286612842565001431563 y[1] (numeric) = 0.99760475099286612842565001431552 absolute error = 1.1e-31 relative error = 1.1026411000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.05 y[1] (analytic) = 0.99750623441396508728179551122195 y[1] (numeric) = 0.99750623441396508728179551122184 absolute error = 1.1e-31 relative error = 1.1027500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.051 y[1] (analytic) = 0.9974057476503614099726611084569 y[1] (numeric) = 0.9974057476503614099726611084568 absolute error = 1.0e-31 relative error = 1.0026010000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.052 y[1] (analytic) = 0.99730329189870589924843223922514 y[1] (numeric) = 0.99730329189870589924843223922503 absolute error = 1.1e-31 relative error = 1.1029744000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.053 y[1] (analytic) = 0.99719886837872416382381889273032 y[1] (numeric) = 0.99719886837872416382381889273022 absolute error = 1.0e-31 relative error = 1.0028090000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.054 y[1] (analytic) = 0.99709247833318044581998891233164 y[1] (numeric) = 0.99709247833318044581998891233154 absolute error = 1.0e-31 relative error = 1.0029160000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.055 y[1] (analytic) = 0.99698412302784078163555245382717 y[1] (numeric) = 0.99698412302784078163555245382707 absolute error = 1.0e-31 relative error = 1.0030250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.056 y[1] (analytic) = 0.99687380375143549827740206711752 y[1] (numeric) = 0.99687380375143549827740206711742 absolute error = 1.0e-31 relative error = 1.0031360000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.057 y[1] (analytic) = 0.99676152181562104721759004992778 y[1] (numeric) = 0.99676152181562104721759004992769 absolute error = 9e-32 relative error = 9.0292410000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.058 y[1] (analytic) = 0.99664727855494117787761968737168 y[1] (numeric) = 0.99664727855494117787761968737159 absolute error = 9e-32 relative error = 9.0302760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.059 y[1] (analytic) = 0.99653107532678745287653677548454 y[1] (numeric) = 0.99653107532678745287653677548445 absolute error = 9e-32 relative error = 9.0313290000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.06 y[1] (analytic) = 0.99641291351135910721402949382224 y[1] (numeric) = 0.99641291351135910721402949382215 absolute error = 9e-32 relative error = 9.0324000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.061 y[1] (analytic) = 0.99629279451162225359437532939931 y[1] (numeric) = 0.99629279451162225359437532939922 absolute error = 9e-32 relative error = 9.0334890000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.062 y[1] (analytic) = 0.99617071975326843613151047373895 y[1] (numeric) = 0.99617071975326843613151047373886 absolute error = 9e-32 relative error = 9.0345960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.063 y[1] (analytic) = 0.99604669068467253470973705363413 y[1] (numeric) = 0.99604669068467253470973705363404 absolute error = 9e-32 relative error = 9.0357210000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 memory used=347.1MB, alloc=4.6MB, time=21.51 TOP MAIN SOLVE Loop x[1] = 0.064 y[1] (analytic) = 0.99592070877685002230862387660144 y[1] (numeric) = 0.99592070877685002230862387660135 absolute error = 9e-32 relative error = 9.0368640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.065 y[1] (analytic) = 0.99579277552341357763449426174413 y[1] (numeric) = 0.99579277552341357763449426174404 absolute error = 9e-32 relative error = 9.0380250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.066 y[1] (analytic) = 0.9956628924405290554345271995189 y[1] (numeric) = 0.9956628924405290554345271995188 absolute error = 1.0e-31 relative error = 1.0043560000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.067 y[1] (analytic) = 0.99553106106687081690292277964219 y[1] (numeric) = 0.99553106106687081690292277964209 absolute error = 1.0e-31 relative error = 1.0044890000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.068 y[1] (analytic) = 0.99539728296357642262179681154342 y[1] (numeric) = 0.99539728296357642262179681154333 absolute error = 9e-32 relative error = 9.0416160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.069 y[1] (analytic) = 0.99526155971420069051247012971244 y[1] (numeric) = 0.99526155971420069051247012971235 absolute error = 9e-32 relative error = 9.0428490000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.07 y[1] (analytic) = 0.99512389292466912130560254751717 y[1] (numeric) = 0.99512389292466912130560254751708 absolute error = 9e-32 relative error = 9.0441000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.071 y[1] (analytic) = 0.99498428422323069407118714559904 y[1] (numeric) = 0.99498428422323069407118714559895 absolute error = 9e-32 relative error = 9.0453690000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.072 y[1] (analytic) = 0.99484273526041003438176493059977 y[1] (numeric) = 0.99484273526041003438176493059969 absolute error = 8e-32 relative error = 8.0414720000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.073 y[1] (analytic) = 0.99469924770895895771434028064445 y[1] (numeric) = 0.99469924770895895771434028064436 absolute error = 9e-32 relative error = 9.0479610000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.074 y[1] (analytic) = 0.99455382326380739072837143800548 y[1] (numeric) = 0.9945538232638073907283714380054 absolute error = 8e-32 relative error = 8.0438080000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.075 y[1] (analytic) = 0.994406463642013673088875077688 y[1] (numeric) = 0.99440646364201367308887507768792 absolute error = 8e-32 relative error = 8.0450000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.076 y[1] (analytic) = 0.99425717058271424253511716326498 y[1] (numeric) = 0.9942571705827142425351171632649 absolute error = 8e-32 relative error = 8.0462080000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.077 y[1] (analytic) = 0.99410594584707270592656141735649 y[1] (numeric) = 0.99410594584707270592656141735641 absolute error = 8e-32 relative error = 8.0474320000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.078 y[1] (analytic) = 0.99395279121822829902870933242155 y[1] (numeric) = 0.99395279121822829902870933242146 absolute error = 9e-32 relative error = 9.0547560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.079 y[1] (analytic) = 0.9937977085012437378321893065379 y[1] (numeric) = 0.99379770850124373783218930653781 absolute error = 9e-32 relative error = 9.0561690000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.08 y[1] (analytic) = 0.99364069952305246422893481717011 y[1] (numeric) = 0.99364069952305246422893481717002 absolute error = 9e-32 relative error = 9.0576000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.081 y[1] (analytic) = 0.9934817661324052888995301824728 y[1] (numeric) = 0.9934817661324052888995301824727 absolute error = 1.0e-31 relative error = 1.0065610000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.082 y[1] (analytic) = 0.99332091019981643429579507392294 y[1] (numeric) = 0.99332091019981643429579507392285 absolute error = 9e-32 relative error = 9.0605160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.083 y[1] (analytic) = 0.99315813361750898063242323632496 y[1] (numeric) = 0.99315813361750898063242323632487 absolute error = 9e-32 relative error = 9.0620010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.084 y[1] (analytic) = 0.99299343829935971783098457285394 y[1] (numeric) = 0.99299343829935971783098457285386 absolute error = 8e-32 relative error = 8.0564480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.085 y[1] (analytic) = 0.99282682618084340638884062647373 y[1] (numeric) = 0.99282682618084340638884062647364 absolute error = 9e-32 relative error = 9.0650250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.086 y[1] (analytic) = 0.9926582992189764501745093290027 y[1] (numeric) = 0.99265829921897645017450932900261 absolute error = 9e-32 relative error = 9.0665640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 memory used=350.9MB, alloc=4.6MB, time=21.77 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.087 y[1] (analytic) = 0.99248785939225998417974352128738 y[1] (numeric) = 0.99248785939225998417974352128729 absolute error = 9e-32 relative error = 9.0681210000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.088 y[1] (analytic) = 0.99231550870062238028705703035692 y[1] (numeric) = 0.99231550870062238028705703035683 absolute error = 9e-32 relative error = 9.0696960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.089 y[1] (analytic) = 0.99214124916536117413963991225503 y[1] (numeric) = 0.99214124916536117413963991225494 absolute error = 9e-32 relative error = 9.0712890000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.09 y[1] (analytic) = 0.99196508282908441622854875508382 y[1] (numeric) = 0.99196508282908441622854875508373 absolute error = 9e-32 relative error = 9.0729000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.091 y[1] (analytic) = 0.9917870117556514503397366408769 y[1] (numeric) = 0.99178701175565145033973664087681 absolute error = 9e-32 relative error = 9.0745290000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.092 y[1] (analytic) = 0.99160703803011312253089847530502 y[1] (numeric) = 0.99160703803011312253089847530493 absolute error = 9e-32 relative error = 9.0761760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.093 y[1] (analytic) = 0.99142516375865142383524893198724 y[1] (numeric) = 0.99142516375865142383524893198715 absolute error = 9e-32 relative error = 9.0778410000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.094 y[1] (analytic) = 0.99124139106851856991622027762689 y[1] (numeric) = 0.9912413910685185699162202776268 absolute error = 9e-32 relative error = 9.0795240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.095 y[1] (analytic) = 0.99105572210797552092366393300463 y[1] (numeric) = 0.99105572210797552092366393300454 absolute error = 9e-32 relative error = 9.0812250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.096 y[1] (analytic) = 0.99086815904622994482846090430592 y[1] (numeric) = 0.99086815904622994482846090430582 absolute error = 1.0e-31 relative error = 1.0092160000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.097 y[1] (analytic) = 0.99067870407337362753849034435001 y[1] (numeric) = 0.99067870407337362753849034434991 absolute error = 1.0e-31 relative error = 1.0094090000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.098 y[1] (analytic) = 0.990487359400319333124670662953 y[1] (numeric) = 0.9904873594003193331246706629529 absolute error = 1.0e-31 relative error = 1.0096040000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.099 y[1] (analytic) = 0.99029412725873711751127202290352 y[1] (numeric) = 0.99029412725873711751127202290342 absolute error = 1.0e-31 relative error = 1.0098010000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.1 y[1] (analytic) = 0.99009900990099009900990099009901 y[1] (numeric) = 0.99009900990099009900990099009891 absolute error = 1.0e-31 relative error = 1.0100000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.101 y[1] (analytic) = 0.98990200960006968910147584490611 y[1] (numeric) = 0.98990200960006968910147584490601 absolute error = 1.0e-31 relative error = 1.0102010000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.102 y[1] (analytic) = 0.98970312864953028689514293292584 y[1] (numeric) = 0.98970312864953028689514293292574 absolute error = 1.0e-31 relative error = 1.0104040000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.103 y[1] (analytic) = 0.98950236936342344071742879788326 y[1] (numeric) = 0.98950236936342344071742879788316 absolute error = 1.0e-31 relative error = 1.0106090000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.104 y[1] (analytic) = 0.98929973407623148030897809294669 y[1] (numeric) = 0.98929973407623148030897809294659 absolute error = 1.0e-31 relative error = 1.0108160000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.105 y[1] (analytic) = 0.98909522514280062312999183996439 y[1] (numeric) = 0.98909522514280062312999183996429 absolute error = 1.0e-31 relative error = 1.0110250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.106 y[1] (analytic) = 0.98888884493827355829895296449098 y[1] (numeric) = 0.98888884493827355829895296449088 absolute error = 1.0e-31 relative error = 1.0112360000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.107 y[1] (analytic) = 0.98868059585802151171240467883205 y[1] (numeric) = 0.98868059585802151171240467883195 absolute error = 1.0e-31 relative error = 1.0114490000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.108 y[1] (analytic) = 0.98847048031757579591643075171203 y[1] (numeric) = 0.98847048031757579591643075171193 absolute error = 1.0e-31 relative error = 1.0116640000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 1 TOP MAIN SOLVE Loop memory used=354.7MB, alloc=4.6MB, time=22.01 x[1] = 0.109 y[1] (analytic) = 0.98825850075255884832307356299802 y[1] (numeric) = 0.98825850075255884832307356299792 absolute error = 1.0e-31 relative error = 1.0118810000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.11 y[1] (analytic) = 0.98804465961861476138721470210454 y[1] (numeric) = 0.98804465961861476138721470210443 absolute error = 1.1e-31 relative error = 1.1133100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.111 y[1] (analytic) = 0.9878289593913393083814323717477 y[1] (numeric) = 0.98782895939133930838143237174759 absolute error = 1.1e-31 relative error = 1.1135531000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.112 y[1] (analytic) = 0.98761140256620946842803868276342 y[1] (numeric) = 0.98761140256620946842803868276331 absolute error = 1.1e-31 relative error = 1.1137984000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.113 y[1] (analytic) = 0.98739199165851245446888678464684 y[1] (numeric) = 0.98739199165851245446888678464674 absolute error = 1.0e-31 relative error = 1.0127690000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.114 y[1] (analytic) = 0.98717072920327424787462142002535 y[1] (numeric) = 0.98717072920327424787462142002525 absolute error = 1.0e-31 relative error = 1.0129960000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.115 y[1] (analytic) = 0.9869476177551876434158257050507 y[1] (numeric) = 0.9869476177551876434158257050506 absolute error = 1.0e-31 relative error = 1.0132250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.116 y[1] (analytic) = 0.98672265988853980833899054325003 y[1] (numeric) = 0.98672265988853980833899054324992 absolute error = 1.1e-31 relative error = 1.1148016000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.117 y[1] (analytic) = 0.98649585819713935931039993528587 y[1] (numeric) = 0.98649585819713935931039993528576 absolute error = 1.1e-31 relative error = 1.1150579000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.118 y[1] (analytic) = 0.98626721529424296101088444498799 y[1] (numeric) = 0.98626721529424296101088444498788 absolute error = 1.1e-31 relative error = 1.1153164000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.119 y[1] (analytic) = 0.98603673381248145018394515269272 y[1] (numeric) = 0.98603673381248145018394515269261 absolute error = 1.1e-31 relative error = 1.1155771000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.12 y[1] (analytic) = 0.9858044164037854889589905362776 y[1] (numeric) = 0.98580441640378548895899053627749 absolute error = 1.1e-31 relative error = 1.1158400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.121 y[1] (analytic) = 0.98557026573931075129035787041919 y[1] (numeric) = 0.98557026573931075129035787041908 absolute error = 1.1e-31 relative error = 1.1161051000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.122 y[1] (analytic) = 0.98533428450936264637140796386582 y[1] (numeric) = 0.98533428450936264637140796386571 absolute error = 1.1e-31 relative error = 1.1163724000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.123 y[1] (analytic) = 0.98509647542332058290128643748726 y[1] (numeric) = 0.98509647542332058290128643748714 absolute error = 1.2e-31 relative error = 1.2181548000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.124 y[1] (analytic) = 0.98485684120956177809993539339122 y[1] (numeric) = 0.9848568412095617780999353933911 absolute error = 1.2e-31 relative error = 1.2184512000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.125 y[1] (analytic) = 0.98461538461538461538461538461538 y[1] (numeric) = 0.98461538461538461538461538461527 absolute error = 1.1e-31 relative error = 1.1171875000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.126 y[1] (analytic) = 0.98437210840693155463855824923514 y[1] (numeric) = 0.98437210840693155463855824923503 absolute error = 1.1e-31 relative error = 1.1174636000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.127 y[1] (analytic) = 0.98412701536911159901941584188622 y[1] (numeric) = 0.9841270153691115990194158418861 absolute error = 1.2e-31 relative error = 1.2193548000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.128 y[1] (analytic) = 0.98388010830552232227189723569045 y[1] (numeric) = 0.98388010830552232227189723569033 absolute error = 1.2e-31 relative error = 1.2196608000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.129 y[1] (analytic) = 0.9836313900383714605253968706751 y[1] (numeric) = 0.98363139003837146052539687067498 absolute error = 1.2e-31 relative error = 1.2199692000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.13 y[1] (analytic) = 0.98338086340839807257350771953978 y[1] (numeric) = 0.98338086340839807257350771953966 absolute error = 1.2e-31 relative error = 1.2202800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.131 y[1] (analytic) = 0.98312853127479327264808619284459 y[1] (numeric) = 0.98312853127479327264808619284448 absolute error = 1.1e-31 relative error = 1.1188771000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 1 TOP MAIN SOLVE Loop memory used=358.5MB, alloc=4.6MB, time=22.25 x[1] = 0.132 y[1] (analytic) = 0.98287439651512053971598861438299 y[1] (numeric) = 0.98287439651512053971598861438288 absolute error = 1.1e-31 relative error = 1.1191664000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.133 y[1] (analytic) = 0.98261846202523560734173210086775 y[1] (numeric) = 0.98261846202523560734173210086764 absolute error = 1.1e-31 relative error = 1.1194579000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.134 y[1] (analytic) = 0.98236073071920593817414505145606 y[1] (numeric) = 0.98236073071920593817414505145594 absolute error = 1.2e-31 relative error = 1.2215472000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.135 y[1] (analytic) = 0.98210120552922978712956370153944 y[1] (numeric) = 0.98210120552922978712956370153933 absolute error = 1.1e-31 relative error = 1.1200475000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.136 y[1] (analytic) = 0.98183988940555485735830086716099 y[1] (numeric) = 0.98183988940555485735830086716088 absolute error = 1.1e-31 relative error = 1.1203456000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.137 y[1] (analytic) = 0.98157678531639655309496068294186 y[1] (numeric) = 0.98157678531639655309496068294175 absolute error = 1.1e-31 relative error = 1.1206459000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.138 y[1] (analytic) = 0.98131189624785583350669843500379 y[1] (numeric) = 0.98131189624785583350669843500367 absolute error = 1.2e-31 relative error = 1.2228528000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.139 y[1] (analytic) = 0.98104522520383667166672716445555 y[1] (numeric) = 0.98104522520383667166672716445544 absolute error = 1.1e-31 relative error = 1.1212531000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.14 y[1] (analytic) = 0.98077677520596312279325225578658 y[1] (numeric) = 0.98077677520596312279325225578647 absolute error = 1.1e-31 relative error = 1.1215600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.141 y[1] (analytic) = 0.98050654929349600590657145294402 y[1] (numeric) = 0.98050654929349600590657145294391 absolute error = 1.1e-31 relative error = 1.1218691000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.142 y[1] (analytic) = 0.9802345505232492030693104245984 y[1] (numeric) = 0.98023455052324920306931042459829 absolute error = 1.1e-31 relative error = 1.1221804000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.143 y[1] (analytic) = 0.97996078196950558038667292534953 y[1] (numeric) = 0.97996078196950558038667292534942 absolute error = 1.1e-31 relative error = 1.1224939000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.144 y[1] (analytic) = 0.97968524672393253495516960310991 y[1] (numeric) = 0.97968524672393253495516960310981 absolute error = 1.0e-31 relative error = 1.0207360000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.145 y[1] (analytic) = 0.97940794789549717195955045175192 y[1] (numeric) = 0.97940794789549717195955045175181 absolute error = 1.1e-31 relative error = 1.1231275000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.146 y[1] (analytic) = 0.97912888861038111612860270474564 y[1] (numeric) = 0.97912888861038111612860270474554 absolute error = 1.0e-31 relative error = 1.0213160000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.147 y[1] (analytic) = 0.97884807201189496177108854757544 y[1] (numeric) = 0.97884807201189496177108854757534 absolute error = 1.0e-31 relative error = 1.0216090000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.148 y[1] (analytic) = 0.97856550126039236562338536692292 y[1] (numeric) = 0.97856550126039236562338536692282 absolute error = 1.0e-31 relative error = 1.0219040000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.149 y[1] (analytic) = 0.97828117953318378675035536063847 y[1] (numeric) = 0.97828117953318378675035536063837 absolute error = 1.0e-31 relative error = 1.0222010000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.15 y[1] (analytic) = 0.97799511002444987775061124694377 y[1] (numeric) = 0.97799511002444987775061124694367 absolute error = 1.0e-31 relative error = 1.0225000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.151 y[1] (analytic) = 0.97770729594515453152666061139948 y[1] (numeric) = 0.97770729594515453152666061139939 absolute error = 9e-32 relative error = 9.2052090000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.152 y[1] (analytic) = 0.97741774052295758788940322782435 y[1] (numeric) = 0.97741774052295758788940322782426 absolute error = 9e-32 relative error = 9.2079360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.153 y[1] (analytic) = 0.97712644700212720427512363092371 y[1] (numeric) = 0.97712644700212720427512363092362 absolute error = 9e-32 relative error = 9.2106810000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.154 y[1] (analytic) = 0.97683341864345189486146548456799 y[1] (numeric) = 0.9768334186434518948614654845679 absolute error = 9e-32 relative error = 9.2134440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 1 memory used=362.4MB, alloc=4.6MB, time=22.50 TOP MAIN SOLVE Loop x[1] = 0.155 y[1] (analytic) = 0.97653865872415224237689509533459 y[1] (numeric) = 0.9765386587241522423768950953345 absolute error = 9e-32 relative error = 9.2162250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.156 y[1] (analytic) = 0.9762421705377922869058590150107 y[1] (numeric) = 0.97624217053779228690585901501061 absolute error = 9e-32 relative error = 9.2190240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.157 y[1] (analytic) = 0.97594395739419059599921534105826 y[1] (numeric) = 0.97594395739419059599921534105817 absolute error = 9e-32 relative error = 9.2218410000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.158 y[1] (analytic) = 0.97564402261933102040657037710593 y[1] (numeric) = 0.97564402261933102040657037710584 absolute error = 9e-32 relative error = 9.2246760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.159 y[1] (analytic) = 0.97534236955527313975388210646642 y[1] (numeric) = 0.97534236955527313975388210646633 absolute error = 9e-32 relative error = 9.2275290000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.16 y[1] (analytic) = 0.97503900156006240249609984399376 y[1] (numeric) = 0.97503900156006240249609984399367 absolute error = 9e-32 relative error = 9.2304000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.161 y[1] (analytic) = 0.9747339220076399644806958820416 y[1] (numeric) = 0.97473392200763996448069588204151 absolute error = 9e-32 relative error = 9.2332890000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.162 y[1] (analytic) = 0.97442713428775223046371038466486 y[1] (numeric) = 0.97442713428775223046371038466477 absolute error = 9e-32 relative error = 9.2361960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.163 y[1] (analytic) = 0.97411864180586010292537569320718 y[1] (numeric) = 0.97411864180586010292537569320709 absolute error = 9e-32 relative error = 9.2391210000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.164 y[1] (analytic) = 0.97380844798304794253751110141631 y[1] (numeric) = 0.97380844798304794253751110141622 absolute error = 9e-32 relative error = 9.2420640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.165 y[1] (analytic) = 0.97349655625593224463968458711577 y[1] (numeric) = 0.97349655625593224463968458711569 absolute error = 8e-32 relative error = 8.2178000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.166 y[1] (analytic) = 0.97318297007657003608562453043922 y[1] (numeric) = 0.97318297007657003608562453043913 absolute error = 9e-32 relative error = 9.2480040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.167 y[1] (analytic) = 0.97286769291236699682553271802695 y[1] (numeric) = 0.97286769291236699682553271802686 absolute error = 9e-32 relative error = 9.2510010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.168 y[1] (analytic) = 0.97255072824598531059380057263787 y[1] (numeric) = 0.97255072824598531059380057263778 absolute error = 9e-32 relative error = 9.2540160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.169 y[1] (analytic) = 0.97223207957525124907516423430404 y[1] (numeric) = 0.97223207957525124907516423430395 absolute error = 9e-32 relative error = 9.2570490000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.17 y[1] (analytic) = 0.97191175041306249392555155991836 y[1] (numeric) = 0.97191175041306249392555155991827 absolute error = 9e-32 relative error = 9.2601000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.171 y[1] (analytic) = 0.97158974428729520102677604176281 y[1] (numeric) = 0.97158974428729520102677604176272 absolute error = 9e-32 relative error = 9.2631690000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.172 y[1] (analytic) = 0.97126606474071081135681984180018 y[1] (numeric) = 0.97126606474071081135681984180009 absolute error = 9e-32 relative error = 9.2662560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.173 y[1] (analytic) = 0.97094071533086261285972139827114 y[1] (numeric) = 0.97094071533086261285972139827105 absolute error = 9e-32 relative error = 9.2693610000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.174 y[1] (analytic) = 0.97061369963000205770104321560436 y[1] (numeric) = 0.97061369963000205770104321560427 absolute error = 9e-32 relative error = 9.2724840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.175 y[1] (analytic) = 0.97028502122498483929654335961189 y[1] (numeric) = 0.97028502122498483929654335961179 absolute error = 1.0e-31 relative error = 1.0306250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.176 y[1] (analytic) = 0.96995468371717673350301073933826 y[1] (numeric) = 0.96995468371717673350301073933816 absolute error = 1.0e-31 relative error = 1.0309760000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.177 y[1] (analytic) = 0.96962269072235920836125038663705 memory used=366.2MB, alloc=4.6MB, time=22.75 y[1] (numeric) = 0.96962269072235920836125038663695 absolute error = 1.0e-31 relative error = 1.0313290000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.178 y[1] (analytic) = 0.96928904587063480678192159614766 y[1] (numeric) = 0.96928904587063480678192159614756 absolute error = 1.0e-31 relative error = 1.0316840000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.179 y[1] (analytic) = 0.96895375280633230656533994288987 y[1] (numeric) = 0.96895375280633230656533994288977 absolute error = 1.0e-31 relative error = 1.0320410000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.18 y[1] (analytic) = 0.96861681518791166214645486245641 y[1] (numeric) = 0.96861681518791166214645486245632 absolute error = 9e-32 relative error = 9.2916000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.181 y[1] (analytic) = 0.96827823668786873245600869901168 y[1] (numeric) = 0.96827823668786873245600869901159 absolute error = 9e-32 relative error = 9.2948490000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.182 y[1] (analytic) = 0.96793802099263979928837196696621 y[1] (numeric) = 0.96793802099263979928837196696612 absolute error = 9e-32 relative error = 9.2981160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.183 y[1] (analytic) = 0.96759617180250588056573412972949 y[1] (numeric) = 0.9675961718025058805657341297294 absolute error = 9e-32 relative error = 9.3014010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.184 y[1] (analytic) = 0.9672526928314968428872105979943 y[1] (numeric) = 0.96725269283149684288721059799422 absolute error = 8e-32 relative error = 8.2708480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.185 y[1] (analytic) = 0.96690758780729531775000604317242 y[1] (numeric) = 0.96690758780729531775000604317234 absolute error = 8e-32 relative error = 8.2738000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.186 y[1] (analytic) = 0.96656086047114042582805268916563 y[1] (numeric) = 0.96656086047114042582805268916554 absolute error = 9e-32 relative error = 9.3113640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.187 y[1] (analytic) = 0.96621251457773131369152119532083 y[1] (numeric) = 0.96621251457773131369152119532074 absolute error = 9e-32 relative error = 9.3147210000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.188 y[1] (analytic) = 0.96586255389513050734828231003415 y[1] (numeric) = 0.96586255389513050734828231003407 absolute error = 8e-32 relative error = 8.2827520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.189 y[1] (analytic) = 0.96551098220466708698578091976507 y[1] (numeric) = 0.96551098220466708698578091976499 absolute error = 8e-32 relative error = 8.2857680000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.19 y[1] (analytic) = 0.96515780330083968728887173052794 y[1] (numeric) = 0.96515780330083968728887173052786 absolute error = 8e-32 relative error = 8.2888000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.191 y[1] (analytic) = 0.96480302099121932770595891289855 y[1] (numeric) = 0.96480302099121932770595891289847 absolute error = 8e-32 relative error = 8.2918480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.192 y[1] (analytic) = 0.96444663909635207703228195790383 y[1] (numeric) = 0.96444663909635207703228195790376 absolute error = 7e-32 relative error = 7.2580480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.193 y[1] (analytic) = 0.96408866144966155667539809631053 y[1] (numeric) = 0.96408866144966155667539809631046 absolute error = 7e-32 relative error = 7.2607430000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.194 y[1] (analytic) = 0.96372909189735128696382931972291 y[1] (numeric) = 0.96372909189735128696382931972284 absolute error = 7e-32 relative error = 7.2634520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.195 y[1] (analytic) = 0.9633679342983068808554707256569 y[1] (numeric) = 0.96336793429830688085547072565683 absolute error = 7e-32 relative error = 7.2661750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.196 y[1] (analytic) = 0.96300519252399808939769803238779 y[1] (numeric) = 0.96300519252399808939769803238772 absolute error = 7e-32 relative error = 7.2689120000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.197 y[1] (analytic) = 0.96264087045838070328616713948377 y[1] (numeric) = 0.9626408704583807032861671394837 absolute error = 7e-32 relative error = 7.2716630000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.198 y[1] (analytic) = 0.96227497199779831486406903745559 y[1] (numeric) = 0.96227497199779831486406903745552 absolute error = 7e-32 relative error = 7.2744280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.199 y[1] (analytic) = 0.96190750105088394489809070980116 y[1] (numeric) = 0.96190750105088394489809070980109 absolute error = 7e-32 relative error = 7.2772070000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 1 TOP MAIN SOLVE Loop memory used=370.0MB, alloc=4.6MB, time=23.00 x[1] = 0.2 y[1] (analytic) = 0.96153846153846153846153846153846 y[1] (numeric) = 0.96153846153846153846153846153839 absolute error = 7e-32 relative error = 7.2800000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.201 y[1] (analytic) = 0.96116785739344733424900591214349 y[1] (numeric) = 0.96116785739344733424900591214342 absolute error = 7e-32 relative error = 7.2828070000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.202 y[1] (analytic) = 0.96079569256075111164061629278904 y[1] (numeric) = 0.96079569256075111164061629278897 absolute error = 7e-32 relative error = 7.2856280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.203 y[1] (analytic) = 0.96042197099717731982723929585703 y[1] (numeric) = 0.96042197099717731982723929585696 absolute error = 7e-32 relative error = 7.2884630000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.204 y[1] (analytic) = 0.96004669667132609330117816930616 y[1] (numeric) = 0.96004669667132609330117816930609 absolute error = 7e-32 relative error = 7.2913120000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.205 y[1] (analytic) = 0.95966987356349415800964468222931 y[1] (numeric) = 0.95966987356349415800964468222925 absolute error = 6e-32 relative error = 6.2521500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.206 y[1] (analytic) = 0.95929150566557563246088968531401 y[1] (numeric) = 0.95929150566557563246088968531395 absolute error = 6e-32 relative error = 6.2546160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.207 y[1] (analytic) = 0.95891159698096272806513694695972 y[1] (numeric) = 0.95891159698096272806513694695966 absolute error = 6e-32 relative error = 6.2570940000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.208 y[1] (analytic) = 0.95853015152444635298447947978652 y[1] (numeric) = 0.95853015152444635298447947978645 absolute error = 7e-32 relative error = 7.3028480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.209 y[1] (analytic) = 0.95814717332211662375764242139121 y[1] (numeric) = 0.95814717332211662375764242139114 absolute error = 7e-32 relative error = 7.3057670000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.022 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.21 y[1] (analytic) = 0.95776266641126328895699645627813 y[1] (numeric) = 0.95776266641126328895699645627806 absolute error = 7e-32 relative error = 7.3087000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.022 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.211 y[1] (analytic) = 0.95737663484027606912642254200729 y[1] (numeric) = 0.95737663484027606912642254200722 absolute error = 7e-32 relative error = 7.3116470000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.022 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.212 y[1] (analytic) = 0.95698908266854491723958413082424 y[1] (numeric) = 0.95698908266854491723958413082416 absolute error = 8e-32 relative error = 8.3595520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.022 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.213 y[1] (analytic) = 0.95660001396636020390885897706934 y[1] (numeric) = 0.95660001396636020390885897706927 absolute error = 7e-32 relative error = 7.3175830000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.022 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.214 y[1] (analytic) = 0.95620943281481283156562082853635 y[1] (numeric) = 0.95620943281481283156562082853628 absolute error = 7e-32 relative error = 7.3205720000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.215 y[1] (analytic) = 0.95581734330569428182274367368396 y[1] (numeric) = 0.95581734330569428182274367368389 absolute error = 7e-32 relative error = 7.3235750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.216 y[1] (analytic) = 0.95542374954139660022012963189434 y[1] (numeric) = 0.95542374954139660022012963189427 absolute error = 7e-32 relative error = 7.3265920000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.217 y[1] (analytic) = 0.95502865563481232254373792485644 y[1] (numeric) = 0.95502865563481232254373792485637 absolute error = 7e-32 relative error = 7.3296230000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.218 y[1] (analytic) = 0.95463206570923434689801856568441 y[1] (numeric) = 0.95463206570923434689801856568435 absolute error = 6e-32 relative error = 6.2851440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.219 y[1] (analytic) = 0.95423398389825575570083237830415 y[1] (numeric) = 0.95423398389825575570083237830409 absolute error = 6e-32 relative error = 6.2877660000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.024 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.22 y[1] (analytic) = 0.95383441434566959175887066005341 y[1] (numeric) = 0.95383441434566959175887066005335 absolute error = 6e-32 relative error = 6.2904000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.024 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.221 y[1] (analytic) = 0.95343336120536859257027518947104 y[1] (numeric) = 0.95343336120536859257027518947098 absolute error = 6e-32 relative error = 6.2930460000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.024 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.222 y[1] (analytic) = 0.95303082864124488698960433972118 y[1] (numeric) = 0.95303082864124488698960433972112 absolute error = 6e-32 relative error = 6.2957040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.024 Order of pole = 1 TOP MAIN SOLVE Loop memory used=373.8MB, alloc=4.6MB, time=23.24 x[1] = 0.223 y[1] (analytic) = 0.95262682082708965837849578319738 y[1] (numeric) = 0.95262682082708965837849578319732 absolute error = 6e-32 relative error = 6.2983740000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.224 y[1] (analytic) = 0.95222134194649277835334267779877 y[1] (numeric) = 0.95222134194649277835334267779871 absolute error = 6e-32 relative error = 6.3010560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.225 y[1] (analytic) = 0.95181439619274241522903033908388 y[1] (numeric) = 0.95181439619274241522903033908382 absolute error = 6e-32 relative error = 6.3037500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.226 y[1] (analytic) = 0.95140598776872462124527626927073 y[1] (numeric) = 0.95140598776872462124527626927067 absolute error = 6e-32 relative error = 6.3064560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.227 y[1] (analytic) = 0.9509961208868229026493800931786 y[1] (numeric) = 0.95099612088682290264938009317854 absolute error = 6e-32 relative error = 6.3091740000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.228 y[1] (analytic) = 0.95058479976881777669622351670748 y[1] (numeric) = 0.95058479976881777669622351670742 absolute error = 6e-32 relative error = 6.3119040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.026 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.229 y[1] (analytic) = 0.95017202864578631961316596369773 y[1] (numeric) = 0.95017202864578631961316596369767 absolute error = 6e-32 relative error = 6.3146460000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.026 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.23 y[1] (analytic) = 0.94975781175800170956406116440308 y[1] (numeric) = 0.94975781175800170956406116440302 absolute error = 6e-32 relative error = 6.3174000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.026 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.231 y[1] (analytic) = 0.94934215335483276863297577943364 y[1] (numeric) = 0.94934215335483276863297577943358 absolute error = 6e-32 relative error = 6.3201660000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.026 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.232 y[1] (analytic) = 0.94892505769464350783432527632698 y[1] (numeric) = 0.94892505769464350783432527632692 absolute error = 6e-32 relative error = 6.3229440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.027 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.233 y[1] (analytic) = 0.94850652904469267914205687434849 y[1] (numeric) = 0.94850652904469267914205687434844 absolute error = 5e-32 relative error = 5.2714450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.027 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.234 y[1] (analytic) = 0.94808657168103333851620659185632 y[1] (numeric) = 0.94808657168103333851620659185626 absolute error = 6e-32 relative error = 6.3285360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.027 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.235 y[1] (analytic) = 0.94766518988841242389063943708688 y[1] (numeric) = 0.94766518988841242389063943708682 absolute error = 6e-32 relative error = 6.3313500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.027 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.236 y[1] (analytic) = 0.94724238796017035207105075703612 y[1] (numeric) = 0.94724238796017035207105075703606 absolute error = 6e-32 relative error = 6.3341760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.027 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.237 y[1] (analytic) = 0.94681817019814063847736489141416 y[1] (numeric) = 0.9468181701981406384773648914141 absolute error = 6e-32 relative error = 6.3370140000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.028 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.238 y[1] (analytic) = 0.94639254091254954364951677196861 y[1] (numeric) = 0.94639254091254954364951677196855 absolute error = 6e-32 relative error = 6.3398640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.028 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.239 y[1] (analytic) = 0.94596550442191575042024517533944 y[1] (numeric) = 0.94596550442191575042024517533938 absolute error = 6e-32 relative error = 6.3427260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.028 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.24 y[1] (analytic) = 0.94553706505295007564296520423601 y[1] (numeric) = 0.94553706505295007564296520423595 absolute error = 6e-32 relative error = 6.3456000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.028 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.241 y[1] (analytic) = 0.94510722714045522034702447166143 y[1] (numeric) = 0.94510722714045522034702447166138 absolute error = 5e-32 relative error = 5.2904050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.029 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.242 y[1] (analytic) = 0.94467599502722556217668464070193 y[1] (numeric) = 0.94467599502722556217668464070188 absolute error = 5e-32 relative error = 5.2928200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.029 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.243 y[1] (analytic) = 0.94424337306394699395400968227155 y[1] (numeric) = 0.9442433730639469939540096822715 absolute error = 5e-32 relative error = 5.2952450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.029 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.244 y[1] (analytic) = 0.94380936560909681218948671871461 y[1] (numeric) = 0.94380936560909681218948671871456 absolute error = 5e-32 relative error = 5.2976800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.029 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.245 y[1] (analytic) = 0.94337397702884365934765689488455 y[1] (numeric) = 0.94337397702884365934765689488451 absolute error = 4e-32 relative error = 4.2401000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.03 Order of pole = 1 memory used=377.6MB, alloc=4.6MB, time=23.49 TOP MAIN SOLVE Loop x[1] = 0.246 y[1] (analytic) = 0.94293721169694752365829464147641 y[1] (numeric) = 0.94293721169694752365829464147637 absolute error = 4e-32 relative error = 4.2420640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.03 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.247 y[1] (analytic) = 0.9424990739946598002467462575718 y[1] (numeric) = 0.94249907399465980024674625757176 absolute error = 4e-32 relative error = 4.2440360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.03 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.248 y[1] (analytic) = 0.94205956831062341733992523815266 y[1] (numeric) = 0.94205956831062341733992523815262 absolute error = 4e-32 relative error = 4.2460160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.03 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.249 y[1] (analytic) = 0.94161869904077303128716451302777 y[1] (numeric) = 0.94161869904077303128716451302773 absolute error = 4e-32 relative error = 4.2480040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.031 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.25 y[1] (analytic) = 0.94117647058823529411764705882353 y[1] (numeric) = 0.94117647058823529411764705882349 absolute error = 4e-32 relative error = 4.2500000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.031 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.251 y[1] (analytic) = 0.94073288736322919733847851507195 y[1] (numeric) = 0.94073288736322919733847851507191 absolute error = 4e-32 relative error = 4.2520040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.031 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.252 y[1] (analytic) = 0.94028795378296649565963080533783 y[1] (numeric) = 0.94028795378296649565963080533778 absolute error = 5e-32 relative error = 5.3175200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.031 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.253 y[1] (analytic) = 0.93984167427155221431397666749059 y[1] (numeric) = 0.93984167427155221431397666749055 absolute error = 4e-32 relative error = 4.2560360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.032 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.254 y[1] (analytic) = 0.93939405325988524362245377241864 y[1] (numeric) = 0.93939405325988524362245377241859 absolute error = 5e-32 relative error = 5.3225800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.032 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.255 y[1] (analytic) = 0.93894509518555902443604610220417 y[1] (numeric) = 0.93894509518555902443604610220412 absolute error = 5e-32 relative error = 5.3251250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.032 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.256 y[1] (analytic) = 0.93849480449276232806775181692594 y[1] (numeric) = 0.93849480449276232806775181692589 absolute error = 5e-32 relative error = 5.3276800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.032 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.257 y[1] (analytic) = 0.93804318563218013430902331881555 y[1] (numeric) = 0.9380431856321801343090233188155 absolute error = 5e-32 relative error = 5.3302450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.032 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.258 y[1] (analytic) = 0.93759024306089461110631898320213 y[1] (numeric) = 0.93759024306089461110631898320208 absolute error = 5e-32 relative error = 5.3328200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.033 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.259 y[1] (analytic) = 0.93713598124228619945439943172074 y[1] (numeric) = 0.93713598124228619945439943172069 absolute error = 5e-32 relative error = 5.3354050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.033 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.26 y[1] (analytic) = 0.93668040464593480704383664293743 y[1] (numeric) = 0.93668040464593480704383664293738 absolute error = 5e-32 relative error = 5.3380000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.033 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.261 y[1] (analytic) = 0.93622351774752111418088400096993 y[1] (numeric) = 0.93622351774752111418088400096988 absolute error = 5e-32 relative error = 5.3406050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.033 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.262 y[1] (analytic) = 0.93576532502872799547838194946119 y[1] (numeric) = 0.93576532502872799547838194946114 absolute error = 5e-32 relative error = 5.3432200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.034 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.263 y[1] (analytic) = 0.93530583097714206079674962517619 y[1] (numeric) = 0.93530583097714206079674962517614 absolute error = 5e-32 relative error = 5.3458450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.034 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.264 y[1] (analytic) = 0.9348450400861553188943400741893 y[1] (numeric) = 0.93484504008615531889434007418925 absolute error = 5e-32 relative error = 5.3484800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.034 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.265 y[1] (analytic) = 0.93438295685486696722651778831554 y[1] (numeric) = 0.93438295685486696722651778831549 absolute error = 5e-32 relative error = 5.3511250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.035 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.266 y[1] (analytic) = 0.93391958578798531131275472656702 y[1] (numeric) = 0.93391958578798531131275472656697 absolute error = 5e-32 relative error = 5.3537800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.035 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.267 y[1] (analytic) = 0.93345493139572981707083709437883 y[1] (numeric) = 0.93345493139572981707083709437877 absolute error = 6e-32 relative error = 6.4277340000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.035 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.268 y[1] (analytic) = 0.93298899819373329949693233217394 y[1] (numeric) = 0.93298899819373329949693233217388 absolute error = 6e-32 relative error = 6.4309440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 memory used=381.4MB, alloc=4.6MB, time=23.73 Complex estimate of poles used Radius of convergence = 1.035 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.269 y[1] (analytic) = 0.93252179070294425104978640588384 y[1] (numeric) = 0.93252179070294425104978640588378 absolute error = 6e-32 relative error = 6.4341660000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.036 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.27 y[1] (analytic) = 0.9320533134495293130767079876969 y[1] (numeric) = 0.93205331344952931307670798769684 absolute error = 6e-32 relative error = 6.4374000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.036 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.271 y[1] (analytic) = 0.93158357096477589359825085868716 y[1] (numeric) = 0.9315835709647758935982508586871 absolute error = 6e-32 relative error = 6.4406460000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.036 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.272 y[1] (analytic) = 0.93111256778499493474763124962755 y[1] (numeric) = 0.9311125677849949347476312496275 absolute error = 5e-32 relative error = 5.3699200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.036 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.273 y[1] (analytic) = 0.93064030845142383313991525589351 y[1] (numeric) = 0.93064030845142383313991525589346 absolute error = 5e-32 relative error = 5.3726450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.037 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.274 y[1] (analytic) = 0.93016679751012951642488531043387 y[1] (numeric) = 0.93016679751012951642488531043381 absolute error = 6e-32 relative error = 6.4504560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.037 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.275 y[1] (analytic) = 0.92969203951191167925624636839047 y[1] (numeric) = 0.92969203951191167925624636839041 absolute error = 6e-32 relative error = 6.4537500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.037 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.276 y[1] (analytic) = 0.92921603901220618188846434040529 y[1] (numeric) = 0.92921603901220618188846434040523 absolute error = 6e-32 relative error = 6.4570560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.037 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.277 y[1] (analytic) = 0.92873880057098861459104380025057 y[1] (numeric) = 0.92873880057098861459104380025052 absolute error = 5e-32 relative error = 5.3836450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.038 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.278 y[1] (analytic) = 0.92826032875267803104845147611957 y[1] (numeric) = 0.92826032875267803104845147611952 absolute error = 5e-32 relative error = 5.3864200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.038 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.279 y[1] (analytic) = 0.92778062812604085389217890208296 y[1] (numeric) = 0.92778062812604085389217890208291 absolute error = 5e-32 relative error = 5.3892050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.038 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.28 y[1] (analytic) = 0.92729970326409495548961424332344 y[1] (numeric) = 0.92729970326409495548961424332339 absolute error = 5e-32 relative error = 5.3920000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.038 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.281 y[1] (analytic) = 0.92681755874401391709246210011298 y[1] (numeric) = 0.92681755874401391709246210011293 absolute error = 5e-32 relative error = 5.3948050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.039 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.282 y[1] (analytic) = 0.92633419914703146942541342295308 y[1] (numeric) = 0.92633419914703146942541342295303 absolute error = 5e-32 relative error = 5.3976200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.039 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.283 y[1] (analytic) = 0.92584962905834611777362791399598 y[1] (numeric) = 0.92584962905834611777362791399593 absolute error = 5e-32 relative error = 5.4004450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.039 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.284 y[1] (analytic) = 0.92536385306702595460535082394397 y[1] (numeric) = 0.92536385306702595460535082394393 absolute error = 4e-32 relative error = 4.3226240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.04 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.285 y[1] (analytic) = 0.92487687576591366274364725195958 y[1] (numeric) = 0.92487687576591366274364725195954 absolute error = 4e-32 relative error = 4.3249000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.04 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.286 y[1] (analytic) = 0.92438870175153171207880228804691 y[1] (numeric) = 0.92438870175153171207880228804687 absolute error = 4e-32 relative error = 4.3271840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.04 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.287 y[1] (analytic) = 0.92389933562398775279040696841835 y[1] (numeric) = 0.9238993356239877527904069684183 absolute error = 5e-32 relative error = 5.4118450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.04 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.288 y[1] (analytic) = 0.92340878198688020802553040600437 y[1] (numeric) = 0.92340878198688020802553040600432 absolute error = 5e-32 relative error = 5.4147200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.041 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.289 y[1] (analytic) = 0.9229170454472040689566699676333 y[1] (numeric) = 0.92291704544720406895666996763325 absolute error = 5e-32 relative error = 5.4176050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.041 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.29 y[1] (analytic) = 0.92242413061525689512037634904529 y[1] (numeric) = 0.92242413061525689512037634904524 absolute error = 5e-32 relative error = 5.4205000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.041 Order of pole = 1 TOP MAIN SOLVE Loop memory used=385.2MB, alloc=4.6MB, time=23.98 x[1] = 0.291 y[1] (analytic) = 0.92193004210454502291457119650847 y[1] (numeric) = 0.92193004210454502291457119650842 absolute error = 5e-32 relative error = 5.4234050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.041 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.292 y[1] (analytic) = 0.92143478453168998510961388196789 y[1] (numeric) = 0.92143478453168998510961388196784 absolute error = 5e-32 relative error = 5.4263200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.042 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.293 y[1] (analytic) = 0.92093836251633514420513349462034 y[1] (numeric) = 0.92093836251633514420513349462029 absolute error = 5e-32 relative error = 5.4292450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.042 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.294 y[1] (analytic) = 0.92044078068105254244152439720333 y[1] (numeric) = 0.92044078068105254244152439720328 absolute error = 5e-32 relative error = 5.4321800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.042 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.295 y[1] (analytic) = 0.91994204365124997125181113589844 y[1] (numeric) = 0.91994204365124997125181113589839 absolute error = 5e-32 relative error = 5.4351250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.043 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.296 y[1] (analytic) = 0.91944215605507826291632340826174 y[1] (numeric) = 0.91944215605507826291632340826169 absolute error = 5e-32 relative error = 5.4380800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.043 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.297 y[1] (analytic) = 0.91894112252333880715928649735483 y[1] (numeric) = 0.91894112252333880715928649735478 absolute error = 5e-32 relative error = 5.4410450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.043 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.298 y[1] (analytic) = 0.91843894768939129540302937902506 y[1] (numeric) = 0.91843894768939129540302937902501 absolute error = 5e-32 relative error = 5.4440200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.043 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.299 y[1] (analytic) = 0.91793563618906169537204390302561 y[1] (numeric) = 0.91793563618906169537204390302556 absolute error = 5e-32 relative error = 5.4470050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.044 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.3 y[1] (analytic) = 0.91743119266055045871559633027523 y[1] (numeric) = 0.91743119266055045871559633027518 absolute error = 5e-32 relative error = 5.4500000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.044 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.301 y[1] (analytic) = 0.91692562174434096429399936365362 y[1] (numeric) = 0.91692562174434096429399936365357 absolute error = 5e-32 relative error = 5.4530050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.044 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.302 y[1] (analytic) = 0.91641892808310819975000091641893 y[1] (numeric) = 0.91641892808310819975000091641888 absolute error = 5e-32 relative error = 5.4560200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.045 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.303 y[1] (analytic) = 0.91591111632162768396303749098972 y[1] (numeric) = 0.91591111632162768396303749098968 absolute error = 4e-32 relative error = 4.3672360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.045 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.304 y[1] (analytic) = 0.91540219110668463296033745386373 y[1] (numeric) = 0.91540219110668463296033745386369 absolute error = 4e-32 relative error = 4.3696640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.045 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.305 y[1] (analytic) = 0.91489215708698337183504494407722 y[1] (numeric) = 0.91489215708698337183504494407718 absolute error = 4e-32 relative error = 4.3721000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.045 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.306 y[1] (analytic) = 0.91438101891305699519767088866862 y[1] (numeric) = 0.91438101891305699519767088866859 absolute error = 3e-32 relative error = 3.2809080000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.046 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.307 y[1] (analytic) = 0.91386878123717727866326585630876 y[1] (numeric) = 0.91386878123717727866326585630872 absolute error = 4e-32 relative error = 4.3769960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.046 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.308 y[1] (analytic) = 0.91335544871326484385275248798024 y[1] (numeric) = 0.91335544871326484385275248798021 absolute error = 3e-32 relative error = 3.2845920000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.046 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.309 y[1] (analytic) = 0.91284102599679957936285522067475 y[1] (numeric) = 0.91284102599679957936285522067472 absolute error = 3e-32 relative error = 3.2864430000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.047 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.31 y[1] (analytic) = 0.91232551774473132013502417662622 y[1] (numeric) = 0.91232551774473132013502417662619 absolute error = 3e-32 relative error = 3.2883000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.047 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.311 y[1] (analytic) = 0.91180892861539078762967062726072 y[1] (numeric) = 0.91180892861539078762967062726069 absolute error = 3e-32 relative error = 3.2901630000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.047 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.312 y[1] (analytic) = 0.91129126326840079318791554881605 y[1] (numeric) = 0.91129126326840079318791554881602 absolute error = 3e-32 relative error = 3.2920320000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.048 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.313 y[1] (analytic) = 0.91077252636458770693890264661388 y[1] (numeric) = 0.91077252636458770693890264661385 absolute error = 3e-32 relative error = 3.2939070000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.048 Order of pole = 1 TOP MAIN SOLVE Loop memory used=389.1MB, alloc=4.6MB, time=24.23 x[1] = 0.314 y[1] (analytic) = 0.91025272256589319458654500835612 y[1] (numeric) = 0.91025272256589319458654500835609 absolute error = 3e-32 relative error = 3.2957880000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.048 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.315 y[1] (analytic) = 0.90973185653528622438536241442835 y[1] (numeric) = 0.90973185653528622438536241442832 absolute error = 3e-32 relative error = 3.2976750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.048 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.316 y[1] (analytic) = 0.90920993293667534659082643546064 y[1] (numeric) = 0.90920993293667534659082643546061 absolute error = 3e-32 relative error = 3.2995680000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.049 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.317 y[1] (analytic) = 0.90868695643482124764536492413827 y[1] (numeric) = 0.90868695643482124764536492413824 absolute error = 3e-32 relative error = 3.3014670000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.049 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.318 y[1] (analytic) = 0.90816293169524958133688848848994 y[1] (numeric) = 0.90816293169524958133688848848991 absolute error = 3e-32 relative error = 3.3033720000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.049 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.319 y[1] (analytic) = 0.90763786338416407914239113564557 y[1] (numeric) = 0.90763786338416407914239113564554 absolute error = 3e-32 relative error = 3.3052830000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.05 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.32 y[1] (analytic) = 0.90711175616835994194484760522496 y[1] (numeric) = 0.90711175616835994194484760522493 absolute error = 3e-32 relative error = 3.3072000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.05 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.321 y[1] (analytic) = 0.90658461471513751528728306563401 y[1] (numeric) = 0.90658461471513751528728306563397 absolute error = 4e-32 relative error = 4.4121640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.05 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.322 y[1] (analytic) = 0.90605644369221625030352890863689 y[1] (numeric) = 0.90605644369221625030352890863686 absolute error = 3e-32 relative error = 3.3110520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.051 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.323 y[1] (analytic) = 0.90552724776764895244080341999531 y[1] (numeric) = 0.90552724776764895244080341999528 absolute error = 3e-32 relative error = 3.3129870000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.051 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.324 y[1] (analytic) = 0.90499703160973632006487018722579 y[1] (numeric) = 0.90499703160973632006487018722576 absolute error = 3e-32 relative error = 3.3149280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.051 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.325 y[1] (analytic) = 0.90446579988694177501413227812323 y[1] (numeric) = 0.90446579988694177501413227812321 absolute error = 2e-32 relative error = 2.2112500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.051 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.326 y[1] (analytic) = 0.90393355726780658714461852196016 y[1] (numeric) = 0.90393355726780658714461852196014 absolute error = 2e-32 relative error = 2.2125520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.052 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.327 y[1] (analytic) = 0.90340030842086529488341167319675 y[1] (numeric) = 0.90340030842086529488341167319672 absolute error = 3e-32 relative error = 3.3207870000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.052 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.328 y[1] (analytic) = 0.90286605801456142378365884664278 y[1] (numeric) = 0.90286605801456142378365884664276 absolute error = 2e-32 relative error = 2.2151680000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.052 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.329 y[1] (analytic) = 0.90233081071716350504989438217861 y[1] (numeric) = 0.90233081071716350504989438217858 absolute error = 3e-32 relative error = 3.3247230000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.053 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.33 y[1] (analytic) = 0.9017945711966813959779962124628 y[1] (numeric) = 0.90179457119668139597799621246278 absolute error = 2e-32 relative error = 2.2178000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.053 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.331 y[1] (analytic) = 0.90125734412078290422969084169325 y[1] (numeric) = 0.90125734412078290422969084169323 absolute error = 2e-32 relative error = 2.2191220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.053 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.332 y[1] (analytic) = 0.90071913415671071783712115753217 y[1] (numeric) = 0.90071913415671071783712115753216 absolute error = 1e-32 relative error = 1.1102240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.054 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.333 y[1] (analytic) = 0.90017994597119964280859743862798 y[1] (numeric) = 0.90017994597119964280859743862797 absolute error = 1e-32 relative error = 1.1108890000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.054 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.334 y[1] (analytic) = 0.89963978423039415018226702028508 y[1] (numeric) = 0.89963978423039415018226702028507 absolute error = 1e-32 relative error = 1.1115560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.054 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.335 y[1] (analytic) = 0.89909865359976623435006406077907 y[1] (numeric) = 0.89909865359976623435006406077906 absolute error = 1e-32 relative error = 1.1122250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.055 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.336 y[1] (analytic) = 0.89855655874403358444993961699925 y[1] (numeric) = 0.89855655874403358444993961699924 absolute error = 1e-32 relative error = 1.1128960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.055 Order of pole = 1 TOP MAIN SOLVE Loop memory used=392.9MB, alloc=4.6MB, time=24.48 x[1] = 0.337 y[1] (analytic) = 0.89801350432707807060002568318622 y[1] (numeric) = 0.89801350432707807060002568318621 absolute error = 1e-32 relative error = 1.1135690000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.055 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.338 y[1] (analytic) = 0.89746949501186454672405684930769 y[1] (numeric) = 0.89746949501186454672405684930768 absolute error = 1e-32 relative error = 1.1142440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.056 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.339 y[1] (analytic) = 0.89692453546035997169306166087104 y[1] (numeric) = 0.89692453546035997169306166087103 absolute error = 1e-32 relative error = 1.1149210000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.056 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.34 y[1] (analytic) = 0.89637863033345285048404446038006 y[1] (numeric) = 0.89637863033345285048404446038006 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.056 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.341 y[1] (analytic) = 0.89583178429087299703210929864434 y[1] (numeric) = 0.89583178429087299703210929864433 absolute error = 1e-32 relative error = 1.1162810000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.057 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.342 y[1] (analytic) = 0.89528400199111162042823224383239 y[1] (numeric) = 0.89528400199111162042823224383238 absolute error = 1e-32 relative error = 1.1169640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.057 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.343 y[1] (analytic) = 0.89473528809134173609066889515402 y[1] (numeric) = 0.89473528809134173609066889515402 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.057 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.344 y[1] (analytic) = 0.89418564724733890351379191942314 y[1] (numeric) = 0.89418564724733890351379191942314 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.058 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.345 y[1] (analytic) = 0.89363508411340229217399075087688 y[1] (numeric) = 0.89363508411340229217399075087688 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.058 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.346 y[1] (analytic) = 0.89308360334227607714813399111918 y[1] (numeric) = 0.89308360334227607714813399111918 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.058 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.347 y[1] (analytic) = 0.89253120958507116597599626564942 y[1] (numeric) = 0.89253120958507116597599626564942 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.058 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.348 y[1] (analytic) = 0.89197790749118725827398706988825 y[1] (numeric) = 0.89197790749118725827398706988825 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.059 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.349 y[1] (analytic) = 0.89142370170823523958349118961384 y[1] (numeric) = 0.89142370170823523958349118961384 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.059 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.35 y[1] (analytic) = 0.89086859688195991091314031180401 y[1] (numeric) = 0.890868596881959910913140311804 absolute error = 1e-32 relative error = 1.1225000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.059 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.351 y[1] (analytic) = 0.89031259765616305541038514032662 y[1] (numeric) = 0.89031259765616305541038514032661 absolute error = 1e-32 relative error = 1.1232010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.06 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.352 y[1] (analytic) = 0.88975570867262684357382836968282 y[1] (numeric) = 0.88975570867262684357382836968281 absolute error = 1e-32 relative error = 1.1239040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.06 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.353 y[1] (analytic) = 0.8891979345710375783939129066191 y[1] (numeric) = 0.88919793457103757839391290661909 absolute error = 1e-32 relative error = 1.1246090000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.06 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.354 y[1] (analytic) = 0.88863927998890978178573840592331 y[1] (numeric) = 0.8886392799889097817857384059233 absolute error = 1e-32 relative error = 1.1253160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.061 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.355 y[1] (analytic) = 0.88807974956151062365400412957084 y[1] (numeric) = 0.88807974956151062365400412957082 absolute error = 2e-32 relative error = 2.2520500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.061 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.356 y[1] (analytic) = 0.88751934792178469490634895840729 y[1] (numeric) = 0.88751934792178469490634895840728 absolute error = 1e-32 relative error = 1.1267360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.061 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.357 y[1] (analytic) = 0.88695807970027912570768167784086 y[1] (numeric) = 0.88695807970027912570768167784085 absolute error = 1e-32 relative error = 1.1274490000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.062 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.358 y[1] (analytic) = 0.88639594952506905024446800287901 y[1] (numeric) = 0.886395949525069050244468002879 absolute error = 1e-32 relative error = 1.1281640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.062 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.359 y[1] (analytic) = 0.88583296202168341924436676673626 y[1] (numeric) = 0.88583296202168341924436676673625 absolute error = 1e-32 relative error = 1.1288810000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.062 Order of pole = 1 TOP MAIN SOLVE Loop memory used=396.7MB, alloc=4.6MB, time=24.73 x[1] = 0.36 y[1] (analytic) = 0.88526912181303116147308781869688 y[1] (numeric) = 0.88526912181303116147308781869687 absolute error = 1e-32 relative error = 1.1296000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.063 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.361 y[1] (analytic) = 0.88470443351932769540687999249771 y[1] (numeric) = 0.88470443351932769540687999249769 absolute error = 2e-32 relative error = 2.2606420000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.063 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.362 y[1] (analytic) = 0.88413890175802179225565053172114 y[1] (numeric) = 0.88413890175802179225565053172112 absolute error = 2e-32 relative error = 2.2620880000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.064 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.363 y[1] (analytic) = 0.88357253114372279148836909298629 y[1] (numeric) = 0.88357253114372279148836909298627 absolute error = 2e-32 relative error = 2.2635380000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.064 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.364 y[1] (analytic) = 0.88300532628812816998912137438013 y[1] (numeric) = 0.88300532628812816998912137438011 absolute error = 2e-32 relative error = 2.2649920000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.064 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.365 y[1] (analytic) = 0.88243729179995146594895100266937 y[1] (numeric) = 0.88243729179995146594895100266935 absolute error = 2e-32 relative error = 2.2664500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.065 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.366 y[1] (analytic) = 0.88186843228485055857546500922434 y[1] (numeric) = 0.88186843228485055857546500922432 absolute error = 2e-32 relative error = 2.2679120000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.065 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.367 y[1] (analytic) = 0.8812987523453563046790794658272 y[1] (numeric) = 0.88129875234535630467907946582718 absolute error = 2e-32 relative error = 2.2693780000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.065 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.368 y[1] (analytic) = 0.88072825658080153317174905585931 y[1] (numeric) = 0.88072825658080153317174905585929 absolute error = 2e-32 relative error = 2.2708480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.066 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.369 y[1] (analytic) = 0.88015694958725039849105892562762 y[1] (numeric) = 0.8801569495872503984910589256276 absolute error = 2e-32 relative error = 2.2723220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.066 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.37 y[1] (analytic) = 0.87958483595742809393966048025332 y[1] (numeric) = 0.8795848359574280939396604802533 absolute error = 2e-32 relative error = 2.2738000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.066 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.371 y[1] (analytic) = 0.87901192028065092590720622762365 y[1] (numeric) = 0.87901192028065092590720622762363 absolute error = 2e-32 relative error = 2.2752820000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.067 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.372 y[1] (analytic) = 0.87843820714275674991918368494287 y[1] (numeric) = 0.87843820714275674991918368494284 absolute error = 3e-32 relative error = 3.4151520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.067 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.373 y[1] (analytic) = 0.87786370112603576943436608145346 y[1] (numeric) = 0.87786370112603576943436608145343 absolute error = 3e-32 relative error = 3.4173870000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.067 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.374 y[1] (analytic) = 0.87728840680916169828998943744758 y[1] (numeric) = 0.87728840680916169828998943744755 absolute error = 3e-32 relative error = 3.4196280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.068 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.375 y[1] (analytic) = 0.87671232876712328767123287671233 y[1] (numeric) = 0.8767123287671232876712328767123 absolute error = 3e-32 relative error = 3.4218750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.068 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.376 y[1] (analytic) = 0.87613547157115621845912302343838 y[1] (numeric) = 0.87613547157115621845912302343835 absolute error = 3e-32 relative error = 3.4241280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.068 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.377 y[1] (analytic) = 0.87555783978867535978860531516142 y[1] (numeric) = 0.8755578397886753597886053151614 absolute error = 2e-32 relative error = 2.2842580000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.069 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.378 y[1] (analytic) = 0.87497943798320739462622628368233 y[1] (numeric) = 0.87497943798320739462622628368231 absolute error = 2e-32 relative error = 2.2857680000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.069 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.379 y[1] (analytic) = 0.87440027071432381315465255268043 y[1] (numeric) = 0.87440027071432381315465255268041 absolute error = 2e-32 relative error = 2.2872820000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.069 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.38 y[1] (analytic) = 0.87382034253757427472911569381335 y[1] (numeric) = 0.87382034253757427472911569381333 absolute error = 2e-32 relative error = 2.2888000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.07 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.381 y[1] (analytic) = 0.87323965800442033914881837575677 y[1] (numeric) = 0.87323965800442033914881837575675 absolute error = 2e-32 relative error = 2.2903220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.07 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.382 y[1] (analytic) = 0.87265822166216956796436761949309 y[1] (numeric) = 0.87265822166216956796436761949307 absolute error = 2e-32 relative error = 2.2918480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.07 Order of pole = 1 TOP MAIN SOLVE Loop memory used=400.5MB, alloc=4.6MB, time=24.96 x[1] = 0.383 y[1] (analytic) = 0.8720760380539099965204166081649 y[1] (numeric) = 0.87207603805390999652041660816488 absolute error = 2e-32 relative error = 2.2933780000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.071 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.384 y[1] (analytic) = 0.87149311171844497741089854425791 y[1] (numeric) = 0.87149311171844497741089854425789 absolute error = 2e-32 relative error = 2.2949120000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.071 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.385 y[1] (analytic) = 0.87090944719022839600252563739685 y[1] (numeric) = 0.87090944719022839600252563739684 absolute error = 1e-32 relative error = 1.1482250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.072 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.386 y[1] (analytic) = 0.87032504899930025866060456259204 y[1] (numeric) = 0.87032504899930025866060456259203 absolute error = 1e-32 relative error = 1.1489960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.072 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.387 y[1] (analytic) = 0.86973992167122265428968775467072 y[1] (numeric) = 0.86973992167122265428968775467071 absolute error = 1e-32 relative error = 1.1497690000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.072 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.388 y[1] (analytic) = 0.86915406972701608978013878652185 y[1] (numeric) = 0.86915406972701608978013878652184 absolute error = 1e-32 relative error = 1.1505440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.073 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.389 y[1] (analytic) = 0.86856749768309619993034088668582 y[1] (numeric) = 0.8685674976830961999303408866858 absolute error = 2e-32 relative error = 2.3026420000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.073 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.39 y[1] (analytic) = 0.86798021005121083239302143911119 y[1] (numeric) = 0.86798021005121083239302143911117 absolute error = 2e-32 relative error = 2.3042000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.073 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.391 y[1] (analytic) = 0.86739221133837750817300311133586 y[1] (numeric) = 0.86739221133837750817300311133584 absolute error = 2e-32 relative error = 2.3057620000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.074 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.392 y[1] (analytic) = 0.86680350604682125818262509708199 y[1] (numeric) = 0.86680350604682125818262509708197 absolute error = 2e-32 relative error = 2.3073280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.074 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.393 y[1] (analytic) = 0.86621409867391283634010683884693 y[1] (numeric) = 0.86621409867391283634010683884691 absolute error = 2e-32 relative error = 2.3088980000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.074 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.394 y[1] (analytic) = 0.86562399371210730967525250251897 y[1] (numeric) = 0.86562399371210730967525250251895 absolute error = 2e-32 relative error = 2.3104720000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.075 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.395 y[1] (analytic) = 0.86503319564888302588611837979282 y[1] (numeric) = 0.86503319564888302588611837979281 absolute error = 1e-32 relative error = 1.1560250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.075 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.396 y[1] (analytic) = 0.86444170896668095876958824912518 y[1] (numeric) = 0.86444170896668095876958824912517 absolute error = 1e-32 relative error = 1.1568160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.076 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.397 y[1] (analytic) = 0.86384953814284443192822446957479 y[1] (numeric) = 0.86384953814284443192822446957477 absolute error = 2e-32 relative error = 2.3152180000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.076 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.398 y[1] (analytic) = 0.86325668764955922113528613506169 y[1] (numeric) = 0.86325668764955922113528613506167 absolute error = 2e-32 relative error = 2.3168080000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.076 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.399 y[1] (analytic) = 0.8626631619537940357194308838588 y[1] (numeric) = 0.86266316195379403571943088385878 absolute error = 2e-32 relative error = 2.3184020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.077 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.4 y[1] (analytic) = 0.86206896551724137931034482758621 y[1] (numeric) = 0.86206896551724137931034482758619 absolute error = 2e-32 relative error = 2.3200000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.077 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.401 y[1] (analytic) = 0.86147410279625879026637640732563 y[1] (numeric) = 0.86147410279625879026637640732561 absolute error = 2e-32 relative error = 2.3216020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.077 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.402 y[1] (analytic) = 0.86087857824181046208518565707418 y[1] (numeric) = 0.86087857824181046208518565707416 absolute error = 2e-32 relative error = 2.3232080000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.078 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.403 y[1] (analytic) = 0.86028239629940924407846119567209 y[1] (numeric) = 0.86028239629940924407846119567207 absolute error = 2e-32 relative error = 2.3248180000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.078 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.404 y[1] (analytic) = 0.85968556140905902257190410035625 y[1] (numeric) = 0.85968556140905902257190410035623 absolute error = 2e-32 relative error = 2.3264320000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.079 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.405 y[1] (analytic) = 0.85908807800519748287193144477138 y[1] (numeric) = 0.85908807800519748287193144477135 absolute error = 3e-32 relative error = 3.4920750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.079 Order of pole = 1 memory used=404.3MB, alloc=4.6MB, time=25.19 TOP MAIN SOLVE Loop x[1] = 0.406 y[1] (analytic) = 0.85848995051663925222091350198655 y[1] (numeric) = 0.85848995051663925222091350198652 absolute error = 3e-32 relative error = 3.4945080000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.079 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.407 y[1] (analytic) = 0.85789118336651942394322819304954 y[1] (numeric) = 0.85789118336651942394322819304951 absolute error = 3e-32 relative error = 3.4969470000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.08 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.408 y[1] (analytic) = 0.85729178097223746296499506199934 y[1] (numeric) = 0.85729178097223746296499506199931 absolute error = 3e-32 relative error = 3.4993920000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.08 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.409 y[1] (analytic) = 0.85669174774540149287103962113664 y[1] (numeric) = 0.85669174774540149287103962113661 absolute error = 3e-32 relative error = 3.5018430000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.08 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.41 y[1] (analytic) = 0.85609108809177296464343806180978 y[1] (numeric) = 0.85609108809177296464343806180975 absolute error = 3e-32 relative error = 3.5043000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.081 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.411 y[1] (analytic) = 0.85548980641121170720690277614997 y[1] (numeric) = 0.85548980641121170720690277614994 absolute error = 3e-32 relative error = 3.5067630000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.081 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.412 y[1] (analytic) = 0.85488790709762135988729157832825 y[1] (numeric) = 0.85488790709762135988729157832822 absolute error = 3e-32 relative error = 3.5092320000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.082 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.413 y[1] (analytic) = 0.85428539453889518687065862841063 y[1] (numeric) = 0.8542853945388951868706586284106 absolute error = 3e-32 relative error = 3.5117070000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.082 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.414 y[1] (analytic) = 0.85368227311686227373151351037565 y[1] (numeric) = 0.85368227311686227373151351037563 absolute error = 2e-32 relative error = 2.3427920000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.082 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.415 y[1] (analytic) = 0.85307854720723410608031734521956 y[1] (numeric) = 0.85307854720723410608031734521954 absolute error = 2e-32 relative error = 2.3444500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.083 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.416 y[1] (analytic) = 0.85247422117955153036172186153091 y[1] (numeric) = 0.85247422117955153036172186153089 absolute error = 2e-32 relative error = 2.3461120000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.083 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.417 y[1] (analytic) = 0.85186929939713209681664961508286 y[1] (numeric) = 0.85186929939713209681664961508284 absolute error = 2e-32 relative error = 2.3477780000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.083 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.418 y[1] (analytic) = 0.85126378621701778460302164593556 y[1] (numeric) = 0.85126378621701778460302164593554 absolute error = 2e-32 relative error = 2.3494480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.084 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.419 y[1] (analytic) = 0.85065768598992310905176337085017 y[1] (numeric) = 0.85065768598992310905176337085016 absolute error = 1e-32 relative error = 1.1755610000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.084 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.42 y[1] (analytic) = 0.85005100306018361101666099965998 y[1] (numeric) = 0.85005100306018361101666099965997 absolute error = 1e-32 relative error = 1.1764000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.085 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.421 y[1] (analytic) = 0.84944374176570472825869979044223 y[1] (numeric) = 0.84944374176570472825869979044222 absolute error = 1e-32 relative error = 1.1772410000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.085 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.422 y[1] (analytic) = 0.84883590643791104878769255842538 y[1] (numeric) = 0.84883590643791104878769255842537 absolute error = 1e-32 relative error = 1.1780840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.085 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.423 y[1] (analytic) = 0.84822750140169594606630255087456 y[1] (numeric) = 0.84822750140169594606630255087456 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.086 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.424 y[1] (analytic) = 0.84761853097537159596397960290767 y[1] (numeric) = 0.84761853097537159596397960290767 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.086 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.425 y[1] (analytic) = 0.84700899947061937533086289041821 y[1] (numeric) = 0.84700899947061937533086289041821 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.087 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.426 y[1] (analytic) = 0.84639891119244064204435807413777 y[1] (numeric) = 0.84639891119244064204435807413777 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.087 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.427 y[1] (analytic) = 0.84578827043910789636387164655523 y[1] (numeric) = 0.84578827043910789636387164655523 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.087 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.428 y[1] (analytic) = 0.84517708150211632341208129927382 y[1] (numeric) = 0.84517708150211632341208129927382 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.088 Order of pole = 1 memory used=408.1MB, alloc=4.6MB, time=25.44 TOP MAIN SOLVE Loop x[1] = 0.429 y[1] (analytic) = 0.84456534866613571658413855601284 y[1] (numeric) = 0.84456534866613571658413855601284 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.088 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.43 y[1] (analytic) = 0.84395307620896278166933918474133 y[1] (numeric) = 0.84395307620896278166933918474133 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.089 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.431 y[1] (analytic) = 0.84334026840147382145305841565037 y[1] (numeric) = 0.84334026840147382145305841565037 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.089 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.432 y[1] (analytic) = 0.84272692950757780055013213958255 y[1] (numeric) = 0.84272692950757780055013213958255 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.089 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.433 y[1] (analytic) = 0.84211306378416979020437241944978 y[1] (numeric) = 0.84211306378416979020437241944978 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.09 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.434 y[1] (analytic) = 0.84149867548108479277253617602806 y[1] (numeric) = 0.84149867548108479277253617602806 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.09 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.435 y[1] (analytic) = 0.84088376884105194559482015598394 y[1] (numeric) = 0.84088376884105194559482015598394 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.091 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.436 y[1] (analytic) = 0.8402683480996491039378335865342 y[1] (numeric) = 0.8402683480996491039378335865342 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.091 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.437 y[1] (analytic) = 0.83965241748525780268000258612945 y[1] (numeric) = 0.83965241748525780268000258612945 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.091 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.438 y[1] (analytic) = 0.83903598121901859639348773832817 y[1] (numeric) = 0.83903598121901859639348773832817 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.092 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.439 y[1] (analytic) = 0.83841904351478677746094853700069 y[1] (numeric) = 0.83841904351478677746094853700069 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.092 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.44 y[1] (analytic) = 0.83780160857908847184986595174263 y[1] (numeric) = 0.83780160857908847184986595174263 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.093 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.441 y[1] (analytic) = 0.83718368061107711215163740570172 y[1] (numeric) = 0.83718368061107711215163740570173 absolute error = 1e-32 relative error = 1.1944810000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.093 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.442 y[1] (analytic) = 0.83656526380249028747728725308776 y[1] (numeric) = 0.83656526380249028747728725308777 absolute error = 1e-32 relative error = 1.1953640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.093 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.443 y[1] (analytic) = 0.83594636233760696978639062603187 y[1] (numeric) = 0.83594636233760696978639062603188 absolute error = 1e-32 relative error = 1.1962490000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.094 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.444 y[1] (analytic) = 0.8353269803932051162106895123027 y[1] (numeric) = 0.8353269803932051162106895123027 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.094 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.445 y[1] (analytic) = 0.83470712213851964691888733540619 y[1] (numeric) = 0.83470712213851964691888733540619 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.095 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.446 y[1] (analytic) = 0.83408679173520079805424233224012 y[1] (numeric) = 0.83408679173520079805424233224012 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.095 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.447 y[1] (analytic) = 0.83346599333727284926184084300084 y[1] (numeric) = 0.83346599333727284926184084300084 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.095 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.448 y[1] (analytic) = 0.83284473109109322530781941261127 y[1] (numeric) = 0.83284473109109322530781941261126 absolute error = 1e-32 relative error = 1.2007040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.096 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.449 y[1] (analytic) = 0.83222300913531197127831950872211 y[1] (numeric) = 0.83222300913531197127831950872211 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.096 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.45 y[1] (analytic) = 0.83160083160083160083160083160083 y[1] (numeric) = 0.83160083160083160083160083160083 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.097 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.451 y[1] (analytic) = 0.83097820261076731696250875643281 y[1] (numeric) = 0.83097820261076731696250875643281 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.097 Order of pole = 1 TOP MAIN SOLVE Loop memory used=412.0MB, alloc=4.6MB, time=25.69 x[1] = 0.452 y[1] (analytic) = 0.83035512628040760472438852648501 y[1] (numeric) = 0.83035512628040760472438852648501 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.097 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.453 y[1] (analytic) = 0.82973160671717519533956351139097 y[1] (numeric) = 0.82973160671717519533956351139097 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.098 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.454 y[1] (analytic) = 0.8291076480205884011156472511765 y[1] (numeric) = 0.8291076480205884011156472511765 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.098 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.455 y[1] (analytic) = 0.82848325428222282057123920382759 y[1] (numeric) = 0.82848325428222282057123920382759 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.099 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.456 y[1] (analytic) = 0.8278584295856734131609621701812 y[1] (numeric) = 0.8278584295856734131609621701812 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.099 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.457 y[1] (analytic) = 0.82723317800651694297633534047677 y[1] (numeric) = 0.82723317800651694297633534047677 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.099 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.458 y[1] (analytic) = 0.82660750361227479078564083573325 y[1] (numeric) = 0.82660750361227479078564083573325 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.459 y[1] (analytic) = 0.82598141046237613376273353591904 y[1] (numeric) = 0.82598141046237613376273353591904 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.46 y[1] (analytic) = 0.82535490260812149224166391548366 y[1] (numeric) = 0.82535490260812149224166391548366 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.101 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.461 y[1] (analytic) = 0.82472798409264664282103155326794 y[1] (numeric) = 0.82472798409264664282103155326795 absolute error = 1e-32 relative error = 1.2125210000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.101 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.462 y[1] (analytic) = 0.82410065895088689712916294447869 y[1] (numeric) = 0.8241006589508868971291629444787 absolute error = 1e-32 relative error = 1.2134440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.102 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.463 y[1] (analytic) = 0.82347293120954174554851120211402 y[1] (numeric) = 0.82347293120954174554851120211403 absolute error = 1e-32 relative error = 1.2143690000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.102 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.464 y[1] (analytic) = 0.82284480488703986518510716730739 y[1] (numeric) = 0.8228448048870398651851071673074 absolute error = 1e-32 relative error = 1.2152960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.102 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.465 y[1] (analytic) = 0.82221628399350449135645131451828 y[1] (numeric) = 0.8222162839935044913564513145183 absolute error = 2e-32 relative error = 2.4324500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.103 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.466 y[1] (analytic) = 0.82158737253071915185892358908801 y[1] (numeric) = 0.82158737253071915185892358908802 absolute error = 1e-32 relative error = 1.2171560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.103 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.467 y[1] (analytic) = 0.82095807449209376326360389101289 y[1] (numeric) = 0.8209580744920937632636038910129 absolute error = 1e-32 relative error = 1.2180890000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.104 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.468 y[1] (analytic) = 0.82032839386263108847733924844794 y[1] (numeric) = 0.82032839386263108847733924844795 absolute error = 1e-32 relative error = 1.2190240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.104 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.469 y[1] (analytic) = 0.81969833461889355479396472510187 y[1] (numeric) = 0.81969833461889355479396472510188 absolute error = 1e-32 relative error = 1.2199610000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.105 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.47 y[1] (analytic) = 0.81906790072897043164878368416742 y[1] (numeric) = 0.81906790072897043164878368416743 absolute error = 1e-32 relative error = 1.2209000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.105 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.471 y[1] (analytic) = 0.81843709615244536727773908389062 y[1] (numeric) = 0.81843709615244536727773908389063 absolute error = 1e-32 relative error = 1.2218410000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.105 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.472 y[1] (analytic) = 0.81780592484036428347116089186643 y[1] (numeric) = 0.81780592484036428347116089186644 absolute error = 1e-32 relative error = 1.2227840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.106 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.473 y[1] (analytic) = 0.81717439073520362760055535171594 y[1] (numeric) = 0.81717439073520362760055535171595 absolute error = 1e-32 relative error = 1.2237290000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.106 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.474 y[1] (analytic) = 0.81654249777083898108560958163629 y[1] (numeric) = 0.81654249777083898108560958163629 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.107 Order of pole = 1 TOP MAIN SOLVE Loop memory used=415.8MB, alloc=4.6MB, time=26.14 x[1] = 0.475 y[1] (analytic) = 0.81591024987251402345741968383478 y[1] (numeric) = 0.81591024987251402345741968383478 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.107 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.476 y[1] (analytic) = 0.81527765095680985116291204132479 y[1] (numeric) = 0.8152776509568098511629120413248 absolute error = 1e-32 relative error = 1.2265760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.108 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.477 y[1] (analytic) = 0.81464470493161465024451560818522 y[1] (numeric) = 0.81464470493161465024451560818523 absolute error = 1e-32 relative error = 1.2275290000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.108 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.478 y[1] (analytic) = 0.81401141569609372201835758544678 y[1] (numeric) = 0.81401141569609372201835758544678 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.108 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.479 y[1] (analytic) = 0.81337778714065986086359573171872 y[1] (numeric) = 0.81337778714065986086359573171873 absolute error = 1e-32 relative error = 1.2294410000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.109 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.48 y[1] (analytic) = 0.81274382314694408322496749024707 y[1] (numeric) = 0.81274382314694408322496749024708 absolute error = 1e-32 relative error = 1.2304000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.109 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.481 y[1] (analytic) = 0.81210952758776670692022891743364 y[1] (numeric) = 0.81210952758776670692022891743364 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.11 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.482 y[1] (analytic) = 0.81147490432710877983387485758615 y[1] (numeric) = 0.81147490432710877983387485758616 absolute error = 1e-32 relative error = 1.2323240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.11 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.483 y[1] (analytic) = 0.8108399572200838570683757010725 y[1] (numeric) = 0.8108399572200838570683757010725 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.111 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.484 y[1] (analytic) = 0.81020469011291012561413515510559 y[1] (numeric) = 0.81020469011291012561413515510559 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.111 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.485 y[1] (analytic) = 0.80956910684288287558946750591997 y[1] (numeric) = 0.80956910684288287558946750591998 absolute error = 1e-32 relative error = 1.2352250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.111 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.486 y[1] (analytic) = 0.80893321123834731709211160689729 y[1] (numeric) = 0.80893321123834731709211160689729 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.112 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.487 y[1] (analytic) = 0.80829700711867174169414202910031 y[1] (numeric) = 0.80829700711867174169414202910031 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.112 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.488 y[1] (analytic) = 0.8076604982942210276026051897033 y[1] (numeric) = 0.8076604982942210276026051897033 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.113 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.489 y[1] (analytic) = 0.80702368856633048749879955226326 y[1] (numeric) = 0.80702368856633048749879955226326 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.113 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.49 y[1] (analytic) = 0.80638658172728005805983388436416 y[1] (numeric) = 0.80638658172728005805983388436417 absolute error = 1e-32 relative error = 1.2401000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.114 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.491 y[1] (analytic) = 0.80574918156026883015693576809249 y[1] (numeric) = 0.8057491815602688301569357680925 absolute error = 1e-32 relative error = 1.2410810000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.114 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.492 y[1] (analytic) = 0.80511149183938991871594378389519 y[1] (numeric) = 0.8051114918393899187159437838952 absolute error = 1e-32 relative error = 1.2420640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.114 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.493 y[1] (analytic) = 0.80447351632960567121650071718814 y[1] (numeric) = 0.80447351632960567121650071718815 absolute error = 1e-32 relative error = 1.2430490000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.115 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.494 y[1] (analytic) = 0.80383525878672321379767145002235 y[1] (numeric) = 0.80383525878672321379767145002236 absolute error = 1e-32 relative error = 1.2440360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.115 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.495 y[1] (analytic) = 0.80319672295737033392903756952672 y[1] (numeric) = 0.80319672295737033392903756952673 absolute error = 1e-32 relative error = 1.2450250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.116 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.496 y[1] (analytic) = 0.80255791257897169859777081514202 y[1] (numeric) = 0.80255791257897169859777081514203 absolute error = 1e-32 relative error = 1.2460160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.116 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.497 y[1] (analytic) = 0.80191883137972540695375895442615 y[1] (numeric) = 0.80191883137972540695375895442616 absolute error = 1e-32 relative error = 1.2470090000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.117 Order of pole = 1 TOP MAIN SOLVE Loop memory used=419.6MB, alloc=4.6MB, time=26.70 x[1] = 0.498 y[1] (analytic) = 0.80127948307857987634655017131355 y[1] (numeric) = 0.80127948307857987634655017131356 absolute error = 1e-32 relative error = 1.2480040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.117 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.499 y[1] (analytic) = 0.80063987138521106067969521241376 y[1] (numeric) = 0.80063987138521106067969521241377 absolute error = 1e-32 relative error = 1.2490010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.118 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.5 y[1] (analytic) = 0.8 y[1] (numeric) = 0.80000000000000000000000000000001 absolute error = 1e-32 relative error = 1.2500000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.118 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.501 y[1] (analytic) = 0.79935987261401070023125481114723 y[1] (numeric) = 0.79935987261401070023125481114724 absolute error = 1e-32 relative error = 1.2510010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.118 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.502 y[1] (analytic) = 0.7987194929089683419541790601308 y[1] (numeric) = 0.79871949290896834195417906013081 absolute error = 1e-32 relative error = 1.2520040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.119 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.503 y[1] (analytic) = 0.79807886455723781712661281762541 y[1] (numeric) = 0.79807886455723781712661281762542 absolute error = 1e-32 relative error = 1.2530090000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.119 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.504 y[1] (analytic) = 0.79743799122180259263039706032459 y[1] (numeric) = 0.7974379912218025926303970603246 absolute error = 1e-32 relative error = 1.2540160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.12 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.505 y[1] (analytic) = 0.79679687655624389952391386625764 y[1] (numeric) = 0.79679687655624389952391386625766 absolute error = 2e-32 relative error = 2.5100500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.12 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.506 y[1] (analytic) = 0.79615552420472024687190494539965 y[1] (numeric) = 0.79615552420472024687190494539967 absolute error = 2e-32 relative error = 2.5120720000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.121 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.507 y[1] (analytic) = 0.79551393780194725901695160650062 y[1] (numeric) = 0.79551393780194725901695160650064 absolute error = 2e-32 relative error = 2.5140980000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.121 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.508 y[1] (analytic) = 0.7948721209731778351498810871307 y[1] (numeric) = 0.79487212097317783514988108713072 absolute error = 2e-32 relative error = 2.5161280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.122 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.509 y[1] (analytic) = 0.79423007733418263002936268595904 y[1] (numeric) = 0.79423007733418263002936268595906 absolute error = 2e-32 relative error = 2.5181620000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.122 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.51 y[1] (analytic) = 0.79358781049123085469407189905563 y[1] (numeric) = 0.79358781049123085469407189905565 absolute error = 2e-32 relative error = 2.5202000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.123 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.511 y[1] (analytic) = 0.79294532404107139600403133402742 y[1] (numeric) = 0.79294532404107139600403133402744 absolute error = 2e-32 relative error = 2.5222420000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.123 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.512 y[1] (analytic) = 0.79230262157091425384108310937579 y[1] (numeric) = 0.79230262157091425384108310937581 absolute error = 2e-32 relative error = 2.5242880000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.123 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.513 y[1] (analytic) = 0.7916597066584122947919082878063 y[1] (numeric) = 0.79165970665841229479190828780632 absolute error = 2e-32 relative error = 2.5263380000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.124 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.514 y[1] (analytic) = 0.79101658287164332113058418156678 y[1] (numeric) = 0.7910165828716433211305841815668 absolute error = 2e-32 relative error = 2.5283920000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.124 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.515 y[1] (analytic) = 0.7903732537690924539113596395898 y[1] (numeric) = 0.79037325376909245391135963958981 absolute error = 1e-32 relative error = 1.2652250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.125 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.516 y[1] (analytic) = 0.78972972289963482897613120885508 y[1] (numeric) = 0.7897297228996348289761312088551 absolute error = 2e-32 relative error = 2.5325120000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.125 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.517 y[1] (analytic) = 0.7890859938025186046750188788824 y[1] (numeric) = 0.78908599380251860467501887888242 absolute error = 2e-32 relative error = 2.5345780000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.126 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.518 y[1] (analytic) = 0.78844207000734828009246848597046 y[1] (numeric) = 0.78844207000734828009246848597048 absolute error = 2e-32 relative error = 2.5366480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.126 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.519 y[1] (analytic) = 0.78779795503406832256544828460934 y[1] (numeric) = 0.78779795503406832256544828460936 absolute error = 2e-32 relative error = 2.5387220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.127 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.52 y[1] (analytic) = 0.78715365239294710327455919395466 y[1] (numeric) = 0.78715365239294710327455919395468 absolute error = 2e-32 relative error = 2.5408000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.127 Order of pole = 1 TOP MAIN SOLVE Loop memory used=423.4MB, alloc=4.6MB, time=27.25 x[1] = 0.521 y[1] (analytic) = 0.78650916558456113968324129865247 y[1] (numeric) = 0.78650916558456113968324129865249 absolute error = 2e-32 relative error = 2.5428820000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.128 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.522 y[1] (analytic) = 0.78586449809977964359473282178794 y[1] (numeric) = 0.78586449809977964359473282178795 absolute error = 1e-32 relative error = 1.2724840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.128 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.523 y[1] (analytic) = 0.78521965341974937359102148439494 y[1] (numeric) = 0.78521965341974937359102148439495 absolute error = 1e-32 relative error = 1.2735290000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.129 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.524 y[1] (analytic) = 0.784574635015879790612721406962 y[1] (numeric) = 0.78457463501587979061272140696201 absolute error = 1e-32 relative error = 1.2745760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.129 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.525 y[1] (analytic) = 0.78392944634982851543361097501225 y[1] (numeric) = 0.78392944634982851543361097501226 absolute error = 1e-32 relative error = 1.2756250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.129 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.526 y[1] (analytic) = 0.78328409087348708677847785969189 y[1] (numeric) = 0.7832840908734870867784778596919 absolute error = 1e-32 relative error = 1.2766760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.13 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.527 y[1] (analytic) = 0.78263857202896701882793612730086 y[1] (numeric) = 0.78263857202896701882793612730087 absolute error = 1e-32 relative error = 1.2777290000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.13 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.528 y[1] (analytic) = 0.78199289324858615684900655622842 y[1] (numeric) = 0.78199289324858615684900655622843 absolute error = 1e-32 relative error = 1.2787840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.131 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.529 y[1] (analytic) = 0.78134705795485532968548436876143 y[1] (numeric) = 0.78134705795485532968548436876145 absolute error = 2e-32 relative error = 2.5596820000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.131 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.53 y[1] (analytic) = 0.78070106956046529783745803731751 y[1] (numeric) = 0.78070106956046529783745803731753 absolute error = 2e-32 relative error = 2.5618000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.132 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.531 y[1] (analytic) = 0.78005493146827399585478809417759 y[1] (numeric) = 0.78005493146827399585478809417761 absolute error = 2e-32 relative error = 2.5639220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.132 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.532 y[1] (analytic) = 0.77940864707129406776490541096659 y[1] (numeric) = 0.77940864707129406776490541096661 absolute error = 2e-32 relative error = 2.5660480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.133 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.533 y[1] (analytic) = 0.77876221975268069425094366511979 y[1] (numeric) = 0.7787622197526806942509436651198 absolute error = 1e-32 relative error = 1.2840890000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.133 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.534 y[1] (analytic) = 0.77811565288571971029198011758884 y[1] (numeric) = 0.77811565288571971029198011758885 absolute error = 1e-32 relative error = 1.2851560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.134 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.535 y[1] (analytic) = 0.77746894983381601197302182744077 y[1] (numeric) = 0.77746894983381601197302182744078 absolute error = 1e-32 relative error = 1.2862250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.134 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.536 y[1] (analytic) = 0.77682211395048225116834045938153 y[1] (numeric) = 0.77682211395048225116834045938154 absolute error = 1e-32 relative error = 1.2872960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.135 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.537 y[1] (analytic) = 0.7761751485793278167978273305241 y[1] (numeric) = 0.77617514857932781679782733052411 absolute error = 1e-32 relative error = 1.2883690000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.135 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.538 y[1] (analytic) = 0.77552805705404810135221072027944 y[1] (numeric) = 0.77552805705404810135221072027945 absolute error = 1e-32 relative error = 1.2894440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.136 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.539 y[1] (analytic) = 0.77488084269841405137924915596104 y[1] (numeric) = 0.77488084269841405137924915596105 absolute error = 1e-32 relative error = 1.2905210000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.136 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.54 y[1] (analytic) = 0.77423350882626200061938680706101 y[1] (numeric) = 0.77423350882626200061938680706102 absolute error = 1e-32 relative error = 1.2916000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.136 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.541 y[1] (analytic) = 0.77358605874148378447582969038765 y[1] (numeric) = 0.77358605874148378447582969038766 absolute error = 1e-32 relative error = 1.2926810000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.137 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.542 y[1] (analytic) = 0.77293849573801713450057352036384 y[1] (numeric) = 0.77293849573801713450057352036385 absolute error = 1e-32 relative error = 1.2937640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.137 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.543 y[1] (analytic) = 0.7722908230998363515745851446771 y[1] (numeric) = 0.77229082309983635157458514467711 absolute error = 1e-32 relative error = 1.2948490000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.138 Order of pole = 1 memory used=427.2MB, alloc=4.6MB, time=27.81 TOP MAIN SOLVE Loop x[1] = 0.544 y[1] (analytic) = 0.77164304410094325645710899303669 y[1] (numeric) = 0.7716430441009432564571089930367 absolute error = 1e-32 relative error = 1.2959360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.138 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.545 y[1] (analytic) = 0.77099516200535841637593724099381 y[1] (numeric) = 0.77099516200535841637593724099382 absolute error = 1e-32 relative error = 1.2970250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.139 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.546 y[1] (analytic) = 0.77034718006711264632744685374805 y[1] (numeric) = 0.77034718006711264632744685374805 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.139 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.547 y[1] (analytic) = 0.76969910153023878375226772597788 y[1] (numeric) = 0.76969910153023878375226772597789 absolute error = 1e-32 relative error = 1.2992090000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.14 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.548 y[1] (analytic) = 0.76905092962876373524960316972031 y[1] (numeric) = 0.76905092962876373524960316972032 absolute error = 1e-32 relative error = 1.3003040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.14 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.549 y[1] (analytic) = 0.76840266758670079399047641733793 y[1] (numeric) = 0.76840266758670079399047641733794 absolute error = 1e-32 relative error = 1.3014010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.141 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.55 y[1] (analytic) = 0.76775431861804222648752399232246 y[1] (numeric) = 0.76775431861804222648752399232247 absolute error = 1e-32 relative error = 1.3025000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.141 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.551 y[1] (analytic) = 0.76710588592675212737639814636534 y[1] (numeric) = 0.76710588592675212737639814636535 absolute error = 1e-32 relative error = 1.3036010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.142 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.552 y[1] (analytic) = 0.76645737270675954086137545374276 y[1] (numeric) = 0.76645737270675954086137545374278 absolute error = 2e-32 relative error = 2.6094080000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.142 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.553 y[1] (analytic) = 0.76580878214195184747539647835173 y[1] (numeric) = 0.76580878214195184747539647835175 absolute error = 2e-32 relative error = 2.6116180000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.143 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.554 y[1] (analytic) = 0.76516011740616841480248156729277 y[1] (numeric) = 0.76516011740616841480248156729279 absolute error = 2e-32 relative error = 2.6138320000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.143 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.555 y[1] (analytic) = 0.76451138166319451080827965826341 y[1] (numeric) = 0.76451138166319451080827965826343 absolute error = 2e-32 relative error = 2.6160500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.144 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.556 y[1] (analytic) = 0.76386257806675547842240989477029 y[1] (numeric) = 0.76386257806675547842240989477031 absolute error = 2e-32 relative error = 2.6182720000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.144 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.557 y[1] (analytic) = 0.76321370976051117001424919996123 y[1] (numeric) = 0.76321370976051117001424919996125 absolute error = 2e-32 relative error = 2.6204980000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.145 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.558 y[1] (analytic) = 0.76256477987805064040190214158693 y[1] (numeric) = 0.76256477987805064040190214158695 absolute error = 2e-32 relative error = 2.6227280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.145 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.559 y[1] (analytic) = 0.7619157915428870970322618003613 y[1] (numeric) = 0.76191579154288709703226180036132 absolute error = 2e-32 relative error = 2.6249620000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.146 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.56 y[1] (analytic) = 0.76126674786845310596833130328867 y[1] (numeric) = 0.76126674786845310596833130328869 absolute error = 2e-32 relative error = 2.6272000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.146 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.561 y[1] (analytic) = 0.76061765195809605231832457228568 y[1] (numeric) = 0.7606176519580960523183245722857 absolute error = 2e-32 relative error = 2.6294420000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.147 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.562 y[1] (analytic) = 0.75996850690507385373950103507711 y[1] (numeric) = 0.75996850690507385373950103507713 absolute error = 2e-32 relative error = 2.6316880000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.147 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.563 y[1] (analytic) = 0.75931931579255092564821191690921 y[1] (numeric) = 0.75931931579255092564821191690923 absolute error = 2e-32 relative error = 2.6339380000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.148 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.564 y[1] (analytic) = 0.75867008169359439676624464378922 y[1] (numeric) = 0.75867008169359439676624464378925 absolute error = 3e-32 relative error = 3.9542880000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.148 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.565 y[1] (analytic) = 0.75802080767117057363224620515833 y[1] (numeric) = 0.75802080767117057363224620515836 absolute error = 3e-32 relative error = 3.9576750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.149 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.566 y[1] (analytic) = 0.75737149677814165270578540938959 y[1] (numeric) = 0.75737149677814165270578540938962 absolute error = 3e-32 relative error = 3.9610680000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.149 Order of pole = 1 memory used=431.0MB, alloc=4.6MB, time=28.37 TOP MAIN SOLVE Loop x[1] = 0.567 y[1] (analytic) = 0.75672215205726267869047718142187 y[1] (numeric) = 0.7567221520572626786904771814219 absolute error = 3e-32 relative error = 3.9644670000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.15 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.568 y[1] (analytic) = 0.75607277654117874770153875931482 y[1] (numeric) = 0.75607277654117874770153875931485 absolute error = 3e-32 relative error = 3.9678720000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.15 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.569 y[1] (analytic) = 0.75542337325242245390217720570405 y[1] (numeric) = 0.75542337325242245390217720570408 absolute error = 3e-32 relative error = 3.9712830000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.151 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.57 y[1] (analytic) = 0.75477394520341157823231942033361 y[1] (numeric) = 0.75477394520341157823231942033364 absolute error = 3e-32 relative error = 3.9747000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.151 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.571 y[1] (analytic) = 0.75412449539644701785238917952009 y[1] (numeric) = 0.75412449539644701785238917952012 absolute error = 3e-32 relative error = 3.9781230000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.152 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.572 y[1] (analytic) = 0.75347502682371095492410999529832 y[1] (numeric) = 0.75347502682371095492410999529835 absolute error = 3e-32 relative error = 3.9815520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.152 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.573 y[1] (analytic) = 0.7528255424672652633496671381864 y[1] (numeric) = 0.75282554246726526334966713818643 absolute error = 3e-32 relative error = 3.9849870000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.153 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.574 y[1] (analytic) = 0.75217604529905015208999635946794 y[1] (numeric) = 0.75217604529905015208999635946797 absolute error = 3e-32 relative error = 3.9884280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.153 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.575 y[1] (analytic) = 0.75152653828088304368248003757633 y[1] (numeric) = 0.75152653828088304368248003757636 absolute error = 3e-32 relative error = 3.9918750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.154 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.576 y[1] (analytic) = 0.75087702436445768657792301408045 y[1] (numeric) = 0.75087702436445768657792301408048 absolute error = 3e-32 relative error = 3.9953280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.154 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.577 y[1] (analytic) = 0.75022750649134349991634963302622 y[1] (numeric) = 0.75022750649134349991634963302625 absolute error = 3e-32 relative error = 3.9987870000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.155 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.578 y[1] (analytic) = 0.74957798759298514936090980777822 y[1] (numeric) = 0.74957798759298514936090980777826 absolute error = 4e-32 relative error = 5.3363360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.155 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.579 y[1] (analytic) = 0.7489284705907023526090046665733 y[1] (numeric) = 0.74892847059070235260900466657334 absolute error = 4e-32 relative error = 5.3409640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.156 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.58 y[1] (analytic) = 0.74827895839568991319964082609997 y[1] (numeric) = 0.74827895839568991319964082610001 absolute error = 4e-32 relative error = 5.3456000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.156 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.581 y[1] (analytic) = 0.74762945390901798123599596579147 y[1] (numeric) = 0.74762945390901798123599596579151 absolute error = 4e-32 relative error = 5.3502440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.157 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.582 y[1] (analytic) = 0.74697996002163253964222647834804 y[1] (numeric) = 0.74697996002163253964222647834808 absolute error = 4e-32 relative error = 5.3548960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.157 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.583 y[1] (analytic) = 0.74633047961435611457366990847749 y[1] (numeric) = 0.74633047961435611457366990847753 absolute error = 4e-32 relative error = 5.3595560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.158 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.584 y[1] (analytic) = 0.74568101555788870859979001622602 y[1] (numeric) = 0.74568101555788870859979001622606 absolute error = 4e-32 relative error = 5.3642240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.158 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.585 y[1] (analytic) = 0.74503157071280895527947996796364 y[1] (numeric) = 0.74503157071280895527947996796368 absolute error = 4e-32 relative error = 5.3689000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.159 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.586 y[1] (analytic) = 0.74438214792957549374867872168742 y[1] (numeric) = 0.74438214792957549374867872168746 absolute error = 4e-32 relative error = 5.3735840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.159 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.587 y[1] (analytic) = 0.74373275004852856194066648866663 y[1] (numeric) = 0.74373275004852856194066648866666 absolute error = 3e-32 relative error = 4.0337070000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.16 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.588 y[1] (analytic) = 0.74308337989989180705988657575289 y[1] (numeric) = 0.74308337989989180705988657575292 absolute error = 3e-32 relative error = 4.0372320000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.16 Order of pole = 1 TOP MAIN SOLVE Loop memory used=434.8MB, alloc=4.6MB, time=28.94 x[1] = 0.589 y[1] (analytic) = 0.74243404030377431193069229746956 y[1] (numeric) = 0.74243404030377431193069229746959 absolute error = 3e-32 relative error = 4.0407630000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.161 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.59 y[1] (analytic) = 0.74178473407017283584303835027075 y[1] (numeric) = 0.74178473407017283584303835027078 absolute error = 3e-32 relative error = 4.0443000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.161 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.591 y[1] (analytic) = 0.74113546399897426851782541961237 y[1] (numeric) = 0.7411354639989742685178254196124 absolute error = 3e-32 relative error = 4.0478430000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.162 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.592 y[1] (analytic) = 0.74048623287995829581536420074878 y[1] (numeric) = 0.74048623287995829581536420074881 absolute error = 3e-32 relative error = 4.0513920000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.162 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.593 y[1] (analytic) = 0.73983704349280027581124981411594 y[1] (numeric) = 0.73983704349280027581124981411597 absolute error = 3e-32 relative error = 4.0549470000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.163 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.594 y[1] (analytic) = 0.73918789860707432386482914410912 y[1] (numeric) = 0.73918789860707432386482914410914 absolute error = 2e-32 relative error = 2.7056720000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.163 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.595 y[1] (analytic) = 0.73853880098225660530640128505751 y[1] (numeric) = 0.73853880098225660530640128505754 absolute error = 3e-32 relative error = 4.0620750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.164 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.596 y[1] (analytic) = 0.73788975336772883437031440006611 y[1] (numeric) = 0.73788975336772883437031440006614 absolute error = 3e-32 relative error = 4.0656480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.164 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.597 y[1] (analytic) = 0.73724075850278197800221024779399 y[1] (numeric) = 0.73724075850278197800221024779402 absolute error = 3e-32 relative error = 4.0692270000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.165 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.598 y[1] (analytic) = 0.7365918191166201631698197707137 y[1] (numeric) = 0.73659181911662016316981977071373 absolute error = 3e-32 relative error = 4.0728120000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.165 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.599 y[1] (analytic) = 0.73594293792836478630792882843036 y[1] (numeric) = 0.73594293792836478630792882843039 absolute error = 3e-32 relative error = 4.0764030000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.166 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.6 y[1] (analytic) = 0.73529411764705882352941176470588 y[1] (numeric) = 0.73529411764705882352941176470591 absolute error = 3e-32 relative error = 4.0800000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.166 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.601 y[1] (analytic) = 0.73464536097167134023557138144918 y[1] (numeric) = 0.7346453609716713402355713814492 absolute error = 2e-32 relative error = 2.7224020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.167 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.602 y[1] (analytic) = 0.73399667059110219876042642270575 y[1] (numeric) = 0.73399667059110219876042642270577 absolute error = 2e-32 relative error = 2.7248080000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.167 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.603 y[1] (analytic) = 0.73334804918418696268505121336101 y[1] (numeric) = 0.73334804918418696268505121336104 absolute error = 3e-32 relative error = 4.0908270000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.168 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.604 y[1] (analytic) = 0.732699499419701996459596018804 y[1] (numeric) = 0.73269949941970199645959601880403 absolute error = 3e-32 relative error = 4.0944480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.168 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.605 y[1] (analytic) = 0.73205102395636975897220036236526 y[1] (numeric) = 0.73205102395636975897220036236529 absolute error = 3e-32 relative error = 4.0980750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.169 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.606 y[1] (analytic) = 0.73140262544286428970565432741677 y[1] (numeric) = 0.73140262544286428970565432741681 absolute error = 4e-32 relative error = 5.4689440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.169 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.607 y[1] (analytic) = 0.73075430651781688612436415240904 y[1] (numeric) = 0.73075430651781688612436415240908 absolute error = 4e-32 relative error = 5.4737960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.17 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.608 y[1] (analytic) = 0.73010606980982197093593757301061 y[1] (numeric) = 0.73010606980982197093593757301065 absolute error = 4e-32 relative error = 5.4786560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.17 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.609 y[1] (analytic) = 0.72945791793744314787352075052466 y[1] (numeric) = 0.72945791793744314787352075052471 absolute error = 5e-32 relative error = 6.8544050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.171 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.61 y[1] (analytic) = 0.72880985350921944464689162597478 y[1] (numeric) = 0.72880985350921944464689162597483 absolute error = 5e-32 relative error = 6.8605000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.171 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.611 y[1] (analytic) = 0.72816187912367174171224353228415 y[1] (numeric) = 0.7281618791236717417122435322842 absolute error = 5e-32 relative error = 6.8666050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.172 Order of pole = 1 TOP MAIN SOLVE Loop memory used=438.7MB, alloc=4.6MB, time=29.50 x[1] = 0.612 y[1] (analytic) = 0.72751399736930938551257726198652 y[1] (numeric) = 0.72751399736930938551257726198657 absolute error = 5e-32 relative error = 6.8727200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.172 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.613 y[1] (analytic) = 0.72686621082463698484265890567384 y[1] (numeric) = 0.72686621082463698484265890567389 absolute error = 5e-32 relative error = 6.8788450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.173 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.614 y[1] (analytic) = 0.7262185220581613889945940293218 y[1] (numeric) = 0.72621852205816138899459402932184 absolute error = 4e-32 relative error = 5.5079840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.173 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.615 y[1] (analytic) = 0.72557093362839884634221553084583 y[1] (numeric) = 0.72557093362839884634221553084588 absolute error = 5e-32 relative error = 6.8911250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.174 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.616 y[1] (analytic) = 0.72492344808388234202468219356036 y[1] (numeric) = 0.72492344808388234202468219356041 absolute error = 5e-32 relative error = 6.8972800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.175 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.617 y[1] (analytic) = 0.72427606796316911339193692424579 y[1] (numeric) = 0.72427606796316911339193692424584 absolute error = 5e-32 relative error = 6.9034450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.175 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.618 y[1] (analytic) = 0.72362879579484834187697731568451 y[1] (numeric) = 0.72362879579484834187697731568456 absolute error = 5e-32 relative error = 6.9096200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.176 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.619 y[1] (analytic) = 0.72298163409754901996224589906743 y[1] (numeric) = 0.72298163409754901996224589906748 absolute error = 5e-32 relative error = 6.9158050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.176 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.62 y[1] (analytic) = 0.72233458537994799190985264374458 y[1] (numeric) = 0.72233458537994799190985264374464 absolute error = 6e-32 relative error = 8.3064000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.177 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.621 y[1] (analytic) = 0.72168765214077816692779731546627 y[1] (numeric) = 0.72168765214077816692779731546633 absolute error = 6e-32 relative error = 8.3138460000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.177 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.622 y[1] (analytic) = 0.72104083686883690344686361656779 y[1] (numeric) = 0.72104083686883690344686361656785 absolute error = 6e-32 relative error = 8.3213040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.178 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.623 y[1] (analytic) = 0.72039414204299456318541000152003 y[1] (numeric) = 0.72039414204299456318541000152009 absolute error = 6e-32 relative error = 8.3287740000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.178 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.624 y[1] (analytic) = 0.71974757013220323368188308996269 y[1] (numeric) = 0.71974757013220323368188308996275 absolute error = 6e-32 relative error = 8.3362560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.179 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.625 y[1] (analytic) = 0.71910112359550561797752808988764 y[1] (numeric) = 0.7191011235955056179775280898877 absolute error = 6e-32 relative error = 8.3437500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.179 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.626 y[1] (analytic) = 0.71845480488204409013446600128172 y[1] (numeric) = 0.71845480488204409013446600128178 absolute error = 6e-32 relative error = 8.3512560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.18 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.627 y[1] (analytic) = 0.71780861643106991527704900264082 y[1] (numeric) = 0.71780861643106991527704900264087 absolute error = 5e-32 relative error = 6.9656450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.18 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.628 y[1] (analytic) = 0.71716256067195263284719273887251 y[1] (numeric) = 0.71716256067195263284719273887256 absolute error = 5e-32 relative error = 6.9719200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.181 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.629 y[1] (analytic) = 0.71651664002418960176721664095566 y[1] (numeric) = 0.71651664002418960176721664095572 absolute error = 6e-32 relative error = 8.3738460000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.181 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.63 y[1] (analytic) = 0.71587085689741570620660032930059 y[1] (numeric) = 0.71587085689741570620660032930065 absolute error = 6e-32 relative error = 8.3814000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.182 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.631 y[1] (analytic) = 0.71522521369141322065198500029682 y[1] (numeric) = 0.71522521369141322065198500029687 absolute error = 5e-32 relative error = 6.9908050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.182 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.632 y[1] (analytic) = 0.71457971279612183298271288758804 y[1] (numeric) = 0.71457971279612183298271288758809 absolute error = 5e-32 relative error = 6.9971200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.183 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.633 y[1] (analytic) = 0.71393435659164882425720484704313 y[1] (numeric) = 0.71393435659164882425720484704319 absolute error = 6e-32 relative error = 8.4041340000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.184 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.634 y[1] (analytic) = 0.71328914744827940391852526042187 y[1] (numeric) = 0.71328914744827940391852526042192 absolute error = 5e-32 relative error = 7.0097800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.184 Order of pole = 1 TOP MAIN SOLVE Loop memory used=442.5MB, alloc=4.6MB, time=30.06 x[1] = 0.635 y[1] (analytic) = 0.71264408772648719913057421297369 y[1] (numeric) = 0.71264408772648719913057421297374 absolute error = 5e-32 relative error = 7.0161250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.185 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.636 y[1] (analytic) = 0.71199917977694489695947870268053 y[1] (numeric) = 0.71199917977694489695947870268059 absolute error = 6e-32 relative error = 8.4269760000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.185 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.637 y[1] (analytic) = 0.71135442594053503811792691402357 y[1] (numeric) = 0.71135442594053503811792691402363 absolute error = 6e-32 relative error = 8.4346140000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.186 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.638 y[1] (analytic) = 0.71070982854836096099340176995176 y[1] (numeric) = 0.71070982854836096099340176995182 absolute error = 6e-32 relative error = 8.4422640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.186 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.639 y[1] (analytic) = 0.71006538992175789468452149758471 y[1] (numeric) = 0.71006538992175789468452149758478 absolute error = 7e-32 relative error = 9.8582470000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.187 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.64 y[1] (analytic) = 0.70942111237230419977298524404086 y[1] (numeric) = 0.70942111237230419977298524404093 absolute error = 7e-32 relative error = 9.8672000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.187 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.641 y[1] (analytic) = 0.70877699820183275556195029913933 y[1] (numeric) = 0.7087769982018327555619502991394 absolute error = 7e-32 relative error = 9.8761670000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.188 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.642 y[1] (analytic) = 0.70813304970244249251503366464518 y[1] (numeric) = 0.70813304970244249251503366464525 absolute error = 7e-32 relative error = 9.8851480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.188 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.643 y[1] (analytic) = 0.70748926915651006863353400087304 y[1] (numeric) = 0.70748926915651006863353400087311 absolute error = 7e-32 relative error = 9.8941430000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.189 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.644 y[1] (analytic) = 0.70684565883670168851290982911299 y[1] (numeric) = 0.70684565883670168851290982911306 absolute error = 7e-32 relative error = 9.9031520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.189 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.645 y[1] (analytic) = 0.7062022210059850638230257234159 y[1] (numeric) = 0.70620222100598506382302572341597 absolute error = 7e-32 relative error = 9.9121750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.19 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.646 y[1] (analytic) = 0.70555895791764151396018954135845 y[1] (numeric) = 0.70555895791764151396018954135852 absolute error = 7e-32 relative error = 9.9212120000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.191 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.647 y[1] (analytic) = 0.70491587181527820562254997677302 y[1] (numeric) = 0.70491587181527820562254997677309 absolute error = 7e-32 relative error = 9.9302630000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.191 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.648 y[1] (analytic) = 0.7042729649328405300640043270531 y[1] (numeric) = 0.70427296493284053006400432705316 absolute error = 6e-32 relative error = 8.5194240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.192 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.649 y[1] (analytic) = 0.70363023949462461678538081524007 y[1] (numeric) = 0.70363023949462461678538081524013 absolute error = 6e-32 relative error = 8.5272060000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.192 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.65 y[1] (analytic) = 0.70298769771528998242530755711775 y[1] (numeric) = 0.70298769771528998242530755711781 absolute error = 6e-32 relative error = 8.5350000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.193 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.651 y[1] (analytic) = 0.70234534179987231361686078321338 y[1] (numeric) = 0.70234534179987231361686078321344 absolute error = 6e-32 relative error = 8.5428060000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.193 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.652 y[1] (analytic) = 0.70170317394379638257979768494089 y[1] (numeric) = 0.70170317394379638257979768494094 absolute error = 5e-32 relative error = 7.1255200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.194 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.653 y[1] (analytic) = 0.70106119633288909422192372594396 y[1] (numeric) = 0.70106119633288909422192372594401 absolute error = 5e-32 relative error = 7.1320450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.194 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.654 y[1] (analytic) = 0.70041941114339266352691991964789 y[1] (numeric) = 0.70041941114339266352691991964793 absolute error = 4e-32 relative error = 5.7108640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.195 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.655 y[1] (analytic) = 0.69977782054197792200976190059656 y[1] (numeric) = 0.69977782054197792200976190059661 absolute error = 5e-32 relative error = 7.1451250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.195 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.656 y[1] (analytic) = 0.69913642668575775202469909168195 y[1] (numeric) = 0.699136426685757752024699091682 absolute error = 5e-32 relative error = 7.1516800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.196 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.657 y[1] (analytic) = 0.69849523172230064771462837608939 y[1] (numeric) = 0.69849523172230064771462837608944 absolute error = 5e-32 relative error = 7.1582450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.197 Order of pole = 1 memory used=446.3MB, alloc=4.6MB, time=30.62 TOP MAIN SOLVE Loop x[1] = 0.658 y[1] (analytic) = 0.69785423778964440139459190879883 y[1] (numeric) = 0.69785423778964440139459190879887 absolute error = 4e-32 relative error = 5.7318560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.197 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.659 y[1] (analytic) = 0.69721344701630991416605253782209 y[1] (numeric) = 0.69721344701630991416605253782213 absolute error = 4e-32 relative error = 5.7371240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.198 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.66 y[1] (analytic) = 0.69657286152131512956255224296461 y[1] (numeric) = 0.69657286152131512956255224296466 absolute error = 5e-32 relative error = 7.1780000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.198 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.661 y[1] (analytic) = 0.69593248341418908903133853566062 y[1] (numeric) = 0.69593248341418908903133853566067 absolute error = 5e-32 relative error = 7.1846050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.199 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.662 y[1] (analytic) = 0.69529231479498610805955039617756 y[1] (numeric) = 0.69529231479498610805955039617761 absolute error = 5e-32 relative error = 7.1912200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.199 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.663 y[1] (analytic) = 0.6946523577543000717575885560192 y[1] (numeric) = 0.69465235775430007175758855601925 absolute error = 5e-32 relative error = 7.1978450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.2 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.664 y[1] (analytic) = 0.69401261437327884871635426845518 y[1] (numeric) = 0.69401261437327884871635426845524 absolute error = 6e-32 relative error = 8.6453760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.2 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.665 y[1] (analytic) = 0.69337308672363882195912565653764 y[1] (numeric) = 0.6933730867236388219591256565377 absolute error = 6e-32 relative error = 8.6533500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.201 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.666 y[1] (analytic) = 0.6927337768676795358129507965053 y[1] (numeric) = 0.69273377686767953581295079650536 absolute error = 6e-32 relative error = 8.6613360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.201 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.667 y[1] (analytic) = 0.69209468685829845752857139891023 y[1] (numeric) = 0.69209468685829845752857139891029 absolute error = 6e-32 relative error = 8.6693340000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.202 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.668 y[1] (analytic) = 0.69145581873900585248204980694554 y[1] (numeric) = 0.6914558187390058524820498069456 absolute error = 6e-32 relative error = 8.6773439999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.203 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.669 y[1] (analytic) = 0.69081717454393977179545456115494 y[1] (numeric) = 0.690817174543939771795454561155 absolute error = 6e-32 relative error = 8.6853659999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.203 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.67 y[1] (analytic) = 0.69017875629788115121816550486576 y[1] (numeric) = 0.69017875629788115121816550486582 absolute error = 6e-32 relative error = 8.6934000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.204 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.671 y[1] (analytic) = 0.68954056601626902011458785126058 y[1] (numeric) = 0.68954056601626902011458785126064 absolute error = 6e-32 relative error = 8.7014460000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.204 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.672 y[1] (analytic) = 0.6889026057052158194083153300119 y[1] (numeric) = 0.68890260570521581940831533001196 absolute error = 6e-32 relative error = 8.7095040000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.205 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.673 y[1] (analytic) = 0.68826487736152282733705501094685 y[1] (numeric) = 0.68826487736152282733705501094691 absolute error = 6e-32 relative error = 8.7175740000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.205 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.674 y[1] (analytic) = 0.68762738297269569187692019946695 y[1] (numeric) = 0.68762738297269569187692019946701 absolute error = 6e-32 relative error = 8.7256560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.206 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.675 y[1] (analytic) = 0.68699012451696006869901245169601 y[1] (numeric) = 0.68699012451696006869901245169607 absolute error = 6e-32 relative error = 8.7337500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.206 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.676 y[1] (analytic) = 0.68635310396327736352554880794193 y[1] (numeric) = 0.68635310396327736352554880794199 absolute error = 6e-32 relative error = 8.7418560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.207 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.677 y[1] (analytic) = 0.68571632327136057775714533551757 y[1] (numeric) = 0.68571632327136057775714533551763 absolute error = 6e-32 relative error = 8.7499740000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.208 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.678 y[1] (analytic) = 0.68507978439169025624724255386782 y[1] (numeric) = 0.68507978439169025624724255386789 absolute error = 7e-32 relative error = 1.0217788000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.208 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.679 y[1] (analytic) = 0.6844434892655305361040518370121 y[1] (numeric) = 0.68444348926553053610405183701217 absolute error = 7e-32 relative error = 1.0227287000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.209 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.68 y[1] (analytic) = 0.68380743982494529540481400437637 y[1] (numeric) = 0.68380743982494529540481400437643 absolute error = 6e-32 relative error = 8.7744000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 memory used=450.1MB, alloc=4.6MB, time=31.19 Complex estimate of poles used Radius of convergence = 1.209 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.681 y[1] (analytic) = 0.68317163799281440071159157813332 y[1] (numeric) = 0.68317163799281440071159157813338 absolute error = 6e-32 relative error = 8.7825659999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.21 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.682 y[1] (analytic) = 0.68253608568285005228226416330631 y[1] (numeric) = 0.68253608568285005228226416330638 absolute error = 7e-32 relative error = 1.0255868000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.21 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.683 y[1] (analytic) = 0.68190078479961322587486165937828 y[1] (numeric) = 0.68190078479961322587486165937835 absolute error = 7e-32 relative error = 1.0265423000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.211 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.684 y[1] (analytic) = 0.68126573723853021004785210538363 y[1] (numeric) = 0.6812657372385302100478521053837 absolute error = 7e-32 relative error = 1.0274992000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.212 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.685 y[1] (analytic) = 0.68063094488590923786349946400313 y[1] (numeric) = 0.6806309448859092378634994640032 absolute error = 7e-32 relative error = 1.0284575000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.212 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.686 y[1] (analytic) = 0.6799964096189572119059211367364 y[1] (numeric) = 0.67999640961895721190592113673647 absolute error = 7e-32 relative error = 1.0294172000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.213 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.687 y[1] (analytic) = 0.67936213330579652153000504766065 y[1] (numeric) = 0.67936213330579652153000504766072 absolute error = 7e-32 relative error = 1.0303783000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.213 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.688 y[1] (analytic) = 0.67872811780548195126189131662395 y[1] (numeric) = 0.67872811780548195126189131662402 absolute error = 7e-32 relative error = 1.0313408000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.214 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.689 y[1] (analytic) = 0.67809436496801767927628344615693 y[1] (numeric) = 0.678094364968017679276283446157 absolute error = 7e-32 relative error = 1.0323047000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.214 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.69 y[1] (analytic) = 0.67746087663437436488042815527403 y[1] (numeric) = 0.6774608766343743648804281552741 absolute error = 7e-32 relative error = 1.0332700000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.215 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.691 y[1] (analytic) = 0.67682765463650632393919109619684 y[1] (numeric) = 0.6768276546365063239391910961969 absolute error = 6e-32 relative error = 8.8648860000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.216 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.692 y[1] (analytic) = 0.67619470079736879118025727855976 y[1] (numeric) = 0.67619470079736879118025727855982 absolute error = 6e-32 relative error = 8.8731840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.216 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.693 y[1] (analytic) = 0.67556201693093526832309969471352 y[1] (numeric) = 0.67556201693093526832309969471359 absolute error = 7e-32 relative error = 1.0361743000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.217 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.694 y[1] (analytic) = 0.67492960484221495697998698735722 y[1] (numeric) = 0.67492960484221495697998698735728 absolute error = 6e-32 relative error = 8.8898160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.217 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.695 y[1] (analytic) = 0.67429746632727027528194062810809 y[1] (numeric) = 0.67429746632727027528194062810815 absolute error = 6e-32 relative error = 8.8981500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.218 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.696 y[1] (analytic) = 0.6736656031732344571872035871346 y[1] (numeric) = 0.67366560317323445718720358713466 absolute error = 6e-32 relative error = 8.9064960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.218 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.697 y[1] (analytic) = 0.67303401715832923343444547717775 y[1] (numeric) = 0.67303401715832923343444547717781 absolute error = 6e-32 relative error = 8.9148540000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.219 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.698 y[1] (analytic) = 0.67240271005188259310760326088418 y[1] (numeric) = 0.67240271005188259310760326088424 absolute error = 6e-32 relative error = 8.9232240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.22 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.699 y[1] (analytic) = 0.67177168361434662478394143225754 y[1] (numeric) = 0.67177168361434662478394143225759 absolute error = 5e-32 relative error = 7.4430050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.22 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.7 y[1] (analytic) = 0.67114093959731543624161073825503 y[1] (numeric) = 0.67114093959731543624161073825509 absolute error = 6e-32 relative error = 8.9400000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.221 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.701 y[1] (analytic) = 0.67051047974354315170768961533484 y[1] (numeric) = 0.6705104797435431517076896153349 absolute error = 6e-32 relative error = 8.9484060000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.221 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.702 y[1] (analytic) = 0.66988030578696198563240720148124 y[1] (numeric) = 0.6698803057869619856324072014813 absolute error = 6e-32 relative error = 8.9568240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.222 Order of pole = 1 TOP MAIN SOLVE Loop memory used=453.9MB, alloc=4.6MB, time=31.76 x[1] = 0.703 y[1] (analytic) = 0.66925041945270039197997067344662 y[1] (numeric) = 0.66925041945270039197997067344668 absolute error = 6e-32 relative error = 8.9652540000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.222 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.704 y[1] (analytic) = 0.66862082245710128803115238135992 y[1] (numeric) = 0.66862082245710128803115238135998 absolute error = 6e-32 relative error = 8.9736960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.223 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.705 y[1] (analytic) = 0.6679915165077403516975334413253 y[1] (numeric) = 0.66799151650774035169753344132535 absolute error = 5e-32 relative error = 7.4851249999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.224 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.706 y[1] (analytic) = 0.66736250330344439135204973719265 y[1] (numeric) = 0.6673625033034443913520497371927 absolute error = 5e-32 relative error = 7.4921800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.224 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.707 y[1] (analytic) = 0.66673378453430978718524331449366 y[1] (numeric) = 0.66673378453430978718524331449371 absolute error = 5e-32 relative error = 7.4992450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.225 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.708 y[1] (analytic) = 0.66610536188172100310138656492129 y[1] (numeric) = 0.66610536188172100310138656492134 absolute error = 5e-32 relative error = 7.5063200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.225 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.709 y[1] (analytic) = 0.66547723701836916817341804414909 y[1] (numeric) = 0.66547723701836916817341804414914 absolute error = 5e-32 relative error = 7.5134050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.226 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.71 y[1] (analytic) = 0.6648494116082707266804068878399 y[1] (numeric) = 0.66484941160827072668040688783995 absolute error = 5e-32 relative error = 7.5205000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.226 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.711 y[1] (analytic) = 0.66422188730678615575604724211751 y[1] (numeric) = 0.66422188730678615575604724211756 absolute error = 5e-32 relative error = 7.5276050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.227 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.712 y[1] (analytic) = 0.66359466576063874968147456043489 y[1] (numeric) = 0.66359466576063874968147456043494 absolute error = 5e-32 relative error = 7.5347200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.228 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.713 y[1] (analytic) = 0.66296774860793346986049169666043 y[1] (numeric) = 0.66296774860793346986049169666048 absolute error = 5e-32 relative error = 7.5418450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.228 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.714 y[1] (analytic) = 0.66234113747817585952009410542881 y[1] (numeric) = 0.66234113747817585952009410542886 absolute error = 5e-32 relative error = 7.5489800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.229 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.715 y[1] (analytic) = 0.66171483399229102218398980959156 y[1] (numeric) = 0.6617148339922910221839898095916 absolute error = 4e-32 relative error = 6.0449000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.229 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.716 y[1] (analytic) = 0.66108883976264266297162077828667 y[1] (numeric) = 0.66108883976264266297162077828671 absolute error = 4e-32 relative error = 6.0506240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.23 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.717 y[1] (analytic) = 0.66046315639305219178000764816335 y[1] (numeric) = 0.66046315639305219178000764816339 absolute error = 4e-32 relative error = 6.0563560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.23 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.718 y[1] (analytic) = 0.65983778547881788741055898817835 y[1] (numeric) = 0.65983778547881788741055898817839 absolute error = 4e-32 relative error = 6.0620960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.231 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.719 y[1] (analytic) = 0.65921272860673412170780923174689 y[1] (numeric) = 0.65921272860673412170780923174694 absolute error = 5e-32 relative error = 7.5848050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.232 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.72 y[1] (analytic) = 0.65858798735511064278187565858799 y[1] (numeric) = 0.65858798735511064278187565858803 absolute error = 4e-32 relative error = 6.0736000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.232 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.721 y[1] (analytic) = 0.65796356329379191639125408513127 y[1] (numeric) = 0.65796356329379191639125408513132 absolute error = 5e-32 relative error = 7.5992050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.233 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.722 y[1] (analytic) = 0.65733945798417652456740490270061 y[1] (numeric) = 0.65733945798417652456740490270066 absolute error = 5e-32 relative error = 7.6064200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.233 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.723 y[1] (analytic) = 0.65671567297923662056741547576752 y[1] (numeric) = 0.65671567297923662056741547576757 absolute error = 5e-32 relative error = 7.6136450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.234 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.724 y[1] (analytic) = 0.65609220982353743924586137034043 y[1] (numeric) = 0.65609220982353743924586137034048 absolute error = 5e-32 relative error = 7.6208800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.235 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.725 y[1] (analytic) = 0.65546907005325686194182712003277 y[1] (numeric) = 0.65546907005325686194182712003282 absolute error = 5e-32 relative error = 7.6281250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.235 Order of pole = 1 TOP MAIN SOLVE Loop memory used=457.7MB, alloc=4.6MB, time=32.30 x[1] = 0.726 y[1] (analytic) = 0.65484625519620503498188695258127 y[1] (numeric) = 0.65484625519620503498188695258132 absolute error = 5e-32 relative error = 7.6353800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.236 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.727 y[1] (analytic) = 0.65422376677184404090468679364278 y[1] (numeric) = 0.65422376677184404090468679364282 absolute error = 4e-32 relative error = 6.1141160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.236 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.728 y[1] (analytic) = 0.65360160629130762151761064167991 y[1] (numeric) = 0.65360160629130762151761064167996 absolute error = 5e-32 relative error = 7.6499200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.237 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.729 y[1] (analytic) = 0.65297977525742095190085677476312 y[1] (numeric) = 0.65297977525742095190085677476316 absolute error = 4e-32 relative error = 6.1257640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.238 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.73 y[1] (analytic) = 0.65235827516472046447909191728097 y[1] (numeric) = 0.65235827516472046447909191728102 absolute error = 5e-32 relative error = 7.6645000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.238 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.731 y[1] (analytic) = 0.65173710749947372228569417496925 y[1] (numeric) = 0.6517371074994737222856941749693 absolute error = 5e-32 relative error = 7.6718050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.239 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.732 y[1] (analytic) = 0.65111627373969934054943795643251 y[1] (numeric) = 0.65111627373969934054943795643255 absolute error = 4e-32 relative error = 6.1432960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.239 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.733 y[1] (analytic) = 0.65049577535518695573831595750701 y[1] (numeric) = 0.65049577535518695573831595750706 absolute error = 5e-32 relative error = 7.6864450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.24 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.734 y[1] (analytic) = 0.64987561380751724120003431343241 y[1] (numeric) = 0.64987561380751724120003431343246 absolute error = 5e-32 relative error = 7.6937800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.24 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.735 y[1] (analytic) = 0.64925579055008196854355694784853 y[1] (numeric) = 0.64925579055008196854355694784858 absolute error = 5e-32 relative error = 7.7011250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.241 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.736 y[1] (analytic) = 0.64863630702810411391091369504753 y[1] (numeric) = 0.64863630702810411391091369504758 absolute error = 5e-32 relative error = 7.7084800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.242 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.737 y[1] (analytic) = 0.64801716467865800829332367355747 y[1] (numeric) = 0.64801716467865800829332367355751 absolute error = 4e-32 relative error = 6.1726760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.242 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.738 y[1] (analytic) = 0.64739836493068953105052037880573 y[1] (numeric) = 0.64739836493068953105052037880578 absolute error = 5e-32 relative error = 7.7232200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.243 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.739 y[1] (analytic) = 0.64677990920503634579699777701745 y[1] (numeric) = 0.6467799092050363457969977770175 absolute error = 5e-32 relative error = 7.7306050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.243 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.74 y[1] (analytic) = 0.64616179891444817782372706125614 y[1] (numeric) = 0.64616179891444817782372706125619 absolute error = 5e-32 relative error = 7.7380000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.244 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.741 y[1] (analytic) = 0.64554403546360713222872141611704 y[1] (numeric) = 0.64554403546360713222872141611709 absolute error = 5e-32 relative error = 7.7454050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.245 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.742 y[1] (analytic) = 0.64492662024914805193465087542339 y[1] (numeric) = 0.64492662024914805193465087542344 absolute error = 5e-32 relative error = 7.7528200000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.245 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.743 y[1] (analytic) = 0.64430955465967891477653089560961 y[1] (numeric) = 0.64430955465967891477653089560966 absolute error = 5e-32 relative error = 7.7602450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.246 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.744 y[1] (analytic) = 0.64369284007580126884732635741946 y[1] (numeric) = 0.64369284007580126884732635741951 absolute error = 5e-32 relative error = 7.7676800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.246 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.745 y[1] (analytic) = 0.64307647787013070529412710406585 y[1] (numeric) = 0.6430764778701307052941271040659 absolute error = 5e-32 relative error = 7.7751250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.247 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.746 y[1] (analytic) = 0.64246046940731736776236158189187 y[1] (numeric) = 0.64246046940731736776236158189192 absolute error = 5e-32 relative error = 7.7825800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.248 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.747 y[1] (analytic) = 0.64184481604406649769032142946543 y[1] (numeric) = 0.64184481604406649769032142946548 absolute error = 5e-32 relative error = 7.7900450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.248 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.748 y[1] (analytic) = 0.64122951912915901466107172536909 y[1] (numeric) = 0.64122951912915901466107172536915 absolute error = 6e-32 relative error = 9.3570240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.249 Order of pole = 1 TOP MAIN SOLVE Loop memory used=461.5MB, alloc=4.6MB, time=32.85 x[1] = 0.749 y[1] (analytic) = 0.64061458000347213102361881895015 y[1] (numeric) = 0.64061458000347213102361881895021 absolute error = 6e-32 relative error = 9.3660060000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.249 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.75 y[1] (analytic) = 0.64 y[1] (numeric) = 0.64000000000000000000000000000006 absolute error = 6e-32 relative error = 9.3750000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.25 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.751 y[1] (analytic) = 0.63938578044387439649974648353805 y[1] (numeric) = 0.63938578044387439649974648353811 absolute error = 6e-32 relative error = 9.3840060000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.251 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.752 y[1] (analytic) = 0.6387719226523854298679530681493 y[1] (numeric) = 0.63877192265238542986795306814935 absolute error = 5e-32 relative error = 7.8275200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.251 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.753 y[1] (analytic) = 0.6381584279350022877979641469832 y[1] (numeric) = 0.63815842793500228779796414698325 absolute error = 5e-32 relative error = 7.8350450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.252 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.754 y[1] (analytic) = 0.63754529759339401064445628861931 y[1] (numeric) = 0.63754529759339401064445628861935 absolute error = 4e-32 relative error = 6.2740640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.252 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.755 y[1] (analytic) = 0.63693253292145029537746214232257 y[1] (numeric) = 0.63693253292145029537746214232262 absolute error = 5e-32 relative error = 7.8501250000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.253 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.756 y[1] (analytic) = 0.63632013520530232842263874324228 y[1] (numeric) = 0.63632013520530232842263874324233 absolute error = 5e-32 relative error = 7.8576800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.254 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.757 y[1] (analytic) = 0.63570810572334364663783518504509 y[1] (numeric) = 0.63570810572334364663783518504514 absolute error = 5e-32 relative error = 7.8652450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.254 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.758 y[1] (analytic) = 0.63509644574625102568075988019541 y[1] (numeric) = 0.63509644574625102568075988019545 absolute error = 4e-32 relative error = 6.2982560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.255 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.759 y[1] (analytic) = 0.63448515653700539502728603415687 y[1] (numeric) = 0.63448515653700539502728603415692 absolute error = 5e-32 relative error = 7.8804050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.255 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.76 y[1] (analytic) = 0.63387423935091277890466531440162 y[1] (numeric) = 0.63387423935091277890466531440167 absolute error = 5e-32 relative error = 7.8880000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.256 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.761 y[1] (analytic) = 0.63326369543562526240864379613722 y[1] (numeric) = 0.63326369543562526240864379613727 absolute error = 5e-32 relative error = 7.8956050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.257 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.762 y[1] (analytic) = 0.63265352603116198207819091458924 y[1] (numeric) = 0.6326535260311619820781909145893 absolute error = 6e-32 relative error = 9.4838640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.257 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.763 y[1] (analytic) = 0.6320437323699301402062611516216 y[1] (numeric) = 0.63204373236993014020626115162166 absolute error = 6e-32 relative error = 9.4930140000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.258 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.764 y[1] (analytic) = 0.63143431567674604216970933815581 y[1] (numeric) = 0.63143431567674604216970933815586 absolute error = 5e-32 relative error = 7.9184800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.258 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.765 y[1] (analytic) = 0.63082527716885615606617357157501 y[1] (numeric) = 0.63082527716885615606617357157507 absolute error = 6e-32 relative error = 9.5113500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.259 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.766 y[1] (analytic) = 0.63021661805595819395042463995725 y[1] (numeric) = 0.6302166180559581939504246399573 absolute error = 5e-32 relative error = 7.9337800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.26 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.767 y[1] (analytic) = 0.6296083395402222139673573260282 y[1] (numeric) = 0.62960833954022221396735732602825 absolute error = 5e-32 relative error = 7.9414450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.26 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.768 y[1] (analytic) = 0.62900044281631174268346684916066 y[1] (numeric) = 0.62900044281631174268346684916071 absolute error = 5e-32 relative error = 7.9491200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.261 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.769 y[1] (analytic) = 0.62839292907140491692331281211491 y[1] (numeric) = 0.62839292907140491692331281211496 absolute error = 5e-32 relative error = 7.9568050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.261 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.77 y[1] (analytic) = 0.62778579948521564442212317157386 y[1] (numeric) = 0.62778579948521564442212317157391 absolute error = 5e-32 relative error = 7.9645000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.262 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.771 y[1] (analytic) = 0.62717905523001478261033177144843 y[1] (numeric) = 0.62717905523001478261033177144848 absolute error = 5e-32 relative error = 7.9722050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.263 Order of pole = 1 memory used=465.4MB, alloc=4.6MB, time=33.40 TOP MAIN SOLVE Loop x[1] = 0.772 y[1] (analytic) = 0.6265726974706513348504746914756 y[1] (numeric) = 0.62657269747065133485047469147566 absolute error = 6e-32 relative error = 9.5759040000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.263 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.773 y[1] (analytic) = 0.62596672736457366345149289934643 y[1] (numeric) = 0.62596672736457366345149289934648 absolute error = 5e-32 relative error = 7.9876450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.264 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.774 y[1] (analytic) = 0.62536114606185071879010128349122 y[1] (numeric) = 0.62536114606185071879010128349127 absolute error = 5e-32 relative error = 7.9953800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.265 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.775 y[1] (analytic) = 0.6247559547051932838734869191722 y[1] (numeric) = 0.62475595470519328387348691917225 absolute error = 5e-32 relative error = 8.0031250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.265 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.776 y[1] (analytic) = 0.62415115442997523368219221858273 y[1] (numeric) = 0.62415115442997523368219221858278 absolute error = 5e-32 relative error = 8.0108800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.266 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.777 y[1] (analytic) = 0.62354674636425480863662127454202 y[1] (numeric) = 0.62354674636425480863662127454207 absolute error = 5e-32 relative error = 8.0186450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.266 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.778 y[1] (analytic) = 0.622942731628795901535180067826 y[1] (numeric) = 0.62294273162879590153518006782605 absolute error = 5e-32 relative error = 8.0264200000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.267 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.779 y[1] (analytic) = 0.62233911133708935731662311330119 y[1] (numeric) = 0.62233911133708935731662311330124 absolute error = 5e-32 relative error = 8.0342050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.268 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.78 y[1] (analytic) = 0.62173588659537428500373041531957 y[1] (numeric) = 0.62173588659537428500373041531962 absolute error = 5e-32 relative error = 8.0420000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.268 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.781 y[1] (analytic) = 0.62113305850265938118997913614056 y[1] (numeric) = 0.62113305850265938118997913614061 absolute error = 5e-32 relative error = 8.0498050000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.269 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.782 y[1] (analytic) = 0.62053062815074426443540400267076 y[1] (numeric) = 0.62053062815074426443540400267081 absolute error = 5e-32 relative error = 8.0576200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.269 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.783 y[1] (analytic) = 0.61992859662424081994235903908588 y[1] (numeric) = 0.61992859662424081994235903908592 absolute error = 4e-32 relative error = 6.4523560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.27 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.784 y[1] (analytic) = 0.61932696500059455388640057077173 y[1] (numeric) = 0.61932696500059455388640057077177 absolute error = 4e-32 relative error = 6.4586240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.271 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.785 y[1] (analytic) = 0.6187257343501059567820074556451 y[1] (numeric) = 0.61872573435010595678200745564514 absolute error = 4e-32 relative error = 6.4649000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.271 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.786 y[1] (analytic) = 0.6181249057359518752673390217308 y[1] (numeric) = 0.61812490573595187526733902173084 absolute error = 4e-32 relative error = 6.4711840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.272 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.787 y[1] (analytic) = 0.61752448021420689169670408659175 y[1] (numeric) = 0.61752448021420689169670408659179 absolute error = 4e-32 relative error = 6.4774760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.273 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.788 y[1] (analytic) = 0.61692445883386471093387556880435 y[1] (numeric) = 0.61692445883386471093387556880439 absolute error = 4e-32 relative error = 6.4837760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.273 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.789 y[1] (analytic) = 0.61632484263685955374383444035547 y[1] (numeric) = 0.61632484263685955374383444035551 absolute error = 4e-32 relative error = 6.4900840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.274 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.79 y[1] (analytic) = 0.61572563265808755618496398005049 y[1] (numeric) = 0.61572563265808755618496398005053 absolute error = 4e-32 relative error = 6.4964000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.274 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.791 y[1] (analytic) = 0.6151268299254281744081403424165 y[1] (numeric) = 0.61512682992542817440814034241654 absolute error = 4e-32 relative error = 6.5027240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.275 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.792 y[1] (analytic) = 0.61452843545976559427357822701172 y[1] (numeric) = 0.61452843545976559427357822701176 absolute error = 4e-32 relative error = 6.5090560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.276 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.793 y[1] (analytic) = 0.61393045027501014520069079454265 y[1] (numeric) = 0.61393045027501014520069079454269 absolute error = 4e-32 relative error = 6.5153960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.276 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.794 y[1] (analytic) = 0.61333287537811971767061080594393 y[1] (numeric) = 0.61333287537811971767061080594397 absolute error = 4e-32 relative error = 6.5217440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.277 Order of pole = 1 memory used=469.2MB, alloc=4.6MB, time=33.94 TOP MAIN SOLVE Loop x[1] = 0.795 y[1] (analytic) = 0.61273571176912118380539513794213 y[1] (numeric) = 0.61273571176912118380539513794217 absolute error = 4e-32 relative error = 6.5281000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.278 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.796 y[1] (analytic) = 0.61213896044113182045229723509074 y[1] (numeric) = 0.61213896044113182045229723509079 absolute error = 5e-32 relative error = 8.1680800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.278 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.797 y[1] (analytic) = 0.6115426223803807342058415774375 y[1] (numeric) = 0.61154262238038073420584157743755 absolute error = 5e-32 relative error = 8.1760450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.279 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.798 y[1] (analytic) = 0.61094669856623028780477076057976 y[1] (numeric) = 0.61094669856623028780477076057981 absolute error = 5e-32 relative error = 8.1840200000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.279 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.799 y[1] (analytic) = 0.61035118997119752734525918868458 y[1] (numeric) = 0.61035118997119752734525918868462 absolute error = 4e-32 relative error = 6.5536040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.28 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.8 y[1] (analytic) = 0.60975609756097560975609756097561 y[1] (numeric) = 0.60975609756097560975609756097565 absolute error = 4e-32 relative error = 6.5600000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.281 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.801 y[1] (analytic) = 0.6091614222944552299858491801601 y[1] (numeric) = 0.60916142229445522998584918016014 absolute error = 4e-32 relative error = 6.5664040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.281 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.802 y[1] (analytic) = 0.60856716512374604735626252126942 y[1] (numeric) = 0.60856716512374604735626252126946 absolute error = 4e-32 relative error = 6.5728160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.282 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.803 y[1] (analytic) = 0.60797332699419811054049436743111 y[1] (numeric) = 0.60797332699419811054049436743115 absolute error = 4e-32 relative error = 6.5792360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.283 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.804 y[1] (analytic) = 0.60737990884442328062895404320658 y[1] (numeric) = 0.60737990884442328062895404320662 absolute error = 4e-32 relative error = 6.5856640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.283 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.805 y[1] (analytic) = 0.60678691160631665174982175634472 y[1] (numeric) = 0.60678691160631665174982175634476 absolute error = 4e-32 relative error = 6.5921000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.284 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.806 y[1] (analytic) = 0.60619433620507796871552269712834 y[1] (numeric) = 0.60619433620507796871552269712838 absolute error = 4e-32 relative error = 6.5985440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.284 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.807 y[1] (analytic) = 0.60560218355923304117065324490734 y[1] (numeric) = 0.60560218355923304117065324490738 absolute error = 4e-32 relative error = 6.6049960000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.285 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.808 y[1] (analytic) = 0.60501045458065515372105629985286 y[1] (numeric) = 0.6050104545806551537210562998529 absolute error = 4e-32 relative error = 6.6114560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.286 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.809 y[1] (analytic) = 0.60441915017458647152792930230084 y[1] (numeric) = 0.60441915017458647152792930230088 absolute error = 4e-32 relative error = 6.6179240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.286 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.81 y[1] (analytic) = 0.60382827123965944085502083207536 y[1] (numeric) = 0.6038282712396594408550208320754 absolute error = 4e-32 relative error = 6.6244000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.287 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.811 y[1] (analytic) = 0.60323781866791818406112970759253 y[1] (numeric) = 0.60323781866791818406112970759257 absolute error = 4e-32 relative error = 6.6308840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.288 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.812 y[1] (analytic) = 0.60264779334483988853426414293841 y[1] (numeric) = 0.60264779334483988853426414293845 absolute error = 4e-32 relative error = 6.6373760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.288 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.813 y[1] (analytic) = 0.60205819614935618906794768595922 y[1] (numeric) = 0.60205819614935618906794768595926 absolute error = 4e-32 relative error = 6.6438760000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.289 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.814 y[1] (analytic) = 0.60146902795387454318427326903228 y[1] (numeric) = 0.60146902795387454318427326903232 absolute error = 4e-32 relative error = 6.6503840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.289 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.815 y[1] (analytic) = 0.60088028962429959891240667578002 y[1] (numeric) = 0.60088028962429959891240667578005 absolute error = 3e-32 relative error = 4.9926750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.29 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.816 y[1] (analytic) = 0.60029198202005455453532598255792 y[1] (numeric) = 0.60029198202005455453532598255795 absolute error = 3e-32 relative error = 4.9975680000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.291 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.817 y[1] (analytic) = 0.59970410599410250982165399591841 y[1] (numeric) = 0.59970410599410250982165399591845 absolute error = 4e-32 relative error = 6.6699560000000000000000000000000e-30 % Correct digits = 31 h = 0.001 memory used=473.0MB, alloc=4.6MB, time=34.51 Complex estimate of poles used Radius of convergence = 1.291 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.818 y[1] (analytic) = 0.59911666239296780826349630105373 y[1] (numeric) = 0.59911666239296780826349630105376 absolute error = 3e-32 relative error = 5.0073720000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.292 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.819 y[1] (analytic) = 0.59852965205675736984523818786768 y[1] (numeric) = 0.59852965205675736984523818786772 absolute error = 4e-32 relative error = 6.6830440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.293 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.82 y[1] (analytic) = 0.59794307581918201387227935900502 y[1] (numeric) = 0.59794307581918201387227935900506 absolute error = 4e-32 relative error = 6.6896000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.293 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.821 y[1] (analytic) = 0.597356934507577771392695877819 y[1] (numeric) = 0.59735693450757777139269587781904 absolute error = 4e-32 relative error = 6.6961640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.294 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.822 y[1] (analytic) = 0.59677122894292718674881421556809 y[1] (numeric) = 0.59677122894292718674881421556813 absolute error = 4e-32 relative error = 6.7027360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.294 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.823 y[1] (analytic) = 0.59618595993988060779966243950948 y[1] (numeric) = 0.59618595993988060779966243950952 absolute error = 4e-32 relative error = 6.7093160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.295 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.824 y[1] (analytic) = 0.59560112830677746435922848212244 y[1] (numeric) = 0.59560112830677746435922848212247 absolute error = 3e-32 relative error = 5.0369280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.296 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.825 y[1] (analytic) = 0.59501673484566753439940498326515 y[1] (numeric) = 0.59501673484566753439940498326519 absolute error = 4e-32 relative error = 6.7225000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.296 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.826 y[1] (analytic) = 0.59443278035233219757043434014395 y[1] (numeric) = 0.59443278035233219757043434014398 absolute error = 3e-32 relative error = 5.0468280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.297 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.827 y[1] (analytic) = 0.59384926561630567559558627471823 y[1] (numeric) = 0.59384926561630567559558627471827 absolute error = 4e-32 relative error = 6.7357160000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.298 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.828 y[1] (analytic) = 0.59326619142089625910070337639655 y[1] (numeric) = 0.59326619142089625910070337639659 absolute error = 4e-32 relative error = 6.7423360000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.298 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.829 y[1] (analytic) = 0.59268355854320752044313764305159 y[1] (numeric) = 0.59268355854320752044313764305163 absolute error = 4e-32 relative error = 6.7489639999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.299 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.83 y[1] (analytic) = 0.59210136775415951210847297057256 y[1] (numeric) = 0.59210136775415951210847297057261 absolute error = 5e-32 relative error = 8.4445000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.3 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.831 y[1] (analytic) = 0.59151961981850995024728477706513 y[1] (numeric) = 0.59151961981850995024728477706518 absolute error = 5e-32 relative error = 8.4528050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.3 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.832 y[1] (analytic) = 0.59093831549487538292802844067925 y[1] (numeric) = 0.5909383154948753829280284406793 absolute error = 5e-32 relative error = 8.4611200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.301 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.833 y[1] (analytic) = 0.59035745553575234268597292974923 y[1] (numeric) = 0.59035745553575234268597292974929 absolute error = 6e-32 relative error = 1.0163334000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.301 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.834 y[1] (analytic) = 0.58977704068753848295190486188601 y[1] (numeric) = 0.58977704068753848295190486188607 absolute error = 6e-32 relative error = 1.0173336000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.302 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.835 y[1] (analytic) = 0.58919707169055369794812119783765 y[1] (numeric) = 0.5891970716905536979481211978377 absolute error = 5e-32 relative error = 8.4861250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.303 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.836 y[1] (analytic) = 0.58861754927906122564300581083245 y[1] (numeric) = 0.5886175492790612256430058108325 absolute error = 5e-32 relative error = 8.4944799999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.303 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.837 y[1] (analytic) = 0.58803847418128873335924622876226 y[1] (numeric) = 0.58803847418128873335924622876231 absolute error = 5e-32 relative error = 8.5028449999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.304 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.838 y[1] (analytic) = 0.58745984711944938563449188247983 y[1] (numeric) = 0.58745984711944938563449188247989 absolute error = 6e-32 relative error = 1.0213464000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.305 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.839 y[1] (analytic) = 0.58688166880976289393698416769322 y[1] (numeric) = 0.58688166880976289393698416769328 absolute error = 6e-32 relative error = 1.0223526000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.305 Order of pole = 1 TOP MAIN SOLVE Loop memory used=476.8MB, alloc=4.6MB, time=35.05 x[1] = 0.84 y[1] (analytic) = 0.58630393996247654784240150093809 y[1] (numeric) = 0.58630393996247654784240150093815 absolute error = 6e-32 relative error = 1.0233600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.306 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.841 y[1] (analytic) = 0.58572666128188622728185928385544 y[1] (numeric) = 0.5857266612818862272818592838555 absolute error = 6e-32 relative error = 1.0243686000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.307 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.842 y[1] (analytic) = 0.58514983346635739547468524790458 y[1] (numeric) = 0.58514983346635739547468524790464 absolute error = 6e-32 relative error = 1.0253784000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.307 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.843 y[1] (analytic) = 0.58457345720834607216325499854149 y[1] (numeric) = 0.58457345720834607216325499854155 absolute error = 6e-32 relative error = 1.0263894000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.308 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.844 y[1] (analytic) = 0.58399753319441978677082068005345 y[1] (numeric) = 0.58399753319441978677082068005351 absolute error = 6e-32 relative error = 1.0274016000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.309 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.845 y[1] (analytic) = 0.58342206210527851110689750732924 y[1] (numeric) = 0.5834220621052785111068975073293 absolute error = 6e-32 relative error = 1.0284150000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.309 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.846 y[1] (analytic) = 0.58284704461577557124838842792164 y[1] (numeric) = 0.5828470446157755712483884279217 absolute error = 6e-32 relative error = 1.0294296000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.31 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.847 y[1] (analytic) = 0.5822724813949385382282263572626 y[1] (numeric) = 0.58227248139493853822822635726266 absolute error = 6e-32 relative error = 1.0304454000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.31 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.848 y[1] (analytic) = 0.58169837310599009716689624362459 y[1] (numeric) = 0.58169837310599009716689624362465 absolute error = 6e-32 relative error = 1.0314624000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.311 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.849 y[1] (analytic) = 0.58112472040636889448576564053601 y[1] (numeric) = 0.58112472040636889448576564053607 absolute error = 6e-32 relative error = 1.0324806000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.312 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.85 y[1] (analytic) = 0.58055152394775036284470246734398 y[1] (numeric) = 0.58055152394775036284470246734404 absolute error = 6e-32 relative error = 1.0335000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.312 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.851 y[1] (analytic) = 0.57997878437606752344999219928535 y[1] (numeric) = 0.57997878437606752344999219928541 absolute error = 6e-32 relative error = 1.0345206000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.313 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.852 y[1] (analytic) = 0.57940650233153176538208382389751 y[1] (numeric) = 0.57940650233153176538208382389757 absolute error = 6e-32 relative error = 1.0355424000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.314 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.853 y[1] (analytic) = 0.57883467844865360159619450929001 y[1] (numeric) = 0.57883467844865360159619450929007 absolute error = 6e-32 relative error = 1.0365654000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.314 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.854 y[1] (analytic) = 0.57826331335626340125228703140432 y[1] (numeric) = 0.57826331335626340125228703140439 absolute error = 7e-32 relative error = 1.2105212000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.315 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.855 y[1] (analytic) = 0.5776924076775320980344015828772 y[1] (numeric) = 0.57769240767753209803440158287726 absolute error = 6e-32 relative error = 1.0386150000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.316 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.856 y[1] (analytic) = 0.57712196202999187412277461771441 y[1] (numeric) = 0.57712196202999187412277461771448 absolute error = 7e-32 relative error = 1.2129152000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.316 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.857 y[1] (analytic) = 0.57655197702555681948561185713734 y[1] (numeric) = 0.57655197702555681948561185713741 absolute error = 7e-32 relative error = 1.2141143000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.317 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.858 y[1] (analytic) = 0.57598245327054356616080047737426 y[1] (numeric) = 0.57598245327054356616080047737433 absolute error = 7e-32 relative error = 1.2153148000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.318 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.859 y[1] (analytic) = 0.57541339136569189720124680573641 y[1] (numeric) = 0.57541339136569189720124680573648 absolute error = 7e-32 relative error = 1.2165167000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.318 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.86 y[1] (analytic) = 0.57484479190618532996091055415038 y[1] (numeric) = 0.57484479190618532996091055415045 absolute error = 7e-32 relative error = 1.2177200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.319 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.861 y[1] (analytic) = 0.57427665548167167340197470770754 y[1] (numeric) = 0.57427665548167167340197470770761 absolute error = 7e-32 relative error = 1.2189247000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.32 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.862 y[1] (analytic) = 0.57370898267628355910694164920679 y[1] (numeric) = 0.57370898267628355910694164920686 absolute error = 7e-32 relative error = 1.2201308000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.32 Order of pole = 1 TOP MAIN SOLVE Loop memory used=480.6MB, alloc=4.6MB, time=35.59 x[1] = 0.863 y[1] (analytic) = 0.57314177406865894568278092973912 y[1] (numeric) = 0.57314177406865894568278092973919 absolute error = 7e-32 relative error = 1.2213383000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.321 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.864 y[1] (analytic) = 0.57257503023196159624757228187182 y[1] (numeric) = 0.57257503023196159624757228187188 absolute error = 6e-32 relative error = 1.0478976000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.322 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.865 y[1] (analytic) = 0.57200875173390152869338900885184 y[1] (numeric) = 0.5720087517339015286933890088519 absolute error = 6e-32 relative error = 1.0489350000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.322 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.866 y[1] (analytic) = 0.57144293913675543842245176450151 y[1] (numeric) = 0.57144293913675543842245176450157 absolute error = 6e-32 relative error = 1.0499736000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.323 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.867 y[1] (analytic) = 0.57087759299738709325685095927416 y[1] (numeric) = 0.57087759299738709325685095927423 absolute error = 7e-32 relative error = 1.2261823000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.324 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.868 y[1] (analytic) = 0.57031271386726770022538758452034 y[1] (numeric) = 0.57031271386726770022538758452041 absolute error = 7e-32 relative error = 1.2273968000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.324 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.869 y[1] (analytic) = 0.56974830229249624393431713671851 y[1] (numeric) = 0.56974830229249624393431713671858 absolute error = 7e-32 relative error = 1.2286127000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.325 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.87 y[1] (analytic) = 0.56918435881381979623199954465251 y[1] (numeric) = 0.56918435881381979623199954465258 absolute error = 7e-32 relative error = 1.2298300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.325 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.871 y[1] (analytic) = 0.56862088396665379688065955473573 y[1] (numeric) = 0.5686208839666537968806595547358 absolute error = 7e-32 relative error = 1.2310487000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.326 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.872 y[1] (analytic) = 0.56805787828110230495164691340071 y[1] (numeric) = 0.56805787828110230495164691340078 absolute error = 7e-32 relative error = 1.2322688000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.327 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.873 y[1] (analytic) = 0.56749534228197822066375390223985 y[1] (numeric) = 0.56749534228197822066375390223991 absolute error = 6e-32 relative error = 1.0572774000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.327 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.874 y[1] (analytic) = 0.56693327648882347738729933396679 y[1] (numeric) = 0.56693327648882347738729933396685 absolute error = 6e-32 relative error = 1.0583256000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.328 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.875 y[1] (analytic) = 0.56637168141592920353982300884956 y[1] (numeric) = 0.56637168141592920353982300884962 absolute error = 6e-32 relative error = 1.0593750000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.329 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.876 y[1] (analytic) = 0.56581055757235585410235286662261 y[1] (numeric) = 0.56581055757235585410235286662267 absolute error = 6e-32 relative error = 1.0604256000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.329 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.877 y[1] (analytic) = 0.56524990546195331148830865358038 y[1] (numeric) = 0.56524990546195331148830865358044 absolute error = 6e-32 relative error = 1.0614774000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.33 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.878 y[1] (analytic) = 0.56468972558338095550019086512725 y[1] (numeric) = 0.56468972558338095550019086512731 absolute error = 6e-32 relative error = 1.0625304000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.331 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.879 y[1] (analytic) = 0.56413001843012770211227202800793 y[1] (numeric) = 0.56413001843012770211227202800799 absolute error = 6e-32 relative error = 1.0635846000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.331 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.88 y[1] (analytic) = 0.56357078449053201082055906221821 y[1] (numeric) = 0.56357078449053201082055906221828 absolute error = 7e-32 relative error = 1.2420800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.332 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.881 y[1] (analytic) = 0.56301202424780186030433051958691 y[1] (numeric) = 0.56301202424780186030433051958697 absolute error = 6e-32 relative error = 1.0656966000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.333 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.882 y[1] (analytic) = 0.56245373818003469214657094453981 y[1] (numeric) = 0.56245373818003469214657094453987 absolute error = 6e-32 relative error = 1.0667544000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.333 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.883 y[1] (analytic) = 0.56189592676023732236362645383547 y[1] (numeric) = 0.56189592676023732236362645383553 absolute error = 6e-32 relative error = 1.0678134000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.334 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.884 y[1] (analytic) = 0.56133859045634582049739089823156 y[1] (numeric) = 0.56133859045634582049739089823162 absolute error = 6e-32 relative error = 1.0688736000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.335 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.885 y[1] (analytic) = 0.5607817297312453560263006631244 y[1] (numeric) = 0.56078172973124535602630066312446 absolute error = 6e-32 relative error = 1.0699350000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.335 Order of pole = 1 TOP MAIN SOLVE Loop memory used=484.4MB, alloc=4.6MB, time=36.14 x[1] = 0.886 y[1] (analytic) = 0.56022534504279001185436830110544 y[1] (numeric) = 0.5602253450427900118543683011055 absolute error = 6e-32 relative error = 1.0709976000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.336 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.887 y[1] (analytic) = 0.5596694368438225646404207818694 y[1] (numeric) = 0.55966943684382256464042078186946 absolute error = 6e-32 relative error = 1.0720614000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.337 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.888 y[1] (analytic) = 0.55911400558219423173262720961855 y[1] (numeric) = 0.55911400558219423173262720961861 absolute error = 6e-32 relative error = 1.0731264000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.337 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.889 y[1] (analytic) = 0.55855905170078438447630341151112 y[1] (numeric) = 0.55855905170078438447630341151118 absolute error = 6e-32 relative error = 1.0741926000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.338 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.89 y[1] (analytic) = 0.55800457563752022766586686010825 y[1] (numeric) = 0.55800457563752022766586686010831 absolute error = 6e-32 relative error = 1.0752600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.339 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.891 y[1] (analytic) = 0.55745057782539644491468497631671 y[1] (numeric) = 0.55745057782539644491468497631677 absolute error = 6e-32 relative error = 1.0763286000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.339 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.892 y[1] (analytic) = 0.55689705869249480971941298594837 y[1] (numeric) = 0.55689705869249480971941298594843 absolute error = 6e-32 relative error = 1.0773984000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.34 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.893 y[1] (analytic) = 0.55634401866200376199825419246944 y[1] (numeric) = 0.5563440186620037619982541924695 absolute error = 6e-32 relative error = 1.0784694000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.341 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.894 y[1] (analytic) = 0.55579145815223794988539580132901 y[1] (numeric) = 0.55579145815223794988539580132907 absolute error = 6e-32 relative error = 1.0795416000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.341 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.895 y[1] (analytic) = 0.55523937757665773656667730875474 y[1] (numeric) = 0.5552393775766577365666773087548 absolute error = 6e-32 relative error = 1.0806150000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.342 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.896 y[1] (analytic) = 0.55468777734388867194433597216799 y[1] (numeric) = 0.55468777734388867194433597216805 absolute error = 6e-32 relative error = 1.0816896000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.343 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.897 y[1] (analytic) = 0.55413665785774092892144503324543 y[1] (numeric) = 0.55413665785774092892144503324549 absolute error = 6e-32 relative error = 1.0827654000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.343 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.898 y[1] (analytic) = 0.55358601951722870409941519172898 y[1] (numeric) = 0.55358601951722870409941519172904 absolute error = 6e-32 relative error = 1.0838424000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.344 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.899 y[1] (analytic) = 0.55303586271658958268466835268867 y[1] (numeric) = 0.55303586271658958268466835268872 absolute error = 5e-32 relative error = 9.0410049999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.345 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.9 y[1] (analytic) = 0.55248618784530386740331491712707 y[1] (numeric) = 0.55248618784530386740331491712713 absolute error = 6e-32 relative error = 1.0860000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.345 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.901 y[1] (analytic) = 0.551936995288113871225371881349 y[1] (numeric) = 0.55193699528811387122537188134906 absolute error = 6e-32 relative error = 1.0870806000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.346 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.902 y[1] (analytic) = 0.5513882854250431737027487808805 y[1] (numeric) = 0.55138828542504317370274878088056 absolute error = 6e-32 relative error = 1.0881624000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.347 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.903 y[1] (analytic) = 0.5508400586314158407279020870779 y[1] (numeric) = 0.55084005863141584072790208707796 absolute error = 6e-32 relative error = 1.0892454000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.347 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.904 y[1] (analytic) = 0.55029231527787560752271606677467 y[1] (numeric) = 0.55029231527787560752271606677473 absolute error = 6e-32 relative error = 1.0903296000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.348 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.905 y[1] (analytic) = 0.54974505573040502466980937590193 y[1] (numeric) = 0.54974505573040502466980937590198 absolute error = 5e-32 relative error = 9.0951249999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.349 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.906 y[1] (analytic) = 0.54919828035034456700109180618134 y[1] (numeric) = 0.54919828035034456700109180618139 absolute error = 5e-32 relative error = 9.1041799999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.349 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.907 y[1] (analytic) = 0.54865198949441170516100466957708 y[1] (numeric) = 0.54865198949441170516100466957714 absolute error = 6e-32 relative error = 1.0935894000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.35 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.908 y[1] (analytic) = 0.54810618351471993966447131869963 y[1] (numeric) = 0.54810618351471993966447131869969 absolute error = 6e-32 relative error = 1.0946784000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.351 Order of pole = 1 memory used=488.3MB, alloc=4.6MB, time=36.69 TOP MAIN SOLVE Loop x[1] = 0.909 y[1] (analytic) = 0.54756086275879779727216129390822 y[1] (numeric) = 0.54756086275879779727216129390828 absolute error = 6e-32 relative error = 1.0957686000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.351 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.91 y[1] (analytic) = 0.54701602756960778950823259121492 y[1] (numeric) = 0.54701602756960778950823259121498 absolute error = 6e-32 relative error = 1.0968600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.352 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.911 y[1] (analytic) = 0.54647167828556533314826159162062 y[1] (numeric) = 0.54647167828556533314826159162068 absolute error = 6e-32 relative error = 1.0979526000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.353 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.912 y[1] (analytic) = 0.54592781524055763250759931518815 y[1] (numeric) = 0.54592781524055763250759931518821 absolute error = 6e-32 relative error = 1.0990464000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.353 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.913 y[1] (analytic) = 0.54538443876396252336290589555124 y[1] (numeric) = 0.54538443876396252336290589555131 absolute error = 7e-32 relative error = 1.2834983000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.354 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.914 y[1] (analytic) = 0.54484154918066727834211254682913 y[1] (numeric) = 0.5448415491806672783421125468292 absolute error = 7e-32 relative error = 1.2847772000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.355 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.915 y[1] (analytic) = 0.54429914681108737362054184980065 y[1] (numeric) = 0.54429914681108737362054184980072 absolute error = 7e-32 relative error = 1.2860575000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.355 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.916 y[1] (analytic) = 0.54375723197118521676338295299327 y[1] (numeric) = 0.54375723197118521676338295299334 absolute error = 7e-32 relative error = 1.2873392000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.356 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.917 y[1] (analytic) = 0.54321580497248883555716830292321 y[1] (numeric) = 0.54321580497248883555716830292327 absolute error = 6e-32 relative error = 1.1045334000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.357 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.918 y[1] (analytic) = 0.54267486612211052767533282249539 y[1] (numeric) = 0.54267486612211052767533282249546 absolute error = 7e-32 relative error = 1.2899068000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.357 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.919 y[1] (analytic) = 0.54213441572276547102535508448894 y[1] (numeric) = 0.54213441572276547102535508448901 absolute error = 7e-32 relative error = 1.2911927000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.358 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.92 y[1] (analytic) = 0.54159445407279029462738301559792 y[1] (numeric) = 0.54159445407279029462738301559799 absolute error = 7e-32 relative error = 1.2924800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.359 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.921 y[1] (analytic) = 0.5410549814661616098766340536759 y[1] (numeric) = 0.54105498146616160987663405367597 absolute error = 7e-32 relative error = 1.2937687000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.36 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.922 y[1] (analytic) = 0.54051599819251450204423150516409 y[1] (numeric) = 0.54051599819251450204423150516416 absolute error = 7e-32 relative error = 1.2950588000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.36 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.923 y[1] (analytic) = 0.53997750453716098187349515019204 y[1] (numeric) = 0.53997750453716098187349515019211 absolute error = 7e-32 relative error = 1.2963503000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.361 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.924 y[1] (analytic) = 0.53943950078110839713104495904575 y[1] (numeric) = 0.53943950078110839713104495904582 absolute error = 7e-32 relative error = 1.2976432000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.362 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.925 y[1] (analytic) = 0.53890198720107780397440215560795 y[1] (numeric) = 0.53890198720107780397440215560802 absolute error = 7e-32 relative error = 1.2989375000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.362 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.926 y[1] (analytic) = 0.53836496406952229800008183147454 y[1] (numeric) = 0.53836496406952229800008183147461 absolute error = 7e-32 relative error = 1.3002332000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.363 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.927 y[1] (analytic) = 0.53782843165464530483846591969469 y[1] (numeric) = 0.53782843165464530483846591969476 absolute error = 7e-32 relative error = 1.3015303000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.364 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.928 y[1] (analytic) = 0.53729239022041883016402462088649 y[1] (numeric) = 0.53729239022041883016402462088656 absolute error = 7e-32 relative error = 1.3028288000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.364 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.929 y[1] (analytic) = 0.53675684002660166899171837871523 y[1] (numeric) = 0.5367568400266016689917183787153 absolute error = 7e-32 relative error = 1.3041287000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.365 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.93 y[1] (analytic) = 0.53622178132875757413266126870073 y[1] (numeric) = 0.53622178132875757413266126870081 absolute error = 8e-32 relative error = 1.4919200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.366 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.931 y[1] (analytic) = 0.53568721437827338368436023679518 y[1] (numeric) = 0.53568721437827338368436023679525 absolute error = 7e-32 relative error = 1.3067327000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.366 Order of pole = 1 memory used=492.1MB, alloc=4.6MB, time=37.24 TOP MAIN SOLVE Loop x[1] = 0.932 y[1] (analytic) = 0.53515313942237710743306304532105 y[1] (numeric) = 0.53515313942237710743306304532112 absolute error = 7e-32 relative error = 1.3080368000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.367 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.933 y[1] (analytic) = 0.53461955670415597204795109727991 y[1] (numeric) = 0.53461955670415597204795109727998 absolute error = 7e-32 relative error = 1.3093423000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.368 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.934 y[1] (analytic) = 0.53408646646257442494910155974612 y[1] (numeric) = 0.53408646646257442494910155974619 absolute error = 7e-32 relative error = 1.3106492000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.368 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.935 y[1] (analytic) = 0.53355386893249209673331643746082 y[1] (numeric) = 0.53355386893249209673331643746089 absolute error = 7e-32 relative error = 1.3119575000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.369 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.936 y[1] (analytic) = 0.53302176434468172204407450365013 y[1] (numeric) = 0.53302176434468172204407450365021 absolute error = 8e-32 relative error = 1.5008768000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.37 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.937 y[1] (analytic) = 0.53249015292584701877400532170659 y[1] (numeric) = 0.53249015292584701877400532170667 absolute error = 8e-32 relative error = 1.5023752000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.37 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.938 y[1] (analytic) = 0.53195903489864052549041303427306 y[1] (numeric) = 0.53195903489864052549041303427314 absolute error = 8e-32 relative error = 1.5038752000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.371 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.939 y[1] (analytic) = 0.53142841048168139697649120140552 y[1] (numeric) = 0.53142841048168139697649120140561 absolute error = 9e-32 relative error = 1.6935489000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.372 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.94 y[1] (analytic) = 0.53089827988957315778296878318114 y[1] (numeric) = 0.53089827988957315778296878318123 absolute error = 9e-32 relative error = 1.6952400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.372 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.941 y[1] (analytic) = 0.53036864333292141368701143103537 y[1] (numeric) = 0.53036864333292141368701143103546 absolute error = 9e-32 relative error = 1.6969329000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.373 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.942 y[1] (analytic) = 0.52983950101835152095727162327988 y[1] (numeric) = 0.52983950101835152095727162327997 absolute error = 9e-32 relative error = 1.6986276000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.374 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.943 y[1] (analytic) = 0.52931085314852621332603590103793 y[1] (numeric) = 0.52931085314852621332603590103802 absolute error = 9e-32 relative error = 1.7003241000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.374 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.944 y[1] (analytic) = 0.52878269992216318657145757893668 y[1] (numeric) = 0.52878269992216318657145757893678 absolute error = 1.0e-31 relative error = 1.8911360000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.375 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.945 y[1] (analytic) = 0.52825504153405264061488886834564 y[1] (numeric) = 0.52825504153405264061488886834574 absolute error = 1.0e-31 relative error = 1.8930250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.376 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.946 y[1] (analytic) = 0.52772787817507477904033740809619 y[1] (numeric) = 0.52772787817507477904033740809629 absolute error = 1.0e-31 relative error = 1.8949160000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.377 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.947 y[1] (analytic) = 0.5272012100322172659450687971219 y[1] (numeric) = 0.527201210032217265945068797122 absolute error = 1.0e-31 relative error = 1.8968090000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.377 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.948 y[1] (analytic) = 0.52667503728859264003235891429101 y[1] (numeric) = 0.52667503728859264003235891429111 absolute error = 1.0e-31 relative error = 1.8987040000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.378 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.949 y[1] (analytic) = 0.52614936012345568585936764213004 y[1] (numeric) = 0.52614936012345568585936764213014 absolute error = 1.0e-31 relative error = 1.9006010000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.379 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.95 y[1] (analytic) = 0.52562417871222076215505913272011 y[1] (numeric) = 0.5256241787122207621550591327202 absolute error = 9e-32 relative error = 1.7122500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.379 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.951 y[1] (analytic) = 0.52509949322647908712503301563064 y[1] (numeric) = 0.52509949322647908712503301563073 absolute error = 9e-32 relative error = 1.7139609000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.38 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.952 y[1] (analytic) = 0.52457530383401598066205599946283 y[1] (numeric) = 0.52457530383401598066205599946293 absolute error = 1.0e-31 relative error = 1.9063040000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.381 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.953 y[1] (analytic) = 0.52405161069882806338299421080186 y[1] (numeric) = 0.52405161069882806338299421080195 absolute error = 9e-32 relative error = 1.7173881000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.381 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.954 y[1] (analytic) = 0.52352841398114041241474339778317 y[1] (numeric) = 0.52352841398114041241474339778326 absolute error = 9e-32 relative error = 1.7191044000000000000000000000000e-29 % Correct digits = 30 h = 0.001 memory used=495.9MB, alloc=4.6MB, time=37.79 Complex estimate of poles used Radius of convergence = 1.382 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.955 y[1] (analytic) = 0.5230057138374236738536368509826 y[1] (numeric) = 0.52300571383742367385363685098269 absolute error = 9e-32 relative error = 1.7208225000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.383 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.956 y[1] (analytic) = 0.52248351042041113182467961311141 y[1] (numeric) = 0.5224835104204111318246796131115 absolute error = 9e-32 relative error = 1.7225424000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.383 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.957 y[1] (analytic) = 0.5219618038791157340688123124526 y[1] (numeric) = 0.52196180387911573406881231245269 absolute error = 9e-32 relative error = 1.7242641000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.384 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.958 y[1] (analytic) = 0.52144059435884707398824881476553 y[1] (numeric) = 0.52144059435884707398824881476562 absolute error = 9e-32 relative error = 1.7259876000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.385 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.959 y[1] (analytic) = 0.52091988200122832908175889639997 y[1] (numeric) = 0.52091988200122832908175889640007 absolute error = 1.0e-31 relative error = 1.9196810000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.386 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.96 y[1] (analytic) = 0.52039966694421315570358034970858 y[1] (numeric) = 0.52039966694421315570358034970867 absolute error = 9e-32 relative error = 1.7294400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.386 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.961 y[1] (analytic) = 0.5198799493221025400814443928608 y[1] (numeric) = 0.51987994932210254008144439286089 absolute error = 9e-32 relative error = 1.7311689000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.387 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.962 y[1] (analytic) = 0.51936072926556160553098402238652 y[1] (numeric) = 0.51936072926556160553098402238661 absolute error = 9e-32 relative error = 1.7328996000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.388 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.963 y[1] (analytic) = 0.51884200690163637580556707096565 y[1] (numeric) = 0.51884200690163637580556707096574 absolute error = 9e-32 relative error = 1.7346321000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.388 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.964 y[1] (analytic) = 0.51832378235377049452235426808535 y[1] (numeric) = 0.51832378235377049452235426808544 absolute error = 9e-32 relative error = 1.7363664000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.389 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.965 y[1] (analytic) = 0.51780605574182190060712760035729 y[1] (numeric) = 0.51780605574182190060712760035737 absolute error = 8e-32 relative error = 1.5449800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.39 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.966 y[1] (analytic) = 0.51728882718207945970216578486165 y[1] (numeric) = 0.51728882718207945970216578486173 absolute error = 8e-32 relative error = 1.5465248000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.39 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.967 y[1] (analytic) = 0.51677209678727955148316175638433 y[1] (numeric) = 0.51677209678727955148316175638442 absolute error = 9e-32 relative error = 1.7415801000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.391 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.968 y[1] (analytic) = 0.51625586466662261283288178153704 y[1] (numeric) = 0.51625586466662261283288178153713 absolute error = 9e-32 relative error = 1.7433216000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.392 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.969 y[1] (analytic) = 0.5157401309257896368209572033682 y[1] (numeric) = 0.51574013092578963682095720336829 absolute error = 9e-32 relative error = 1.7450649000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.392 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.97 y[1] (analytic) = 0.51522489566695862744087794322222 y[1] (numeric) = 0.51522489566695862744087794322231 absolute error = 9e-32 relative error = 1.7468100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.393 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.971 y[1] (analytic) = 0.51471015898882101005692179648257 y[1] (numeric) = 0.51471015898882101005692179648267 absolute error = 1.0e-31 relative error = 1.9428410000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.394 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.972 y[1] (analytic) = 0.51419592098659799751540530979276 y[1] (numeric) = 0.51419592098659799751540530979285 absolute error = 9e-32 relative error = 1.7503056000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.395 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.973 y[1] (analytic) = 0.51368218175205691187628067388938 y[1] (numeric) = 0.51368218175205691187628067388947 absolute error = 9e-32 relative error = 1.7520561000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.395 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.974 y[1] (analytic) = 0.51316894137352746172272866294859 y[1] (numeric) = 0.51316894137352746172272866294868 absolute error = 9e-32 relative error = 1.7538084000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.396 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.975 y[1] (analytic) = 0.512656199935917975008010253124 y[1] (numeric) = 0.51265619993591797500801025312409 absolute error = 9e-32 relative error = 1.7555625000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.397 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.976 y[1] (analytic) = 0.51214395752073158740043921465797 y[1] (numeric) = 0.51214395752073158740043921465806 absolute error = 9e-32 relative error = 1.7573184000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.397 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.977 y[1] (analytic) = 0.5116322142060823860889247486223 y[1] (numeric) = 0.51163221420608238608892474862239 absolute error = 9e-32 relative error = 1.7590761000000000000000000000000e-29 % Correct digits = 30 memory used=499.7MB, alloc=4.6MB, time=38.34 h = 0.001 Complex estimate of poles used Radius of convergence = 1.398 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.978 y[1] (analytic) = 0.51112097006671150901310718615639 y[1] (numeric) = 0.51112097006671150901310718615648 absolute error = 9e-32 relative error = 1.7608356000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.399 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.979 y[1] (analytic) = 0.51061022517400319948367094030405 y[1] (numeric) = 0.51061022517400319948367094030414 absolute error = 9e-32 relative error = 1.7625969000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.399 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.98 y[1] (analytic) = 0.51009997959600081615996735360131 y[1] (numeric) = 0.5100999795960008161599673536014 absolute error = 9e-32 relative error = 1.7643600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.4 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.981 y[1] (analytic) = 0.50959023339742279835361587393961 y[1] (numeric) = 0.5095902333974227983536158739397 absolute error = 9e-32 relative error = 1.7661249000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.401 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.982 y[1] (analytic) = 0.50908098663967858662827517252755 y[1] (numeric) = 0.50908098663967858662827517252764 absolute error = 9e-32 relative error = 1.7678916000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.402 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.983 y[1] (analytic) = 0.50857223938088449866728644670239 y[1] (numeric) = 0.50857223938088449866728644670249 absolute error = 1.0e-31 relative error = 1.9662890000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.402 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.984 y[1] (analytic) = 0.50806399167587956038238928269493 y[1] (numeric) = 0.50806399167587956038238928269503 absolute error = 1.0e-31 relative error = 1.9682560000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.403 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.985 y[1] (analytic) = 0.50755624357624129223819614511033 y[1] (numeric) = 0.50755624357624129223819614511043 absolute error = 1.0e-31 relative error = 1.9702250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.404 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.986 y[1] (analytic) = 0.50704899513030145076858486681851 y[1] (numeric) = 0.50704899513030145076858486681861 absolute error = 1.0e-31 relative error = 1.9721960000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.404 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.987 y[1] (analytic) = 0.50654224638316172526262949119351 y[1] (numeric) = 0.50654224638316172526262949119361 absolute error = 1.0e-31 relative error = 1.9741690000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.405 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.988 y[1] (analytic) = 0.50603599737670938959913852431807 y[1] (numeric) = 0.50603599737670938959913852431817 absolute error = 1.0e-31 relative error = 1.9761440000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.406 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.989 y[1] (analytic) = 0.50553024814963290921030614406298 y[1] (numeric) = 0.50553024814963290921030614406308 absolute error = 1.0e-31 relative error = 1.9781210000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.406 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.99 y[1] (analytic) = 0.50502499873743750315640624210898 y[1] (numeric) = 0.50502499873743750315640624210909 absolute error = 1.1e-31 relative error = 2.1781100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.407 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.991 y[1] (analytic) = 0.50452024917246066129487140031109 y[1] (numeric) = 0.50452024917246066129487140031119 absolute error = 1.0e-31 relative error = 1.9820810000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.408 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.992 y[1] (analytic) = 0.50401599948388761652849908067482 y[1] (numeric) = 0.50401599948388761652849908067492 absolute error = 1.0e-31 relative error = 1.9840640000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.409 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.993 y[1] (analytic) = 0.50351224969776677211891549503562 y[1] (numeric) = 0.50351224969776677211891549503572 absolute error = 1.0e-31 relative error = 1.9860490000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.409 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.994 y[1] (analytic) = 0.50300899983702508405280387276689 y[1] (numeric) = 0.50300899983702508405280387276699 absolute error = 1.0e-31 relative error = 1.9880360000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.41 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.995 y[1] (analytic) = 0.50250624992148339844976821899222 y[1] (numeric) = 0.50250624992148339844976821899232 absolute error = 1.0e-31 relative error = 1.9900250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.411 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.996 y[1] (analytic) = 0.50200399996787174400205620838387 y[1] (numeric) = 0.50200399996787174400205620838396 absolute error = 9e-32 relative error = 1.7928144000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.411 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.997 y[1] (analytic) = 0.50150224998984457943770564726639 y[1] (numeric) = 0.50150224998984457943770564726648 absolute error = 9e-32 relative error = 1.7946081000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.412 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.998 y[1] (analytic) = 0.501000999997995996000008016016 y[1] (numeric) = 0.50100099999799599600000801601609 absolute error = 9e-32 relative error = 1.7964036000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.413 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = 0.999 y[1] (analytic) = 0.50050024999987487493750003128127 y[1] (numeric) = 0.50050024999987487493750003128136 absolute error = 9e-32 relative error = 1.7982009000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.414 Order of pole = 1 Finished! diff ( y , x , 1 ) = m1 * 2.0 * x / (x * x + 1.0) /( x * x + 1.0); Iterations = 3000 Total Elapsed Time = 38 Seconds Elapsed Time(since restart) = 38 Seconds Time to Timeout = 2 Minutes 21 Seconds Percent Done = 100 % > quit memory used=503.5MB, alloc=4.6MB, time=38.85