|\^/| Maple 12 (IBM INTEL LINUX) ._|\| |/|_. Copyright (c) Maplesoft, a division of Waterloo Maple Inc. 2008 \ MAPLE / All rights reserved. Maple is a trademark of <____ ____> Waterloo Maple Inc. | Type ? for help. > #BEGIN OUTFILE1 > # Begin Function number 3 > check_sign := proc( x0 ,xf) > local ret; > if (xf > x0) then # if number 1 > ret := 1.0; > else > ret := -1.0; > fi;# end if 1; > ret;; > end; check_sign := proc(x0, xf) local ret; if x0 < xf then ret := 1.0 else ret := -1.0 end if; ret end proc > # End Function number 3 > # Begin Function number 4 > est_size_answer := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_1D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local min_size; > min_size := glob_large_float; > if (omniabs(array_y[1]) < min_size) then # if number 1 > min_size := omniabs(array_y[1]); > omniout_float(ALWAYS,"min_size",32,min_size,32,""); > fi;# end if 1; > if (min_size < 1.0) then # if number 1 > min_size := 1.0; > omniout_float(ALWAYS,"min_size",32,min_size,32,""); > fi;# end if 1; > min_size; > end; est_size_answer := proc() local min_size; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_1D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; min_size := glob_large_float; if omniabs(array_y[1]) < min_size then min_size := omniabs(array_y[1]); omniout_float(ALWAYS, "min_size", 32, min_size, 32, "") end if; if min_size < 1.0 then min_size := 1.0; omniout_float(ALWAYS, "min_size", 32, min_size, 32, "") end if; min_size end proc > # End Function number 4 > # Begin Function number 5 > test_suggested_h := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_1D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local max_value3,hn_div_ho,hn_div_ho_2,hn_div_ho_3,value3,no_terms; > max_value3 := 0.0; > no_terms := glob_max_terms; > hn_div_ho := 0.5; > hn_div_ho_2 := 0.25; > hn_div_ho_3 := 0.125; > omniout_float(ALWAYS,"hn_div_ho",32,hn_div_ho,32,""); > omniout_float(ALWAYS,"hn_div_ho_2",32,hn_div_ho_2,32,""); > omniout_float(ALWAYS,"hn_div_ho_3",32,hn_div_ho_3,32,""); > value3 := omniabs(array_y[no_terms-3] + array_y[no_terms - 2] * hn_div_ho + array_y[no_terms - 1] * hn_div_ho_2 + array_y[no_terms] * hn_div_ho_3); > if (value3 > max_value3) then # if number 1 > max_value3 := value3; > omniout_float(ALWAYS,"value3",32,value3,32,""); > fi;# end if 1; > omniout_float(ALWAYS,"max_value3",32,max_value3,32,""); > max_value3; > end; test_suggested_h := proc() local max_value3, hn_div_ho, hn_div_ho_2, hn_div_ho_3, value3, no_terms; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_1D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; max_value3 := 0.; no_terms := glob_max_terms; hn_div_ho := 0.5; hn_div_ho_2 := 0.25; hn_div_ho_3 := 0.125; omniout_float(ALWAYS, "hn_div_ho", 32, hn_div_ho, 32, ""); omniout_float(ALWAYS, "hn_div_ho_2", 32, hn_div_ho_2, 32, ""); omniout_float(ALWAYS, "hn_div_ho_3", 32, hn_div_ho_3, 32, ""); value3 := omniabs(array_y[no_terms - 3] + array_y[no_terms - 2]*hn_div_ho + array_y[no_terms - 1]*hn_div_ho_2 + array_y[no_terms]*hn_div_ho_3); if max_value3 < value3 then max_value3 := value3; omniout_float(ALWAYS, "value3", 32, value3, 32, "") end if; omniout_float(ALWAYS, "max_value3", 32, max_value3, 32, ""); max_value3 end proc > # End Function number 5 > # Begin Function number 6 > reached_interval := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_1D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local ret; > if (glob_check_sign * (array_x[1]) >= glob_check_sign * glob_next_display) then # if number 1 > ret := true; > else > ret := false; > fi;# end if 1; > return(ret); > end; reached_interval := proc() local ret; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_1D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; if glob_check_sign*glob_next_display <= glob_check_sign*array_x[1] then ret := true else ret := false end if; return ret end proc > # End Function number 6 > # Begin Function number 7 > display_alot := proc(iter) > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_1D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local abserr, analytic_val_y, ind_var, numeric_val, relerr, term_no; > #TOP DISPLAY ALOT > if (reached_interval()) then # if number 1 > if (iter >= 0) then # if number 2 > ind_var := array_x[1]; > omniout_float(ALWAYS,"x[1] ",33,ind_var,20," "); > analytic_val_y := exact_soln_y(ind_var); > omniout_float(ALWAYS,"y[1] (analytic) ",33,analytic_val_y,20," "); > term_no := 1; > numeric_val := array_y[term_no]; > abserr := omniabs(numeric_val - analytic_val_y); > omniout_float(ALWAYS,"y[1] (numeric) ",33,numeric_val,20," "); > if (omniabs(analytic_val_y) <> 0.0) then # if number 3 > relerr := abserr*100.0/omniabs(analytic_val_y); > if (relerr <> 0.0) then # if number 4 > glob_good_digits := -trunc(log10(relerr)) + 2; > else > glob_good_digits := Digits; > fi;# end if 4; > else > relerr := -1.0 ; > glob_good_digits := -1; > fi;# end if 3; > if (glob_iter = 1) then # if number 3 > array_1st_rel_error[1] := relerr; > else > array_last_rel_error[1] := relerr; > fi;# end if 3; > omniout_float(ALWAYS,"absolute error ",4,abserr,20," "); > omniout_float(ALWAYS,"relative error ",4,relerr,20,"%"); > omniout_int(INFO,"Correct digits ",32,glob_good_digits,4," ") > ; > omniout_float(ALWAYS,"h ",4,glob_h,20," "); > fi;# end if 2; > #BOTTOM DISPLAY ALOT > fi;# end if 1; > end; display_alot := proc(iter) local abserr, analytic_val_y, ind_var, numeric_val, relerr, term_no; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_1D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; if reached_interval() then if 0 <= iter then ind_var := array_x[1]; omniout_float(ALWAYS, "x[1] ", 33, ind_var, 20, " "); analytic_val_y := exact_soln_y(ind_var); omniout_float(ALWAYS, "y[1] (analytic) ", 33, analytic_val_y, 20, " "); term_no := 1; numeric_val := array_y[term_no]; abserr := omniabs(numeric_val - analytic_val_y); omniout_float(ALWAYS, "y[1] (numeric) ", 33, numeric_val, 20, " "); if omniabs(analytic_val_y) <> 0. then relerr := abserr*100.0/omniabs(analytic_val_y); if relerr <> 0. then glob_good_digits := -trunc(log10(relerr)) + 2 else glob_good_digits := Digits end if else relerr := -1.0; glob_good_digits := -1 end if; if glob_iter = 1 then array_1st_rel_error[1] := relerr else array_last_rel_error[1] := relerr end if; omniout_float(ALWAYS, "absolute error ", 4, abserr, 20, " "); omniout_float(ALWAYS, "relative error ", 4, relerr, 20, "%"); omniout_int(INFO, "Correct digits ", 32, glob_good_digits, 4, " "); omniout_float(ALWAYS, "h ", 4, glob_h, 20, " ") end if end if end proc > # End Function number 7 > # Begin Function number 8 > adjust_for_pole := proc(h_param) > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_1D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local hnew, sz2, tmp; > #TOP ADJUST FOR POLE > hnew := h_param; > glob_normmax := glob_small_float; > if (omniabs(array_y_higher[1,1]) > glob_small_float) then # if number 1 > tmp := omniabs(array_y_higher[1,1]); > if (tmp < glob_normmax) then # if number 2 > glob_normmax := tmp; > fi;# end if 2 > fi;# end if 1; > if (glob_look_poles and (omniabs(array_pole[1]) > glob_small_float) and (array_pole[1] <> glob_large_float)) then # if number 1 > sz2 := array_pole[1]/10.0; > if (sz2 < hnew) then # if number 2 > omniout_float(INFO,"glob_h adjusted to ",20,h_param,12,"due to singularity."); > omniout_str(INFO,"Reached Optimal"); > return(hnew); > fi;# end if 2 > fi;# end if 1; > if ( not glob_reached_optimal_h) then # if number 1 > glob_reached_optimal_h := true; > glob_curr_iter_when_opt := glob_current_iter; > glob_optimal_clock_start_sec := elapsed_time_seconds(); > glob_optimal_start := array_x[1]; > fi;# end if 1; > hnew := sz2; > ;#END block > return(hnew); > #BOTTOM ADJUST FOR POLE > end; adjust_for_pole := proc(h_param) local hnew, sz2, tmp; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_1D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; hnew := h_param; glob_normmax := glob_small_float; if glob_small_float < omniabs(array_y_higher[1, 1]) then tmp := omniabs(array_y_higher[1, 1]); if tmp < glob_normmax then glob_normmax := tmp end if end if; if glob_look_poles and glob_small_float < omniabs(array_pole[1]) and array_pole[1] <> glob_large_float then sz2 := array_pole[1]/10.0; if sz2 < hnew then omniout_float(INFO, "glob_h adjusted to ", 20, h_param, 12, "due to singularity."); omniout_str(INFO, "Reached Optimal"); return hnew end if end if; if not glob_reached_optimal_h then glob_reached_optimal_h := true; glob_curr_iter_when_opt := glob_current_iter; glob_optimal_clock_start_sec := elapsed_time_seconds(); glob_optimal_start := array_x[1] end if; hnew := sz2; return hnew end proc > # End Function number 8 > # Begin Function number 9 > prog_report := proc(x_start,x_end) > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_1D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local clock_sec, opt_clock_sec, clock_sec1, expect_sec, left_sec, percent_done, total_clock_sec; > #TOP PROGRESS REPORT > clock_sec1 := elapsed_time_seconds(); > total_clock_sec := convfloat(clock_sec1) - convfloat(glob_orig_start_sec); > glob_clock_sec := convfloat(clock_sec1) - convfloat(glob_clock_start_sec); > left_sec := convfloat(glob_max_sec) + convfloat(glob_orig_start_sec) - convfloat(clock_sec1); > expect_sec := comp_expect_sec(convfloat(x_end),convfloat(x_start),convfloat(array_x[1]) + convfloat(glob_h) ,convfloat( clock_sec1) - convfloat(glob_orig_start_sec)); > opt_clock_sec := convfloat( clock_sec1) - convfloat(glob_optimal_clock_start_sec); > glob_optimal_expect_sec := comp_expect_sec(convfloat(x_end),convfloat(x_start),convfloat(array_x[1]) +convfloat( glob_h) ,convfloat( opt_clock_sec)); > glob_total_exp_sec := glob_optimal_expect_sec + total_clock_sec; > percent_done := comp_percent(convfloat(x_end),convfloat(x_start),convfloat(array_x[1]) + convfloat(glob_h)); > glob_percent_done := percent_done; > omniout_str_noeol(INFO,"Total Elapsed Time "); > omniout_timestr(convfloat(total_clock_sec)); > omniout_str_noeol(INFO,"Elapsed Time(since restart) "); > omniout_timestr(convfloat(glob_clock_sec)); > if (convfloat(percent_done) < convfloat(100.0)) then # if number 1 > omniout_str_noeol(INFO,"Expected Time Remaining "); > omniout_timestr(convfloat(expect_sec)); > omniout_str_noeol(INFO,"Optimized Time Remaining "); > omniout_timestr(convfloat(glob_optimal_expect_sec)); > omniout_str_noeol(INFO,"Expected Total Time "); > omniout_timestr(convfloat(glob_total_exp_sec)); > fi;# end if 1; > omniout_str_noeol(INFO,"Time to Timeout "); > omniout_timestr(convfloat(left_sec)); > omniout_float(INFO, "Percent Done ",33,percent_done,4,"%"); > #BOTTOM PROGRESS REPORT > end; prog_report := proc(x_start, x_end) local clock_sec, opt_clock_sec, clock_sec1, expect_sec, left_sec, percent_done, total_clock_sec; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_1D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; clock_sec1 := elapsed_time_seconds(); total_clock_sec := convfloat(clock_sec1) - convfloat(glob_orig_start_sec); glob_clock_sec := convfloat(clock_sec1) - convfloat(glob_clock_start_sec); left_sec := convfloat(glob_max_sec) + convfloat(glob_orig_start_sec) - convfloat(clock_sec1); expect_sec := comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(array_x[1]) + convfloat(glob_h), convfloat(clock_sec1) - convfloat(glob_orig_start_sec)); opt_clock_sec := convfloat(clock_sec1) - convfloat(glob_optimal_clock_start_sec); glob_optimal_expect_sec := comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(array_x[1]) + convfloat(glob_h), convfloat(opt_clock_sec)); glob_total_exp_sec := glob_optimal_expect_sec + total_clock_sec; percent_done := comp_percent(convfloat(x_end), convfloat(x_start), convfloat(array_x[1]) + convfloat(glob_h)); glob_percent_done := percent_done; omniout_str_noeol(INFO, "Total Elapsed Time "); omniout_timestr(convfloat(total_clock_sec)); omniout_str_noeol(INFO, "Elapsed Time(since restart) "); omniout_timestr(convfloat(glob_clock_sec)); if convfloat(percent_done) < convfloat(100.0) then omniout_str_noeol(INFO, "Expected Time Remaining "); omniout_timestr(convfloat(expect_sec)); omniout_str_noeol(INFO, "Optimized Time Remaining "); omniout_timestr(convfloat(glob_optimal_expect_sec)); omniout_str_noeol(INFO, "Expected Total Time "); omniout_timestr(convfloat(glob_total_exp_sec)) end if; omniout_str_noeol(INFO, "Time to Timeout "); omniout_timestr(convfloat(left_sec)); omniout_float(INFO, "Percent Done ", 33, percent_done, 4, "%") end proc > # End Function number 9 > # Begin Function number 10 > check_for_pole := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_1D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local cnt, dr1, dr2, ds1, ds2, hdrc, m, n, nr1, nr2, ord_no, rad_c, rcs, rm0, rm1, rm2, rm3, rm4, found, h_new, ratio, term; > #TOP CHECK FOR POLE > #IN RADII REAL EQ = 1 > #Computes radius of convergence and r_order of pole from 3 adjacent Taylor series terms. EQUATUON NUMBER 1 > #Applies to pole of arbitrary r_order on the real axis, > #Due to Prof. George Corliss. > n := glob_max_terms; > m := n - 1 - 1; > while ((m >= 10) and ((omniabs(array_y_higher[1,m]) < glob_small_float) or (omniabs(array_y_higher[1,m-1]) < glob_small_float) or (omniabs(array_y_higher[1,m-2]) < glob_small_float ))) do # do number 2 > m := m - 1; > od;# end do number 2; > if (m > 10) then # if number 1 > rm0 := array_y_higher[1,m]/array_y_higher[1,m-1]; > rm1 := array_y_higher[1,m-1]/array_y_higher[1,m-2]; > hdrc := convfloat(m-1)*rm0-convfloat(m-2)*rm1; > if (omniabs(hdrc) > glob_small_float) then # if number 2 > rcs := glob_h/hdrc; > ord_no := convfloat(m-1)*rm0/hdrc - convfloat(m) + 2.0; > array_real_pole[1,1] := rcs; > array_real_pole[1,2] := ord_no; > else > array_real_pole[1,1] := glob_large_float; > array_real_pole[1,2] := glob_large_float; > fi;# end if 2 > else > array_real_pole[1,1] := glob_large_float; > array_real_pole[1,2] := glob_large_float; > fi;# end if 1; > #BOTTOM RADII REAL EQ = 1 > #TOP RADII COMPLEX EQ = 1 > #Computes radius of convergence for complex conjugate pair of poles. > #from 6 adjacent Taylor series terms > #Also computes r_order of poles. > #Due to Manuel Prieto. > #With a correction by Dennis J. Darland > n := glob_max_terms - 1 - 1; > cnt := 0; > while ((cnt < 5) and (n >= 10)) do # do number 2 > if (omniabs(array_y_higher[1,n]) > glob_small_float) then # if number 1 > cnt := cnt + 1; > else > cnt := 0; > fi;# end if 1; > n := n - 1; > od;# end do number 2; > m := n + cnt; > if (m <= 10) then # if number 1 > array_complex_pole[1,1] := glob_large_float; > array_complex_pole[1,2] := 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))) then # if number 2 > array_complex_pole[1,1] := glob_large_float; > array_complex_pole[1,2] := 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 > array_complex_pole[1,1] := glob_large_float; > array_complex_pole[1,2] := glob_large_float; > else > if (omniabs(nr1*dr2 - nr2 * dr1) > glob_small_float) then # if number 4 > rcs := ((ds1*dr2 - ds2*dr1 +dr1*dr2)/(nr1*dr2 - nr2 * dr1)); > #(Manuels) rcs := (ds1*dr2 - ds2*dr1)/(nr1*dr2 - nr2 * dr1) > ord_no := (rcs*nr1 - ds1)/(2.0*dr1) -convfloat(m)/2.0; > if (omniabs(rcs) > glob_small_float) then # if number 5 > if (rcs > 0.0) then # if number 6 > rad_c := sqrt(rcs) * omniabs(glob_h); > else > rad_c := glob_large_float; > fi;# end if 6 > else > rad_c := glob_large_float; > ord_no := glob_large_float; > fi;# end if 5 > else > rad_c := glob_large_float; > ord_no := glob_large_float; > fi;# end if 4 > fi;# end if 3; > array_complex_pole[1,1] := rad_c; > array_complex_pole[1,2] := ord_no; > fi;# end if 2; > #BOTTOM RADII COMPLEX EQ = 1 > found := false; > #TOP WHICH RADII EQ = 1 > if ( not found and ((array_real_pole[1,1] = glob_large_float) or (array_real_pole[1,2] = glob_large_float)) and ((array_complex_pole[1,1] <> glob_large_float) and (array_complex_pole[1,2] <> glob_large_float)) and ((array_complex_pole[1,1] > 0.0) and (array_complex_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_complex_pole[1,1]; > array_poles[1,2] := array_complex_pole[1,2]; > found := true; > array_type_pole[1] := 2; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Complex estimate of poles used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found and ((array_real_pole[1,1] <> glob_large_float) and (array_real_pole[1,2] <> glob_large_float) and (array_real_pole[1,1] > 0.0) and (array_real_pole[1,2] > 0.0) and ((array_complex_pole[1,1] = glob_large_float) or (array_complex_pole[1,2] = glob_large_float) or (array_complex_pole[1,1] <= 0.0 ) or (array_complex_pole[1,2] <= 0.0)))) then # if number 2 > array_poles[1,1] := array_real_pole[1,1]; > array_poles[1,2] := array_real_pole[1,2]; > found := true; > array_type_pole[1] := 1; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Real estimate of pole used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found and (((array_real_pole[1,1] = glob_large_float) or (array_real_pole[1,2] = glob_large_float)) and ((array_complex_pole[1,1] = glob_large_float) or (array_complex_pole[1,2] = glob_large_float)))) then # if number 2 > array_poles[1,1] := glob_large_float; > array_poles[1,2] := glob_large_float; > found := true; > array_type_pole[1] := 3; > if (reached_interval()) then # if number 3 > omniout_str(ALWAYS,"NO POLE"); > fi;# end if 3; > fi;# end if 2; > if ( not found and ((array_real_pole[1,1] < array_complex_pole[1,1]) and (array_real_pole[1,1] > 0.0) and (array_real_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_real_pole[1,1]; > array_poles[1,2] := array_real_pole[1,2]; > found := true; > array_type_pole[1] := 1; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Real estimate of pole used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found and ((array_complex_pole[1,1] <> glob_large_float) and (array_complex_pole[1,2] <> glob_large_float) and (array_complex_pole[1,1] > 0.0) and (array_complex_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_complex_pole[1,1]; > array_poles[1,2] := array_complex_pole[1,2]; > array_type_pole[1] := 2; > found := true; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Complex estimate of poles used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found ) then # if number 2 > array_poles[1,1] := glob_large_float; > array_poles[1,2] := glob_large_float; > array_type_pole[1] := 3; > if (reached_interval()) then # if number 3 > omniout_str(ALWAYS,"NO POLE"); > fi;# end if 3; > fi;# end if 2; > #BOTTOM WHICH RADII EQ = 1 > array_pole[1] := glob_large_float; > array_pole[2] := glob_large_float; > #TOP WHICH RADIUS EQ = 1 > if (array_pole[1] > array_poles[1,1]) then # if number 2 > array_pole[1] := array_poles[1,1]; > array_pole[2] := array_poles[1,2]; > fi;# end if 2; > #BOTTOM WHICH RADIUS EQ = 1 > #START ADJUST ALL SERIES > if (array_pole[1] * glob_ratio_of_radius < omniabs(glob_h)) then # if number 2 > h_new := array_pole[1] * glob_ratio_of_radius; > term := 1; > ratio := 1.0; > while (term <= glob_max_terms) do # do number 2 > array_y[term] := array_y[term]* ratio; > array_y_higher[1,term] := array_y_higher[1,term]* ratio; > array_x[term] := array_x[term]* ratio; > ratio := ratio * h_new / omniabs(glob_h); > term := term + 1; > od;# end do number 2; > glob_h := h_new; > fi;# end if 2; > #BOTTOM ADJUST ALL SERIES > if (reached_interval()) then # if number 2 > display_pole(); > fi;# end if 2 > end; check_for_pole := proc() local cnt, dr1, dr2, ds1, ds2, hdrc, m, n, nr1, nr2, ord_no, rad_c, rcs, rm0, rm1, rm2, rm3, rm4, found, h_new, ratio, term; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_1D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; n := glob_max_terms; m := n - 2; while 10 <= m and (omniabs(array_y_higher[1, m]) < glob_small_float or omniabs(array_y_higher[1, m - 1]) < glob_small_float or omniabs(array_y_higher[1, m - 2]) < glob_small_float) do m := m - 1 end do; if 10 < m then rm0 := array_y_higher[1, m]/array_y_higher[1, m - 1]; rm1 := array_y_higher[1, m - 1]/array_y_higher[1, m - 2]; hdrc := convfloat(m - 1)*rm0 - convfloat(m - 2)*rm1; if glob_small_float < omniabs(hdrc) then rcs := glob_h/hdrc; ord_no := convfloat(m - 1)*rm0/hdrc - convfloat(m) + 2.0; array_real_pole[1, 1] := rcs; array_real_pole[1, 2] := ord_no else array_real_pole[1, 1] := glob_large_float; array_real_pole[1, 2] := glob_large_float end if else array_real_pole[1, 1] := glob_large_float; array_real_pole[1, 2] := glob_large_float end if; n := glob_max_terms - 2; cnt := 0; while cnt < 5 and 10 <= n do if glob_small_float < omniabs(array_y_higher[1, n]) then cnt := cnt + 1 else cnt := 0 end if; n := n - 1 end do; m := n + cnt; if m <= 10 then array_complex_pole[1, 1] := glob_large_float; array_complex_pole[1, 2] := 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]) then array_complex_pole[1, 1] := glob_large_float; array_complex_pole[1, 2] := 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 array_complex_pole[1, 1] := glob_large_float; array_complex_pole[1, 2] := glob_large_float else if glob_small_float < omniabs(nr1*dr2 - nr2*dr1) then rcs := (ds1*dr2 - ds2*dr1 + dr1*dr2)/(nr1*dr2 - nr2*dr1); ord_no := (rcs*nr1 - ds1)/(2.0*dr1) - convfloat(m)/2.0; if glob_small_float < omniabs(rcs) then if 0. < rcs then rad_c := sqrt(rcs)*omniabs(glob_h) else rad_c := glob_large_float end if else rad_c := glob_large_float; ord_no := glob_large_float end if else rad_c := glob_large_float; ord_no := glob_large_float end if end if; array_complex_pole[1, 1] := rad_c; array_complex_pole[1, 2] := ord_no end if; found := false; if not found and (array_real_pole[1, 1] = glob_large_float or array_real_pole[1, 2] = glob_large_float) and array_complex_pole[1, 1] <> glob_large_float and array_complex_pole[1, 2] <> glob_large_float and 0. < array_complex_pole[1, 1] and 0. < array_complex_pole[1, 2] then array_poles[1, 1] := array_complex_pole[1, 1]; array_poles[1, 2] := array_complex_pole[1, 2]; found := true; array_type_pole[1] := 2; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Complex estimate of poles used") end if end if end if; if not found and array_real_pole[1, 1] <> glob_large_float and array_real_pole[1, 2] <> glob_large_float and 0. < array_real_pole[1, 1] and 0. < array_real_pole[1, 2] and ( array_complex_pole[1, 1] = glob_large_float or array_complex_pole[1, 2] = glob_large_float or array_complex_pole[1, 1] <= 0. or array_complex_pole[1, 2] <= 0.) then array_poles[1, 1] := array_real_pole[1, 1]; array_poles[1, 2] := array_real_pole[1, 2]; found := true; array_type_pole[1] := 1; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Real estimate of pole used") end if end if end if; if not found and (array_real_pole[1, 1] = glob_large_float or array_real_pole[1, 2] = glob_large_float) and ( array_complex_pole[1, 1] = glob_large_float or array_complex_pole[1, 2] = glob_large_float) then array_poles[1, 1] := glob_large_float; array_poles[1, 2] := glob_large_float; found := true; array_type_pole[1] := 3; if reached_interval() then omniout_str(ALWAYS, "NO POLE") end if end if; if not found and array_real_pole[1, 1] < array_complex_pole[1, 1] and 0. < array_real_pole[1, 1] and 0. < array_real_pole[1, 2] then array_poles[1, 1] := array_real_pole[1, 1]; array_poles[1, 2] := array_real_pole[1, 2]; found := true; array_type_pole[1] := 1; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Real estimate of pole used") end if end if end if; if not found and array_complex_pole[1, 1] <> glob_large_float and array_complex_pole[1, 2] <> glob_large_float and 0. < array_complex_pole[1, 1] and 0. < array_complex_pole[1, 2] then array_poles[1, 1] := array_complex_pole[1, 1]; array_poles[1, 2] := array_complex_pole[1, 2]; array_type_pole[1] := 2; found := true; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Complex estimate of poles used") end if end if end if; if not found then array_poles[1, 1] := glob_large_float; array_poles[1, 2] := glob_large_float; array_type_pole[1] := 3; if reached_interval() then omniout_str(ALWAYS, "NO POLE") end if end if; array_pole[1] := glob_large_float; array_pole[2] := glob_large_float; if array_poles[1, 1] < array_pole[1] then array_pole[1] := array_poles[1, 1]; array_pole[2] := array_poles[1, 2] end if; if array_pole[1]*glob_ratio_of_radius < omniabs(glob_h) then h_new := array_pole[1]*glob_ratio_of_radius; term := 1; ratio := 1.0; while term <= glob_max_terms do array_y[term] := array_y[term]*ratio; array_y_higher[1, term] := array_y_higher[1, term]*ratio; array_x[term] := array_x[term]*ratio; ratio := ratio*h_new/omniabs(glob_h); term := term + 1 end do; glob_h := h_new end if; if reached_interval() then display_pole() end if end proc > # End Function number 10 > # Begin Function number 11 > get_norms := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_1D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local iii; > if ( not glob_initial_pass) then # if number 2 > iii := 1; > while (iii <= glob_max_terms) do # do number 2 > array_norms[iii] := 0.0; > iii := iii + 1; > od;# end do number 2; > #TOP GET NORMS > iii := 1; > while (iii <= glob_max_terms) do # do number 2 > if (omniabs(array_y[iii]) > array_norms[iii]) then # if number 3 > array_norms[iii] := omniabs(array_y[iii]); > fi;# end if 3; > iii := iii + 1; > od;# end do number 2 > #BOTTOM GET NORMS > ; > fi;# end if 2; > end; get_norms := proc() local iii; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_1D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; if not glob_initial_pass then iii := 1; while iii <= glob_max_terms do array_norms[iii] := 0.; iii := iii + 1 end do; iii := 1; while iii <= glob_max_terms do if array_norms[iii] < omniabs(array_y[iii]) then array_norms[iii] := omniabs(array_y[iii]) end if; iii := iii + 1 end do end if end proc > # End Function number 11 > # Begin Function number 12 > atomall := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_1D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local kkk, order_d, adj2, adj3 , temporary, term; > #TOP ATOMALL > #END OUTFILE1 > #BEGIN ATOMHDR1 > #emit pre mult LINEAR - LINEAR $eq_no = 1 i = 1 > array_tmp1[1] := array_x[1] * array_x[1]; > #emit pre add FULL - CONST $eq_no = 1 i = 1 > array_tmp2[1] := array_tmp1[1] + array_const_1D0[1]; > #emit pre div CONST FULL $eq_no = 1 i = 1 > array_tmp3[1] := array_const_1D0[1] / array_tmp2[1]; > #emit pre add CONST FULL $eq_no = 1 i = 1 > array_tmp4[1] := array_const_0D0[1] + array_tmp3[1]; > #emit pre assign xxx $eq_no = 1 i = 1 $min_hdrs = 5 > if ( not array_y_set_initial[1,2]) then # if number 1 > if (1 <= glob_max_terms) then # if number 2 > temporary := array_tmp4[1] * expt(glob_h , (1)) * factorial_3(0,1); > array_y[2] := temporary; > array_y_higher[1,2] := temporary; > temporary := temporary / glob_h; > array_y_higher[2,1] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 2; > #END ATOMHDR1 > #BEGIN ATOMHDR2 > #emit pre mult LINEAR - LINEAR $eq_no = 1 i = 2 > array_tmp1[2] := array_x[1] * array_x[2] + array_x[2] * array_x[1]; > #emit pre add FULL CONST $eq_no = 1 i = 2 > array_tmp2[2] := array_tmp1[2]; > #emit pre div CONST FULL $eq_no = 1 i = 2 > array_tmp3[2] := -ats(2,array_tmp2,array_tmp3,2) / array_tmp2[1]; > #emit pre add CONST FULL $eq_no = 1 i = 2 > array_tmp4[2] := array_tmp3[2]; > #emit pre assign xxx $eq_no = 1 i = 2 $min_hdrs = 5 > if ( not array_y_set_initial[1,3]) then # if number 1 > if (2 <= glob_max_terms) then # if number 2 > temporary := array_tmp4[2] * expt(glob_h , (1)) * factorial_3(1,2); > array_y[3] := temporary; > array_y_higher[1,3] := temporary; > temporary := temporary / glob_h; > array_y_higher[2,2] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 3; > #END ATOMHDR2 > #BEGIN ATOMHDR3 > #emit pre mult LINEAR - LINEAR $eq_no = 1 i = 3 > array_tmp1[3] := array_x[2] * array_x[2]; > #emit pre add FULL CONST $eq_no = 1 i = 3 > array_tmp2[3] := array_tmp1[3]; > #emit pre div CONST FULL $eq_no = 1 i = 3 > array_tmp3[3] := -ats(3,array_tmp2,array_tmp3,2) / array_tmp2[1]; > #emit pre add CONST FULL $eq_no = 1 i = 3 > array_tmp4[3] := array_tmp3[3]; > #emit pre assign xxx $eq_no = 1 i = 3 $min_hdrs = 5 > if ( not array_y_set_initial[1,4]) then # if number 1 > if (3 <= glob_max_terms) then # if number 2 > temporary := array_tmp4[3] * expt(glob_h , (1)) * factorial_3(2,3); > array_y[4] := temporary; > array_y_higher[1,4] := temporary; > temporary := temporary / glob_h * (2.0); > array_y_higher[2,3] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 4; > #END ATOMHDR3 > #BEGIN ATOMHDR4 > #emit pre add FULL CONST $eq_no = 1 i = 4 > array_tmp2[4] := array_tmp1[4]; > #emit pre div CONST FULL $eq_no = 1 i = 4 > array_tmp3[4] := -ats(4,array_tmp2,array_tmp3,2) / array_tmp2[1]; > #emit pre add CONST FULL $eq_no = 1 i = 4 > array_tmp4[4] := array_tmp3[4]; > #emit pre assign xxx $eq_no = 1 i = 4 $min_hdrs = 5 > if ( not array_y_set_initial[1,5]) then # if number 1 > if (4 <= glob_max_terms) then # if number 2 > temporary := array_tmp4[4] * expt(glob_h , (1)) * factorial_3(3,4); > array_y[5] := temporary; > array_y_higher[1,5] := temporary; > temporary := temporary / glob_h * (3.0); > array_y_higher[2,4] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 5; > #END ATOMHDR4 > #BEGIN ATOMHDR5 > #emit pre add FULL CONST $eq_no = 1 i = 5 > array_tmp2[5] := array_tmp1[5]; > #emit pre div CONST FULL $eq_no = 1 i = 5 > array_tmp3[5] := -ats(5,array_tmp2,array_tmp3,2) / array_tmp2[1]; > #emit pre add CONST FULL $eq_no = 1 i = 5 > array_tmp4[5] := array_tmp3[5]; > #emit pre assign xxx $eq_no = 1 i = 5 $min_hdrs = 5 > if ( not array_y_set_initial[1,6]) then # if number 1 > if (5 <= glob_max_terms) then # if number 2 > temporary := array_tmp4[5] * expt(glob_h , (1)) * factorial_3(4,5); > array_y[6] := temporary; > array_y_higher[1,6] := temporary; > temporary := temporary / glob_h * (4.0); > array_y_higher[2,5] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 6; > #END ATOMHDR5 > #BEGIN OUTFILE3 > #Top Atomall While Loop-- outfile3 > while (kkk <= glob_max_terms) do # do number 1 > #END OUTFILE3 > #BEGIN OUTFILE4 > #emit mult LINEAR - LINEAR $eq_no = 1 i = 1 > #emit FULL - NOT FULL add $eq_no = 1 > array_tmp2[kkk] := array_tmp1[kkk]; > #emit div CONST FULL $eq_no = 1 i = 1 > array_tmp3[kkk] := -ats(kkk,array_tmp2,array_tmp3,2) / array_tmp2[1]; > #emit NOT FULL - FULL add $eq_no = 1 > array_tmp4[kkk] := array_tmp3[kkk]; > #emit assign $eq_no = 1 > order_d := 1; > if (kkk + order_d + 1 <= glob_max_terms) then # if number 1 > if ( not array_y_set_initial[1,kkk + order_d]) then # if number 2 > temporary := array_tmp4[kkk] * expt(glob_h , (order_d)) / factorial_3((kkk - 1),(kkk + order_d - 1)); > array_y[kkk + order_d] := temporary; > array_y_higher[1,kkk + order_d] := temporary; > term := kkk + order_d - 1; > adj2 := kkk + order_d - 2; > adj3 := 2; > while (term >= 1) do # do number 2 > if (adj3 <= order_d + 1) then # if number 3 > if (adj2 > 1) then # if number 4 > temporary := temporary / glob_h * convfp(adj2); > else > temporary := temporary / glob_h; > fi;# end if 4; > array_y_higher[adj3,term] := temporary; > fi;# end if 3; > term := term - 1; > adj2 := adj2 - 1; > adj3 := adj3 + 1; > od;# end do number 2 > fi;# end if 2 > fi;# end if 1; > kkk := kkk + 1; > od;# end do number 1; > #BOTTOM ATOMALL > #END OUTFILE4 > #BEGIN OUTFILE5 > #BOTTOM ATOMALL ??? > end; atomall := proc() local kkk, order_d, adj2, adj3, temporary, term; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_1D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; array_tmp1[1] := array_x[1]*array_x[1]; array_tmp2[1] := array_tmp1[1] + array_const_1D0[1]; array_tmp3[1] := array_const_1D0[1]/array_tmp2[1]; array_tmp4[1] := array_const_0D0[1] + array_tmp3[1]; if not array_y_set_initial[1, 2] then if 1 <= glob_max_terms then temporary := array_tmp4[1]*expt(glob_h, 1)*factorial_3(0, 1); array_y[2] := temporary; array_y_higher[1, 2] := temporary; temporary := temporary/glob_h; array_y_higher[2, 1] := temporary end if end if; kkk := 2; array_tmp1[2] := 2*array_x[1]*array_x[2]; array_tmp2[2] := array_tmp1[2]; array_tmp3[2] := -ats(2, array_tmp2, array_tmp3, 2)/array_tmp2[1]; array_tmp4[2] := array_tmp3[2]; if not array_y_set_initial[1, 3] then if 2 <= glob_max_terms then temporary := array_tmp4[2]*expt(glob_h, 1)*factorial_3(1, 2); array_y[3] := temporary; array_y_higher[1, 3] := temporary; temporary := temporary/glob_h; array_y_higher[2, 2] := temporary end if end if; kkk := 3; array_tmp1[3] := array_x[2]*array_x[2]; array_tmp2[3] := array_tmp1[3]; array_tmp3[3] := -ats(3, array_tmp2, array_tmp3, 2)/array_tmp2[1]; array_tmp4[3] := array_tmp3[3]; if not array_y_set_initial[1, 4] then if 3 <= glob_max_terms then temporary := array_tmp4[3]*expt(glob_h, 1)*factorial_3(2, 3); array_y[4] := temporary; array_y_higher[1, 4] := temporary; temporary := temporary*2.0/glob_h; array_y_higher[2, 3] := temporary end if end if; kkk := 4; array_tmp2[4] := array_tmp1[4]; array_tmp3[4] := -ats(4, array_tmp2, array_tmp3, 2)/array_tmp2[1]; array_tmp4[4] := array_tmp3[4]; if not array_y_set_initial[1, 5] then if 4 <= glob_max_terms then temporary := array_tmp4[4]*expt(glob_h, 1)*factorial_3(3, 4); array_y[5] := temporary; array_y_higher[1, 5] := temporary; temporary := temporary*3.0/glob_h; array_y_higher[2, 4] := temporary end if end if; kkk := 5; array_tmp2[5] := array_tmp1[5]; array_tmp3[5] := -ats(5, array_tmp2, array_tmp3, 2)/array_tmp2[1]; array_tmp4[5] := array_tmp3[5]; if not array_y_set_initial[1, 6] then if 5 <= glob_max_terms then temporary := array_tmp4[5]*expt(glob_h, 1)*factorial_3(4, 5); array_y[6] := temporary; array_y_higher[1, 6] := temporary; temporary := temporary*4.0/glob_h; array_y_higher[2, 5] := temporary end if end if; kkk := 6; while kkk <= glob_max_terms do array_tmp2[kkk] := array_tmp1[kkk]; array_tmp3[kkk] := -ats(kkk, array_tmp2, array_tmp3, 2)/array_tmp2[1]; array_tmp4[kkk] := array_tmp3[kkk]; order_d := 1; if kkk + order_d + 1 <= glob_max_terms then if not array_y_set_initial[1, kkk + order_d] then temporary := array_tmp4[kkk]*expt(glob_h, order_d)/ factorial_3(kkk - 1, kkk + order_d - 1); array_y[kkk + order_d] := temporary; array_y_higher[1, kkk + order_d] := temporary; term := kkk + order_d - 1; adj2 := kkk + order_d - 2; adj3 := 2; while 1 <= term do if adj3 <= order_d + 1 then if 1 < adj2 then temporary := temporary*convfp(adj2)/glob_h else temporary := temporary/glob_h 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.0) 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 rel_error <> 0. then good_digits := 1 - trunc(log10(rel_error)); fprintf(file, "%d", good_digits) else good_digits := Digits; fprintf(file, "%d", good_digits) end if else fprintf(file, "Unknown") end if; fprintf(file, "") end proc > # End Function number 19 > # Begin Function number 20 > log_revs := proc(file,revs) > fprintf(file,revs); > end; log_revs := proc(file, revs) fprintf(file, revs) end proc > # End Function number 20 > # Begin Function number 21 > logitem_float := proc(file,x) > fprintf(file,""); > fprintf(file,"%g",x); > fprintf(file,""); > end; logitem_float := proc(file, x) fprintf(file, ""); fprintf(file, "%g", x); fprintf(file, "") end proc > # End Function number 21 > # Begin Function number 22 > logitem_pole := proc(file,pole) > fprintf(file,""); > if (pole = 0) then # if number 6 > fprintf(file,"NA"); > elif > (pole = 1) then # if number 7 > fprintf(file,"Real"); > elif > (pole = 2) then # if number 8 > fprintf(file,"Complex"); > else > fprintf(file,"No Pole"); > fi;# end if 8 > fprintf(file,""); > end; logitem_pole := proc(file, pole) fprintf(file, ""); if pole = 0 then fprintf(file, "NA") elif pole = 1 then fprintf(file, "Real") elif pole = 2 then fprintf(file, "Complex") else fprintf(file, "No Pole") end if; fprintf(file, "") end proc > # End Function number 22 > # Begin Function number 23 > logstart := proc(file) > fprintf(file,""); > end; logstart := proc(file) fprintf(file, "") end proc > # End Function number 23 > # Begin Function number 24 > logend := proc(file) > fprintf(file,"\n"); > end; logend := proc(file) fprintf(file, "\n") end proc > # End Function number 24 > # Begin Function number 25 > chk_data := proc() > global glob_max_iter,ALWAYS, glob_max_terms; > local errflag; > errflag := false; > if ((glob_max_terms < 15) or (glob_max_terms > 512)) then # if number 8 > omniout_str(ALWAYS,"Illegal max_terms = -- Using 30"); > glob_max_terms := 30; > fi;# end if 8; > if (glob_max_iter < 2) then # if number 8 > omniout_str(ALWAYS,"Illegal max_iter"); > errflag := true; > fi;# end if 8; > if (errflag) then # if number 8 > quit; > fi;# end if 8 > end; chk_data := proc() local errflag; global glob_max_iter, ALWAYS, glob_max_terms; errflag := false; if glob_max_terms < 15 or 512 < glob_max_terms then omniout_str(ALWAYS, "Illegal max_terms = -- Using 30"); glob_max_terms := 30 end if; if glob_max_iter < 2 then omniout_str(ALWAYS, "Illegal max_iter"); errflag := true end if; if errflag then quit end if end proc > # End Function number 25 > # Begin Function number 26 > comp_expect_sec := proc(t_end2,t_start2,t2,clock_sec2) > global glob_small_float; > local ms2, rrr, sec_left, sub1, sub2; > ; > ms2 := clock_sec2; > sub1 := (t_end2-t_start2); > sub2 := (t2-t_start2); > if (sub1 = 0.0) then # if number 8 > sec_left := 0.0; > else > if (sub2 > 0.0) then # if number 9 > rrr := (sub1/sub2); > sec_left := rrr * ms2 - ms2; > else > sec_left := 0.0; > fi;# end if 9 > fi;# end if 8; > sec_left; > end; comp_expect_sec := proc(t_end2, t_start2, t2, clock_sec2) local ms2, rrr, sec_left, sub1, sub2; global glob_small_float; ms2 := clock_sec2; sub1 := t_end2 - t_start2; sub2 := t2 - t_start2; if sub1 = 0. then sec_left := 0. else if 0. < sub2 then rrr := sub1/sub2; sec_left := rrr*ms2 - ms2 else sec_left := 0. end if end if; sec_left end proc > # End Function number 26 > # Begin Function number 27 > comp_percent := proc(t_end2,t_start2, t2) > global glob_small_float; > local rrr, sub1, sub2; > sub1 := (t_end2-t_start2); > sub2 := (t2-t_start2); > if (sub2 > glob_small_float) then # if number 8 > rrr := (100.0*sub2)/sub1; > else > rrr := 0.0; > fi;# end if 8; > rrr; > end; comp_percent := proc(t_end2, t_start2, t2) local rrr, sub1, sub2; global glob_small_float; sub1 := t_end2 - t_start2; sub2 := t2 - t_start2; if glob_small_float < sub2 then rrr := 100.0*sub2/sub1 else rrr := 0. end if; rrr end proc > # End Function number 27 > # Begin Function number 28 > factorial_2 := proc(nnn) > nnn!; > end; factorial_2 := proc(nnn) nnn! end proc > # End Function number 28 > # Begin Function number 29 > factorial_1 := proc(nnn) > global glob_max_terms,array_fact_1; > local ret; > if (nnn <= glob_max_terms) then # if number 8 > if (array_fact_1[nnn] = 0) then # if number 9 > ret := factorial_2(nnn); > array_fact_1[nnn] := ret; > else > ret := array_fact_1[nnn]; > fi;# end if 9; > else > ret := factorial_2(nnn); > fi;# end if 8; > ret; > end; factorial_1 := proc(nnn) local ret; global glob_max_terms, array_fact_1; if nnn <= glob_max_terms then if array_fact_1[nnn] = 0 then ret := factorial_2(nnn); array_fact_1[nnn] := ret else ret := array_fact_1[nnn] end if else ret := factorial_2(nnn) end if; ret end proc > # End Function number 29 > # Begin Function number 30 > factorial_3 := proc(mmm,nnn) > global glob_max_terms,array_fact_2; > local ret; > if ((nnn <= glob_max_terms) and (mmm <= glob_max_terms)) then # if number 8 > if (array_fact_2[mmm,nnn] = 0) then # if number 9 > ret := factorial_1(mmm)/factorial_1(nnn); > array_fact_2[mmm,nnn] := ret; > else > ret := array_fact_2[mmm,nnn]; > fi;# end if 9; > else > ret := factorial_2(mmm)/factorial_2(nnn); > fi;# end if 8; > ret; > end; factorial_3 := proc(mmm, nnn) local ret; global glob_max_terms, array_fact_2; if nnn <= glob_max_terms and mmm <= glob_max_terms then if array_fact_2[mmm, nnn] = 0 then ret := factorial_1(mmm)/factorial_1(nnn); array_fact_2[mmm, nnn] := ret else ret := array_fact_2[mmm, nnn] end if else ret := factorial_2(mmm)/factorial_2(nnn) end if; ret end proc > # End Function number 30 > # Begin Function number 31 > convfp := proc(mmm) > (mmm); > end; convfp := proc(mmm) mmm end proc > # End Function number 31 > # Begin Function number 32 > convfloat := proc(mmm) > (mmm); > end; convfloat := proc(mmm) mmm end proc > # End Function number 32 > # Begin Function number 33 > elapsed_time_seconds := proc() > time(); > end; elapsed_time_seconds := proc() time() end proc > # End Function number 33 > # Begin Function number 34 > omniabs := proc(x) > abs(x); > end; omniabs := proc(x) abs(x) end proc > # End Function number 34 > # Begin Function number 35 > expt := proc(x,y) > (x^y); > end; expt := proc(x, y) x^y end proc > # End Function number 35 > # Begin Function number 36 > estimated_needed_step_error := proc(x_start,x_end,estimated_h,estimated_answer) > local desired_abs_gbl_error,range,estimated_steps,step_error; > global glob_desired_digits_correct,ALWAYS; > omniout_float(ALWAYS,"glob_desired_digits_correct",32,glob_desired_digits_correct,32,""); > desired_abs_gbl_error := expt(10.0,- glob_desired_digits_correct) * omniabs(estimated_answer); > omniout_float(ALWAYS,"desired_abs_gbl_error",32,desired_abs_gbl_error,32,""); > range := (x_end - x_start); > omniout_float(ALWAYS,"range",32,range,32,""); > estimated_steps := range / estimated_h; > omniout_float(ALWAYS,"estimated_steps",32,estimated_steps,32,""); > step_error := omniabs(desired_abs_gbl_error / estimated_steps); > omniout_float(ALWAYS,"step_error",32,step_error,32,""); > (step_error);; > end; estimated_needed_step_error := proc( x_start, x_end, estimated_h, estimated_answer) local desired_abs_gbl_error, range, estimated_steps, step_error; global glob_desired_digits_correct, ALWAYS; omniout_float(ALWAYS, "glob_desired_digits_correct", 32, glob_desired_digits_correct, 32, ""); desired_abs_gbl_error := expt(10.0, -glob_desired_digits_correct)*omniabs(estimated_answer); omniout_float(ALWAYS, "desired_abs_gbl_error", 32, desired_abs_gbl_error, 32, ""); range := x_end - x_start; omniout_float(ALWAYS, "range", 32, range, 32, ""); estimated_steps := range/estimated_h; omniout_float(ALWAYS, "estimated_steps", 32, estimated_steps, 32, ""); step_error := omniabs(desired_abs_gbl_error/estimated_steps); omniout_float(ALWAYS, "step_error", 32, step_error, 32, ""); step_error end proc > # End Function number 36 > #END ATS LIBRARY BLOCK > #BEGIN USER DEF BLOCK > #BEGIN USER DEF BLOCK > exact_soln_y := proc(x) > return(arctan(x)); > end; exact_soln_y := proc(x) return arctan(x) end proc > #END USER DEF BLOCK > #END USER DEF BLOCK > #END OUTFILE5 > # Begin Function number 2 > main := proc() > #BEGIN OUTFIEMAIN > local d1,d2,d3,d4,est_err_2,niii,done_once, > term,ord,order_diff,term_no,html_log_file,iiif,jjjf, > rows,r_order,sub_iter,calc_term,iii,temp_sum,current_iter, > x_start,x_end > ,it, log10norm, max_terms, opt_iter, tmp,subiter, est_needed_step_err,value3,min_value,est_answer,best_h,found_h; > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_1D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > glob_last; > ALWAYS := 1; > INFO := 2; > DEBUGL := 3; > DEBUGMASSIVE := 4; > glob_iolevel := INFO; > glob_max_terms := 30; > glob_iolevel := 5; > ALWAYS := 1; > INFO := 2; > DEBUGL := 3; > DEBUGMASSIVE := 4; > MAX_UNCHANGED := 10; > glob_check_sign := 1.0; > glob_desired_digits_correct := 8.0; > glob_max_value3 := 0.0; > glob_ratio_of_radius := 0.01; > glob_percent_done := 0.0; > glob_subiter_method := 3; > glob_log10normmin := 0.1; > glob_total_exp_sec := 0.1; > glob_optimal_expect_sec := 0.1; > glob_html_log := true; > glob_good_digits := 0; > glob_max_opt_iter := 10; > glob_dump := false; > glob_djd_debug := true; > glob_display_flag := true; > glob_djd_debug2 := true; > glob_sec_in_minute := 60; > glob_min_in_hour := 60; > glob_hours_in_day := 24; > glob_days_in_year := 365; > glob_sec_in_hour := 3600; > glob_sec_in_day := 86400; > glob_sec_in_year := 31536000; > glob_almost_1 := 0.9990; > glob_clock_sec := 0.0; > glob_clock_start_sec := 0.0; > glob_not_yet_finished := true; > glob_initial_pass := true; > glob_not_yet_start_msg := true; > glob_reached_optimal_h := false; > glob_optimal_done := false; > glob_disp_incr := 0.1; > glob_h := 0.1; > glob_hmax := 1.0; > glob_hmin := 0.00000000001; > glob_hmin_init := 0.001; > glob_large_float := 9.0e100; > glob_last_good_h := 0.1; > glob_look_poles := false; > glob_neg_h := false; > glob_display_interval := 0.0; > glob_next_display := 0.0; > glob_dump_analytic := false; > glob_log10_abserr := 0.1e-10; > glob_log10_relerr := 0.1e-10; > glob_abserr := 0.1e-10; > glob_relerr := 0.1e-10; > glob_max_hours := 0.0; > glob_max_iter := 1000; > glob_max_rel_trunc_err := 0.1e-10; > glob_max_trunc_err := 0.1e-10; > glob_no_eqs := 0; > glob_optimal_clock_start_sec := 0.0; > glob_optimal_start := 0.0; > glob_small_float := 0.1e-50; > glob_smallish_float := 0.1e-100; > glob_unchanged_h_cnt := 0; > glob_warned := false; > glob_warned2 := false; > glob_max_sec := 10000.0; > glob_orig_start_sec := 0.0; > glob_start := 0; > glob_curr_iter_when_opt := 0; > glob_current_iter := 0; > glob_iter := 0; > glob_normmax := 0.0; > glob_log10abserr := 0.0; > glob_log10relerr := 0.0; > glob_max_minutes := 0.0; > #Write Set Defaults > glob_orig_start_sec := elapsed_time_seconds(); > MAX_UNCHANGED := 10; > glob_curr_iter_when_opt := 0; > glob_display_flag := true; > glob_no_eqs := 1; > glob_iter := -1; > opt_iter := -1; > glob_max_iter := 50000; > glob_max_hours := 0.0; > glob_max_minutes := 15.0; > omniout_str(ALWAYS,"##############ECHO OF PROBLEM#################"); > omniout_str(ALWAYS,"##############temp/sing2postode.ode#################"); > omniout_str(ALWAYS,"diff ( y , x , 1 ) = 1.0/ (x * x + 1.0) ;"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#BEGIN FIRST INPUT BLOCK"); > omniout_str(ALWAYS,"Digits:=32;"); > omniout_str(ALWAYS,"max_terms:=30;"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#END FIRST INPUT BLOCK"); > omniout_str(ALWAYS,"#BEGIN SECOND INPUT BLOCK"); > omniout_str(ALWAYS,"x_start := -2.0;"); > omniout_str(ALWAYS,"x_end := 1.0;"); > omniout_str(ALWAYS,"glob_h := 0.00001;"); > omniout_str(ALWAYS,"array_y_init[0 + 1] := exact_soln_y(x_start);"); > omniout_str(ALWAYS,"glob_look_poles := true;"); > omniout_str(ALWAYS,"glob_max_iter := 100;"); > omniout_str(ALWAYS,"#END SECOND INPUT BLOCK"); > omniout_str(ALWAYS,"#BEGIN OVERRIDE BLOCK"); > omniout_str(ALWAYS,"glob_desired_digits_correct:=10;"); > omniout_str(ALWAYS,"glob_display_interval:=0.001;"); > omniout_str(ALWAYS,"glob_look_poles:=true;"); > omniout_str(ALWAYS,"glob_max_iter:=10000000;"); > omniout_str(ALWAYS,"glob_max_minutes:=3;"); > omniout_str(ALWAYS,"#END OVERRIDE BLOCK"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#BEGIN USER DEF BLOCK"); > omniout_str(ALWAYS,"exact_soln_y := proc(x)"); > omniout_str(ALWAYS,"return(arctan(x));"); > omniout_str(ALWAYS,"end;"); > omniout_str(ALWAYS,""); > omniout_str(ALWAYS,""); > omniout_str(ALWAYS,"#END USER DEF BLOCK"); > omniout_str(ALWAYS,"#######END OF ECHO OF PROBLEM#################"); > glob_unchanged_h_cnt := 0; > glob_warned := false; > glob_warned2 := false; > glob_small_float := 1.0e-200; > glob_smallish_float := 1.0e-64; > glob_large_float := 1.0e100; > glob_almost_1 := 0.99; > glob_log10_abserr := -8.0; > glob_log10_relerr := -8.0; > glob_hmax := 0.01; > #BEGIN FIRST INPUT BLOCK > #BEGIN FIRST INPUT BLOCK > Digits:=32; > max_terms:=30; > #END FIRST INPUT BLOCK > #START OF INITS AFTER INPUT BLOCK > glob_max_terms := max_terms; > glob_html_log := true; > #END OF INITS AFTER INPUT BLOCK > array_y_init:= Array(0..(max_terms + 1),[]); > array_norms:= Array(0..(max_terms + 1),[]); > array_fact_1:= Array(0..(max_terms + 1),[]); > array_pole:= Array(0..(max_terms + 1),[]); > array_1st_rel_error:= Array(0..(max_terms + 1),[]); > array_last_rel_error:= Array(0..(max_terms + 1),[]); > array_type_pole:= Array(0..(max_terms + 1),[]); > array_y:= Array(0..(max_terms + 1),[]); > array_x:= Array(0..(max_terms + 1),[]); > array_tmp0:= Array(0..(max_terms + 1),[]); > array_tmp1:= Array(0..(max_terms + 1),[]); > array_tmp2:= Array(0..(max_terms + 1),[]); > array_tmp3:= Array(0..(max_terms + 1),[]); > array_tmp4:= Array(0..(max_terms + 1),[]); > array_m1:= Array(0..(max_terms + 1),[]); > array_y_higher := Array(0..(2+ 1) ,(0..max_terms+ 1),[]); > array_y_higher_work := Array(0..(2+ 1) ,(0..max_terms+ 1),[]); > array_y_higher_work2 := Array(0..(2+ 1) ,(0..max_terms+ 1),[]); > array_y_set_initial := Array(0..(2+ 1) ,(0..max_terms+ 1),[]); > array_poles := Array(0..(1+ 1) ,(0..3+ 1),[]); > array_real_pole := Array(0..(1+ 1) ,(0..3+ 1),[]); > array_complex_pole := Array(0..(1+ 1) ,(0..3+ 1),[]); > array_fact_2 := Array(0..(max_terms+ 1) ,(0..max_terms+ 1),[]); > term := 1; > while (term <= max_terms) do # do number 2 > array_y_init[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_norms[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_fact_1[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_pole[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_1st_rel_error[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_last_rel_error[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_type_pole[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_y[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_x[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp0[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp1[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp2[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp3[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp4[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_m1[term] := 0.0; > term := term + 1; > od;# end do number 2; > ord := 1; > while (ord <=2) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_y_higher[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=2) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_y_higher_work[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=2) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_y_higher_work2[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=2) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_y_set_initial[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=1) do # do number 2 > term := 1; > while (term <= 3) do # do number 3 > array_poles[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=1) do # do number 2 > term := 1; > while (term <= 3) do # do number 3 > array_real_pole[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=1) do # do number 2 > term := 1; > while (term <= 3) do # do number 3 > array_complex_pole[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=max_terms) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_fact_2[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > #BEGIN ARRAYS DEFINED AND INITIALIZATED > array_y := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_y[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_x := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_x[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp0 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp0[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp2 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp2[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp3 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp3[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp4 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp4[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_m1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_m1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_1[1] := 1; > array_const_0D0 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_0D0[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_0D0[1] := 0.0; > array_const_1D0 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_1D0[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_1D0[1] := 1.0; > array_m1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms) do # do number 2 > array_m1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_m1[1] := -1.0; > #END ARRAYS DEFINED AND INITIALIZATED > #Initing Factorial Tables > iiif := 0; > while (iiif <= glob_max_terms) do # do number 2 > jjjf := 0; > while (jjjf <= glob_max_terms) do # do number 3 > array_fact_1[iiif] := 0; > array_fact_2[iiif,jjjf] := 0; > jjjf := jjjf + 1; > od;# end do number 3; > iiif := iiif + 1; > od;# end do number 2; > #Done Initing Factorial Tables > #TOP SECOND INPUT BLOCK > #BEGIN SECOND INPUT BLOCK > #END FIRST INPUT BLOCK > #BEGIN SECOND INPUT BLOCK > x_start := -2.0; > x_end := 1.0; > glob_h := 0.00001; > array_y_init[0 + 1] := exact_soln_y(x_start); > glob_look_poles := true; > glob_max_iter := 100; > #END SECOND INPUT BLOCK > #BEGIN OVERRIDE BLOCK > glob_desired_digits_correct:=10; > glob_display_interval:=0.001; > glob_look_poles:=true; > glob_max_iter:=10000000; > glob_max_minutes:=3; > #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(); > 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 := 1; > #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 > display_alot(current_iter) > ; > od;# end do number 2;#right paren 0001C > omniout_str(ALWAYS,"Finished!"); > if (glob_iter >= glob_max_iter) then # if number 3 > omniout_str(ALWAYS,"Maximum Iterations Reached before Solution Completed!"); > fi;# end if 3; > if (elapsed_time_seconds() - convfloat(glob_orig_start_sec) >= convfloat(glob_max_sec )) then # if number 3 > omniout_str(ALWAYS,"Maximum Time Reached before Solution Completed!"); > fi;# end if 3; > glob_clock_sec := elapsed_time_seconds(); > omniout_str(INFO,"diff ( y , x , 1 ) = 1.0/ (x * x + 1.0) ;"); > omniout_int(INFO,"Iterations ",32,glob_iter,4," ") > ; > prog_report(x_start,x_end); > if (glob_html_log) then # if number 3 > logstart(html_log_file); > logitem_str(html_log_file,"2012-12-15T02:52:28-06:00") > ; > logitem_str(html_log_file,"Maple") > ; > logitem_str(html_log_file,"sing2") > ; > logitem_str(html_log_file,"diff ( y , x , 1 ) = 1.0/ (x * x + 1.0) ;") > ; > logitem_float(html_log_file,x_start) > ; > logitem_float(html_log_file,x_end) > ; > logitem_float(html_log_file,array_x[1]) > ; > logitem_float(html_log_file,glob_h) > ; > logitem_integer(html_log_file,Digits) > ; > ; > logitem_good_digits(html_log_file,array_last_rel_error[1]) > ; > logitem_integer(html_log_file,glob_max_terms) > ; > logitem_float(html_log_file,array_1st_rel_error[1]) > ; > logitem_float(html_log_file,array_last_rel_error[1]) > ; > logitem_integer(html_log_file,glob_iter) > ; > logitem_pole(html_log_file,array_type_pole[1]) > ; > if (array_type_pole[1] = 1 or array_type_pole[1] = 2) then # if number 4 > logitem_float(html_log_file,array_pole[1]) > ; > logitem_float(html_log_file,array_pole[2]) > ; > 0; > else > logitem_str(html_log_file,"NA") > ; > logitem_str(html_log_file,"NA") > ; > 0; > fi;# end if 4; > logitem_time(html_log_file,convfloat(glob_clock_sec)) > ; > if (glob_percent_done < 100.0) then # if number 4 > logitem_time(html_log_file,convfloat(glob_total_exp_sec)) > ; > 0; > else > logitem_str(html_log_file,"Done") > ; > 0; > fi;# end if 4; > log_revs(html_log_file," 151 ") > ; > logitem_str(html_log_file,"sing2 diffeq.mxt") > ; > logitem_str(html_log_file,"sing2 maple results") > ; > logitem_str(html_log_file,"Languages compared") > ; > 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; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_1D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; glob_last; ALWAYS := 1; INFO := 2; DEBUGL := 3; DEBUGMASSIVE := 4; glob_iolevel := INFO; glob_max_terms := 30; glob_iolevel := 5; ALWAYS := 1; INFO := 2; DEBUGL := 3; DEBUGMASSIVE := 4; MAX_UNCHANGED := 10; glob_check_sign := 1.0; glob_desired_digits_correct := 8.0; glob_max_value3 := 0.; glob_ratio_of_radius := 0.01; glob_percent_done := 0.; glob_subiter_method := 3; glob_log10normmin := 0.1; glob_total_exp_sec := 0.1; glob_optimal_expect_sec := 0.1; glob_html_log := true; glob_good_digits := 0; glob_max_opt_iter := 10; glob_dump := false; glob_djd_debug := true; glob_display_flag := true; glob_djd_debug2 := true; glob_sec_in_minute := 60; glob_min_in_hour := 60; glob_hours_in_day := 24; glob_days_in_year := 365; glob_sec_in_hour := 3600; glob_sec_in_day := 86400; glob_sec_in_year := 31536000; glob_almost_1 := 0.9990; glob_clock_sec := 0.; glob_clock_start_sec := 0.; glob_not_yet_finished := true; glob_initial_pass := true; glob_not_yet_start_msg := true; glob_reached_optimal_h := false; glob_optimal_done := false; glob_disp_incr := 0.1; glob_h := 0.1; glob_hmax := 1.0; glob_hmin := 0.1*10^(-10); glob_hmin_init := 0.001; glob_large_float := 0.90*10^101; glob_last_good_h := 0.1; glob_look_poles := false; glob_neg_h := false; glob_display_interval := 0.; glob_next_display := 0.; glob_dump_analytic := false; glob_log10_abserr := 0.1*10^(-10); glob_log10_relerr := 0.1*10^(-10); glob_abserr := 0.1*10^(-10); glob_relerr := 0.1*10^(-10); glob_max_hours := 0.; glob_max_iter := 1000; glob_max_rel_trunc_err := 0.1*10^(-10); glob_max_trunc_err := 0.1*10^(-10); glob_no_eqs := 0; glob_optimal_clock_start_sec := 0.; glob_optimal_start := 0.; glob_small_float := 0.1*10^(-50); glob_smallish_float := 0.1*10^(-100); glob_unchanged_h_cnt := 0; glob_warned := false; glob_warned2 := false; glob_max_sec := 10000.0; glob_orig_start_sec := 0.; glob_start := 0; glob_curr_iter_when_opt := 0; glob_current_iter := 0; glob_iter := 0; glob_normmax := 0.; glob_log10abserr := 0.; glob_log10relerr := 0.; glob_max_minutes := 0.; glob_orig_start_sec := elapsed_time_seconds(); MAX_UNCHANGED := 10; glob_curr_iter_when_opt := 0; glob_display_flag := true; glob_no_eqs := 1; glob_iter := -1; opt_iter := -1; glob_max_iter := 50000; glob_max_hours := 0.; glob_max_minutes := 15.0; omniout_str(ALWAYS, "##############ECHO OF PROBLEM#################"); omniout_str(ALWAYS, "##############temp/sing2postode.ode#################"); omniout_str(ALWAYS, "diff ( y , x , 1 ) = 1.0/ (x * x + 1.0) ;"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#BEGIN FIRST INPUT BLOCK"); omniout_str(ALWAYS, "Digits:=32;"); omniout_str(ALWAYS, "max_terms:=30;"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#END FIRST INPUT BLOCK"); omniout_str(ALWAYS, "#BEGIN SECOND INPUT BLOCK"); omniout_str(ALWAYS, "x_start := -2.0;"); omniout_str(ALWAYS, "x_end := 1.0;"); omniout_str(ALWAYS, "glob_h := 0.00001;"); omniout_str(ALWAYS, "array_y_init[0 + 1] := exact_soln_y(x_start);"); omniout_str(ALWAYS, "glob_look_poles := true;"); omniout_str(ALWAYS, "glob_max_iter := 100;"); omniout_str(ALWAYS, "#END SECOND INPUT BLOCK"); omniout_str(ALWAYS, "#BEGIN OVERRIDE BLOCK"); omniout_str(ALWAYS, "glob_desired_digits_correct:=10;"); omniout_str(ALWAYS, "glob_display_interval:=0.001;"); omniout_str(ALWAYS, "glob_look_poles:=true;"); omniout_str(ALWAYS, "glob_max_iter:=10000000;"); omniout_str(ALWAYS, "glob_max_minutes:=3;"); omniout_str(ALWAYS, "#END OVERRIDE BLOCK"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#BEGIN USER DEF BLOCK"); omniout_str(ALWAYS, "exact_soln_y := proc(x)"); omniout_str(ALWAYS, "return(arctan(x));"); omniout_str(ALWAYS, "end;"); omniout_str(ALWAYS, ""); omniout_str(ALWAYS, ""); omniout_str(ALWAYS, "#END USER DEF BLOCK"); omniout_str(ALWAYS, "#######END OF ECHO OF PROBLEM#################"); glob_unchanged_h_cnt := 0; glob_warned := false; glob_warned2 := false; glob_small_float := 0.10*10^(-199); glob_smallish_float := 0.10*10^(-63); glob_large_float := 0.10*10^101; glob_almost_1 := 0.99; glob_log10_abserr := -8.0; glob_log10_relerr := -8.0; glob_hmax := 0.01; Digits := 32; max_terms := 30; glob_max_terms := max_terms; glob_html_log := true; array_y_init := Array(0 .. max_terms + 1, []); array_norms := Array(0 .. max_terms + 1, []); array_fact_1 := Array(0 .. max_terms + 1, []); array_pole := Array(0 .. max_terms + 1, []); array_1st_rel_error := Array(0 .. max_terms + 1, []); array_last_rel_error := Array(0 .. max_terms + 1, []); array_type_pole := Array(0 .. max_terms + 1, []); array_y := Array(0 .. max_terms + 1, []); array_x := Array(0 .. max_terms + 1, []); array_tmp0 := Array(0 .. max_terms + 1, []); array_tmp1 := Array(0 .. max_terms + 1, []); array_tmp2 := Array(0 .. max_terms + 1, []); array_tmp3 := Array(0 .. max_terms + 1, []); array_tmp4 := Array(0 .. max_terms + 1, []); array_m1 := Array(0 .. max_terms + 1, []); array_y_higher := Array(0 .. 3, 0 .. max_terms + 1, []); array_y_higher_work := Array(0 .. 3, 0 .. max_terms + 1, []); array_y_higher_work2 := Array(0 .. 3, 0 .. max_terms + 1, []); array_y_set_initial := Array(0 .. 3, 0 .. max_terms + 1, []); array_poles := Array(0 .. 2, 0 .. 4, []); array_real_pole := Array(0 .. 2, 0 .. 4, []); array_complex_pole := Array(0 .. 2, 0 .. 4, []); array_fact_2 := Array(0 .. max_terms + 1, 0 .. max_terms + 1, []); term := 1; while term <= max_terms do array_y_init[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_norms[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_fact_1[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_pole[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_1st_rel_error[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_last_rel_error[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_type_pole[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_y[term] := 0.; term := term + 1 end do ; term := 1; while term <= max_terms do array_x[term] := 0.; term := term + 1 end do ; term := 1; while term <= max_terms do array_tmp0[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp1[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp2[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp3[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp4[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_m1[term] := 0.; term := term + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= max_terms do array_y_higher[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= max_terms do array_y_higher_work[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= max_terms do array_y_higher_work2[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= max_terms do array_y_set_initial[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 1 do term := 1; while term <= 3 do array_poles[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 1 do term := 1; while term <= 3 do array_real_pole[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 1 do term := 1; while term <= 3 do array_complex_pole[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= max_terms do term := 1; while term <= max_terms do array_fact_2[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; array_y := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_y[term] := 0.; term := term + 1 end do; array_x := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_x[term] := 0.; term := term + 1 end do; array_tmp0 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp0[term] := 0.; term := term + 1 end do; array_tmp1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp1[term] := 0.; term := term + 1 end do; array_tmp2 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp2[term] := 0.; term := term + 1 end do; array_tmp3 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp3[term] := 0.; term := term + 1 end do; array_tmp4 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp4[term] := 0.; term := term + 1 end do; array_m1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_m1[term] := 0.; term := term + 1 end do; array_const_1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_1[term] := 0.; term := term + 1 end do; array_const_1[1] := 1; array_const_0D0 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_0D0[term] := 0.; term := term + 1 end do; array_const_0D0[1] := 0.; array_const_1D0 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_1D0[term] := 0.; term := term + 1 end do; array_const_1D0[1] := 1.0; array_m1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms do array_m1[term] := 0.; term := term + 1 end do; array_m1[1] := -1.0; iiif := 0; while iiif <= glob_max_terms do jjjf := 0; while jjjf <= glob_max_terms do array_fact_1[iiif] := 0; array_fact_2[iiif, jjjf] := 0; jjjf := jjjf + 1 end do; iiif := iiif + 1 end do; x_start := -2.0; x_end := 1.0; glob_h := 0.00001; array_y_init[1] := exact_soln_y(x_start); glob_look_poles := true; glob_max_iter := 100; glob_desired_digits_correct := 10; glob_display_interval := 0.001; glob_look_poles := true; glob_max_iter := 10000000; glob_max_minutes := 3; glob_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(); 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 := 1; 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; display_alot(current_iter) end do; omniout_str(ALWAYS, "Finished!"); if glob_max_iter <= glob_iter then omniout_str(ALWAYS, "Maximum Iterations Reached before Solution Completed!") end if; if convfloat(glob_max_sec) <= elapsed_time_seconds() - convfloat(glob_orig_start_sec) then omniout_str(ALWAYS, "Maximum Time Reached before Solution Completed!") end if; glob_clock_sec := elapsed_time_seconds(); omniout_str(INFO, "diff ( y , x , 1 ) = 1.0/ (x * x + 1.0) ;"); omniout_int(INFO, "Iterations ", 32, glob_iter, 4, " "); prog_report(x_start, x_end); if glob_html_log then logstart(html_log_file); logitem_str(html_log_file, "2012-12-15T02:52:28-06:00"); logitem_str(html_log_file, "Maple"); logitem_str(html_log_file, "sing2"); logitem_str(html_log_file, "diff ( y , x , 1 ) = 1.0/ (x * x + 1.0) ;"); logitem_float(html_log_file, x_start); logitem_float(html_log_file, x_end); logitem_float(html_log_file, array_x[1]); logitem_float(html_log_file, glob_h); logitem_integer(html_log_file, Digits); logitem_good_digits(html_log_file, array_last_rel_error[1]); logitem_integer(html_log_file, glob_max_terms); logitem_float(html_log_file, array_1st_rel_error[1]); logitem_float(html_log_file, array_last_rel_error[1]); logitem_integer(html_log_file, glob_iter); logitem_pole(html_log_file, array_type_pole[1]); if array_type_pole[1] = 1 or array_type_pole[1] = 2 then logitem_float(html_log_file, array_pole[1]); logitem_float(html_log_file, array_pole[2]); 0 else logitem_str(html_log_file, "NA"); logitem_str(html_log_file, "NA"); 0 end if; logitem_time(html_log_file, convfloat(glob_clock_sec)); if glob_percent_done < 100.0 then logitem_time(html_log_file, convfloat(glob_total_exp_sec)); 0 else logitem_str(html_log_file, "Done"); 0 end if; log_revs(html_log_file, " 151 "); logitem_str(html_log_file, "sing2 diffeq.mxt"); logitem_str(html_log_file, "sing2 maple results") ; logitem_str(html_log_file, "Languages compared"); logend(html_log_file) end if; if glob_html_log then fclose(html_log_file) end if end if end proc > # End Function number 12 > main(); ##############ECHO OF PROBLEM################# ##############temp/sing2postode.ode################# diff ( y , x , 1 ) = 1.0/ (x * x + 1.0) ; ! #BEGIN FIRST INPUT BLOCK Digits:=32; max_terms:=30; ! #END FIRST INPUT BLOCK #BEGIN SECOND INPUT BLOCK x_start := -2.0; x_end := 1.0; glob_h := 0.00001; array_y_init[0 + 1] := exact_soln_y(x_start); glob_look_poles := true; glob_max_iter := 100; #END SECOND INPUT BLOCK #BEGIN OVERRIDE BLOCK glob_desired_digits_correct:=10; glob_display_interval:=0.001; glob_look_poles:=true; glob_max_iter:=10000000; glob_max_minutes:=3; #END OVERRIDE BLOCK ! #BEGIN USER DEF BLOCK exact_soln_y := proc(x) return(arctan(x)); end; #END USER DEF BLOCK #######END OF ECHO OF PROBLEM################# START of Optimize min_size = 0 min_size = 1 opt_iter = 1 glob_desired_digits_correct = 10 desired_abs_gbl_error = 1.0000000000000000000000000000000e-10 range = 3 estimated_steps = 3000 step_error = 3.3333333333333333333333333333333e-14 est_needed_step_err = 3.3333333333333333333333333333333e-14 hn_div_ho = 0.5 hn_div_ho_2 = 0.25 hn_div_ho_3 = 0.125 value3 = 1.0426501354804188095394611200000e-86 max_value3 = 1.0426501354804188095394611200000e-86 value3 = 1.0426501354804188095394611200000e-86 best_h = 0.001 START of Soultion x[1] = -2 y[1] (analytic) = -1.1071487177940905030170654601785 y[1] (numeric) = -1.1071487177940905030170654601785 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.244 Order of pole = 2.182 x[1] = -1.999 y[1] (analytic) = -1.106948637764747567059262846648 y[1] (numeric) = -1.106948637764747567042838732132 absolute error = 1.64241145160e-20 relative error = 1.4837286894507663543620207541988e-18 % Correct digits = 19 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.243 Order of pole = 2.182 x[1] = -1.998 y[1] (analytic) = -1.1067483975592701523523682753958 y[1] (numeric) = -1.1067483975592701523195331853786 absolute error = 3.28350900172e-20 relative error = 2.9668070981274286338362642073798e-18 % Correct digits = 19 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.242 Order of pole = 2.182 x[1] = -1.997 y[1] (analytic) = -1.1065479970013122650430381404474 y[1] (numeric) = -1.1065479970013122649938054261268 absolute error = 4.92327143206e-20 relative error = 4.4492163425371610418492985393154e-18 % Correct digits = 19 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.241 Order of pole = 2.182 x[1] = -1.996 y[1] (analytic) = -1.1063474359142968807862186779712 y[1] (numeric) = -1.1063474359142968807206019039402 absolute error = 6.56167740310e-20 relative error = 5.9309374163075294879060761722833e-18 % Correct digits = 19 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.24 Order of pole = 2.182 x[1] = -1.995 y[1] (analytic) = -1.1061467141214156290212504508558 y[1] (numeric) = -1.1061467141214156289392633963217 absolute error = 8.19870545341e-20 relative error = 7.4119511894242930274267794911139e-18 % Correct digits = 19 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.239 Order of pole = 2.182 x[1] = -1.994 y[1] (analytic) = -1.1059458314456284769108753479934 y[1] (numeric) = -1.1059458314456284768125320080015 absolute error = 9.83433399919e-20 relative error = 8.8922384076760133309449138142672e-18 % Correct digits = 19 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.238 Order of pole = 2.182 x[1] = -1.993 y[1] (analytic) = -1.105744787709663412943428695263 y[1] (numeric) = -1.1057447877096634128287432819268 absolute error = 1.146854133362e-19 relative error = 1.0371779691925897748347715222315e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.238 Order of pole = 2.182 x[1] = -1.992 y[1] (analytic) = -1.1055435827360161301985035103973 y[1] (numeric) = -1.1055435827360161300674904541341 absolute error = 1.310130562632e-19 relative error = 1.1850555537482013054280515856525e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.237 Order of pole = 2.182 x[1] = -1.991 y[1] (analytic) = -1.1053422163469497092763783943778 y[1] (numeric) = -1.10534221634694970912905234515 absolute error = 1.473260492278e-19 relative error = 1.3328546313439334639034068909872e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.236 Order of pole = 2.182 x[1] = -1.99 y[1] (analytic) = -1.1051406883644943008915050378617 y[1] (numeric) = -1.1051406883644943007278808664243 absolute error = 1.636241714374e-19 relative error = 1.4805732261975495168796500206780e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.235 Order of pole = 2.182 x[1] = -1.989 y[1] (analytic) = -1.1049389986104468081303558325205 y[1] (numeric) = -1.104938998610446807950448631674 absolute error = 1.799072008465e-19 relative error = 1.6282093497717824232897726956010e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.234 Order of pole = 2.182 x[1] = -1.988 y[1] (analytic) = -1.1047371469063705683739366141761 y[1] (numeric) = -1.1047371469063705681777617000254 absolute error = 1.961749141507e-19 relative error = 1.7757610007055040154269256993205e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.233 Order of pole = 2.181 x[1] = -1.987 y[1] (analytic) = -1.1045351330735950348852741273846 y[1] (numeric) = -1.1045351330735950346728470406038 absolute error = 2.124270867808e-19 relative error = 1.9232261647456895364443504871777e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop memory used=3.8MB, alloc=2.9MB, time=0.44 Complex estimate of poles used Radius of convergence = 2.232 Order of pole = 2.181 x[1] = -1.986 y[1] (analytic) = -1.1043329569332154580621923897538 y[1] (numeric) = -1.1043329569332154578335288968569 absolute error = 2.286634928969e-19 relative error = 2.0706028146792727299847217806878e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.231 Order of pole = 2.181 x[1] = -1.985 y[1] (analytic) = -1.1041306183060925663556967489111 y[1] (numeric) = -1.1041306183060925661108128435286 absolute error = 2.448839053825e-19 relative error = 2.2178889102648910435025902759239e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.23 Order of pole = 2.181 x[1] = -1.984 y[1] (analytic) = -1.103928117012852246854289065787 y[1] (numeric) = -1.1039281170128522465932009699484 absolute error = 2.610880958386e-19 relative error = 2.3650823981645205049053530009524e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.229 Order of pole = 2.181 x[1] = -1.983 y[1] (analytic) = -1.1037254528738852255345421248616 y[1] (numeric) = -1.103725452873885225257266290284 absolute error = 2.772758345776e-19 relative error = 2.5121812118731877853611007764369e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.229 Order of pole = 2.181 x[1] = -1.982 y[1] (analytic) = -1.1035226257093467471782660653698 y[1] (numeric) = -1.1035226257093467468848191747522 absolute error = 2.934468906176e-19 relative error = 2.6591832716521938062689533612190e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.228 Order of pole = 2.181 x[1] = -1.981 y[1] (analytic) = -1.1033196353391562549566043472836 y[1] (numeric) = -1.1033196353391562546470033156076 absolute error = 3.096010316760e-19 relative error = 2.8060864844558831918618024943446e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.227 Order of pole = 2.181 x[1] = -1.98 y[1] (analytic) = -1.103116481582997069681401512326 y[1] (numeric) = -1.1031164815829970693556634881624 absolute error = 3.257380241636e-19 relative error = 2.9528887438628292194220022456820e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.226 Order of pole = 2.181 x[1] = -1.979 y[1] (analytic) = -1.1029131642603160687241897734317 y[1] (numeric) = -1.1029131642603160683823321402529 absolute error = 3.418576331788e-19 relative error = 3.0995879300078128865233283763186e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.225 Order of pole = 2.181 x[1] = -1.978 y[1] (analytic) = -1.1027096831903233646031462660842 y[1] (numeric) = -1.1027096831903233642451866435831 absolute error = 3.579596225011e-19 relative error = 3.2461819095073419581722278193443e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.224 Order of pole = 2.181 x[1] = -1.977 y[1] (analytic) = -1.1025060381919919832383776219549 y[1] (numeric) = -1.1025060381919919828643338673697 absolute error = 3.740437545852e-19 relative error = 3.3926685353904926545354097900743e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.223 Order of pole = 2.181 x[1] = -1.976 y[1] (analytic) = -1.1023022290840575418758933793661 y[1] (numeric) = -1.1023022290840575414857835888113 absolute error = 3.901097905548e-19 relative error = 3.5390456470269158117835365862643e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.222 Order of pole = 2.181 x[1] = -1.975 y[1] (analytic) = -1.1020982556850179266806346264257 y[1] (numeric) = -1.1020982556850179262744771362293 absolute error = 4.061574901964e-19 relative error = 3.6853110700547256121169712143854e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.221 Order of pole = 2.181 x[1] = -1.974 y[1] (analytic) = -1.1018941178131329699989291813655 y[1] (numeric) = -1.1018941178131329695767425694121 absolute error = 4.221866119534e-19 relative error = 3.8314626163109929947644639472060e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.22 Order of pole = 2.181 x[1] = -1.973 y[1] (analytic) = -1.1016898152864241272907495507763 y[1] (numeric) = -1.101689815286424126852552637857 absolute error = 4.381969129193e-19 relative error = 3.9774980837539544491115631608616e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.22 Order of pole = 2.181 x[1] = -1.972 y[1] (analytic) = -1.1014853479226741537321548702117 y[1] (numeric) = -1.1014853479226741532779667213797 absolute error = 4.541881488320e-19 relative error = 4.1234152563950824103149970834996e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.219 Order of pole = 2.181 x[1] = -1.971 y[1] (analytic) = -1.1012807155394267804883030231387 y[1] (numeric) = -1.1012807155394267800181429490713 absolute error = 4.701600740674e-19 relative error = 4.2692119042246851360524737975573e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.218 Order of pole = 2.181 x[1] = -1.97 y[1] (analytic) = -1.1010759179539863906574241535935 y[1] (numeric) = -1.1010759179539863901713117119608 absolute error = 4.861124416327e-19 relative error = 4.4148857831346601385911432493163e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.217 Order of pole = 2.181 x[1] = -1.969 y[1] (analytic) = -1.1008709549834176948861518352737 y[1] (numeric) = -1.1008709549834176943841068321128 absolute error = 5.020450031609e-19 relative error = 4.5604346348520227046655772509575e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.216 Order of pole = 2.181 x[1] = -1.968 y[1] (analytic) = -1.1006658264445454066566132352894 y[1] (numeric) = -1.1006658264445454061386557263859 absolute error = 5.179575089035e-19 relative error = 4.7058561868559669878826371740109e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.215 Order of pole = 2.181 x[1] = -1.967 y[1] (analytic) = -1.1004605321539539172456847145512 y[1] (numeric) = -1.1004605321539539167118350068264 absolute error = 5.338497077248e-19 relative error = 4.8511481523093340150910677854912e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.214 Order of pole = 2.181 x[1] = -1.966 y[1] (analytic) = -1.1002550719279869703568244389027 y[1] (numeric) = -1.1002550719279869698071030918073 absolute error = 5.497213470954e-19 relative error = 4.9963082299826919522459475781352e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.213 Order of pole = 2.18 x[1] = -1.965 y[1] (analytic) = -1.1000494455827473364248987357562 y[1] (numeric) = -1.1000494455827473358593265626708 absolute error = 5.655721730854e-19 relative error = 5.1413341041755638948767410204896e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.212 Order of pole = 2.18 x[1] = -1.964 y[1] (analytic) = -1.0998436529340964865944241202885 y[1] (numeric) = -1.0998436529340964860130221899299 absolute error = 5.814019303586e-19 relative error = 5.2862234446466189659860117930280e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.211 Order of pole = 2.18 x[1] = -1.963 y[1] (analytic) = -1.0996376937976542663716521333248 y[1] (numeric) = -1.0996376937976542657744417711596 absolute error = 5.972103621652e-19 relative error = 5.4309739065301033591462608764565e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.211 Order of pole = 2.18 memory used=7.6MB, alloc=4.0MB, time=0.98 x[1] = -1.962 y[1] (analytic) = -1.0994315679887985689509293800305 y[1] (numeric) = -1.0994315679887985683379321696945 absolute error = 6.129972103360e-19 relative error = 5.5755831302657797706532958717589e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.21 Order of pole = 2.18 x[1] = -1.961 y[1] (analytic) = -1.0992252753226650082157704345585 y[1] (numeric) = -1.0992252753226650075870082192829 absolute error = 6.287622152756e-19 relative error = 5.7200487415196493055738324630557e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.209 Order of pole = 2.18 x[1] = -1.96 y[1] (analytic) = -1.0990188156141465914150865810103 y[1] (numeric) = -1.0990188156141465907705814650545 absolute error = 6.445051159558e-19 relative error = 5.8643683511063622385441289684756e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.208 Order of pole = 2.18 x[1] = -1.959 y[1] (analytic) = -1.0988121886778933915150186955938 y[1] (numeric) = -1.0988121886778933908547930456848 absolute error = 6.602256499090e-19 relative error = 6.0085395549114993463003914179808e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.207 Order of pole = 2.18 x[1] = -1.958 y[1] (analytic) = -1.0986053943283122192268279388266 y[1] (numeric) = -1.0986053943283122185509043856048 absolute error = 6.759235532218e-19 relative error = 6.1525599338155437767702724365673e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.206 Order of pole = 2.18 x[1] = -1.957 y[1] (analytic) = -1.0983984323795662947113033201895 y[1] (numeric) = -1.0983984323795662940197047596613 absolute error = 6.915985605282e-19 relative error = 6.2964270536140828297720055426369e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.205 Order of pole = 2.18 x[1] = -1.956 y[1] (analytic) = -1.0981913026455749189601506209025 y[1] (numeric) = -1.0981913026455749182529002158995 absolute error = 7.072504050030e-19 relative error = 6.4401384649396978491133648956035e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.204 Order of pole = 2.18 x[1] = -1.955 y[1] (analytic) = -1.0979840049400131448548326136238 y[1] (numeric) = -1.0979840049400131441319537952689 absolute error = 7.228788183549e-19 relative error = 6.5836917031809902918569004296665e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.203 Order of pole = 2.18 x[1] = -1.954 y[1] (analytic) = -1.0977765390763114479033360009882 y[1] (numeric) = -1.0977765390763114471648524701681 absolute error = 7.384835308201e-19 relative error = 6.7270842884060272832847936414970e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.202 Order of pole = 2.18 x[1] = -1.953 y[1] (analytic) = -1.0975689048676553966553460081481 y[1] (numeric) = -1.0975689048676553959012817369926 absolute error = 7.540642711555e-19 relative error = 6.8703137252820121984284713478973e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.202 Order of pole = 2.18 x[1] = -1.952 y[1] (analytic) = -1.0973611021269853227963151079938 y[1] (numeric) = -1.0973611021269853220266943413622 absolute error = 7.696207666316e-19 relative error = 7.0133775029920861855828160278417e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.201 Order of pole = 2.18 x[1] = -1.951 y[1] (analytic) = -1.0971531306669959909209179316523 y[1] (numeric) = -1.0971531306669959901357651886261 absolute error = 7.851527430262e-19 relative error = 7.1562730951592824017131774574135e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.2 Order of pole = 2.179 x[1] = -1.95 y[1] (analytic) = -1.0969449903001362679863900213251 y[1] (numeric) = -1.0969449903001362671857300967081 absolute error = 8.006599246170e-19 relative error = 7.2989979597603212466627539938224e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.199 Order of pole = 2.179 x[1] = -1.949 y[1] (analytic) = -1.0967366808386087924462537176792 y[1] (numeric) = -1.0967366808386087916301116835037 absolute error = 8.161420341755e-19 relative error = 7.4415495390511158313109102718775e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.198 Order of pole = 2.179 x[1] = -1.948 y[1] (analytic) = -1.0965282020943696430649401399777 y[1] (numeric) = -1.0965282020943696422333413470185 absolute error = 8.315987929592e-19 relative error = 7.5839252594766437938200932750913e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.197 Order of pole = 2.179 x[1] = -1.947 y[1] (analytic) = -1.0963195538791280074138219140809 y[1] (numeric) = -1.0963195538791280065667919933752 absolute error = 8.470299207057e-19 relative error = 7.7261225315980014211798114951304e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.196 Order of pole = 2.179 x[1] = -1.946 y[1] (analytic) = -1.0961107360043458500491770314935 y[1] (numeric) = -1.0961107360043458491867418958688 absolute error = 8.624351356247e-19 relative error = 7.8681387500001699178926572017978e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.195 Order of pole = 2.179 x[1] = -1.945 y[1] (analytic) = -1.095901748281237580372609981937 y[1] (numeric) = -1.0959017482812375794947958275448 absolute error = 8.778141543922e-19 relative error = 8.0099712932197048148524575130745e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.194 Order of pole = 2.179 x[1] = -1.944 y[1] (analytic) = -1.0956925905207697201744620926103 y[1] (numeric) = -1.0956925905207697192812954004681 absolute error = 8.931666921422e-19 relative error = 8.1516175236494794796776155453309e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.194 Order of pole = 2.179 x[1] = -1.943 y[1] (analytic) = -1.0954832625336605708607488295345 y[1] (numeric) = -1.0954832625336605699522563670736 absolute error = 9.084924624609e-19 relative error = 8.2930747874660936396214524691229e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.193 Order of pole = 2.179 x[1] = -1.942 y[1] (analytic) = -1.0952737641303798803641676702742 y[1] (numeric) = -1.0952737641303798794403764928953 absolute error = 9.237911773789e-19 relative error = 8.4343404145388912153306677844882e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.192 Order of pole = 2.179 x[1] = -1.941 y[1] (analytic) = -1.0950640951211485097397260430628 y[1] (numeric) = -1.0950640951211485088006634956984 absolute error = 9.390625473644e-19 relative error = 8.5754117183479581164767908429565e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.191 Order of pole = 2.179 x[1] = -1.94 y[1] (analytic) = -1.094854255315938099445544745049 y[1] (numeric) = -1.0948542553159380984912384637331 absolute error = 9.543062813159e-19 relative error = 8.7162859958974111748164642175052e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.19 Order of pole = 2.179 x[1] = -1.939 y[1] (analytic) = -1.0946442445244707353093982021949 y[1] (numeric) = -1.0946442445244707343398761156395 absolute error = 9.695220865554e-19 relative error = 8.8569605276331068886212029957291e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.189 Order of pole = 2.178 x[1] = -1.938 y[1] (analytic) = -1.0944340625562186141815589154218 y[1] (numeric) = -1.0944340625562186131968492466008 absolute error = 9.847096688210e-19 relative error = 8.9974325773547246564332015142652e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.188 Order of pole = 2.178 memory used=11.4MB, alloc=4.1MB, time=1.51 x[1] = -1.937 y[1] (analytic) = -1.0942237092204037092745194520772 y[1] (numeric) = -1.0942237092204037082746507198175 absolute error = 9.998687322597e-19 relative error = 9.1376993921295276556095262471707e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.187 Order of pole = 2.178 x[1] = -1.936 y[1] (analytic) = -1.0940131843259974351901713888221 y[1] (numeric) = -1.0940131843259974341751724094018 absolute error = 1.0149989794203e-18 relative error = 9.2777582022068891463797740087212e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.186 Order of pole = 2.178 x[1] = -1.935 y[1] (analytic) = -1.0938024876817203126350266917691 y[1] (numeric) = -1.093802487681720311604926580523 absolute error = 1.0301001112461e-18 relative error = 9.4176062209308420989112763564650e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.185 Order of pole = 2.178 x[1] = -1.934 y[1] (analytic) = -1.0935916190960416328240731322788 y[1] (numeric) = -1.0935916190960416317789013052112 absolute error = 1.0451718270676e-18 relative error = 9.5572406446524779038151889085505e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.185 Order of pole = 2.178 x[1] = -1.933 y[1] (analytic) = -1.0933805783771791215738614824 y[1] (numeric) = -1.0933805783771791205136476578048 absolute error = 1.0602138245952e-18 relative error = 9.6966586526421935466232821650146e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.184 Order of pole = 2.178 x[1] = -1.932 y[1] (analytic) = -1.093169365333098603085428412664 y[1] (numeric) = -1.0931693653330986020102026127523 absolute error = 1.0752257999117e-18 relative error = 9.8358574069999570812898239146072e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.183 Order of pole = 2.178 x[1] = -1.931 y[1] (analytic) = -1.0929579797715136634176652269667 y[1] (numeric) = -1.0929579797715136623274577795011 absolute error = 1.0902074474656e-18 relative error = 9.9748340525727377832851990829889e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.182 Order of pole = 2.178 x[1] = -1.93 y[1] (analytic) = -1.0927464214998853136517488147424 y[1] (numeric) = -1.0927464214998853125465903546796 absolute error = 1.1051584600628e-18 relative error = 1.0113585716857147255561698210411e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.181 Order of pole = 2.178 x[1] = -1.929 y[1] (analytic) = -1.0925346903254216527472574797095 y[1] (numeric) = -1.0925346903254216516271789508498 absolute error = 1.1200785288597e-18 relative error = 1.0252109509914730102654838938593e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.18 Order of pole = 2.178 x[1] = -1.928 y[1] (analytic) = -1.0923227860550775300906006172872 y[1] (numeric) = -1.0923227860550775289556332739314 absolute error = 1.1349673433558e-18 relative error = 1.0390402524282526769807195545216e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.179 Order of pole = 2.177 x[1] = -1.927 y[1] (analytic) = -1.0921107084955542077363975595155 y[1] (numeric) = -1.0921107084955542065865729681296 absolute error = 1.1498245913859e-18 relative error = 1.0528461834879817364388696722703e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.178 Order of pole = 2.177 x[1] = -1.926 y[1] (analytic) = -1.0918984574532990223424472870959 y[1] (numeric) = -1.0918984574532990211777973279828 absolute error = 1.1646499591131e-18 relative error = 1.0666284498922030864828159716568e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.177 Order of pole = 2.177 x[1] = -1.925 y[1] (analytic) = -1.0916860327345050467989371231669 y[1] (numeric) = -1.0916860327345050456194939921466 absolute error = 1.1794431310203e-18 relative error = 1.0803867555820760703204045142362e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.176 Order of pole = 2.177 x[1] = -1.924 y[1] (analytic) = -1.0914734341451107515525449727968 y[1] (numeric) = -1.0914734341451107503583411828928 absolute error = 1.1942037899040e-18 relative error = 1.0941208027104682678235576413712e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.176 Order of pole = 2.177 x[1] = -1.923 y[1] (analytic) = -1.0912606614907996656260961560552 y[1] (numeric) = -1.0912606614907996644171645391897 absolute error = 1.2089316168655e-18 relative error = 1.1078302916316501060938780944288e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.175 Order of pole = 2.177 x[1] = -1.922 y[1] (analytic) = -1.0910477145770000373344424010914 y[1] (numeric) = -1.0910477145770000361108161097877 absolute error = 1.2236262913037e-18 relative error = 1.1215149208924384848433207736157e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.174 Order of pole = 2.177 x[1] = -1.921 y[1] (analytic) = -1.0908345932088844946972371170395 y[1] (numeric) = -1.0908345932088844934589496261316 absolute error = 1.2382874909079e-18 relative error = 1.1351743872233245831172591556905e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.173 Order of pole = 2.177 x[1] = -1.92 y[1] (analytic) = -1.0906212971913697055492876549513 y[1] (numeric) = -1.090621297191369704296372763302 absolute error = 1.2529148916493e-18 relative error = 1.1488083855283938009591965130233e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.172 Order of pole = 2.177 x[1] = -1.919 y[1] (analytic) = -1.0904078263291160373491718884929 y[1] (numeric) = -1.0904078263291160360816637207192 absolute error = 1.2675081677737e-18 relative error = 1.1624166088763288571057636749791e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.171 Order of pole = 2.177 x[1] = -1.918 y[1] (analytic) = -1.0901941804265272166868131049712 y[1] (numeric) = -1.0901941804265272154047461131772 absolute error = 1.2820669917940e-18 relative error = 1.1759987484912133056689655382102e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.17 Order of pole = 2.176 x[1] = -1.917 y[1] (analytic) = -1.0899803592877499884907138915571 y[1] (numeric) = -1.0899803592877499871941228570752 absolute error = 1.2965910344819e-18 relative error = 1.1895544937425846846076005917016e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.169 Order of pole = 2.176 x[1] = -1.916 y[1] (analytic) = -1.0897663627166737749355564314937 y[1] (numeric) = -1.0897663627166737736244764666332 absolute error = 1.3110799648605e-18 relative error = 1.2030835321362961866325965688322e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.168 Order of pole = 2.176 x[1] = -1.915 y[1] (analytic) = -1.0895521905169303340508833907792 y[1] (numeric) = -1.0895521905169303327253499405831 absolute error = 1.3255334501961e-18 relative error = 1.2165855493046276430287211545341e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.167 Order of pole = 2.176 x[1] = -1.914 y[1] (analytic) = -1.0893378424918934180315803774641 y[1] (numeric) = -1.0893378424918934166916292214735 absolute error = 1.3399511559906e-18 relative error = 1.2300602289969299254124246802280e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.167 Order of pole = 2.176 x[1] = -1.913 y[1] (analytic) = -1.089123318444678431250887793451 y[1] (numeric) = -1.0891233184446784298965550474773 absolute error = 1.3543327459737e-18 relative error = 1.2435072530700689170771211327873e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.166 Order of pole = 2.176 x[1] = -1.912 memory used=15.2MB, alloc=4.2MB, time=2.04 y[1] (analytic) = -1.088908618178142087976676772703 y[1] (numeric) = -1.0889086181781420866079988906084 absolute error = 1.3686778820946e-18 relative error = 1.2569263014783932256672038954508e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.165 Order of pole = 2.176 x[1] = -1.911 y[1] (analytic) = -1.0886937414948820697917308102142 y[1] (numeric) = -1.0886937414948820684087445856999 absolute error = 1.3829862245143e-18 relative error = 1.2703170522642353171053501469060e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.164 Order of pole = 2.176 x[1] = -1.91 y[1] (analytic) = -1.0884786881972366827187816331298 y[1] (numeric) = -1.0884786881972366813215242015322 absolute error = 1.3972574315976e-18 relative error = 1.2836791815481199173982248751446e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.163 Order of pole = 2.176 x[1] = -1.909 y[1] (analytic) = -1.0882634580872845140510548491992 y[1] (numeric) = -1.0882634580872845126395636892942 absolute error = 1.4114911599050e-18 relative error = 1.2970123635188630087513661069925e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.162 Order of pole = 2.176 x[1] = -1.908 y[1] (analytic) = -1.0880480509668440888890879284541 y[1] (numeric) = -1.0880480509668440874634008642696 absolute error = 1.4256870641845e-18 relative error = 1.3103162704235612198981324401481e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.161 Order of pole = 2.175 x[1] = -1.907 y[1] (analytic) = -1.0878324666374735263845901318031 y[1] (numeric) = -1.0878324666374735249447453344393 absolute error = 1.4398447973638e-18 relative error = 1.3235905725579310391919273610171e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.16 Order of pole = 2.175 x[1] = -1.906 y[1] (analytic) = -1.0876167049004701956921210952779 y[1] (numeric) = -1.0876167049004701942381570847358 absolute error = 1.4539640105421e-18 relative error = 1.3368349382562627334751917112379e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.159 Order of pole = 2.175 x[1] = -1.905 y[1] (analytic) = -1.0874007655568703716293719111304 y[1] (numeric) = -1.0874007655568703701613275581486 absolute error = 1.4680443529818e-18 relative error = 1.3500490338812642759035265642424e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.159 Order of pole = 2.175 x[1] = -1.904 y[1] (analytic) = -1.0871846484074488900468397170265 y[1] (numeric) = -1.0871846484074488885647542449259 absolute error = 1.4820854721006e-18 relative error = 1.3632325238142549832033038561266e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.158 Order of pole = 2.175 x[1] = -1.903 y[1] (analytic) = -1.0869683532527188029076940123762 y[1] (numeric) = -1.0869683532527188014116069989133 absolute error = 1.4960870134629e-18 relative error = 1.3763850704446973100211262557266e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.157 Order of pole = 2.175 x[1] = -1.902 y[1] (analytic) = -1.0867518798929310330786401665586 y[1] (numeric) = -1.0867518798929310315685915457867 absolute error = 1.5100486207719e-18 relative error = 1.3895063341603540706359163723228e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.156 Order of pole = 2.175 x[1] = -1.901 y[1] (analytic) = -1.0865352281280740288325928675998 y[1] (numeric) = -1.0865352281280740273086229317388 absolute error = 1.5239699358610e-18 relative error = 1.4025959733367834097233579476990e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.155 Order of pole = 2.175 x[1] = -1.9 y[1] (analytic) = -1.0863183977578734180639795819257 y[1] (numeric) = -1.0863183977578734165261289832396 absolute error = 1.5378505986861e-18 relative error = 1.4156536443276434116936709186366e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.154 Order of pole = 2.175 x[1] = -1.899 y[1] (analytic) = -1.0861013885817916622175014562941 y[1] (numeric) = -1.0861013885817916606658112089777 absolute error = 1.5516902473164e-18 relative error = 1.4286790014535976902453523248051e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.153 Order of pole = 2.174 x[1] = -1.898 y[1] (analytic) = -1.0858842003990277099311864921022 y[1] (numeric) = -1.0858842003990277083656979741755 absolute error = 1.5654885179267e-18 relative error = 1.4416716969925826752764634892061e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.152 Order of pole = 2.174 x[1] = -1.897 y[1] (analytic) = -1.085666833008516650394577260115 y[1] (numeric) = -1.0856668330085166488153322153263 absolute error = 1.5792450447887e-18 relative error = 1.4546313811691357187049679497967e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.151 Order of pole = 2.174 x[1] = -1.896 y[1] (analytic) = -1.0854492862089293664229029004597 y[1] (numeric) = -1.0854492862089293648299434401972 absolute error = 1.5929594602625e-18 relative error = 1.4675577021438881844748168105701e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.15 Order of pole = 2.174 x[1] = -1.895 y[1] (analytic) = -1.0852315597986721872480926686421 y[1] (numeric) = -1.0852315597986721856414612738534 absolute error = 1.6066313947887e-18 relative error = 1.4804503060035922858671702635047e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.15 Order of pole = 2.174 x[1] = -1.894 y[1] (analytic) = -1.0850136535758865410274958435374 y[1] (numeric) = -1.0850136535758865394072353666584 absolute error = 1.6202604768790e-18 relative error = 1.4933088367497469078560938481398e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.149 Order of pole = 2.174 x[1] = -1.893 y[1] (analytic) = -1.0847955673384486070711804079716 y[1] (numeric) = -1.0847955673384486054373340748634 absolute error = 1.6338463331082e-18 relative error = 1.5061329362884937062515968025950e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.148 Order of pole = 2.174 x[1] = -1.892 y[1] (analytic) = -1.0845773008839689677886905468049 y[1] (numeric) = -1.084577300883968966141301958699 absolute error = 1.6473885881059e-18 relative error = 1.5189222444202177857203713875773e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.147 Order of pole = 2.174 x[1] = -1.891 y[1] (analytic) = -1.0843588540097922603561506815363 y[1] (numeric) = -1.0843588540097922586952638169893 absolute error = 1.6608868645470e-18 relative error = 1.5316763988280225043667183585479e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.146 Order of pole = 2.173 x[1] = -1.89 y[1] (analytic) = -1.084140226512996828104611474551 y[1] (numeric) = -1.0841402265129968264302706914067 absolute error = 1.6743407831443e-18 relative error = 1.5443950350681206488777069888898e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.145 Order of pole = 2.173 x[1] = -1.889 y[1] (analytic) = -1.0839214181903943716305409903873 y[1] (numeric) = -1.0839214181903943699427910277487 absolute error = 1.6877499626386e-18 relative error = 1.5570777865579007806342976573090e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.144 Order of pole = 2.173 x[1] = -1.888 y[1] (analytic) = -1.0837024288385295996293719960113 y[1] (numeric) = -1.0837024288385295979282579762206 absolute error = 1.7011140197907e-18 relative error = 1.5697242845657255684718275299100e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.143 Order of pole = 2.173 x[1] = -1.887 y[1] (analytic) = -1.0834832582536798794530242172078 y[1] (numeric) = -1.0834832582536798777385916478351 absolute error = 1.7144325693727e-18 relative error = 1.5823341582000648333907204700837e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop memory used=19.0MB, alloc=4.2MB, time=2.58 Complex estimate of poles used Radius of convergence = 2.142 Order of pole = 2.173 x[1] = -1.886 y[1] (analytic) = -1.0832639062318548873923282440222 y[1] (numeric) = -1.0832639062318548856646230198633 absolute error = 1.7277052241589e-18 relative error = 1.5949070343982392496869216738961e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.142 Order of pole = 2.173 x[1] = -1.885 y[1] (analytic) = -1.0830443725687962586852856948912 y[1] (numeric) = -1.0830443725687962569443540999739 absolute error = 1.7409315949173e-18 relative error = 1.6074425379156974174110484301774e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.141 Order of pole = 2.173 x[1] = -1.884 y[1] (analytic) = -1.0828246570599772372521082068612 y[1] (numeric) = -1.0828246570599772354979969164606 absolute error = 1.7541112904006e-18 relative error = 1.6199402913148111447314062116860e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.14 Order of pole = 2.173 x[1] = -1.883 y[1] (analytic) = -1.0826047595006023251579858182959 y[1] (numeric) = -1.0826047595006023233907419009585 absolute error = 1.7672439173374e-18 relative error = 1.6323999149538347881827591347395e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.139 Order of pole = 2.173 x[1] = -1.882 y[1] (analytic) = -1.0823846796856069318045433508962 y[1] (numeric) = -1.0823846796856069300242142704731 absolute error = 1.7803290804231e-18 relative error = 1.6448210269755668837656224401979e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.138 Order of pole = 2.172 x[1] = -1.881 y[1] (analytic) = -1.0821644174096570228509514798842 y[1] (numeric) = -1.0821644174096570210575850975728 absolute error = 1.7933663823114e-18 relative error = 1.6572032432965452541692620225349e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.137 Order of pole = 2.172 x[1] = -1.88 y[1] (analytic) = -1.0819439724671487688656673050121 y[1] (numeric) = -1.0819439724671487670593118814071 absolute error = 1.8063554236050e-18 relative error = 1.6695461775954823274082529739656e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.136 Order of pole = 2.172 x[1] = -1.879 y[1] (analytic) = -1.0817233446522081937097874008434 y[1] (numeric) = -1.0817233446522081918904915979968 absolute error = 1.8192958028466e-18 relative error = 1.6818494413019564213052943891577e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.135 Order of pole = 2.172 x[1] = -1.878 y[1] (analytic) = -1.0815025337586908226530045326886 y[1] (numeric) = -1.0815025337586908208208174161786 absolute error = 1.8321871165100e-18 relative error = 1.6941126435851743721912372011085e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.134 Order of pole = 2.172 x[1] = -1.877 y[1] (analytic) = -1.0812815395801813302231674748537 y[1] (numeric) = -1.0812815395801813283781385158626 absolute error = 1.8450289589911e-18 relative error = 1.7063353913426205853718633982469e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.133 Order of pole = 2.172 x[1] = -1.876 y[1] (analytic) = -1.0810603619099931877904516606612 y[1] (numeric) = -1.0810603619099931859326307380627 absolute error = 1.8578209225985e-18 relative error = 1.7185172891883147806383402716343e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.133 Order of pole = 2.172 x[1] = -1.875 y[1] (analytic) = -1.0808390005411683108871567292172 y[1] (numeric) = -1.0808390005411683090165941316725 absolute error = 1.8705625975447e-18 relative error = 1.7306579394416030196809520318933e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.132 Order of pole = 2.172 x[1] = -1.874 y[1] (analytic) = -1.0806174552664767062641554123057 y[1] (numeric) = -1.0806174552664767043809018403691 absolute error = 1.8832535719366e-18 relative error = 1.7427569421152797039042173473330e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.131 Order of pole = 2.171 x[1] = -1.873 y[1] (analytic) = -1.0803957258784161186850266262912 y[1] (numeric) = -1.0803957258784161167891331945245 absolute error = 1.8958934317667e-18 relative error = 1.7548138949043353438144893841755e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.13 Order of pole = 2.171 x[1] = -1.872 y[1] (analytic) = -1.0801738121692116774589140986807 y[1] (numeric) = -1.0801738121692116755504323377772 absolute error = 1.9084817609035e-18 relative error = 1.7668283931739422727358246820302e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.129 Order of pole = 2.171 x[1] = -1.871 y[1] (analytic) = -1.0799517139308155427131603672314 y[1] (numeric) = -1.079951713930815540792142226149 absolute error = 1.9210181410824e-18 relative error = 1.7788000299478809056214509847198e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.128 Order of pole = 2.171 x[1] = -1.87 y[1] (analytic) = -1.0797294309549065514067745413803 y[1] (numeric) = -1.0797294309549065494732723894839 absolute error = 1.9335021518964e-18 relative error = 1.7907283958967588046276008016347e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.127 Order of pole = 2.171 x[1] = -1.869 y[1] (analytic) = -1.0795069630328898630858008115048 y[1] (numeric) = -1.0795069630328898611398674407182 absolute error = 1.9459333707866e-18 relative error = 1.8026130793260221913217000090412e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.126 Order of pole = 2.171 x[1] = -1.868 y[1] (analytic) = -1.0792843099558966053816633312927 y[1] (numeric) = -1.0792843099558966034233519582596 absolute error = 1.9583113730331e-18 relative error = 1.8144536661643154675856749082797e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.125 Order of pole = 2.171 x[1] = -1.867 y[1] (analytic) = -1.0790614715147835192535717824957 y[1] (numeric) = -1.0790614715147835172829360507504 absolute error = 1.9706357317453e-18 relative error = 1.8262497399512624539181316238820e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.125 Order of pole = 2.171 x[1] = -1.866 y[1] (analytic) = -1.07883844750013260397608065976 y[1] (numeric) = -1.0788384475001326019931746419073 absolute error = 1.9829060178527e-18 relative error = 1.8380008818256880613953370946340e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.124 Order of pole = 2.171 x[1] = -1.865 y[1] (analytic) = -1.0786152377022507618729040862557 y[1] (numeric) = -1.0786152377022507598777822861605 absolute error = 1.9951218000952e-18 relative error = 1.8497066705133538563117892267243e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.123 Order of pole = 2.17 x[1] = -1.864 y[1] (analytic) = -1.0783918419111694427980967886686 y[1] (numeric) = -1.0783918419111694407908141436549 absolute error = 2.0072826450137e-18 relative error = 1.8613666823149485950461176093995e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.122 Order of pole = 2.17 x[1] = -1.863 y[1] (analytic) = -1.0781682599166442883657207229581 y[1] (numeric) = -1.0781682599166442863463326060175 absolute error = 2.0193881169406e-18 relative error = 1.8729804910939630347792460226722e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.121 Order of pole = 2.17 x[1] = -1.862 y[1] (analytic) = -1.0779444915081547759291257503268 y[1] (numeric) = -1.0779444915081547738976879723368 absolute error = 2.0314377779900e-18 relative error = 1.8845476682642632494379684172795e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.12 Order of pole = 2.17 memory used=22.8MB, alloc=4.3MB, time=3.12 x[1] = -1.861 y[1] (analytic) = -1.0777205364749038623109817162831 y[1] (numeric) = -1.0777205364749038602675505282346 absolute error = 2.0434311880485e-18 relative error = 1.8960677827781970434264924514738e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.119 Order of pole = 2.17 x[1] = -1.86 y[1] (analytic) = -1.0774963946058176272852082847049 y[1] (numeric) = -1.07749639460581762522984037994 absolute error = 2.0553679047649e-18 relative error = 1.9075404011136564418485192362501e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.118 Order of pole = 2.17 x[1] = -1.859 y[1] (analytic) = -1.0772720656895449168119579236318 y[1] (numeric) = -1.0772720656895449147447104400906 absolute error = 2.0672474835412e-18 relative error = 1.9189650872623225206704401452608e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.117 Order of pole = 2.17 x[1] = -1.858 y[1] (analytic) = -1.0770475495144569860268165303173 y[1] (numeric) = -1.077047549514456983947747052795 absolute error = 2.0790694775223e-18 relative error = 1.9303414027166802270450173223689e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.116 Order of pole = 2.17 x[1] = -1.857 y[1] (analytic) = -1.0768228458686471419853953200687 y[1] (numeric) = -1.0768228458686471398945618824819 absolute error = 2.0908334375868e-18 relative error = 1.9416689064580301077502903988484e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.116 Order of pole = 2.169 x[1] = -1.856 y[1] (analytic) = -1.0765979545399303861644967867803 y[1] (numeric) = -1.0765979545399303840619578744437 absolute error = 2.1025389123366e-18 relative error = 1.9529471549433619752843922168619e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.115 Order of pole = 2.169 x[1] = -1.855 y[1] (analytic) = -1.0763728753158430567210467730395 y[1] (numeric) = -1.0763728753158430546068613249523 absolute error = 2.1141854480872e-18 relative error = 1.9641757020928539678350635279253e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.114 Order of pole = 2.169 x[1] = -1.854 y[1] (analytic) = -1.0761476079836424705099939644419 y[1] (numeric) = -1.0761476079836424683842213755834 absolute error = 2.1257725888585e-18 relative error = 1.9753540992778120015410944628354e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.113 Order of pole = 2.169 x[1] = -1.853 y[1] (analytic) = -1.0759221523303065648623874465032 y[1] (numeric) = -1.0759221523303065627250875701395 absolute error = 2.1372998763637e-18 relative error = 1.9864818953068195485948872441443e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.112 Order of pole = 2.169 x[1] = -1.852 y[1] (analytic) = -1.0756965081425335391248523335068 y[1] (numeric) = -1.0756965081425335369760854835061 absolute error = 2.1487668500007e-18 relative error = 1.9975586364141854199850874901365e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.111 Order of pole = 2.169 x[1] = -1.851 y[1] (analytic) = -1.0754706752067414959616928969641 y[1] (numeric) = -1.0754706752067414938015198501233 absolute error = 2.1601730468408e-18 relative error = 2.0085838662458577652317767668870e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.11 Order of pole = 2.169 x[1] = -1.85 y[1] (analytic) = -1.0752446533090680824208620873218 y[1] (numeric) = -1.0752446533090680802493440857022 absolute error = 2.1715180016196e-18 relative error = 2.0195571258473575983222950608513e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.109 Order of pole = 2.169 x[1] = -1.849 y[1] (analytic) = -1.0750184422353701307650458563007 y[1] (numeric) = -1.0750184422353701285822446095738 absolute error = 2.1828012467269e-18 relative error = 2.0304779536507580569800851442320e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.108 Order of pole = 2.168 x[1] = -1.848 y[1] (analytic) = -1.0747920417712232990691202490252 y[1] (numeric) = -1.0747920417712232968750979368293 absolute error = 2.1940223121959e-18 relative error = 2.0413458854609870447241273343426e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.108 Order of pole = 2.168 x[1] = -1.847 y[1] (analytic) = -1.0745654517019217115852488450957 y[1] (numeric) = -1.0745654517019217093800681194019 absolute error = 2.2051807256938e-18 relative error = 2.0521604544434064643769400752323e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.107 Order of pole = 2.168 x[1] = -1.846 y[1] (analytic) = -1.0743386718124775988768977861754 y[1] (numeric) = -1.074338671812477596660621773664 absolute error = 2.2162760125114e-18 relative error = 2.0629211911104359232120790361429e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.106 Order of pole = 2.168 x[1] = -1.845 y[1] (analytic) = -1.0741117018876209377230553347201 y[1] (numeric) = -1.0741117018876209354957476391674 absolute error = 2.2273076955527e-18 relative error = 2.0736276233081504290500127054977e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.105 Order of pole = 2.168 x[1] = -1.844 y[1] (analytic) = -1.073884541711799090793952664386 y[1] (numeric) = -1.0738845417117990885556773690609 absolute error = 2.2382752953251e-18 relative error = 2.0842792762034106851322432201400e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.104 Order of pole = 2.168 x[1] = -1.843 y[1] (analytic) = -1.0736571910691764460995923876043 y[1] (numeric) = -1.0736571910691764438504140576757 absolute error = 2.2491783299286e-18 relative error = 2.0948756722700364663900103799791e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.103 Order of pole = 2.168 x[1] = -1.842 y[1] (analytic) = -1.0734296497436340562124011800399 y[1] (numeric) = -1.0734296497436340539523848649939 absolute error = 2.2600163150460e-18 relative error = 2.1054163312758847725450531489516e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.102 Order of pole = 2.168 x[1] = -1.841 y[1] (analytic) = -1.0732019175187692772653327653487 y[1] (numeric) = -1.0732019175187692749945440014167 absolute error = 2.2707887639320e-18 relative error = 2.1159007702688772653789935811853e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.101 Order of pole = 2.168 x[1] = -1.84 y[1] (analytic) = -1.0729739941778954077267574770421 y[1] (numeric) = -1.0729739941778954054452622896387 absolute error = 2.2814951874034e-18 relative error = 2.1263285035640257315476478857837e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.1 Order of pole = 2.167 x[1] = -1.839 y[1] (analytic) = -1.0727458795040413269534846175545 y[1] (numeric) = -1.0727458795040413246613495237263 absolute error = 2.2921350938282e-18 relative error = 2.1366990427294061683386152501194e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.1 Order of pole = 2.167 x[1] = -1.838 y[1] (analytic) = -1.0725175732799511335232738880207 y[1] (numeric) = -1.0725175732799511312205658989053 absolute error = 2.3027079891154e-18 relative error = 2.1470118965727581471212894308745e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.099 Order of pole = 2.167 x[1] = -1.837 y[1] (analytic) = -1.0722890752880837833482022660042 y[1] (numeric) = -1.0722890752880837810349888892998 absolute error = 2.3132133767044e-18 relative error = 2.1572665711276844674547607175271e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.098 Order of pole = 2.167 x[1] = -1.836 y[1] (analytic) = -1.0720603853106127275702628626984 y[1] (numeric) = -1.0720603853106127252466121051437 absolute error = 2.3236507575547e-18 relative error = 2.1674625696401033784469488360995e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop memory used=26.7MB, alloc=4.3MB, time=3.66 Complex estimate of poles used Radius of convergence = 2.097 Order of pole = 2.167 x[1] = -1.835 y[1] (analytic) = -1.0718315031294255502405824961646 y[1] (numeric) = -1.0718315031294255479065628660297 absolute error = 2.3340196301349e-18 relative error = 2.1775993925540206858569426378527e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.096 Order of pole = 2.167 x[1] = -1.834 y[1] (analytic) = -1.0716024285261236057836549731896 y[1] (numeric) = -1.0716024285261236034393354827773 absolute error = 2.3443194904123e-18 relative error = 2.1876765374978337878526516454513e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.095 Order of pole = 2.167 x[1] = -1.833 y[1] (analytic) = -1.0713731612820216562479973795565 y[1] (numeric) = -1.0713731612820216538934475477141 absolute error = 2.3545498318424e-18 relative error = 2.1976934992705149904443726694537e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.094 Order of pole = 2.167 x[1] = -1.832 y[1] (analytic) = -1.0711437011781475083446470371482 y[1] (numeric) = -1.0711437011781475059799368917903 absolute error = 2.3647101453579e-18 relative error = 2.2076497698273004120552008819525e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.093 Order of pole = 2.167 x[1] = -1.831 y[1] (analytic) = -1.0709140479952416502749271965605 y[1] (numeric) = -1.0709140479952416479001272772022 absolute error = 2.3747999193583e-18 relative error = 2.2175448382659108174024991509929e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.092 Order of pole = 2.166 x[1] = -1.83 y[1] (analytic) = -1.0706842015137568883489199960067 y[1] (numeric) = -1.0706842015137568859641013563078 absolute error = 2.3848186396989e-18 relative error = 2.2273781908121843216701067217604e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.092 Order of pole = 2.166 x[1] = -1.829 y[1] (analytic) = -1.0704541615138579833960957314775 y[1] (numeric) = -1.0704541615138579810013299417972 absolute error = 2.3947657896803e-18 relative error = 2.2371493108061476035433782537791e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.091 Order of pole = 2.166 x[1] = -1.828 y[1] (analytic) = -1.0702239277754212869695580495882 y[1] (numeric) = -1.0702239277754212845649171995513 absolute error = 2.4046408500369e-18 relative error = 2.2468576786871246312128060636908e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.09 Order of pole = 2.166 x[1] = -1.827 y[1] (analytic) = -1.0699935000780343773453752935366 y[1] (numeric) = -1.0699935000780343749309319946097 absolute error = 2.4144432989269e-18 relative error = 2.2565027719802178342302176020160e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.089 Order of pole = 2.166 x[1] = -1.826 y[1] (analytic) = -1.0697628782009956953184789043136 y[1] (numeric) = -1.0697628782009956928943062923928 absolute error = 2.4241726119208e-18 relative error = 2.2660840652813593496638867634891e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.088 Order of pole = 2.166 x[1] = -1.825 y[1] (analytic) = -1.0695320619233141797966205039994 y[1] (numeric) = -1.0695320619233141773627922420089 absolute error = 2.4338282619905e-18 relative error = 2.2756010302428935799961382401120e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.087 Order of pole = 2.166 x[1] = -1.824 y[1] (analytic) = -1.0693010510237089031938900658457 y[1] (numeric) = -1.0693010510237089007504803463471 absolute error = 2.4434097194986e-18 relative error = 2.2850531355593177065119420544136e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.086 Order of pole = 2.166 x[1] = -1.823 y[1] (analytic) = -1.0690698452806087066253084071283 y[1] (numeric) = -1.0690698452806087041723919549414 absolute error = 2.4529164521869e-18 relative error = 2.2944398469522449228910389689675e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.085 Order of pole = 2.166 x[1] = -1.822 y[1] (analytic) = -1.068838444472151834904018125674 y[1] (numeric) = -1.0688384444721518324416702005081 absolute error = 2.4623479251659e-18 relative error = 2.3037606271562732007312922209096e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.084 Order of pole = 2.166 x[1] = -1.821 y[1] (analytic) = -1.068606848376185571342608039746 y[1] (numeric) = -1.0686068483761855688709044388429 absolute error = 2.4717036009031e-18 relative error = 2.3130149359037021207757409987970e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.084 Order of pole = 2.165 x[1] = -1.82 y[1] (analytic) = -1.0683750567702658723601171838498 y[1] (numeric) = -1.0683750567702658698791342446374 absolute error = 2.4809829392124e-18 relative error = 2.3222022299102487409454951225047e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.083 Order of pole = 2.165 x[1] = -1.819 y[1] (analytic) = -1.0681430694316570018962754602112 y[1] (numeric) = -1.0681430694316569994060900629687 absolute error = 2.4901853972425e-18 relative error = 2.3313219628597979050847537612608e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.082 Order of pole = 2.165 x[1] = -1.818 y[1] (analytic) = -1.0679108861373311656345491474241 y[1] (numeric) = -1.0679108861373311631352387179581 absolute error = 2.4993104294660e-18 relative error = 2.3403735853897773334413905735248e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.081 Order of pole = 2.165 x[1] = -1.817 y[1] (analytic) = -1.0676785066639681450355706242843 y[1] (numeric) = -1.0676785066639681425272131366165 absolute error = 2.5083574876678e-18 relative error = 2.3493565450758471040521376151447e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.08 Order of pole = 2.165 x[1] = -1.816 y[1] (analytic) = -1.0674459307879549311825428783578 y[1] (numeric) = -1.0674459307879549286652168574239 absolute error = 2.5173260209339e-18 relative error = 2.3582702864169328921011577230376e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.079 Order of pole = 2.165 x[1] = -1.815 y[1] (analytic) = -1.0672131582853853584402206356041 y[1] (numeric) = -1.0672131582853853559140051599638 absolute error = 2.5262154756403e-18 relative error = 2.3671142508203222987817472046603e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.078 Order of pole = 2.165 x[1] = -1.814 y[1] (analytic) = -1.0669801889320597379290812696193 y[1] (numeric) = -1.0669801889320597353940559741779 absolute error = 2.5350252954414e-18 relative error = 2.3758878765862619451000783800730e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.077 Order of pole = 2.165 x[1] = -1.813 y[1] (analytic) = -1.0667470225034844908163100270173 y[1] (numeric) = -1.0667470225034844882725551057589 absolute error = 2.5437549212584e-18 relative error = 2.3845905988925231951678588122279e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.076 Order of pole = 2.165 x[1] = -1.812 y[1] (analytic) = -1.0665136587748717814252355393604 y[1] (numeric) = -1.0665136587748717788728317480919 absolute error = 2.5524037912685e-18 relative error = 2.3932218497796864800351360296348e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.076 Order of pole = 2.165 x[1] = -1.811 y[1] (analytic) = -1.0662800975211391501648630821168 y[1] (numeric) = -1.0662800975211391476038917412243 absolute error = 2.5609713408925e-18 relative error = 2.4017810581348944192864508744361e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.075 Order of pole = 2.164 x[1] = -1.81 memory used=30.5MB, alloc=4.3MB, time=4.20 y[1] (analytic) = -1.0660463385169091462811645876063 y[1] (numeric) = -1.0660463385169091437117075848224 absolute error = 2.5694570027839e-18 relative error = 2.4102676496769792448706517417181e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.074 Order of pole = 2.164 x[1] = -1.809 y[1] (analytic) = -1.0658123815365089604317960220182 y[1] (numeric) = -1.065812381536508957853935815201 absolute error = 2.5778602068172e-18 relative error = 2.4186810469408085679666154666684e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.073 Order of pole = 2.164 x[1] = -1.808 y[1] (analytic) = -1.0655782263539700570859243966009 y[1] (numeric) = -1.0655782263539700544997440165249 absolute error = 2.5861803800760e-18 relative error = 2.4270206692614112735753478290836e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.072 Order of pole = 2.164 x[1] = -1.807 y[1] (analytic) = -1.0653438727430278067508584002558 y[1] (numeric) = -1.065343872743027804156441453414 absolute error = 2.5944169468418e-18 relative error = 2.4352859327587279110674454353570e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.071 Order of pole = 2.164 x[1] = -1.806 y[1] (analytic) = -1.0651093204771211180271884152658 y[1] (numeric) = -1.0651093204771211154246190866838 absolute error = 2.6025693285820e-18 relative error = 2.4434762503215781452120675545738e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.07 Order of pole = 2.164 x[1] = -1.805 y[1] (analytic) = -1.0648745693293920694941535099859 y[1] (numeric) = -1.0648745693293920668835165660481 absolute error = 2.6106369439378e-18 relative error = 2.4515910315915013240876529024628e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.069 Order of pole = 2.164 x[1] = -1.804 y[1] (analytic) = -1.0646396190726855414269648922663 y[1] (numeric) = -1.0646396190726855388083456835528 absolute error = 2.6186192087135e-18 relative error = 2.4596296829478788021555859756785e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.068 Order of pole = 2.164 x[1] = -1.803 y[1] (analytic) = -1.0644044694795488473478272553968 y[1] (numeric) = -1.0644044694795488447213117195333 absolute error = 2.6265155358635e-18 relative error = 2.4675916074908637845098939478715e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.068 Order of pole = 2.164 x[1] = -1.802 y[1] (analytic) = -1.0641691203222313654124114547175 y[1] (numeric) = -1.0641691203222313627780861192363 absolute error = 2.6343253354812e-18 relative error = 2.4754762050260619500108379901496e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.067 Order of pole = 2.164 x[1] = -1.801 y[1] (analytic) = -1.0639335713726841696335440179519 y[1] (numeric) = -1.0639335713726841669914960031651 absolute error = 2.6420480147868e-18 relative error = 2.4832828720481457435518166078294e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.066 Order of pole = 2.164 x[1] = -1.8 y[1] (analytic) = -1.0636978224025596609438911160525 y[1] (numeric) = -1.0636978224025596582942081379373 absolute error = 2.6496829781152e-18 relative error = 2.4910110017245287315613880665120e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.065 Order of pole = 2.163 x[1] = -1.799 y[1] (analytic) = -1.0634618731832111980994268041349 y[1] (numeric) = -1.0634618731832111954421971772302 absolute error = 2.6572296269047e-18 relative error = 2.4986599838797582456539041593327e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.064 Order of pole = 2.163 x[1] = -1.798 y[1] (analytic) = -1.0632257234856927284254875841644 y[1] (numeric) = -1.0632257234856927257608002244803 absolute error = 2.6646873596841e-18 relative error = 2.5062292049783700533874450458421e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.063 Order of pole = 2.163 x[1] = -1.797 y[1] (analytic) = -1.0629893730807584184072276426995 y[1] (numeric) = -1.0629893730807584157351720706384 absolute error = 2.6720555720611e-18 relative error = 2.5137180481089307241014340675891e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.062 Order of pole = 2.163 x[1] = -1.796 y[1] (analytic) = -1.0627528217388622841263014784297 y[1] (numeric) = -1.0627528217388622814469678217194 absolute error = 2.6793336567103e-18 relative error = 2.5211258929676698210824565858743e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.061 Order of pole = 2.163 x[1] = -1.795 y[1] (analytic) = -1.0625160692301578215456130557209 y[1] (numeric) = -1.0625160692301578188590920523602 absolute error = 2.6865210033607e-18 relative error = 2.5284521158416070685661316344688e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.061 Order of pole = 2.163 x[1] = -1.794 y[1] (analytic) = -1.0622791153244976366439831021563 y[1] (numeric) = -1.0622791153244976339503661033724 absolute error = 2.6936169987839e-18 relative error = 2.5356960895923032541969046961040e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.06 Order of pole = 2.163 x[1] = -1.793 y[1] (analytic) = -1.0620419597914330754025987103692 y[1] (numeric) = -1.0620419597914330727019776835875 absolute error = 2.7006210267817e-18 relative error = 2.5428571836390116850769229065200e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.059 Order of pole = 2.163 x[1] = -1.792 y[1] (analytic) = -1.061804602400213853645122007572 y[1] (numeric) = -1.0618046024002138509375895393983 absolute error = 2.7075324681737e-18 relative error = 2.5499347639417942375608483436963e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.058 Order of pole = 2.163 x[1] = -1.791 y[1] (analytic) = -1.0615670429197876867333473203349 y[1] (numeric) = -1.0615670429197876840189966195498 absolute error = 2.7143507007851e-18 relative error = 2.5569281929847902458064837962444e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.057 Order of pole = 2.163 x[1] = -1.79 y[1] (analytic) = -1.061329281118799919120308987613 y[1] (numeric) = -1.0613292811187999163992338881785 absolute error = 2.7210750994345e-18 relative error = 2.5638368297594499251235752403758e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.056 Order of pole = 2.163 x[1] = -1.789 y[1] (analytic) = -1.0610913167655931537627547620153 y[1] (numeric) = -1.061091316765593151035049726094 absolute error = 2.7277050359213e-18 relative error = 2.5706600297473552036626651244828e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.055 Order of pole = 2.163 x[1] = -1.788 y[1] (analytic) = -1.0608531496282068813949125881078 y[1] (numeric) = -1.0608531496282068786606727090944 absolute error = 2.7342398790134e-18 relative error = 2.5773971449032870594647727370328e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.054 Order of pole = 2.163 x[1] = -1.787 y[1] (analytic) = -1.0606147794743771096654914573981 y[1] (numeric) = -1.0606147794743771069248124629634 absolute error = 2.7406789944347e-18 relative error = 2.5840475236380682231642771418130e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.053 Order of pole = 2.162 x[1] = -1.786 y[1] (analytic) = -1.0603762060715359921398700128174 y[1] (numeric) = -1.0603762060715359893928482679649 absolute error = 2.7470217448525e-18 relative error = 2.5906105108012750965687505682784e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.053 Order of pole = 2.162 x[1] = -1.785 y[1] (analytic) = -1.0601374291868114571694396112554 y[1] (numeric) = -1.0601374291868114544161721213903 absolute error = 2.7532674898651e-18 relative error = 2.5970854476641015597311985787659e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop memory used=34.3MB, alloc=4.3MB, time=4.74 Complex estimate of poles used Radius of convergence = 2.052 Order of pole = 2.162 x[1] = -1.784 y[1] (analytic) = -1.0598984485870268366300816512671 y[1] (numeric) = -1.059898448587026833870666065278 absolute error = 2.7594155859891e-18 relative error = 2.6034716719019030587234108441678e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.051 Order of pole = 2.162 x[1] = -1.783 y[1] (analytic) = -1.0596592640387004945317721347226 y[1] (numeric) = -1.059659264038700491766306748076 absolute error = 2.7654653866466e-18 relative error = 2.6097685175766091049399209226093e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.05 Order of pole = 2.162 x[1] = -1.782 y[1] (analytic) = -1.0594198753080454555013196561638 y[1] (numeric) = -1.0594198753080454527299034140106 absolute error = 2.7714162421532e-18 relative error = 2.6159753151198533937960117429984e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.049 Order of pole = 2.162 x[1] = -1.781 y[1] (analytic) = -1.0591802821609690331402563022281 y[1] (numeric) = -1.0591802821609690303629888025237 absolute error = 2.7772674997044e-18 relative error = 2.6220913913145566695271111282193e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.048 Order of pole = 2.162 x[1] = -1.78 y[1] (analytic) = -1.0589404843630724582599142959644 y[1] (numeric) = -1.0589404843630724554768957926011 absolute error = 2.7830185033633e-18 relative error = 2.6281160692776983660348590769357e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.047 Order of pole = 2.162 x[1] = -1.779 y[1] (analytic) = -1.0587004816796505069957346374499 y[1] (numeric) = -1.0587004816796505042070660434021 absolute error = 2.7886685940478e-18 relative error = 2.6340486684425786022114423929927e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.046 Order of pole = 2.162 x[1] = -1.778 y[1] (analytic) = -1.0584602738756911288028674730938 y[1] (numeric) = -1.0584602738756911260086503635762 absolute error = 2.7942171095176e-18 relative error = 2.6398885045408530467774170873347e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.046 Order of pole = 2.162 x[1] = -1.777 y[1] (analytic) = -1.0582198607158750743351374716394 y[1] (numeric) = -1.0582198607158750715354740872778 absolute error = 2.7996633843616e-18 relative error = 2.6456348895849071730280807245943e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.045 Order of pole = 2.162 x[1] = -1.776 y[1] (analytic) = -1.0579792419645755232094610954174 y[1] (numeric) = -1.0579792419645755204044543454328 absolute error = 2.8050067499846e-18 relative error = 2.6512871318495306162795755097376e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.044 Order of pole = 2.162 x[1] = -1.775 y[1] (analytic) = -1.057738417385857711657816331125 y[1] (numeric) = -1.0577384173858577088475697965305 absolute error = 2.8102465345945e-18 relative error = 2.6568445358540249060130268433692e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.043 Order of pole = 2.162 x[1] = -1.774 y[1] (analytic) = -1.0574973867434785600688791855726 y[1] (numeric) = -1.057497386743478557253497122383 absolute error = 2.8153820631896e-18 relative error = 2.6623064023443669008963885757271e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.042 Order of pole = 2.162 x[1] = -1.773 y[1] (analytic) = -1.057256149800886300421455058718 y[1] (numeric) = -1.0572561498008862976010424011733 absolute error = 2.8204126575447e-18 relative error = 2.6676720282741983073939805109692e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.041 Order of pole = 2.162 x[1] = -1.772 y[1] (analytic) = -1.0570147063212201036118469791709 y[1] (numeric) = -1.0570147063212201007865093429718 absolute error = 2.8253376361991e-18 relative error = 2.6729407067875720824809154543538e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.04 Order of pole = 2.162 x[1] = -1.771 y[1] (analytic) = -1.0567730560673097066773166264532 y[1] (numeric) = -1.0567730560673097038471603120105 absolute error = 2.8301563144427e-18 relative error = 2.6781117271998625646196409526960e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.039 Order of pole = 2.162 x[1] = -1.77 y[1] (analytic) = -1.0565311988016750399178080699299 y[1] (numeric) = -1.0565311988016750370829400656268 absolute error = 2.8348680043031e-18 relative error = 2.6831843749795811132132847953961e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.039 Order of pole = 2.161 x[1] = -1.769 y[1] (analytic) = -1.0562891342865258539181182267354 y[1] (numeric) = -1.0562891342865258510786462122033 absolute error = 2.8394720145321e-18 relative error = 2.6881579317295838557252624610820e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.038 Order of pole = 2.161 x[1] = -1.768 y[1] (analytic) = -1.0560468622837613464727121804917 y[1] (numeric) = -1.0560468622837613436287445298987 absolute error = 2.8439676505930e-18 relative error = 2.6930316751689961517639375355715e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.037 Order of pole = 2.161 x[1] = -1.767 y[1] (analytic) = -1.055804382554969789415395709414 y[1] (numeric) = -1.0558043825549697865670414947673 absolute error = 2.8483542146467e-18 relative error = 2.6978048791139605199652394051728e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.036 Order of pole = 2.161 x[1] = -1.766 y[1] (analytic) = -1.0555616948614281553560716468066 y[1] (numeric) = -1.0555616948614281525034406412678 absolute error = 2.8526310055388e-18 relative error = 2.7024768134592902190795198461831e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.035 Order of pole = 2.161 x[1] = -1.765 y[1] (analytic) = -1.0553187989641017443268210392272 y[1] (numeric) = -1.0553187989641017414700237204412 absolute error = 2.8567973187860e-18 relative error = 2.7070467441594189360603643483614e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.034 Order of pole = 2.161 x[1] = -1.764 y[1] (analytic) = -1.0550756946236438103395644780314 y[1] (numeric) = -1.055075694623643807478712031469 absolute error = 2.8608524465624e-18 relative error = 2.7115139332092140101036072528731e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.033 Order of pole = 2.161 x[1] = -1.763 y[1] (analytic) = -1.0548323816003951878575734588655 y[1] (numeric) = -1.0548323816003951849927777811788 absolute error = 2.8647956776867e-18 relative error = 2.7158776386256008716129841308777e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.032 Order of pole = 2.161 x[1] = -1.762 y[1] (analytic) = -1.0545888596543839181831161712323 y[1] (numeric) = -1.0545888596543839153144898736241 absolute error = 2.8686262976082e-18 relative error = 2.7201371144280085904693634887054e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.032 Order of pole = 2.161 x[1] = -1.761 y[1] (analytic) = -1.0543451285453248757635367367935 y[1] (numeric) = -1.0543451285453248728911931484003 absolute error = 2.8723435883932e-18 relative error = 2.7242916106191520390801915056002e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.031 Order of pole = 2.161 x[1] = -1.76 y[1] (analytic) = -1.0541011880326193944180816008678 y[1] (numeric) = -1.0541011880326193915421347721561 absolute error = 2.8759468287117e-18 relative error = 2.7283403731660562261513365011097e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.03 Order of pole = 2.161 x[1] = -1.759 y[1] (analytic) = -1.0538570378753548934878015369111 y[1] (numeric) = -1.0538570378753548906083662430877 absolute error = 2.8794352938234e-18 relative error = 2.7322826439803741778307172744683e-16 % Correct digits = 17 memory used=38.1MB, alloc=4.3MB, time=5.28 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.029 Order of pole = 2.161 x[1] = -1.758 y[1] (analytic) = -1.0536126778323045039108725489141 y[1] (numeric) = -1.0536126778323045010280642933496 absolute error = 2.8828082555645e-18 relative error = 2.7361176608994207722534175556901e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.028 Order of pole = 2.161 x[1] = -1.757 y[1] (analytic) = -1.0533681076619266942256938518897 y[1] (numeric) = -1.0533681076619266913396288695561 absolute error = 2.8860649823336e-18 relative error = 2.7398446576663096968617560136630e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.027 Order of pole = 2.161 x[1] = -1.756 y[1] (analytic) = -1.053123327122364896504136076245 y[1] (numeric) = -1.0531233271223648936149313371671 absolute error = 2.8892047390779e-18 relative error = 2.7434628639103314160988777902248e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.026 Order of pole = 2.161 x[1] = -1.755 y[1] (analytic) = -1.0528783359714471322173278781071 y[1] (numeric) = -1.0528783359714471293251010908276 absolute error = 2.8922267872795e-18 relative error = 2.7469715051273824615844978181611e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.025 Order of pole = 2.161 x[1] = -1.754 y[1] (analytic) = -1.0526331339666856380363842448938 y[1] (numeric) = -1.0526331339666856351412538599521 absolute error = 2.8951303849417e-18 relative error = 2.7503698026603510042461055267846e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.025 Order of pole = 2.161 x[1] = -1.753 y[1] (analytic) = -1.0523877208652764915704949638652 y[1] (numeric) = -1.0523877208652764886725801772904 absolute error = 2.8979147865748e-18 relative error = 2.7536569736789834024540142347739e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.024 Order of pole = 2.161 x[1] = -1.752 y[1] (analytic) = -1.0521420964240992370448069713523 y[1] (numeric) = -1.0521420964240992341442277281699 absolute error = 2.9005792431824e-18 relative error = 2.7568322311601811948644189859233e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.023 Order of pole = 2.161 x[1] = -1.751 y[1] (analytic) = -1.0518962603997165109205496221103 y[1] (numeric) = -1.051896260399716508017426619863 absolute error = 2.9031230022473e-18 relative error = 2.7598947838678735168090712637251e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.022 Order of pole = 2.161 x[1] = -1.75 y[1] (analytic) = -1.0516502125483736674598673120863 y[1] (numeric) = -1.0516502125483736645543220043688 absolute error = 2.9055453077175e-18 relative error = 2.7628438363329395618960960479748e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.021 Order of pole = 2.161 x[1] = -1.749 y[1] (analytic) = -1.0514039526259984042378393540978 y[1] (numeric) = -1.0514039526259984013299939541056 absolute error = 2.9078453999922e-18 relative error = 2.7656785888330859315199994371559e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.02 Order of pole = 2.161 x[1] = -1.748 y[1] (analytic) = -1.0511574803882003876041825447895 y[1] (numeric) = -1.0511574803882003846941600288821 absolute error = 2.9100225159074e-18 relative error = 2.7683982373722981367257531271121e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.019 Order of pole = 2.161 x[1] = -1.747 y[1] (analytic) = -1.0509107955902708780971474730531 y[1] (numeric) = -1.050910795590270875185071584331 absolute error = 2.9120758887221e-18 relative error = 2.7710019736608169790455914462418e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.018 Order of pole = 2.161 x[1] = -1.746 y[1] (analytic) = -1.0506638979871823558121353051524 y[1] (numeric) = -1.0506638979871823528981305570482 absolute error = 2.9140047481042e-18 relative error = 2.7734889850947839410485834630451e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.018 Order of pole = 2.161 x[1] = -1.745 y[1] (analytic) = -1.0504167873335881457275775403811 y[1] (numeric) = -1.0504167873335881428117692202656 absolute error = 2.9158083201155e-18 relative error = 2.7758584547349837101210931528966e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.017 Order of pole = 2.161 x[1] = -1.744 y[1] (analytic) = -1.0501694633838220429906370634934 y[1] (numeric) = -1.0501694633838220400731512362951 absolute error = 2.9174858271983e-18 relative error = 2.7781095612870627838232781638923e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.016 Order of pole = 2.161 x[1] = -1.743 y[1] (analytic) = -1.0499219258918979381653047266663 y[1] (numeric) = -1.0499219258918979352462682385056 absolute error = 2.9190364881607e-18 relative error = 2.7802414790804643471051208450273e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.015 Order of pole = 2.161 x[1] = -1.742 y[1] (analytic) = -1.0496741746115094424454816746877 y[1] (numeric) = -1.0496741746115094395250221565257 absolute error = 2.9204595181620e-18 relative error = 2.7822533780474109178646609303106e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.014 Order of pole = 2.161 x[1] = -1.741 y[1] (analytic) = -1.0494262092960295128356536826984 y[1] (numeric) = -1.0494262092960295099138995539995 absolute error = 2.9217541286989e-18 relative error = 2.7841444237026017353710069521586e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.013 Order of pole = 2.161 x[1] = -1.74 y[1] (analytic) = -1.0491780296985100773017799064475 y[1] (numeric) = -1.0491780296985100743788603788572 absolute error = 2.9229195275903e-18 relative error = 2.7859137771215290595708300895147e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.012 Order of pole = 2.161 x[1] = -1.739 y[1] (analytic) = -1.0489296355716816598950346509516 y[1] (numeric) = -1.0489296355716816569710797319882 absolute error = 2.9239549189634e-18 relative error = 2.7875605949199850112330486996323e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.011 Order of pole = 2.161 x[1] = -1.738 y[1] (analytic) = -1.048681026667953005851057044964 y[1] (numeric) = -1.0486810266679530029261975417252 absolute error = 2.9248595032388e-18 relative error = 2.7890840292325675577760754144159e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.011 Order of pole = 2.161 x[1] = -1.737 y[1] (analytic) = -1.0484322027394107066673798660733 y[1] (numeric) = -1.0484322027394107037417473889571 absolute error = 2.9256324771162e-18 relative error = 2.7904832276917099353545053393692e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.01 Order of pole = 2.161 x[1] = -1.736 y[1] (analytic) = -1.0481831635378188251617251948455 y[1] (numeric) = -1.048183163537818822235452161286 absolute error = 2.9262730335595e-18 relative error = 2.7917573334060894000554617307002e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.009 Order of pole = 2.161 x[1] = -1.735 y[1] (analytic) = -1.0479339088146185205138710865148 y[1] (numeric) = -1.0479339088146185175870907247325 absolute error = 2.9267803617823e-18 relative error = 2.7929054849393683956675787340852e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.008 Order of pole = 2.161 x[1] = -1.734 y[1] (analytic) = -1.0476844383209276732938100356012 y[1] (numeric) = -1.0476844383209276703666563883681 absolute error = 2.9271536472331e-18 relative error = 2.7939268162886004110861072428017e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.007 Order of pole = 2.161 memory used=41.9MB, alloc=4.3MB, time=5.82 x[1] = -1.733 y[1] (analytic) = -1.0474347518075405104789366728037 y[1] (numeric) = -1.0474347518075405075515446012232 absolute error = 2.9273920715805e-18 relative error = 2.7948204568625862419645957455458e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.006 Order of pole = 2.161 x[1] = -1.732 y[1] (analytic) = -1.0471848490249272304630188748779 y[1] (numeric) = -1.0471848490249272275355240621793 absolute error = 2.9274948126986e-18 relative error = 2.7955855314603714202307048641426e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.005 Order of pole = 2.161 x[1] = -1.731 y[1] (analytic) = -1.0469347297232336280597232872656 y[1] (numeric) = -1.0469347297232336251322622426136 absolute error = 2.9274610446520e-18 relative error = 2.7962211602493118034825658364920e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.005 Order of pole = 2.161 x[1] = -1.73 y[1] (analytic) = -1.0466843936522807195034831563044 y[1] (numeric) = -1.0466843936522807165761932186234 absolute error = 2.9272899376810e-18 relative error = 2.7967264587432796977192579746295e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.004 Order of pole = 2.161 x[1] = -1.729 y[1] (analytic) = -1.0464338405615643674505133432104 y[1] (numeric) = -1.0464338405615643645235326850239 absolute error = 2.9269806581865e-18 relative error = 2.7971005377805327910704650030131e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.003 Order of pole = 2.161 x[1] = -1.728 y[1] (analytic) = -1.0461830702002549059827944460079 y[1] (numeric) = -1.0461830702002549030562620772928 absolute error = 2.9265323687151e-18 relative error = 2.7973425035017231161651159141896e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.002 Order of pole = 2.161 x[1] = -1.727 y[1] (analytic) = -1.0459320823171967656178650884773 y[1] (numeric) = -1.0459320823171967626919208605328 absolute error = 2.9259442279445e-18 relative error = 2.7974514573281417385211540962051e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.001 Order of pole = 2.161 x[1] = -1.726 y[1] (analytic) = -1.0456808766609080983272786473166 y[1] (numeric) = -1.0456808766609080954020632566492 absolute error = 2.9252153906674e-18 relative error = 2.7974264959384780547128967330245e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2 Order of pole = 2.161 x[1] = -1.725 y[1] (analytic) = -1.0454294529795804025665979803791 y[1] (numeric) = -1.0454294529795803996422529726013 absolute error = 2.9243450077778e-18 relative error = 2.7972667112478215784088272916031e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.999 Order of pole = 2.161 x[1] = -1.724 y[1] (analytic) = -1.0451778110210781483198190903494 y[1] (numeric) = -1.0451778110210781453964868640947 absolute error = 2.9233322262547e-18 relative error = 2.7969711903841259661058977783768e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.998 Order of pole = 2.161 x[1] = -1.723 y[1] (analytic) = -1.0449259505329384021611321098912 y[1] (numeric) = -1.044925950532938399238955920744 absolute error = 2.9221761891472e-18 relative error = 2.7965390156659588800619973852451e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.998 Order of pole = 2.161 x[1] = -1.722 y[1] (analytic) = -1.0446738712623704523369455264271 y[1] (numeric) = -1.0446738712623704494160694908671 absolute error = 2.9208760355600e-18 relative error = 2.7959692645805824690065361570198e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.997 Order of pole = 2.161 x[1] = -1.721 y[1] (analytic) = -1.0444215729562554338711171776211 y[1] (numeric) = -1.0444215729562554309516862769841 absolute error = 2.9194309006370e-18 relative error = 2.7952610097601627002096989523153e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.996 Order of pole = 2.161 x[1] = -1.72 y[1] (analytic) = -1.0441690553611459536963532426421 y[1] (numeric) = -1.0441690553611459507785133270955 absolute error = 2.9178399155466e-18 relative error = 2.7944133189595519442994418836548e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.995 Order of pole = 2.161 x[1] = -1.719 y[1] (analytic) = -1.0439163182232657158147542296939 y[1] (numeric) = -1.0439163182232657128986520222274 absolute error = 2.9161022074665e-18 relative error = 2.7934252550335398731260414394376e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.994 Order of pole = 2.161 x[1] = -1.718 y[1] (analytic) = -1.0436633612885091464905048174304 y[1] (numeric) = -1.0436633612885091435762879178627 absolute error = 2.9142168995677e-18 relative error = 2.7922958759132841687361887140121e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.993 Order of pole = 2.161 x[1] = -1.717 y[1] (analytic) = -1.0434101843024410194777223470474 y[1] (numeric) = -1.0434101843024410165655392360476 absolute error = 2.9121831109998e-18 relative error = 2.7910242345839321279860211505981e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.992 Order of pole = 2.161 x[1] = -1.716 y[1] (analytic) = -1.0431567870102960812864967833629 y[1] (numeric) = -1.043156787010296078376496826488 absolute error = 2.9099999568749e-18 relative error = 2.7896093790608467325972693922306e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.992 Order of pole = 2.161 x[1] = -1.715 y[1] (analytic) = -1.0429031691569786764901730673983 y[1] (numeric) = -1.0429031691569786735825065191461 absolute error = 2.9076665482522e-18 relative error = 2.7880503523664482658193498030581e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.991 Order of pole = 2.161 x[1] = -1.714 y[1] (analytic) = -1.0426493304870623730769449701572 y[1] (numeric) = -1.0426493304870623701717629780346 absolute error = 2.9051819921226e-18 relative error = 2.7863461925070009983736621688412e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.99 Order of pole = 2.161 x[1] = -1.713 y[1] (analytic) = -1.0423952707447895878488478277957 y[1] (numeric) = -1.0423952707447895849463024364026 absolute error = 2.9025453913931e-18 relative error = 2.7844959324491528267433545087983e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.989 Order of pole = 2.161 x[1] = -1.712 y[1] (analytic) = -1.0421409896740712118712558925046 y[1] (numeric) = -1.0421409896740712089715000476336 absolute error = 2.8997558448710e-18 relative error = 2.7824986000962272836991953850939e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.988 Order of pole = 2.161 x[1] = -1.711 y[1] (analytic) = -1.0418864870184862359760084715006 y[1] (numeric) = -1.0418864870184862330791960242525 absolute error = 2.8968124472481e-18 relative error = 2.7803532182644592973884194531169e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.987 Order of pole = 2.161 x[1] = -1.71 y[1] (analytic) = -1.0416317625212813763213075488757 y[1] (numeric) = -1.0416317625212813734275932597904 absolute error = 2.8937142890853e-18 relative error = 2.7780588046595584542145892170643e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.986 Order of pole = 2.161 x[1] = -1.709 y[1] (analytic) = -1.0413768159253707000115481919974 y[1] (numeric) = -1.041376815925370697121087735201 absolute error = 2.8904604567964e-18 relative error = 2.7756143718524478440177167898547e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.985 Order of pole = 2.161 x[1] = -1.708 y[1] (analytic) = -1.0411216469733352507802617360203 y[1] (numeric) = -1.0411216469733352478932117033879 memory used=45.7MB, alloc=4.3MB, time=6.36 absolute error = 2.8870500326324e-18 relative error = 2.7730189272554255653440020603529e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.985 Order of pole = 2.161 x[1] = -1.707 y[1] (analytic) = -1.0408662554074226747393705171791 y[1] (numeric) = -1.0408662554074226718558884225131 absolute error = 2.8834820946660e-18 relative error = 2.7702714730984612299454830617205e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.984 Order of pole = 2.162 x[1] = -1.706 y[1] (analytic) = -1.0406106409695468461979717882109 y[1] (numeric) = -1.0406106409695468433182160714356 absolute error = 2.8797557167753e-18 relative error = 2.7673710064046665604732317073277e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.983 Order of pole = 2.162 x[1] = -1.705 y[1] (analytic) = -1.0403548034012874935538873978328 y[1] (numeric) = -1.0403548034012874906780174292051 absolute error = 2.8758699686277e-18 relative error = 2.7643165189658997063471692078825e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.982 Order of pole = 2.162 x[1] = -1.704 y[1] (analytic) = -1.0400987424438898252612348509983 y[1] (numeric) = -1.040098742443889822389410935334 absolute error = 2.8718239156643e-18 relative error = 2.7611069973187917743223159047429e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.981 Order of pole = 2.162 x[1] = -1.703 y[1] (analytic) = -1.0398424578382641558772944880061 y[1] (numeric) = -1.0398424578382641530096778689226 absolute error = 2.8676166190835e-18 relative error = 2.7577414227199459448074982395453e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.98 Order of pole = 2.162 x[1] = -1.702 y[1] (analytic) = -1.0395859493249855321919667287672 y[1] (numeric) = -1.0395859493249855293287195929418 absolute error = 2.8632471358254e-18 relative error = 2.7542187711218466525213318951913e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.979 Order of pole = 2.162 x[1] = -1.701 y[1] (analytic) = -1.0393292166442933594431326239748 y[1] (numeric) = -1.0393292166442933565844181054198 absolute error = 2.8587145185550e-18 relative error = 2.7505380131475555703353980687491e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.979 Order of pole = 2.162 x[1] = -1.7 y[1] (analytic) = -1.0390722595360910276212503379073 y[1] (numeric) = -1.0390722595360910247672325222606 absolute error = 2.8540178156467e-18 relative error = 2.7466981140665981204534179905544e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.978 Order of pole = 2.162 x[1] = -1.699 y[1] (analytic) = -1.0388150777399455378665396584461 y[1] (numeric) = -1.0388150777399455350173835872787 absolute error = 2.8491560711674e-18 relative error = 2.7426980337694432867737137546126e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.977 Order of pole = 2.162 x[1] = -1.698 y[1] (analytic) = -1.038557670995087128962126188953 y[1] (numeric) = -1.0385576709950871261179978640919 absolute error = 2.8441283248611e-18 relative error = 2.7385367267433664526569860866413e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.976 Order of pole = 2.162 x[1] = -1.697 y[1] (analytic) = -1.038300039040408903926536524248 y[1] (numeric) = -1.0383000390404089010876029121164 absolute error = 2.8389336121316e-18 relative error = 2.7342131420464229066915912290374e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.975 Order of pole = 2.162 x[1] = -1.696 y[1] (analytic) = -1.0380421816144664567089554494038 y[1] (numeric) = -1.0380421816144664538753844853767 absolute error = 2.8335709640271e-18 relative error = 2.7297262232831892982522833589445e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.974 Order of pole = 2.162 x[1] = -1.695 y[1] (analytic) = -1.037784098455477498990676025748 y[1] (numeric) = -1.0377840984554774961626366185249 absolute error = 2.8280394072231e-18 relative error = 2.7250749085788070112424095617603e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.973 Order of pole = 2.162 x[1] = -1.694 y[1] (analytic) = -1.0375257893013214870961933436928 y[1] (numeric) = -1.0375257893013214842738553796864 absolute error = 2.8223379640064e-18 relative error = 2.7202581305540230526413940681915e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.973 Order of pole = 2.162 x[1] = -1.693 y[1] (analytic) = -1.0372672538895392490174127271123 y[1] (numeric) = -1.0372672538895392462009470748538 absolute error = 2.8164656522585e-18 relative error = 2.7152748162995910939386114408450e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.972 Order of pole = 2.162 x[1] = -1.692 y[1] (analytic) = -1.0370084919573326115544632693128 y[1] (numeric) = -1.0370084919573326087440417838737 absolute error = 2.8104214854391e-18 relative error = 2.7101238873507063900081549362511e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.971 Order of pole = 2.162 x[1] = -1.691 y[1] (analytic) = -1.0367495032415640275766277665203 y[1] (numeric) = -1.0367495032415640247724232939509 absolute error = 2.8042044725694e-18 relative error = 2.7048042596611850888245135095359e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.97 Order of pole = 2.163 x[1] = -1.69 y[1] (analytic) = -1.0364902874787562034069203915875 y[1] (numeric) = -1.0364902874787562006091067733717 absolute error = 2.7978136182158e-18 relative error = 2.6993148435779661808723420517847e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.969 Order of pole = 2.163 x[1] = -1.689 y[1] (analytic) = -1.0362308444050917263338638186339 y[1] (numeric) = -1.0362308444050917235426158961608 absolute error = 2.7912479224731e-18 relative error = 2.6936545438150679393392942775279e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.968 Order of pole = 2.163 x[1] = -1.688 y[1] (analytic) = -1.0359711737564126922540379689265 y[1] (numeric) = -1.0359711737564126894695315879788 absolute error = 2.7845063809477e-18 relative error = 2.6878222594274803517589077748677e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.967 Order of pole = 2.163 x[1] = -1.687 y[1] (analytic) = -1.0357112752682203334489930998183 y[1] (numeric) = -1.0357112752682203306714051150771 absolute error = 2.7775879847412e-18 relative error = 2.6818168837853794545028448651252e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.967 Order of pole = 2.163 x[1] = -1.686 y[1] (analytic) = -1.0354511486756746465001406023373 y[1] (numeric) = -1.035451148675674643729648881904 absolute error = 2.7704917204333e-18 relative error = 2.6756373045476016122850541639823e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.966 Order of pole = 2.163 x[1] = -1.685 y[1] (analytic) = -1.0351907937135940203452556094 y[1] (numeric) = -1.0351907937135940175820390393347 absolute error = 2.7632165700653e-18 relative error = 2.6692824036356320628064183122359e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.965 Order of pole = 2.163 x[1] = -1.684 y[1] (analytic) = -1.034930210116454864480246345955 y[1] (numeric) = -1.034930210116454861724484834832 absolute error = 2.7557615111230e-18 relative error = 2.6627510572069489463336199985778e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.964 Order of pole = 2.163 x[1] = -1.683 y[1] (analytic) = -1.0346693976183912373098660749934 y[1] (numeric) = -1.0346693976183912345617405584734 absolute error = 2.7481255165200e-18 relative error = 2.6560421356286879889242887409549e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop memory used=49.5MB, alloc=4.3MB, time=6.90 Complex estimate of poles used Radius of convergence = 1.963 Order of pole = 2.163 x[1] = -1.682 y[1] (analytic) = -1.034408355953194474651064509632 y[1] (numeric) = -1.0344083559531944719107569550515 absolute error = 2.7403075545805e-18 relative error = 2.6491545034507581532573302924222e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.962 Order of pole = 2.163 x[1] = -1.681 y[1] (analytic) = -1.0341470848543128183926966717421 y[1] (numeric) = -1.0341470848543128156603900827191 absolute error = 2.7323065890230e-18 relative error = 2.6420870193797608697167849870983e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.961 Order of pole = 2.163 x[1] = -1.68 y[1] (analytic) = -1.0338855840548510453153283821921 y[1] (numeric) = -1.0338855840548510425912068032498 absolute error = 2.7241215789423e-18 relative error = 2.6348385362511992932957966103974e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.961 Order of pole = 2.164 x[1] = -1.679 y[1] (analytic) = -1.0336238532875700960748988670659 y[1] (numeric) = -1.0336238532875700933591473882725 absolute error = 2.7157514787934e-18 relative error = 2.6274079010034572581409723183307e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.96 Order of pole = 2.164 x[1] = -1.678 y[1] (analytic) = -1.0333618922848867043540223585378 y[1] (numeric) = -1.0333618922848867016468271201639 absolute error = 2.7071952383739e-18 relative error = 2.6197939546502606408995544211193e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.959 Order of pole = 2.164 x[1] = -1.677 y[1] (analytic) = -1.0330997007788730261847320588002 y[1] (numeric) = -1.0330997007788730234862802559936 absolute error = 2.6984518028066e-18 relative error = 2.6119955322532637802652546785548e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.958 Order of pole = 2.164 x[1] = -1.676 y[1] (analytic) = -1.0328372785012562694464914208908 y[1] (numeric) = -1.0328372785012562667569713083676 absolute error = 2.6895201125232e-18 relative error = 2.6040114628956323636035865534863e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.957 Order of pole = 2.164 x[1] = -1.675 y[1] (analytic) = -1.0325746251834183235433193818035 y[1] (numeric) = -1.0325746251834183208629202785572 absolute error = 2.6803991032463e-18 relative error = 2.5958405696539126889045371908572e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.956 Order of pole = 2.164 x[1] = -1.674 y[1] (analytic) = -1.0323117405563953892638979612579 y[1] (numeric) = -1.0323117405563953865928102552852 absolute error = 2.6710877059727e-18 relative error = 2.5874816695710901527147145434326e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.955 Order of pole = 2.164 x[1] = -1.673 y[1] (analytic) = -1.0320486243508776088285525142806 y[1] (numeric) = -1.0320486243508776061669676673252 absolute error = 2.6615848469554e-18 relative error = 2.5789335736283196230080157861119e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.955 Order of pole = 2.164 x[1] = -1.672 y[1] (analytic) = -1.0317852762972086961270168976902 y[1] (numeric) = -1.0317852762972086934751274500031 absolute error = 2.6518894476871e-18 relative error = 2.5701950867180388698282476183034e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.954 Order of pole = 2.164 x[1] = -1.671 y[1] (analytic) = -1.0315216961253855671509178800198 y[1] (numeric) = -1.0315216961253855645089174551375 absolute error = 2.6420004248823e-18 relative error = 2.5612650076156559429229019109274e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.953 Order of pole = 2.164 x[1] = -1.67 y[1] (analytic) = -1.0312578835650579706249352917186 y[1] (numeric) = -1.0312578835650579679930186012586 absolute error = 2.6319166904600e-18 relative error = 2.5521421289517471236320468025003e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.952 Order of pole = 2.165 x[1] = -1.669 y[1] (analytic) = -1.0309938383455281188406166780065 y[1] (numeric) = -1.0309938383455281162189795264802 absolute error = 2.6216371515263e-18 relative error = 2.5428252371840872042683706370789e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.951 Order of pole = 2.165 x[1] = -1.668 y[1] (analytic) = -1.0307295601957503186968475808608 y[1] (numeric) = -1.0307295601957503160856868705038 absolute error = 2.6111607103570e-18 relative error = 2.5333131125696086089309364559305e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.95 Order of pole = 2.165 x[1] = -1.667 y[1] (analytic) = -1.0304650488443306029510010396658 y[1] (numeric) = -1.030465048844330600350514775286 absolute error = 2.6004862643798e-18 relative error = 2.5236045291359008484340244851428e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.949 Order of pole = 2.165 x[1] = -1.666 y[1] (analytic) = -1.0302003040195263616848124624 y[1] (numeric) = -1.0302003040195263590951997562432 absolute error = 2.5896127061568e-18 relative error = 2.5136982546529287557977318281859e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.949 Order of pole = 2.165 x[1] = -1.665 y[1] (analytic) = -1.0299353254492459739890486812413 y[1] (numeric) = -1.0299353254492459714105097578739 absolute error = 2.5785389233674e-18 relative error = 2.5035930506050667807793786762999e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.948 Order of pole = 2.165 x[1] = -1.664 y[1] (analytic) = -1.0296701128610484398710627684934 y[1] (numeric) = -1.0296701128610484373037989697038 absolute error = 2.5672637987896e-18 relative error = 2.4932876721615073350168100158794e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.947 Order of pole = 2.165 x[1] = -1.663 y[1] (analytic) = -1.0294046659821430123893490511472 y[1] (numeric) = -1.0294046659821430098335628408638 absolute error = 2.5557862102834e-18 relative error = 2.4827808681486343556193783278272e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.946 Order of pole = 2.165 x[1] = -1.662 y[1] (analytic) = -1.0291389845393888300192357255379 y[1] (numeric) = -1.0291389845393888274751306947654 absolute error = 2.5441050307725e-18 relative error = 2.4720713810206730154021868146569e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.945 Order of pole = 2.165 x[1] = -1.661 y[1] (analytic) = -1.0288730682592945492538755378225 y[1] (numeric) = -1.0288730682592945467216564095959 absolute error = 2.5322191282266e-18 relative error = 2.4611579468308477091305315094082e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.944 Order of pole = 2.166 x[1] = -1.66 y[1] (analytic) = -1.0286069168680179774447181617342 y[1] (numeric) = -1.0286069168680179749245907960905 absolute error = 2.5201273656437e-18 relative error = 2.4500392952024657068495473154971e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.943 Order of pole = 2.166 x[1] = -1.659 y[1] (analytic) = -1.0283405300913657058856711726431 y[1] (numeric) = -1.028340530091365703377842571611 absolute error = 2.5078286010321e-18 relative error = 2.4387141492996343927977484531396e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.943 Order of pole = 2.166 x[1] = -1.658 y[1] (analytic) = -1.0280739076547927431451798867289 y[1] (numeric) = -1.0280739076547927406498581993363 absolute error = 2.4953216873926e-18 relative error = 2.4271812257980975554991723391937e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.942 Order of pole = 2.166 x[1] = -1.657 y[1] (analytic) = -1.0278070492834021486504798064199 y[1] (numeric) = -1.0278070492834021461678743337192 absolute error = 2.4826054727007e-18 relative error = 2.4154392348559961383443866396419e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop memory used=53.4MB, alloc=4.3MB, time=7.44 Complex estimate of poles used Radius of convergence = 1.941 Order of pole = 2.166 x[1] = -1.656 y[1] (analytic) = -1.0275399547019446665282989885398 y[1] (numeric) = -1.0275399547019446640586201886514 absolute error = 2.4696787998884e-18 relative error = 2.4034868800841638158375493111828e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.94 Order of pole = 2.166 x[1] = -1.655 y[1] (analytic) = -1.0272726236348183597063113302 y[1] (numeric) = -1.0272726236348183572497708233735 absolute error = 2.4565405068265e-18 relative error = 2.3913228585168324352669299456540e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.939 Order of pole = 2.166 x[1] = -1.654 y[1] (analytic) = -1.0270050558060682442796655497461 y[1] (numeric) = -1.0270050558060682418364761234398 absolute error = 2.4431894263063e-18 relative error = 2.3789458605816767736596484255521e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.938 Order of pole = 2.166 x[1] = -1.653 y[1] (analytic) = -1.0267372509393859241469385263886 y[1] (numeric) = -1.0267372509393859217173141403669 absolute error = 2.4296243860217e-18 relative error = 2.3663545700701711419696722637887e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.938 Order of pole = 2.167 x[1] = -1.652 y[1] (analytic) = -1.0264692087581092259198856528828 y[1] (numeric) = -1.026469208758109223504041444332 absolute error = 2.4158442085508e-18 relative error = 2.3535476641073813898546073562975e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.937 Order of pole = 2.167 x[1] = -1.651 y[1] (analytic) = -1.0262009289852218341113849511525 y[1] (numeric) = -1.0262009289852218317095372398143 absolute error = 2.4018477113382e-18 relative error = 2.3405238131223604156146462521258e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.936 Order of pole = 2.167 x[1] = -1.65 y[1] (analytic) = -1.0259324113433529266059959014387 y[1] (numeric) = -1.0259324113433529242183621947621 absolute error = 2.3876337066766e-18 relative error = 2.3272816808177834473880295613704e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.935 Order of pole = 2.167 x[1] = -1.649 y[1] (analytic) = -1.0256636555547768104175782417792 y[1] (numeric) = -1.0256636555547768080443772400908 absolute error = 2.3732010016884e-18 relative error = 2.3138199241395039610770288450705e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.934 Order of pole = 2.167 x[1] = -1.648 y[1] (analytic) = -1.025394661341412557738440406758 y[1] (numeric) = -1.0253946613414125553798920084502 absolute error = 2.3585483983078e-18 relative error = 2.3001371932465174769467510346928e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.933 Order of pole = 2.167 x[1] = -1.647 y[1] (analytic) = -1.0251254284248236422845117928801 y[1] (numeric) = -1.025125428424823639940837099618 absolute error = 2.3436746932621e-18 relative error = 2.2862321314800656167088615732233e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.932 Order of pole = 2.167 x[1] = -1.646 y[1] (analytic) = -1.0248559565262175759410576630018 y[1] (numeric) = -1.0248559565262175736124789849479 absolute error = 2.3285786780539e-18 relative error = 2.2721033753335373791246141244998e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.932 Order of pole = 2.167 x[1] = -1.645 y[1] (analytic) = -1.0245862453664455457134802343583 y[1] (numeric) = -1.0245862453664455434002210954161 absolute error = 2.3132591389422e-18 relative error = 2.2577495544212168614910015178048e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.931 Order of pole = 2.168 x[1] = -1.644 y[1] (analytic) = -1.0243162946660020509877743342532 y[1] (numeric) = -1.0243162946660020486900594773291 absolute error = 2.2977148569241e-18 relative error = 2.2431692914475347115616120045602e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.93 Order of pole = 2.168 x[1] = -1.643 y[1] (analytic) = -1.0240461041450245411052309547881 y[1] (numeric) = -1.0240461041450245388232863470713 absolute error = 2.2819446077168e-18 relative error = 2.2283612021765310473146898540157e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.929 Order of pole = 2.168 x[1] = -1.642 y[1] (analytic) = -1.0237756735232930532560070934894 y[1] (numeric) = -1.0237756735232930509900599317509 absolute error = 2.2659471617385e-18 relative error = 2.2133238954001625128785118969394e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.928 Order of pole = 2.168 x[1] = -1.641 y[1] (analytic) = -1.0235050025202298506962054307213 y[1] (numeric) = -1.0235050025202298484464841466308 absolute error = 2.2497212840905e-18 relative error = 2.1980559729076982756087454439886e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.927 Order of pole = 2.168 x[1] = -1.64 y[1] (analytic) = -1.0232340908548990612931326677265 y[1] (numeric) = -1.0232340908548990590598669331883 absolute error = 2.2332657345382e-18 relative error = 2.1825560294539589657339736072369e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.926 Order of pole = 2.168 x[1] = -1.639 y[1] (analytic) = -1.0229629382460063164034307314038 y[1] (numeric) = -1.0229629382460063141868514639113 absolute error = 2.2165792674925e-18 relative error = 2.1668226527278625033655992993367e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.926 Order of pole = 2.168 x[1] = -1.638 y[1] (analytic) = -1.022691544411898390088800543882 y[1] (numeric) = -1.0226915444118983878891399118903 absolute error = 2.1996606319917e-18 relative error = 2.1508544233213749205679852331210e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.925 Order of pole = 2.169 x[1] = -1.637 y[1] (analytic) = -1.0224199090705628386740636569746 y[1] (numeric) = -1.0224199090705628364915550852924 absolute error = 2.1825085716822e-18 relative error = 2.1346499146972039669501559457268e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.924 Order of pole = 2.169 x[1] = -1.636 y[1] (analytic) = -1.0221480319396276406523327640814 y[1] (numeric) = -1.0221480319396276384872109392811 absolute error = 2.1651218248003e-18 relative error = 2.1182076931574830797348703654382e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.923 Order of pole = 2.169 x[1] = -1.635 y[1] (analytic) = -1.0218759127363608369420879254161 y[1] (numeric) = -1.0218759127363608347945888012627 absolute error = 2.1474991241534e-18 relative error = 2.1015263178117837087839004552189e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.922 Order of pole = 2.169 x[1] = -1.634 y[1] (analytic) = -1.0216035511776701715009812769787 y[1] (numeric) = -1.0216035511776701693713420798779 absolute error = 2.1296391971008e-18 relative error = 2.0846043405446502694309272315495e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.921 Order of pole = 2.169 x[1] = -1.633 y[1] (analytic) = -1.0213309469801027323012190398388 y[1] (numeric) = -1.0213309469801027301896782743031 absolute error = 2.1115407655357e-18 relative error = 2.0674403059842231660286875731121e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.921 Order of pole = 2.169 x[1] = -1.632 y[1] (analytic) = -1.0210580998598445926713958044295 y[1] (numeric) = -1.021058099859844590578193258564 absolute error = 2.0932025458655e-18 relative error = 2.0500327514691114788856114362555e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.92 Order of pole = 2.169 memory used=57.2MB, alloc=4.3MB, time=7.98 x[1] = -1.631 y[1] (analytic) = -1.0207850095327204530096823350723 y[1] (numeric) = -1.0207850095327204509350590860784 absolute error = 2.0746232489939e-18 relative error = 2.0323802070169405234966802686364e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.919 Order of pole = 2.17 x[1] = -1.63 y[1] (analytic) = -1.0205116757141932828732945232312 y[1] (numeric) = -1.0205116757141932808174929429301 absolute error = 2.0558015803011e-18 relative error = 2.0144811952909515335516734625794e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.918 Order of pole = 2.17 x[1] = -1.629 y[1] (analytic) = -1.0202380981193639634491976144342 y[1] (numeric) = -1.0202380981193639614124613748086 absolute error = 2.0367362396256e-18 relative error = 1.9963342315680801343204943484008e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.917 Order of pole = 2.17 x[1] = -1.628 y[1] (analytic) = -1.0199642764629709304110264437729 y[1] (numeric) = -1.0199642764629709283936005225282 absolute error = 2.0174259212447e-18 relative error = 1.9779378237056728891393288626883e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.916 Order of pole = 2.17 x[1] = -1.627 y[1] (analytic) = -1.0196902104593898171672291388033 y[1] (numeric) = -1.0196902104593898151693598249474 absolute error = 1.9978693138559e-18 relative error = 1.9592904721089966218665117707768e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.916 Order of pole = 2.17 x[1] = -1.626 y[1] (analytic) = -1.0194158998226330985054685868957 y[1] (numeric) = -1.019415899822633096527403486338 absolute error = 1.9780651005577e-18 relative error = 1.9403906696980703172995883993174e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.915 Order of pole = 2.17 x[1] = -1.625 y[1] (analytic) = -1.0191413442663497346383429170231 y[1] (numeric) = -1.0191413442663497326803309581925 absolute error = 1.9580119588306e-18 relative error = 1.9212369018746030393683129892468e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.914 Order of pole = 2.171 x[1] = -1.624 y[1] (analytic) = -1.0188665435038248156555133140183 y[1] (numeric) = -1.0188665435038248137178047535002 absolute error = 1.9377085605181e-18 relative error = 1.9018276464888415092448478640434e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.913 Order of pole = 2.171 x[1] = -1.623 y[1] (analytic) = -1.0185914972479792063873546668637 y[1] (numeric) = -1.0185914972479792044702010950563 absolute error = 1.9171535718074e-18 relative error = 1.8821613738060323865344881225162e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.912 Order of pole = 2.171 x[1] = -1.622 y[1] (analytic) = -1.018316205211369191685271852 y[1] (numeric) = -1.0183162052113691897889261987893 absolute error = 1.8963456532107e-18 relative error = 1.8622365464733820733464111386295e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.911 Order of pole = 2.171 x[1] = -1.621 y[1] (analytic) = -1.0180406671061861221238518683366 y[1] (numeric) = -1.0180406671061861202485684087915 absolute error = 1.8752834595451e-18 relative error = 1.8420516194855501600260417286696e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.91 Order of pole = 2.171 x[1] = -1.62 y[1] (analytic) = -1.0177648826442560601300495730236 y[1] (numeric) = -1.017764882644256058276083933109 absolute error = 1.8539656399146e-18 relative error = 1.8216050401521123753202552755298e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.91 Order of pole = 2.171 x[1] = -1.619 y[1] (analytic) = -1.0174888515370394265446324164765 y[1] (numeric) = -1.0174888515370394247122415787865 absolute error = 1.8323908376900e-18 relative error = 1.8008952480628686993970447455929e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.909 Order of pole = 2.171 x[1] = -1.618 y[1] (analytic) = -1.0172125734956306476211373420518 y[1] (numeric) = -1.0172125734956306458105796515621 absolute error = 1.8105576904897e-18 relative error = 1.7799206750539415158298117196425e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.908 Order of pole = 2.172 x[1] = -1.617 y[1] (analytic) = -1.0169360482307578024676209005257 y[1] (numeric) = -1.0169360482307578006791560703644 absolute error = 1.7884648301613e-18 relative error = 1.7586797451745666968029453476198e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.907 Order of pole = 2.172 x[1] = -1.616 y[1] (analytic) = -1.016659275452782270936511632536 y[1] (numeric) = -1.0166592754527822691704007497752 absolute error = 1.7661108827608e-18 relative error = 1.7371708746514311064250693361062e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.906 Order of pole = 2.172 x[1] = -1.615 y[1] (analytic) = -1.0163822548716983819679018938144 y[1] (numeric) = -1.0163822548716983802244074252797 absolute error = 1.7434944685347e-18 relative error = 1.7153924718557661454834973568156e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.905 Order of pole = 2.172 x[1] = -1.614 y[1] (analytic) = -1.0161049861971330623916445387347 y[1] (numeric) = -1.0161049861971330606710303368352 absolute error = 1.7206142018995e-18 relative error = 1.6933429372677894930604525442961e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.905 Order of pole = 2.172 x[1] = -1.613 y[1] (analytic) = -1.0158274691383454861936482378634 y[1] (numeric) = -1.0158274691383454844961795464402 absolute error = 1.6974686914232e-18 relative error = 1.6710206634430180326973841953182e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.904 Order of pole = 2.172 x[1] = -1.612 y[1] (analytic) = -1.015549703404226724251793685188 y[1] (numeric) = -1.0155497034042267225777371453829 absolute error = 1.6740565398051e-18 relative error = 1.6484240349768119149983141111871e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.903 Order of pole = 2.173 x[1] = -1.611 y[1] (analytic) = -1.015271688703299394546921550942 y[1] (numeric) = -1.0152716887032993928965452070852 absolute error = 1.6503763438568e-18 relative error = 1.6255514284700024694790502299933e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.902 Order of pole = 2.173 x[1] = -1.61 y[1] (analytic) = -1.0149934247437173128543717568226 y[1] (numeric) = -1.0149934247437173112279450623399 absolute error = 1.6264266944827e-18 relative error = 1.6024012124939308731220179567141e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.901 Order of pole = 2.173 x[1] = -1.609 y[1] (analytic) = -1.0147149112332651439215824923232 y[1] (numeric) = -1.014714911233265142319376315663 absolute error = 1.6022061766602e-18 relative error = 1.5789717475550932630953016035713e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.9 Order of pole = 2.173 x[1] = -1.608 y[1] (analytic) = -1.0144361478793580531372863542673 y[1] (numeric) = -1.0144361478793580515595729848468 absolute error = 1.5777133694205e-18 relative error = 1.5552613860602784449423173407411e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.899 Order of pole = 2.173 x[1] = -1.607 y[1] (analytic) = -1.0141571343890413586978700768424 y[1] (numeric) = -1.0141571343890413571449232310137 absolute error = 1.5529468458287e-18 relative error = 1.5312684722809170053253505431101e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.899 Order of pole = 2.173 x[1] = -1.606 y[1] (analytic) = -1.0138778704689901842764935268911 y[1] (numeric) = -1.0138778704689901827485883539265 absolute error = 1.5279051729646e-18 relative error = 1.5069913423180208605038307610803e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop memory used=61.0MB, alloc=4.3MB, time=8.53 Complex estimate of poles used Radius of convergence = 1.898 Order of pole = 2.173 x[1] = -1.605 y[1] (analytic) = -1.0135983558255091122005929693204 y[1] (numeric) = -1.0135983558255091106980060574178 absolute error = 1.5025869119026e-18 relative error = 1.4824283240661355555368393518635e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.897 Order of pole = 2.174 x[1] = -1.604 y[1] (analytic) = -1.0133185901645318371434230606528 y[1] (numeric) = -1.0133185901645318356664324429602 absolute error = 1.4769906176926e-18 relative error = 1.4575777371781781454564263872918e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.896 Order of pole = 2.174 x[1] = -1.603 y[1] (analytic) = -1.0130385731916208203353216053524 y[1] (numeric) = -1.0130385731916208188842067660127 absolute error = 1.4511148393397e-18 relative error = 1.4324378930289903934964825896792e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.895 Order of pole = 2.174 x[1] = -1.602 y[1] (analytic) = -1.0127583046119669443004108100369 y[1] (numeric) = -1.0127583046119669428754526902519 absolute error = 1.4249581197850e-18 relative error = 1.4070070946798755329284940336297e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.894 Order of pole = 2.174 x[1] = -1.601 y[1] (analytic) = -1.0124777841303891681244785954202 y[1] (numeric) = -1.0124777841303891667259595995342 absolute error = 1.3985189958860e-18 relative error = 1.3812836368426386881078804466310e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.894 Order of pole = 2.174 x[1] = -1.6 y[1] (analytic) = -1.0121970114513341832598134752381 y[1] (numeric) = -1.012197011451334181888017476842 absolute error = 1.3717959983961e-18 relative error = 1.3552658058426357222468236085769e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.893 Order of pole = 2.174 x[1] = -1.599 y[1] (analytic) = -1.0119159862788760698727965858925 y[1] (numeric) = -1.011915986278876068528008933947 absolute error = 1.3447876519455e-18 relative error = 1.3289518795831012030002644057079e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.892 Order of pole = 2.175 x[1] = -1.598 y[1] (analytic) = -1.0116347083167159537400846505073 y[1] (numeric) = -1.0116347083167159524225921754859 absolute error = 1.3174924750214e-18 relative error = 1.3023401275086818239357050432966e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.891 Order of pole = 2.175 x[1] = -1.597 y[1] (analytic) = -1.011353177268181663699247986941 y[1] (numeric) = -1.0113531772681816624093390069931 absolute error = 1.2899089799479e-18 relative error = 1.2754288105685689457736960036421e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.89 Order of pole = 2.175 x[1] = -1.596 y[1] (analytic) = -1.0110713928362273896597581214427 y[1] (numeric) = -1.0110713928362273883977224485765 absolute error = 1.2620356728662e-18 relative error = 1.2482161811798226025575503996957e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.889 Order of pole = 2.175 x[1] = -1.595 y[1] (analytic) = -1.0107893547234333411802501484831 y[1] (numeric) = -1.0107893547234333399463790947681 absolute error = 1.2338710537150e-18 relative error = 1.2207004831907881084241636907378e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.889 Order of pole = 2.175 x[1] = -1.594 y[1] (analytic) = -1.0105070626320054066180156832441 y[1] (numeric) = -1.0105070626320054054126020670339 absolute error = 1.2054136162102e-18 relative error = 1.1928799518437144984430937617698e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.888 Order of pole = 2.175 x[1] = -1.593 y[1] (analytic) = -1.0102245162637748128567130867272 y[1] (numeric) = -1.0102245162637748116800512389016 absolute error = 1.1766618478256e-18 relative error = 1.1647528137382557290184210888210e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.887 Order of pole = 2.176 x[1] = -1.592 y[1] (analytic) = -1.0099417153201977856183126048325 y[1] (numeric) = -1.0099417153201977844706983750602 absolute error = 1.1476142297723e-18 relative error = 1.1363172867935786977656300168161e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.886 Order of pole = 2.176 x[1] = -1.591 y[1] (analytic) = -1.0096586595023552103653251525016 y[1] (numeric) = -1.0096586595023552092470559155224 absolute error = 1.1182692369792e-18 relative error = 1.1075715802114520822707274858906e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.885 Order of pole = 2.176 x[1] = -1.59 y[1] (analytic) = -1.0093753485109522937993946924935 y[1] (numeric) = -1.0093753485109522927107693544204 absolute error = 1.0886253380731e-18 relative error = 1.0785138944388315413286285180035e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.884 Order of pole = 2.176 x[1] = -1.589 y[1] (analytic) = -1.0090917820463182259623655059993 y[1] (numeric) = -1.0090917820463182249036845106409 absolute error = 1.0586809953584e-18 relative error = 1.0491424211299399763334909499477e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.884 Order of pole = 2.176 x[1] = -1.588 y[1] (analytic) = -1.008807959808405842945967129505 y[1] (numeric) = -1.0088079598084058419175324647079 absolute error = 1.0284346647971e-18 relative error = 1.0194553431085354313789412446838e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.883 Order of pole = 2.176 x[1] = -1.587 y[1] (analytic) = -1.0085238814967912902162913394908 y[1] (numeric) = -1.0085238814967912892184065435016 absolute error = 9.978847959892e-19 relative error = 9.8945083433046583793029879057078e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.882 Order of pole = 2.176 x[1] = -1.586 y[1] (analytic) = -1.0082395468106736865592673041213 y[1] (numeric) = -1.008239546810673685592237471969 absolute error = 9.670298321523e-19 relative error = 9.5912705984532065806952875383580e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.881 Order of pole = 2.177 x[1] = -1.585 y[1] (analytic) = -1.0079549554488747886533728894521 y[1] (numeric) = -1.0079549554488747877175046793505 absolute error = 9.358682101016e-19 relative error = 9.2848217575836785244836542226851e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.88 Order of pole = 2.177 x[1] = -1.584 y[1] (analytic) = -1.0076701071098386562758521072564 y[1] (numeric) = -1.0076701071098386553714537470264 absolute error = 9.043983602300e-19 relative error = 8.9751432919247869689278711095486e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.879 Order of pole = 2.177 x[1] = -1.583 y[1] (analytic) = -1.0073850014916313181487408227815 y[1] (numeric) = -1.0073850014916313172761221162937 absolute error = 8.726187064878e-19 relative error = 8.6622165824954376538884829352746e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.879 Order of pole = 2.177 x[1] = -1.582 y[1] (analytic) = -1.0070996382919404384310351039872 y[1] (numeric) = -1.0070996382919404375905074376243 absolute error = 8.405276663629e-19 relative error = 8.3460229197227240088241201981532e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.878 Order of pole = 2.177 x[1] = -1.581 y[1] (analytic) = -1.0068140172080749838633689895111 y[1] (numeric) = -1.006814017208074983055245338651 absolute error = 8.081236508601e-19 relative error = 8.0265435030498558207143753427276e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.877 Order of pole = 2.177 memory used=64.8MB, alloc=4.3MB, time=9.07 x[1] = -1.58 y[1] (analytic) = -1.0065281379369648915716009811645 y[1] (numeric) = -1.0065281379369648907961959166829 absolute error = 7.754050644816e-19 relative error = 7.7037594405548623734964857140605e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.876 Order of pole = 2.178 x[1] = -1.579 y[1] (analytic) = -1.0062420001751607375357412285954 y[1] (numeric) = -1.0062420001751607367933709233889 absolute error = 7.423703052065e-19 relative error = 7.3776517485582246402363352679406e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.875 Order of pole = 2.178 x[1] = -1.578 y[1] (analytic) = -1.0059556036188334057306841692848 y[1] (numeric) = -1.0059556036188334050216664048141 absolute error = 7.090177644707e-19 relative error = 7.0482013512333282898774901059071e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.874 Order of pole = 2.178 x[1] = -1.577 y[1] (analytic) = -1.0056689479637737579452443166746 y[1] (numeric) = -1.0056689479637737572698984895277 absolute error = 6.753458271469e-19 relative error = 6.7153890802167566879193284568978e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.873 Order of pole = 2.178 x[1] = -1.576 y[1] (analytic) = -1.0053820329053923042860259533815 y[1] (numeric) = -1.0053820329053923036446730818572 absolute error = 6.413528715243e-19 relative error = 6.3791956742144416293204032301940e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.873 Order of pole = 2.178 x[1] = -1.575 y[1] (analytic) = -1.0050948581387188743726906855402 y[1] (numeric) = -1.0050948581387188737656534162522 absolute error = 6.070372692880e-19 relative error = 6.0396017786036601528537514854741e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.872 Order of pole = 2.178 x[1] = -1.574 y[1] (analytic) = -1.0048074233584022892312201487656 y[1] (numeric) = -1.0048074233584022886588227632662 absolute error = 5.723973854994e-19 relative error = 5.6965879450438035226271698234805e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.871 Order of pole = 2.178 x[1] = -1.573 y[1] (analytic) = -1.0045197282587100338918046264291 y[1] (numeric) = -1.0045197282587100333543730478533 absolute error = 5.374315785758e-19 relative error = 5.3501346310780135203756689988624e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.87 Order of pole = 2.179 x[1] = -1.572 y[1] (analytic) = -1.004231772533527930698021947339 y[1] (numeric) = -1.0042317725335279301958837470692 absolute error = 5.021382002698e-19 relative error = 5.0002221997316390391468984820691e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.869 Order of pole = 2.179 x[1] = -1.571 y[1] (analytic) = -1.0039435558763598133340047729067 y[1] (numeric) = -1.0039435558763598128674891772571 absolute error = 4.665155956496e-19 relative error = 4.6468309191184599248975353295563e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.868 Order of pole = 2.179 x[1] = -1.57 y[1] (analytic) = -1.0036550779803272015763282638849 y[1] (numeric) = -1.0036550779803272011457661608065 absolute error = 4.305621030784e-19 relative error = 4.2899409620367557626162894777987e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.868 Order of pole = 2.179 x[1] = -1.569 y[1] (analytic) = -1.0033663385381689767773841342047 y[1] (numeric) = -1.0033663385381689763831080800106 absolute error = 3.942760541941e-19 relative error = 3.9295324055671554391755477759858e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.867 Order of pole = 2.179 x[1] = -1.568 y[1] (analytic) = -1.0030773372422410580870412547239 y[1] (numeric) = -1.0030773372422410577293854808349 absolute error = 3.576557738890e-19 relative error = 3.5655852306692767608836399591054e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.866 Order of pole = 2.179 x[1] = -1.567 y[1] (analytic) = -1.0027880737845160794194272632517 y[1] (numeric) = -1.0027880737845160790987276829619 absolute error = 3.206995802898e-19 relative error = 3.1980793217801418234505688810746e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.865 Order of pole = 2.18 x[1] = -1.566 y[1] (analytic) = -1.0024985478565830671717000694497 y[1] (numeric) = -1.0024985478565830668882942847123 absolute error = 2.834057847374e-19 relative error = 2.8269944664093806502899889976476e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.864 Order of pole = 2.18 x[1] = -1.565 y[1] (analytic) = -1.0022087591496471187017127145426 y[1] (numeric) = -1.0022087591496471184559400227768 absolute error = 2.457726917658e-19 relative error = 2.4523103547242284890598767615882e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.863 Order of pole = 2.18 x[1] = -1.564 y[1] (analytic) = -1.001918707354529081571509756627 y[1] (numeric) = -1.0019187073545290813637111575445 absolute error = 2.077985990825e-19 relative error = 2.0740065791482465576134844938833e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.863 Order of pole = 2.18 x[1] = -1.563 y[1] (analytic) = -1.0016283921616652335636282031507 y[1] (numeric) = -1.0016283921616652333941464056024 absolute error = 1.694817975483e-19 relative error = 1.6920626339528245911361193518090e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.862 Order of pole = 2.18 x[1] = -1.562 y[1] (analytic) = -1.0013378132611069634772110032747 y[1] (numeric) = -1.0013378132611069633463904321184 absolute error = 1.308205711563e-19 relative error = 1.3064579148394496323145469606251e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.861 Order of pole = 2.18 x[1] = -1.561 y[1] (analytic) = -1.0010469703425204527109762447437 y[1] (numeric) = -1.0010469703425204526191630477317 absolute error = 9.18131970120e-20 relative error = 9.1717171853169879506734678809216e-18 % Correct digits = 19 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.86 Order of pole = 2.18 x[1] = -1.56 y[1] (analytic) = -1.0007558630951863576401204729864 y[1] (numeric) = -1.0007558630951863575876625276731 absolute error = 5.24579453133e-20 relative error = 5.2418324236498118465011576117581e-18 % Correct digits = 19 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.859 Order of pole = 2.18 x[1] = -1.559 y[1] (analytic) = -1.0004644912079994927942699648733 y[1] (numeric) = -1.0004644912079994927815168855441 absolute error = 1.27530793292e-20 relative error = 1.2747158386202631874419646661317e-18 % Correct digits = 19 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.858 Order of pole = 2.181 x[1] = -1.558 y[1] (analytic) = -1.0001728543694685148436293462945 y[1] (numeric) = -1.0001728543694685148709324909139 absolute error = 2.73031446194e-20 relative error = 2.7298425967191958101607126035714e-18 % Correct digits = 19 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.858 Order of pole = 2.181 x[1] = -1.557 y[1] (analytic) = -0.99988095226771560740051264188759 y[1] (numeric) = -0.9998809522677156074682251190686 absolute error = 6.771247718101e-20 relative error = 6.7720539157625791761183595816441e-18 % Correct digits = 19 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.857 Order of pole = 2.181 x[1] = -1.556 y[1] (analytic) = -0.99958878459047616664347768728934 y[1] (numeric) = -0.99958878459047616675195436328263 absolute error = 1.0847667599329e-19 relative error = 1.0852130162477969322376818501740e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.856 Order of pole = 2.181 x[1] = -1.555 y[1] (analytic) = -0.99929635102509848777132081959536 y[1] (numeric) = -0.99929635102509848792091832529895 absolute error = 1.4959750570359e-19 relative error = 1.4970284395627967724024178454776e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop memory used=68.6MB, alloc=4.3MB, time=9.61 Complex estimate of poles used Radius of convergence = 1.855 Order of pole = 2.181 x[1] = -1.554 y[1] (analytic) = -0.99900365125854345229422489073047 y[1] (numeric) = -0.99900365125854345248530162871981 absolute error = 1.9107673798934e-19 relative error = 1.9126730692988137052897451926449e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.854 Order of pole = 2.181 x[1] = -1.553 y[1] (analytic) = -0.99871068497738421616938992156386 y[1] (numeric) = -0.99871068497738421640230607314218 absolute error = 2.3291615157832e-19 relative error = 2.3321684155566472353730805920581e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.853 Order of pole = 2.181 x[1] = -1.552 y[1] (analytic) = -0.99841745186780589878851213227124 y[1] (numeric) = -0.99841745186780589906362966454028 absolute error = 2.7511753226904e-19 relative error = 2.7555360911846977780292021579142e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.853 Order of pole = 2.182 x[1] = -1.551 y[1] (analytic) = -0.99812395161560527282451364706925 y[1] (numeric) = -0.99812395161560527314219632002035 absolute error = 3.1768267295110e-19 relative error = 3.1827978122044412142080936946625e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.852 Order of pole = 2.182 x[1] = -1.55 y[1] (analytic) = -0.9978301839061904549449618794427 y[1] (numeric) = -0.99783018390619045530557525306821 absolute error = 3.6061337362551e-19 relative error = 3.6139753982368260248466254707868e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.851 Order of pole = 2.182 x[1] = -1.549 y[1] (analytic) = -0.99753614842458059739965445777235 y[1] (numeric) = -0.99753614842458059780356589919735 absolute error = 4.0391144142500e-19 relative error = 4.0490907729298994994455024541618e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.85 Order of pole = 2.182 x[1] = -1.548 y[1] (analytic) = -0.99724184485540558048988255126777 y[1] (numeric) = -0.99724184485540558093746124190221 absolute error = 4.4757869063444e-19 relative error = 4.4881659643888727435879663830843e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.849 Order of pole = 2.182 x[1] = -1.547 y[1] (analytic) = -0.99694727288290570592692260273558 y[1] (numeric) = -0.99694727288290570641853954544667 absolute error = 4.9161694271109e-19 relative error = 4.9312231056058248413181250077702e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.848 Order of pole = 2.182 x[1] = -1.546 y[1] (analytic) = -0.99665243219093139108734376838494 y[1] (numeric) = -0.99665243219093139162337179468994 absolute error = 5.3602802630500e-19 relative error = 5.3782844348922600844891253091782e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.848 Order of pole = 2.182 x[1] = -1.545 y[1] (analytic) = -0.9963573224629428641727558060101 y[1] (numeric) = -0.99635732246294286475356958328936 absolute error = 5.8081377727926e-19 relative error = 5.8293722963115171374394052083119e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.847 Order of pole = 2.182 x[1] = -1.544 y[1] (analytic) = -0.99606194338200986028165974190967 y[1] (numeric) = -0.99606194338200986090763578064006 absolute error = 6.2597603873039e-19 relative error = 6.2845091401139452443132426461341e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.846 Order of pole = 2.183 x[1] = -1.543 y[1] (analytic) = -0.99576629463081131840110138422489 y[1] (numeric) = -0.99576629463081131907261804523349 absolute error = 6.7151666100860e-19 relative error = 6.7437175231721457106110570860871e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.845 Order of pole = 2.183 x[1] = -1.542 y[1] (analytic) = -0.99547037589163507932586563642001 y[1] (numeric) = -0.99547037589163508004330313815813 absolute error = 7.1743750173812e-19 relative error = 7.2070201094182918834080948695685e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.844 Order of pole = 2.183 x[1] = -1.541 y[1] (analytic) = -0.9951741868463775845129875998069 y[1] (numeric) = -0.99517418684637758527672802564438 absolute error = 7.6374042583748e-19 relative error = 7.6744396702823301421282971563072e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.843 Order of pole = 2.183 x[1] = -1.54 y[1] (analytic) = -0.99487772717654357587939463874932 y[1] (numeric) = -0.99487772717654357668982194428914 absolute error = 8.1042730553982e-19 relative error = 8.1459990851318718811769539885711e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.843 Order of pole = 2.183 x[1] = -1.539 y[1] (analytic) = -0.99458099656324579655053191688854 y[1] (numeric) = -0.99458099656324579740803193730166 absolute error = 8.5750002041312e-19 relative error = 8.6217213417126780645327370231782e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.842 Order of pole = 2.183 x[1] = -1.538 y[1] (analytic) = -0.99428399468720469256786239782779 y[1] (numeric) = -0.99428399468720469347282285520832 absolute error = 9.0496045738053e-19 relative error = 9.1016295365915520032398576487820e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.841 Order of pole = 2.183 x[1] = -1.537 y[1] (analytic) = -0.99398672122874811556317093961612 y[1] (numeric) = -0.9939867212287481165159814503567 absolute error = 9.5281051074058e-19 relative error = 9.5857468755994361678611151251842e-17 % Correct digits = 18 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.84 Order of pole = 2.183 x[1] = -1.536 y[1] (analytic) = -0.99368917586781102640764089949904 y[1] (numeric) = -0.99368917586781102740869298168646 absolute error = 1.00105208218742e-18 relative error = 1.0074096674276227095828578113088e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.839 Order of pole = 2.183 x[1] = -1.535 y[1] (analytic) = -0.99339135828393519984371060417091 y[1] (numeric) = -0.993391358283935200893397685002 absolute error = 1.04968708083109e-18 relative error = 1.0566702358317316118832357218698e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.838 Order of pole = 2.183 x[1] = -1.534 y[1] (analytic) = -0.99309326815626893010775613158899 y[1] (numeric) = -0.9930932681562689312064735548067 absolute error = 1.09871742321771e-18 relative error = 1.1063587464020756028167833246321e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.838 Order of pole = 2.184 x[1] = -1.533 y[1] (analytic) = -0.99279490516356673755168609370703 y[1] (numeric) = -0.99279490516356673869983112705671 absolute error = 1.14814503334968e-18 relative error = 1.1564775638735965690974956595543e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.837 Order of pole = 2.184 x[1] = -1.532 y[1] (analytic) = -0.99249626898418907627157350567385 y[1] (numeric) = -0.99249626898418907746954534837972 absolute error = 1.19797184270587e-18 relative error = 1.2070290641313778525357612471240e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.836 Order of pole = 2.184 x[1] = -1.531 y[1] (analytic) = -0.99219735929610204275148937653489 y[1] (numeric) = -0.99219735929610204399968916679669 absolute error = 1.24819979026180e-18 relative error = 1.2580156342557841870687258775899e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.835 Order of pole = 2.184 x[1] = -1.53 y[1] (analytic) = -0.99189817577687708553074235968741 y[1] (numeric) = -0.9918981757768770868295731821972 absolute error = 1.29883082250979e-18 relative error = 1.3094396725677172694639369014948e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.834 Order of pole = 2.184 memory used=72.4MB, alloc=4.3MB, time=10.14 x[1] = -1.529 y[1] (analytic) = -0.99159871810369071590276865868826 y[1] (numeric) = -0.99159871810369071725263555216736 absolute error = 1.34986689347910e-18 relative error = 1.3613035886740078019437132978283e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.833 Order of pole = 2.184 x[1] = -1.528 y[1] (analytic) = -0.9912989859533242196539563959113 y[1] (numeric) = -0.99129898595332422105526636066732 absolute error = 1.40130996475602e-18 relative error = 1.4136098035129043707947283048618e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.833 Order of pole = 2.184 x[1] = -1.527 y[1] (analytic) = -0.99099897900216336985072881841382 y[1] (numeric) = -0.99099897900216337130389082391786 absolute error = 1.45316200550404e-18 relative error = 1.4663607493997909753290032157462e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.832 Order of pole = 2.184 x[1] = -1.526 y[1] (analytic) = -0.99069869692619814068325103761255 y[1] (numeric) = -0.99069869692619814218867603009639 absolute error = 1.50542499248384e-18 relative error = 1.5195588700728716815427850420889e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.831 Order of pole = 2.184 x[1] = -1.525 y[1] (analytic) = -0.99039813940102242237416547740178 y[1] (numeric) = -0.9903981394010224239322663874752 absolute error = 1.55810091007342e-18 relative error = 1.5732066207391458659193953597859e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.83 Order of pole = 2.184 x[1] = -1.524 y[1] (analytic) = -0.99009730610183373716080183958421 y[1] (numeric) = -0.9900973061018337387719935898723 absolute error = 1.61119175028809e-18 relative error = 1.6273064681203923009617351816590e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.829 Order of pole = 2.184 x[1] = -1.523 y[1] (analytic) = -0.98979619670343295635934818633987 y[1] (numeric) = -0.98979619670343295802404769914035 absolute error = 1.66469951280048e-18 relative error = 1.6818608904993241877552077497863e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.828 Order of pole = 2.185 x[1] = -1.522 y[1] (analytic) = -0.98949481088022401851951068734359 y[1] (numeric) = -0.98949481088022402023813689230419 absolute error = 1.71862620496060e-18 relative error = 1.7368723777659462569463311882731e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.828 Order of pole = 2.185 x[1] = -1.521 y[1] (analytic) = -0.98919314830621364867823068446841 y[1] (numeric) = -0.98919314830621365045120452628411 absolute error = 1.77297384181570e-18 relative error = 1.7923434314638620790031902852358e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.827 Order of pole = 2.185 x[1] = -1.52 y[1] (analytic) = -0.9888912086550110787210689901915 y[1] (numeric) = -0.98889120865501108054881343632181 absolute error = 1.82774444613031e-18 relative error = 1.8482765648369161893603363054775e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.826 Order of pole = 2.185 x[1] = -1.519 y[1] (analytic) = -0.98858899159982776885990875726318 y[1] (numeric) = -0.98858899159982777074284880566923 absolute error = 1.88294004840605e-18 relative error = 1.9046743028757574567217007483834e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.825 Order of pole = 2.185 x[1] = -1.518 y[1] (analytic) = -0.9882864968134771302356698373165 y[1] (numeric) = -0.98828649681347713217423252421812 absolute error = 1.93856268690162e-18 relative error = 1.9615391823647388328628038048649e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.824 Order of pole = 2.185 x[1] = -1.517 y[1] (analytic) = -0.98798372396837424865476928529662 y[1] (numeric) = -0.98798372396837425064938369294921 absolute error = 1.99461440765259e-18 relative error = 2.0188737519287700323248566785629e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.823 Order of pole = 2.185 x[1] = -1.516 y[1] (analytic) = -0.98768067273653560946810456528295 y[1] (numeric) = -0.98768067273653561151920182977417 absolute error = 2.05109726449122e-18 relative error = 2.0766805720803563615470068385480e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.823 Order of pole = 2.185 x[1] = -1.515 y[1] (analytic) = -0.98737734278957882360137807187295 y[1] (numeric) = -0.98737734278957882570939139093926 absolute error = 2.10801331906631e-18 relative error = 2.1349622152668245506855357632700e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.822 Order of pole = 2.185 x[1] = -1.514 y[1] (analytic) = -0.98707373379872235474562380020178 y[1] (numeric) = -0.9870737337987223569109884410647 absolute error = 2.16536464086292e-18 relative error = 2.1937212659175743508826247508058e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.821 Order of pole = 2.185 x[1] = -1.513 y[1] (analytic) = -0.98676984543478524771683937729389 y[1] (numeric) = -0.98676984543478524993999268451601 absolute error = 2.22315330722212e-18 relative error = 2.2529603204915185556353166326987e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.82 Order of pole = 2.185 x[1] = -1.512 y[1] (analytic) = -0.98646567736818685799366920818855 y[1] (numeric) = -0.98646567736818686027505061154926 absolute error = 2.28138140336071e-18 relative error = 2.3126819875246514891918986440706e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.819 Order of pole = 2.185 x[1] = -1.511 y[1] (analytic) = -0.98616122926894658244212719255684 y[1] (numeric) = -0.98616122926894658478217821494769 absolute error = 2.34005102239085e-18 relative error = 2.3728888876776858595646389665985e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.818 Order of pole = 2.185 x[1] = -1.51 y[1] (analytic) = -0.98585650080668359123639033173802 y[1] (numeric) = -0.98585650080668359363555459707772 absolute error = 2.39916426533970e-18 relative error = 2.4335836537838600228242745386540e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.818 Order of pole = 2.185 x[1] = -1.509 y[1] (analytic) = -0.98555149165061656098473757267363 y[1] (numeric) = -0.98555149165061656344346081384267 absolute error = 2.45872324116904e-18 relative error = 2.4947689308968860539507799085391e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.817 Order of pole = 2.186 x[1] = -1.508 y[1] (analytic) = -0.98524620146956340906975142451197 y[1] (numeric) = -0.98524620146956341158848149130677 absolute error = 2.51873006679480e-18 relative error = 2.5564473763389683497585516048640e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.816 Order of pole = 2.186 x[1] = -1.507 y[1] (analytic) = -0.98494062993194102921194323609649 y[1] (numeric) = -0.98494062993194103179113010320307 absolute error = 2.57918686710658e-18 relative error = 2.6186216597489746108309372734870e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.815 Order of pole = 2.186 x[1] = -1.506 y[1] (analytic) = -0.9846347767057650282660065385424 y[1] (numeric) = -0.98463477670576503090610231352956 absolute error = 2.64009577498716e-18 relative error = 2.6812944631307600062249196219686e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.814 Order of pole = 2.186 x[1] = -1.505 y[1] (analytic) = -0.98432864145864946425894653704764 y[1] (numeric) = -0.98432864145864946696040546837953 absolute error = 2.70145893133189e-18 relative error = 2.7444684809015335779089118047396e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.813 Order of pole = 2.186 x[1] = -1.504 y[1] (analytic) = -0.98402222385780658567937768037798 y[1] (numeric) = -0.98402222385780658844265616544614 absolute error = 2.76327848506816e-18 relative error = 2.8081464199404707015677804699891e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop memory used=76.3MB, alloc=4.3MB, time=10.68 Complex estimate of poles used Radius of convergence = 1.813 Order of pole = 2.186 x[1] = -1.503 y[1] (analytic) = -0.9837155235700465720273252455123 y[1] (numeric) = -0.98371552357004657485288183868696 absolute error = 2.82555659317466e-18 relative error = 2.8723309996372778189136590316456e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.812 Order of pole = 2.186 x[1] = -1.502 y[1] (analytic) = -0.98340854026177727563391104913087 y[1] (numeric) = -0.98340854026177727852220646983164 absolute error = 2.88829542070077e-18 relative error = 2.9370249519410555552141655669615e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.811 Order of pole = 2.186 x[1] = -1.501 y[1] (analytic) = -0.98310127359900396476034773737684 y[1] (numeric) = -0.98310127359900396771184487816263 absolute error = 2.95149714078579e-18 relative error = 3.0022310214091663728823194317001e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.81 Order of pole = 2.186 x[1] = -1.5 y[1] (analytic) = -0.98279372324732906798571061101467 y[1] (numeric) = -0.98279372324732907100087454569285 absolute error = 3.01516393467818e-18 relative error = 3.0679519652562802334953811947806e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.809 Order of pole = 2.186 x[1] = -1.499 y[1] (analytic) = -0.98248588887195191989300061514712 y[1] (numeric) = -0.98248588887195192297229860690185 absolute error = 3.07929799175473e-18 relative error = 3.1341905534035177201947725587566e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.808 Order of pole = 2.186 x[1] = -1.498 y[1] (analytic) = -0.98217777013766850806305696142897 y[1] (numeric) = -0.98217777013766851120695847096862 absolute error = 3.14390150953965e-18 relative error = 3.2009495685276811432167806311019e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.808 Order of pole = 2.186 x[1] = -1.497 y[1] (analytic) = -0.98186936670887122138592285662624 y[1] (numeric) = -0.98186936670887122459489955034995 absolute error = 3.20897669372371e-18 relative error = 3.2682318061107067147565766047198e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.807 Order of pole = 2.186 x[1] = -1.496 y[1] (analytic) = -0.98156067824954859969931298480788 y[1] (numeric) = -0.98156067824954860297383874299108 absolute error = 3.27452575818320e-18 relative error = 3.3360400744891044533779216866359e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.806 Order of pole = 2.186 x[1] = -1.495 y[1] (analytic) = -0.98125170442328508476387673181458 y[1] (numeric) = -0.98125170442328508810442765681356 absolute error = 3.34055092499898e-18 relative error = 3.4043771949036614467749191975795e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.805 Order of pole = 2.186 x[1] = -1.494 y[1] (analytic) = -0.98094244489326077258499665031969 y[1] (numeric) = -0.98094244489326077599205107479502 absolute error = 3.40705442447533e-18 relative error = 3.4732460015491139185312772831495e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.804 Order of pole = 2.186 x[1] = -1.493 y[1] (analytic) = -0.98063289932225116709090734216865 y[1] (numeric) = -0.98063289932225117056494583732751 absolute error = 3.47403849515886e-18 relative error = 3.5426493416240536664554777443088e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.803 Order of pole = 2.186 x[1] = -1.492 y[1] (analytic) = -0.98032306737262693517696578214744 y[1] (numeric) = -0.98032306737262693871847116600474 absolute error = 3.54150538385730e-18 relative error = 3.6125900753808862809917912084207e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.803 Order of pole = 2.186 x[1] = -1.491 y[1] (analytic) = -0.98001294870635366312595012427394 y[1] (numeric) = -0.98001294870635366673540746993223 absolute error = 3.60945734565829e-18 relative error = 3.6830710761759642116380205078662e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.802 Order of pole = 2.186 x[1] = -1.49 y[1] (analytic) = -0.9797025429849916144143102185174 y[1] (numeric) = -0.97970254298499161809220686246542 absolute error = 3.67789664394802e-18 relative error = 3.7540952305197424691639687417919e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.801 Order of pole = 2.186 x[1] = -1.489 y[1] (analytic) = -0.97939184986969548891433942291502 y[1] (numeric) = -0.97939184986969549266116497334495 absolute error = 3.74682555042993e-18 relative error = 3.8256654381271719429689665122346e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.8 Order of pole = 2.186 x[1] = -1.488 y[1] (analytic) = -0.97908086902121418350228382375771 y[1] (numeric) = -0.97908086902121418731853016890099 absolute error = 3.81624634514328e-18 relative error = 3.8977846119681373142930135077148e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.799 Order of pole = 2.186 x[1] = -1.487 y[1] (analytic) = -0.97876960009989055408245167524115 y[1] (numeric) = -0.97876960009989055796861299172279 absolute error = 3.88616131648164e-18 relative error = 3.9704556783179912640656180395440e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.798 Order of pole = 2.186 x[1] = -1.486 y[1] (analytic) = -0.97845804276566117903743274010727 y[1] (numeric) = -0.97845804276566118299400550131862 absolute error = 3.95657276121135e-18 relative error = 4.0436815768082368076127072880973e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.798 Order of pole = 2.186 x[1] = -1.485 y[1] (analytic) = -0.97814619667805612411458425471556 y[1] (numeric) = -0.97814619667805612814206723920551 absolute error = 4.02748298448995e-18 relative error = 4.1174652604773586057112010134162e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.797 Order of pole = 2.186 x[1] = -1.484 y[1] (analytic) = -0.9778340614961987087589874560637 y[1] (numeric) = -0.97783406149619871285788175594818 absolute error = 4.09889429988448e-18 relative error = 4.1918096958217018394186082372359e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.796 Order of pole = 2.186 x[1] = -1.483 y[1] (analytic) = -0.97752163687880527390312599490091 y[1] (numeric) = -0.97752163687880527807393502429064 absolute error = 4.17080902938973e-18 relative error = 4.2667178628464811185763235512216e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.795 Order of pole = 2.186 x[1] = -1.482 y[1] (analytic) = -0.97720892248418495122358511862289 y[1] (numeric) = -0.97720892248418495546681462206934 absolute error = 4.24322950344645e-18 relative error = 4.3421927551169304742188020432684e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.794 Order of pole = 2.186 x[1] = -1.481 y[1] (analytic) = -0.97689591797023943387511824048 y[1] (numeric) = -0.97689591797023943819127630143948 absolute error = 4.31615806095948e-18 relative error = 4.4182373798095543333995654664383e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.793 Order of pole = 2.186 x[1] = -1.48 y[1] (analytic) = -0.97658262299446274871247541814507 y[1] (numeric) = -0.97658262299446275310207246746086 absolute error = 4.38959704931579e-18 relative error = 4.4948547577634699939716844282946e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.793 Order of pole = 2.186 x[1] = -1.479 y[1] (analytic) = -0.97626903721394103001043634524673 y[1] (numeric) = -0.97626903721394103447398516964922 absolute error = 4.46354882440249e-18 relative error = 4.5720479235319037962918696901639e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.792 Order of pole = 2.186 memory used=80.1MB, alloc=4.3MB, time=11.20 x[1] = -1.478 y[1] (analytic) = -0.97595516028535229469253871445058 y[1] (numeric) = -0.97595516028535229923055446507526 absolute error = 4.53801575062468e-18 relative error = 4.6498199254337086699458630584183e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.791 Order of pole = 2.186 x[1] = -1.477 y[1] (analytic) = -0.97564099186496621907904124043354 y[1] (numeric) = -0.97564099186496622369204144135689 absolute error = 4.61300020092335e-18 relative error = 4.7281738256051188842657536592473e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.79 Order of pole = 2.186 x[1] = -1.476 y[1] (analytic) = -0.97532653160864391716470923601568 y[1] (numeric) = -0.97532653160864392185321379280879 absolute error = 4.68850455679311e-18 relative error = 4.8071127000515175117167220991017e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.789 Order of pole = 2.186 x[1] = -1.475 y[1] (analytic) = -0.9750117791718377204370594151553 y[1] (numeric) = -0.97501177917183772520159062345518 absolute error = 4.76453120829988e-18 relative error = 4.8866396386993505069116995568592e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.788 Order of pole = 2.186 x[1] = -1.474 y[1] (analytic) = -0.97469673420959095924574955284289 y[1] (numeric) = -0.97469673420959096408683210694135 absolute error = 4.84108255409846e-18 relative error = 4.9667577454481062001694108905774e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.788 Order of pole = 2.186 x[1] = -1.473 y[1] (analytic) = -0.97438139637653774573384776451211 y[1] (numeric) = -0.97438139637653775065200876596223 absolute error = 4.91816100145012e-18 relative error = 5.0474701382225045812500151012199e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.787 Order of pole = 2.186 x[1] = -1.472 y[1] (analytic) = -0.97406576532690275834176547678335 y[1] (numeric) = -0.97406576532690276333753444302333 absolute error = 4.99576896623998e-18 relative error = 5.1287799490246612740115128621881e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.786 Order of pole = 2.186 x[1] = -1.471 y[1] (analytic) = -0.9737498407145010278946876475282 y[1] (numeric) = -0.97374984071450103296859652052258 absolute error = 5.07390887299438e-18 relative error = 5.2106903239864320875994097943873e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.785 Order of pole = 2.186 x[1] = -1.47 y[1] (analytic) = -0.9734336221927377252843834567511 y[1] (numeric) = -0.97343362219273773043696661164931 absolute error = 5.15258315489821e-18 relative error = 5.2932044234219082890527330788934e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.784 Order of pole = 2.186 x[1] = -1.469 y[1] (analytic) = -0.97311710941460795075633053098479 y[1] (numeric) = -0.97311710941460795598812478479679 absolute error = 5.23179425381200e-18 relative error = 5.3763254218798579711696630741334e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.783 Order of pole = 2.186 x[1] = -1.468 y[1] (analytic) = -0.9728003020326965248131357831437 y[1] (numeric) = -0.97280030203269653012468040343282 absolute error = 5.31154462028912e-18 relative error = 5.4600565081964737372158324791870e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.783 Order of pole = 2.186 x[1] = -1.467 y[1] (analytic) = -0.97248319969917778074528614742996 y[1] (numeric) = -0.9724831996991777861371228610227 absolute error = 5.39183671359274e-18 relative error = 5.5444008855480680579658040098903e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.782 Order of pole = 2.186 x[1] = -1.466 y[1] (analytic) = -0.97216580206581535880031286529028 y[1] (numeric) = -0.97216580206581536427298586700304 absolute error = 5.47267300171276e-18 relative error = 5.6293617715039327573381395471675e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.781 Order of pole = 2.186 x[1] = -1.465 y[1] (analytic) = -0.97184810878396200200150353393055 y[1] (numeric) = -0.9718481087839620075555594953132 absolute error = 5.55405596138265e-18 relative error = 5.7149423980793018287982065750201e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.78 Order of pole = 2.186 x[1] = -1.464 y[1] (analytic) = -0.97153011950455935362734686385622 y[1] (numeric) = -0.97153011950455935926333494195238 absolute error = 5.63598807809616e-18 relative error = 5.8011460117883772144733633960327e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.779 Order of pole = 2.186 x[1] = -1.463 y[1] (analytic) = -0.97121183387813775636294600666706 y[1] (numeric) = -0.97121183387813776208141785279107 absolute error = 5.71847184612401e-18 relative error = 5.8879758736975315216861581587595e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.779 Order of pole = 2.186 x[1] = -1.462 y[1] (analytic) = -0.97089325155481605313468740924006 y[1] (numeric) = -0.97089325155481605893619717777044 absolute error = 5.80150976853038e-18 relative error = 5.9754352594785032588245791497529e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.778 Order of pole = 2.186 x[1] = -1.461 y[1] (analytic) = -0.97057437218430138963950342582549 y[1] (numeric) = -0.9705743721843013955246077830149 absolute error = 5.88510435718941e-18 relative error = 6.0635274594618015146848552946219e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.777 Order of pole = 2.186 x[1] = -1.46 y[1] (analytic) = -0.97025519541588901858011837580081 y[1] (numeric) = -0.97025519541588902454937650860232 absolute error = 5.96925813280151e-18 relative error = 6.1522557786901150085021767010092e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.776 Order of pole = 2.185 x[1] = -1.459 y[1] (analytic) = -0.96993572089846210561771937221262 y[1] (numeric) = -0.96993572089846211167169299712227 absolute error = 6.05397362490965e-18 relative error = 6.2416235369719013694011685608915e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.775 Order of pole = 2.185 x[1] = -1.458 y[1] (analytic) = -0.96961594828049153705354506512571 y[1] (numeric) = -0.96961594828049154319279843704114 absolute error = 6.13925337191543e-18 relative error = 6.3316340689349513751436808846634e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.774 Order of pole = 2.185 x[1] = -1.457 y[1] (analytic) = -0.9692958772100357292509374445245 y[1] (numeric) = -0.96929587721003573547603736561971 absolute error = 6.22509992109521e-18 relative error = 6.4222907240802175456960913401441e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.774 Order of pole = 2.185 x[1] = -1.456 y[1] (analytic) = -0.96897550733474043980945403040919 y[1] (numeric) = -0.96897550733474044612096985902516 absolute error = 6.31151582861597e-18 relative error = 6.5135968668355677230280912386969e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.773 Order of pole = 2.185 x[1] = -1.455 y[1] (analytic) = -0.96865483830183858050269014312584 y[1] (numeric) = -0.96865483830183858690119380267701 absolute error = 6.39850365955117e-18 relative error = 6.6055558766097427892812653182448e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.772 Order of pole = 2.185 x[1] = -1.454 y[1] (analytic) = -0.96833386975815003199151349519579 y[1] (numeric) = -0.96833386975815003847757948309226 absolute error = 6.48606598789647e-18 relative error = 6.6981711478463750088820224025002e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.771 Order of pole = 2.185 x[1] = -1.453 y[1] (analytic) = -0.96801260135008146032446607729074 y[1] (numeric) = -0.96801260135008146689867147387606 absolute error = 6.57420539658532e-18 relative error = 6.7914460900780780591001635598513e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop memory used=83.9MB, alloc=4.3MB, time=11.73 Complex estimate of poles used Radius of convergence = 1.77 Order of pole = 2.185 x[1] = -1.452 y[1] (analytic) = -0.96769103272362613523714122585889 y[1] (numeric) = -0.96769103272362614190006570336336 absolute error = 6.66292447750447e-18 relative error = 6.8853841279806611805473468132309e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.769 Order of pole = 2.185 x[1] = -1.451 y[1] (analytic) = -0.96736916352436375026239685856708 y[1] (numeric) = -0.96736916352436375701462269007639 absolute error = 6.75222583150931e-18 relative error = 6.9799887014273752984313228803727e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.769 Order of pole = 2.185 x[1] = -1.45 y[1] (analytic) = -0.96704699339746024466331914650202 y[1] (numeric) = -0.96704699339746025150543121494119 absolute error = 6.84211206843917e-18 relative error = 7.0752632655433262191217580031284e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.768 Order of pole = 2.185 x[1] = -1.449 y[1] (analytic) = -0.96672452198766762720090435928831 y[1] (numeric) = -0.96672452198766763413349016642079 absolute error = 6.93258580713248e-18 relative error = 7.1712112907599524521616878747295e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.767 Order of pole = 2.185 x[1] = -1.448 y[1] (analytic) = -0.96640174893932380174848027124549 y[1] (numeric) = -0.9664017489393238087721299466872 absolute error = 7.02364967544171e-18 relative error = 7.2678362628694856324659374802754e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.766 Order of pole = 2.185 x[1] = -1.447 y[1] (analytic) = -0.96607867389635239476494235373313 y[1] (numeric) = -0.9660786738963524018802486639815 absolute error = 7.11530631024837e-18 relative error = 7.3651416830796839405939636061630e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.765 Order of pole = 2.185 x[1] = -1.446 y[1] (analytic) = -0.96575529650226258463893400123229 y[1] (numeric) = -0.96575529650226259184649235871001 absolute error = 7.20755835747772e-18 relative error = 7.4631310680684773591475065311028e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.764 Order of pole = 2.184 x[1] = -1.445 y[1] (analytic) = -0.96543161640014893291615424678885 y[1] (numeric) = -0.96543161640014894021656271890232 absolute error = 7.30040847211347e-18 relative error = 7.5618079500388151964924631945640e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.764 Order of pole = 2.184 x[1] = -1.444 y[1] (analytic) = -0.96510763323269121742203081650588 y[1] (numeric) = -0.96510763323269122481589013471815 absolute error = 7.39385931821227e-18 relative error = 7.6611758767735097359335439796635e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.763 Order of pole = 2.184 x[1] = -1.443 y[1] (analytic) = -0.96478334664215426729205095311824 y[1] (numeric) = -0.96478334664215427477996452203636 absolute error = 7.48791356891812e-18 relative error = 7.7612384116902113632278132374181e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.762 Order of pole = 2.184 x[1] = -1.442 y[1] (analytic) = -0.96445875627038779992209720561406 y[1] (numeric) = -0.96445875627038780750467111209072 absolute error = 7.58257390647666e-18 relative error = 7.8619991338964746266415756403138e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.761 Order of pole = 2.184 x[1] = -1.441 y[1] (analytic) = -0.96413386175882625985119033568029 y[1] (numeric) = -0.96413386175882626752903335792954 absolute error = 7.67784302224925e-18 relative error = 7.9634616382448227171872436356261e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.76 Order of pole = 2.184 x[1] = -1.44 y[1] (analytic) = -0.96380866274848865958909663273718 y[1] (numeric) = -0.96380866274848866736282024946424 absolute error = 7.77372361672706e-18 relative error = 8.0656295353880392499680380097574e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.759 Order of pole = 2.184 x[1] = -1.439 y[1] (analytic) = -0.96348315887997842240131225778168 y[1] (numeric) = -0.96348315887997843027153065732649 absolute error = 7.87021839954481e-18 relative error = 8.1685064518343148652525785329130e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.759 Order of pole = 2.184 x[1] = -1.438 y[1] (analytic) = -0.96315734979348322706399275246901 y[1] (numeric) = -0.96315734979348323503132284196364 absolute error = 7.96733008949463e-18 relative error = 8.2720960300027369126476813105565e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.758 Order of pole = 2.184 x[1] = -1.437 y[1] (analytic) = -0.96283123512877485460145155411311 y[1] (numeric) = -0.96283123512877486266651296865264 absolute error = 8.06506141453953e-18 relative error = 8.3764019282785939735353575562944e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.757 Order of pole = 2.184 x[1] = -1.436 y[1] (analytic) = -0.96250481452520903701890724986093 y[1] (numeric) = -0.96250481452520904518232236168786 absolute error = 8.16341511182693e-18 relative error = 8.4814278210689629460398742333265e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.756 Order of pole = 2.184 x[1] = -1.435 y[1] (analytic) = -0.9621780876217253080432153844745 y[1] (numeric) = -0.96217808762172531630560931217639 absolute error = 8.26239392770189e-18 relative error = 8.5871773988582058473684040035461e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.755 Order of pole = 2.184 x[1] = -1.434 y[1] (analytic) = -0.96185105405684685588437690621414 y[1] (numeric) = -0.96185105405684686424637752393447 absolute error = 8.36200061772033e-18 relative error = 8.6936543682636782586701110236166e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.754 Order of pole = 2.183 x[1] = -1.433 y[1] (analytic) = -0.96152371346868037803067179453142 y[1] (numeric) = -0.9615237134686803864929097411934 absolute error = 8.46223794666198e-18 relative error = 8.8008624520913801519088139379375e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.754 Order of pole = 2.183 x[1] = -1.432 y[1] (analytic) = -0.96119606549491593809032306192131 y[1] (numeric) = -0.96119606549491594665343175046457 absolute error = 8.56310868854326e-18 relative error = 8.9088053893917576779146015527386e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.753 Order of pole = 2.183 x[1] = -1.431 y[1] (analytic) = -0.96086810977282682469265316061909 y[1] (numeric) = -0.96086810977282683335726878724909 absolute error = 8.66461562663000e-18 relative error = 9.0174869355155632550169521968472e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.752 Order of pole = 2.183 x[1] = -1.43 y[1] (analytic) = -0.96053984593926941246175185312283 y[1] (numeric) = -0.96053984593926942122851340657276 absolute error = 8.76676155344993e-18 relative error = 9.1269108621697018689517071282355e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.751 Order of pole = 2.183 x[1] = -1.429 y[1] (analytic) = -0.96021127363068302507573182403885 y[1] (numeric) = -0.96021127363068303394528109484402 absolute error = 8.86954927080517e-18 relative error = 9.2370809574733037308043554458546e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.75 Order of pole = 2.183 x[1] = -1.428 y[1] (analytic) = -0.95988239248308980042470571974516 y[1] (numeric) = -0.95988239248308980939768730952953 absolute error = 8.97298158978437e-18 relative error = 9.3480010260136598588352027584601e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.749 Order of pole = 2.183 memory used=87.7MB, alloc=4.4MB, time=12.25 x[1] = -1.427 y[1] (analytic) = -0.95955320213209455788067590210031 y[1] (numeric) = -0.95955320213209456695773723287514 absolute error = 9.07706133077483e-18 relative error = 9.4596748889023648194292724444114e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.749 Order of pole = 2.183 x[1] = -1.426 y[1] (analytic) = -0.95922370221288466769258599314654 y[1] (numeric) = -0.95922370221288467687437731662098 absolute error = 9.18179132347444e-18 relative error = 9.5721063838315009790697915048082e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.748 Order of pole = 2.183 x[1] = -1.425 y[1] (analytic) = -0.95889389236022992251984126971448 y[1] (numeric) = -0.95889389236022993180701567661783 absolute error = 9.28717440690335e-18 relative error = 9.6852993651297711677548517462325e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.747 Order of pole = 2.182 x[1] = -1.424 y[1] (analytic) = -0.95856377220848241111766314027765 y[1] (numeric) = -0.95856377220848242051087656969327 absolute error = 9.39321342941562e-18 relative error = 9.7992577038188410971414353295847e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.746 Order of pole = 2.182 x[1] = -1.423 y[1] (analytic) = -0.9582333413915763941877013015719 y[1] (numeric) = -0.95823334139157640368761255028252 absolute error = 9.49991124871062e-18 relative error = 9.9139852876696526770345353692239e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.745 Order of pole = 2.182 x[1] = -1.422 y[1] (analytic) = -0.95790259954302818240738572962541 y[1] (numeric) = -0.95790259954302819201465646146964 absolute error = 9.60727073184423e-18 relative error = 1.0029486021258761022941511164645e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.744 Order of pole = 2.182 x[1] = -1.421 y[1] (analytic) = -0.95757154629593601665155940917519 y[1] (numeric) = -0.95757154629593602636685416441517 absolute error = 9.71529475523998e-18 relative error = 1.0145763826024842082597474374966e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.744 Order of pole = 2.182 x[1] = -1.42 y[1] (analytic) = -0.95724018128297995041999164720824 y[1] (numeric) = -0.95724018128297996024397785190813 absolute error = 9.82398620469989e-18 relative error = 1.0262822640325121243601065907435e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.743 Order of pole = 2.182 x[1] = -1.419 y[1] (analytic) = -0.95690850413642173448443095078695 y[1] (numeric) = -0.95690850413642174441777892620214 absolute error = 9.93334797541519e-18 relative error = 1.0380666419491911508760743471879e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.742 Order of pole = 2.182 x[1] = -1.418 y[1] (analytic) = -0.95657651448810470376891577662537 y[1] (numeric) = -0.95657651448810471381229874860224 absolute error = 1.004338297197687e-17 relative error = 1.0499299135889209909554149692513e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.741 Order of pole = 2.182 x[1] = -1.417 y[1] (analytic) = -0.95624421196945366647712098029523 y[1] (numeric) = -0.95624421196945367663121508868128 absolute error = 1.015409410838605e-17 relative error = 1.0618724778969342518421494337161e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.74 Order of pole = 2.181 x[1] = -1.416 y[1] (analytic) = -0.95591159621147479548057750667678 y[1] (numeric) = -0.95591159621147480574606181474089 absolute error = 1.026548430806411e-17 relative error = 1.0738947355329596089924391883926e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.74 Order of pole = 2.181 x[1] = -1.415 y[1] (analytic) = -0.95557866684475552198166277054223 y[1] (numeric) = -0.95557866684475553235921927440492 absolute error = 1.037755650386269e-17 relative error = 1.0859970888768952092901079601395e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.739 Order of pole = 2.181 x[1] = -1.414 y[1] (analytic) = -0.95524542349946443146531927717988 y[1] (numeric) = -0.9552454234994644419556329152534 absolute error = 1.049031363807352e-17 relative error = 1.0981799420344882192700409958888e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.738 Order of pole = 2.181 x[1] = -1.413 y[1] (analytic) = -0.95491186580535116195351932794021 y[1] (numeric) = -0.95491186580535117255727799037817 absolute error = 1.060375866243796e-17 relative error = 1.1104437008430080353458769398143e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.737 Order of pole = 2.181 x[1] = -1.412 y[1] (analytic) = -0.95457799339174630457655414471361 y[1] (numeric) = -0.95457799339174631529444868287006 absolute error = 1.071789453815645e-17 relative error = 1.1227887728769341610051312747316e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.736 Order of pole = 2.181 x[1] = -1.411 y[1] (analytic) = -0.95424380588756130647528643083196 y[1] (numeric) = -0.95424380588756131730801066672967 absolute error = 1.083272423589771e-17 relative error = 1.1352155674536420886900720073585e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.735 Order of pole = 2.181 x[1] = -1.41 y[1] (analytic) = -0.95390930292128837604856626391648 y[1] (numeric) = -0.95390930292128838699681699972426 absolute error = 1.094825073580778e-17 relative error = 1.1477244956390966855898180995696e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.735 Order of pole = 2.181 x[1] = -1.409 y[1] (analytic) = -0.95357448412100039056007128896309 y[1] (numeric) = -0.95357448412100040162454831648188 absolute error = 1.106447702751879e-17 relative error = 1.1603159702535416356906561293180e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.734 Order of pole = 2.18 x[1] = -1.408 y[1] (analytic) = -0.95323934911435080611889344764967 y[1] (numeric) = -0.95323934911435081730029955780728 absolute error = 1.118140611015761e-17 relative error = 1.1729904058772007338927152131661e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.733 Order of pole = 2.18 x[1] = -1.407 y[1] (analytic) = -0.95290389752857357004825594264978 y[1] (numeric) = -0.95290389752857358134729693500401 absolute error = 1.129904099235423e-17 relative error = 1.1857482188559753899095832685813e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.732 Order of pole = 2.18 x[1] = -1.406 y[1] (analytic) = -0.95256812899048303565680579382206 y[1] (numeric) = -0.95256812899048304707419048607204 absolute error = 1.141738469224998e-17 relative error = 1.1985898273071499504772927872510e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.731 Order of pole = 2.18 x[1] = -1.405 y[1] (analytic) = -0.95223204312647387942698919668768 y[1] (numeric) = -0.95223204312647389096342943419318 absolute error = 1.153644023750550e-17 relative error = 1.2115156511250954780311823281078e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.73 Order of pole = 2.18 x[1] = -1.404 y[1] (analytic) = -0.95189563956252102063507894277933 y[1] (numeric) = -0.95189563956252103229128960808784 absolute error = 1.165621066530851e-17 relative error = 1.2245261119869773052829172073862e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.73 Order of pole = 2.18 x[1] = -1.403 y[1] (analytic) = -0.95155891792417954341748540640907 y[1] (numeric) = -0.95155891792417955519418442879046 absolute error = 1.177669902238139e-17 relative error = 1.2376216333584674967206144978168e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.729 Order of pole = 2.18 x[1] = -1.402 y[1] (analytic) = -0.95122187783658462129804504332064 y[1] (numeric) = -0.95122187783658463319595340830916 absolute error = 1.189790836498852e-17 relative error = 1.2508026404994570437945961488206e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop memory used=91.5MB, alloc=4.4MB, time=12.78 Complex estimate of poles used Radius of convergence = 1.728 Order of pole = 2.18 x[1] = -1.401 y[1] (analytic) = -0.95088451892445144419104298371945 y[1] (numeric) = -0.95088451892445145621088474266281 absolute error = 1.201984175894336e-17 relative error = 1.2640695604697657610466932677492e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.727 Order of pole = 2.179 x[1] = -1.4 y[1] (analytic) = -0.95054684081207514789478913546382 y[1] (numeric) = -0.9505468408120751600372914150792 absolute error = 1.214250227961538e-17 relative error = 1.2774228221348615211751726129848e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.726 Order of pole = 2.179 x[1] = -1.399 y[1] (analytic) = -0.95020884312333074609063024290036 y[1] (numeric) = -0.95020884312333075835652325483711 absolute error = 1.226589301193675e-17 relative error = 1.2908628561715794522948648120972e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.725 Order of pole = 2.179 x[1] = -1.398 y[1] (analytic) = -0.9498705254816730648623435730781 y[1] (numeric) = -0.94987052548167307725236062348684 absolute error = 1.239001705040874e-17 relative error = 1.3043900950738359052984634279372e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.725 Order of pole = 2.179 x[1] = -1.397 y[1] (analytic) = -0.94953188751013667975092132401762 y[1] (numeric) = -0.94953188751013669226579882312557 absolute error = 1.251487749910795e-17 relative error = 1.3180049731583498881463021446010e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.724 Order of pole = 2.179 x[1] = -1.396 y[1] (analytic) = -0.94919292883133585535981846947726 y[1] (numeric) = -0.94919292883133586800029594116955 absolute error = 1.264047747169229e-17 relative error = 1.3317079265703636297795682968331e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.723 Order of pole = 2.179 x[1] = -1.395 y[1] (analytic) = -0.94885364906746448752580057137631 y[1] (numeric) = -0.94885364906746450029262066278303 absolute error = 1.276682009140672e-17 relative error = 1.3454993932893633978799795984422e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.722 Order of pole = 2.179 x[1] = -1.394 y[1] (analytic) = -0.94851404784029604807059210482947 y[1] (numeric) = -0.94851404784029606096450059591821 absolute error = 1.289390849108874e-17 relative error = 1.3593798131347995895266777544907e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.721 Order of pole = 2.178 x[1] = -1.393 y[1] (analytic) = -0.94817412477118353214859005173646 y[1] (numeric) = -0.94817412477118354517033586491013 absolute error = 1.302174581317367e-17 relative error = 1.3733496277718103844605486042926e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.721 Order of pole = 2.178 x[1] = -1.392 y[1] (analytic) = -0.94783387948105940820597192716997 y[1] (numeric) = -0.94783387948105942135630713686965 absolute error = 1.315033520969968e-17 relative error = 1.3874092807169448228583875557209e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.72 Order of pole = 2.178 x[1] = -1.391 y[1] (analytic) = -0.94749331159043557056659200852302 y[1] (numeric) = -0.94749331159043558384627185083551 absolute error = 1.327967984231249e-17 relative error = 1.4015592173438769361662563580525e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.719 Order of pole = 2.178 x[1] = -1.39 y[1] (analytic) = -0.94715242071940329466012434061737 y[1] (numeric) = -0.94715242071940330806990722288735 absolute error = 1.340978288226998e-17 relative error = 1.4157998848891363210910980308042e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.718 Order of pole = 2.178 x[1] = -1.389 y[1] (analytic) = -0.94681120648763319490797609083768 y[1] (numeric) = -0.94681120648763320844862360128406 absolute error = 1.354064751044638e-17 relative error = 1.4301317324578204180679227611921e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.717 Order of pole = 2.178 x[1] = -1.388 y[1] (analytic) = -0.94646966851437518528256002693439 y[1] (numeric) = -0.94646966851437519895483694427073 absolute error = 1.367227691733634e-17 relative error = 1.4445552110293202187182038809256e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.716 Order of pole = 2.178 x[1] = -1.387 y[1] (analytic) = -0.94612780641845844255558028652196 y[1] (numeric) = -0.94612780641845845636025458958059 absolute error = 1.380467430305863e-17 relative error = 1.4590707734630330868410110668597e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.716 Order of pole = 2.177 x[1] = -1.386 y[1] (analytic) = -0.94578561981829137225105120157037 y[1] (numeric) = -0.94578561981829138618889407893003 absolute error = 1.393784287735966e-17 relative error = 1.4736788745040828237891291032062e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.715 Order of pole = 2.177 x[1] = -1.385 y[1] (analytic) = -0.94544310833186157731883473342591 y[1] (numeric) = -0.94544310833186159139062059304264 absolute error = 1.407178585961673e-17 relative error = 1.4883799707890375517383208134243e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.714 Order of pole = 2.177 x[1] = -1.384 y[1] (analytic) = -0.94510027157673582954454806417464 y[1] (numeric) = -0.94510027157673584375105454301557 absolute error = 1.420650647884093e-17 relative error = 1.5031745208516170193399659885549e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.713 Order of pole = 2.177 x[1] = -1.383 y[1] (analytic) = -0.94475710917006004371175907854566 y[1] (numeric) = -0.94475710917006005805376705222553 absolute error = 1.434200797367987e-17 relative error = 1.5180629851284084303110117061321e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.712 Order of pole = 2.177 x[1] = -1.382 y[1] (analytic) = -0.94441362072855925453245385710426 y[1] (numeric) = -0.94441362072855926901074744952436 absolute error = 1.447829359242010e-17 relative error = 1.5330458259645760677097800289355e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.712 Order of pole = 2.177 x[1] = -1.381 y[1] (analytic) = -0.94406980586853759636182688626266 y[1] (numeric) = -0.9440698058685376109771934792519 absolute error = 1.461536659298924e-17 relative error = 1.5481235076195668919003939341494e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.711 Order of pole = 2.177 x[1] = -1.38 y[1] (analytic) = -0.9437256642058782857135114736899 y[1] (numeric) = -0.94372566420587830046674171664772 absolute error = 1.475323024295782e-17 relative error = 1.5632964962728121774225846950319e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.71 Order of pole = 2.177 x[1] = -1.379 y[1] (analytic) = -0.9433811953560436065914348390769 y[1] (numeric) = -0.94338119535604362148332265861781 absolute error = 1.489188781954091e-17 relative error = 1.5785652600294337344504458311895e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.709 Order of pole = 2.176 x[1] = -1.378 y[1] (analytic) = -0.94303639893407489865454952994837 y[1] (numeric) = -0.94303639893407491368589213954775 absolute error = 1.503134260959938e-17 relative error = 1.5939302689259378359546475723945e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.708 Order of pole = 2.176 x[1] = -1.377 y[1] (analytic) = -0.94269127455459254823076019034216 y[1] (numeric) = -0.94269127455459256340235809998307 absolute error = 1.517159790964091e-17 relative error = 1.6093919949359096246671178813432e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.707 Order of pole = 2.176 x[1] = -1.376 memory used=95.3MB, alloc=4.4MB, time=13.30 y[1] (analytic) = -0.94234582183179598219643228672826 y[1] (numeric) = -0.942345821831795997509089312549 absolute error = 1.531265702582074e-17 relative error = 1.6249509119757070161105732742773e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.707 Order of pole = 2.176 x[1] = -1.375 y[1] (analytic) = -0.94200004037946366473793717053459 y[1] (numeric) = -0.94200004037946368019246044447662 absolute error = 1.545452327394203e-17 relative error = 1.6406074959101403723989309661233e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.706 Order of pole = 2.176 x[1] = -1.374 y[1] (analytic) = -0.94165392981095309701175583010141 y[1] (numeric) = -0.94165392981095311260895580955745 absolute error = 1.559719997945604e-17 relative error = 1.6563622245581602880151934723286e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.705 Order of pole = 2.176 x[1] = -1.373 y[1] (analytic) = -0.94130748973920081971973185681078 y[1] (numeric) = -0.94130748973920083546042233427272 absolute error = 1.574069047746194e-17 relative error = 1.6722155776985334005104671514187e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.704 Order of pole = 2.176 x[1] = -1.372 y[1] (analytic) = -0.94096071977672241861613252053503 y[1] (numeric) = -0.94096071977672243450113063324136 absolute error = 1.588499811270633e-17 relative error = 1.6881680370755147741850181189447e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.703 Order of pole = 2.175 x[1] = -1.371 y[1] (analytic) = -0.940613619535612532963245418417 y[1] (numeric) = -0.94061361953561254899337165799946 absolute error = 1.603012623958246e-17 relative error = 1.7042200864045158618887021375099e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.702 Order of pole = 2.175 x[1] = -1.37 y[1] (analytic) = -0.94026618862754486695230692832585 y[1] (numeric) = -0.94026618862754488312838515045498 absolute error = 1.617607822212913e-17 relative error = 1.7203722113777659837561805361335e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.702 Order of pole = 2.175 x[1] = -1.369 y[1] (analytic) = -0.9399184266637722041066276641107 y[1] (numeric) = -0.93991842666377222042948509813997 absolute error = 1.632285743402927e-17 relative error = 1.7366248996699673835733640790537e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.701 Order of pole = 2.175 x[1] = -1.368 y[1] (analytic) = -0.93957033325512642468384929397913 y[1] (numeric) = -0.93957033325512644115431655258738 absolute error = 1.647046725860825e-17 relative error = 1.7529786409439492453502329118626e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.7 Order of pole = 2.175 x[1] = -1.367 y[1] (analytic) = -0.93922190801201852609433644593061 y[1] (numeric) = -0.93922190801201854271324753476242 absolute error = 1.661891108883181e-17 relative error = 1.7694339268563090333896611402824e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.699 Order of pole = 2.175 x[1] = -1.366 y[1] (analytic) = -0.93887315054443864635277698514245 y[1] (numeric) = -0.93887315054443866312096931244615 absolute error = 1.676819232730370e-17 relative error = 1.7859912510630507868643702931855e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.698 Order of pole = 2.175 x[1] = -1.365 y[1] (analytic) = -0.93852406046195609058013370749675 y[1] (numeric) = -0.93852406046195610749844809375975 absolute error = 1.691831438626300e-17 relative error = 1.8026511092252172425951200887617e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.698 Order of pole = 2.175 x[1] = -1.364 y[1] (analytic) = -0.9381746373737193605731604510041 y[1] (numeric) = -0.93817463737371937764244113858518 absolute error = 1.706928068758108e-17 relative error = 1.8194139990145115846597331874258e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.697 Order of pole = 2.174 x[1] = -1.363 y[1] (analytic) = -0.93782488088845618745876578266884 y[1] (numeric) = -0.93782488088845620467986044542711 absolute error = 1.722109466275827e-17 relative error = 1.8362804201189163363163993699218e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.696 Order of pole = 2.174 x[1] = -1.362 y[1] (analytic) = -0.93747479061447356745057777229134 y[1] (numeric) = -0.93747479061447358482433752521147 absolute error = 1.737375975292013e-17 relative error = 1.8532508742482977317392677820002e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.695 Order of pole = 2.174 x[1] = -1.361 y[1] (analytic) = -0.93712436615965780072513391674665 y[1] (numeric) = -0.93712436615965781825241332556012 absolute error = 1.752727940881347e-17 relative error = 1.8703258651400116147790061126512e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.694 Order of pole = 2.174 x[1] = -1.36 y[1] (analytic) = -0.93677360713147453343519102834227 y[1] (numeric) = -0.93677360713147455111684811914421 absolute error = 1.768165709080194e-17 relative error = 1.8875058985644917327715259232887e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.693 Order of pole = 2.174 x[1] = -1.359 y[1] (analytic) = -0.93642251313696880287772084885798 y[1] (numeric) = -0.93642251313696882071461711771932 absolute error = 1.783689626886134e-17 relative error = 1.9047914823308364767320218873841e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.693 Order of pole = 2.174 x[1] = -1.358 y[1] (analytic) = -0.93607108378276508583422829672063 y[1] (numeric) = -0.93607108378276510382722871929515 absolute error = 1.799300042257452e-17 relative error = 1.9221831262923802552275185272789e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.692 Order of pole = 2.174 x[1] = -1.357 y[1] (analytic) = -0.93571931867506735010110059836901 y[1] (numeric) = -0.93571931867506736825107363949497 absolute error = 1.814997304112596e-17 relative error = 1.9396813423522591591699025909700e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.691 Order of pole = 2.174 x[1] = -1.356 y[1] (analytic) = -0.93536721741965910922776709611739 y[1] (numeric) = -0.93536721741965912753558471941343 absolute error = 1.830781762329604e-17 relative error = 1.9572866444689720510899046354044e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.69 Order of pole = 2.173 x[1] = -1.355 y[1] (analytic) = -0.93501477962190348048052126361934 y[1] (numeric) = -0.93501477962190349894705894107418 absolute error = 1.846653767745484e-17 relative error = 1.9749995486619200344636406098076e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.689 Order of pole = 2.173 x[1] = -1.354 y[1] (analytic) = -0.9346620048867432460499283962494 y[1] (numeric) = -0.93466200488674326467606511780505 absolute error = 1.862613672155565e-17 relative error = 1.9928205730169435841192888568472e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.689 Order of pole = 2.173 x[1] = -1.353 y[1] (analytic) = -0.93430889281870091751981457723414 y[1] (numeric) = -0.93430889281870093630643286036228 absolute error = 1.878661828312814e-17 relative error = 2.0107502376918520598843829374740e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.688 Order of pole = 2.173 x[1] = -1.352 y[1] (analytic) = -0.93395544302187880361590485104349 y[1] (numeric) = -0.93395544302187882256389075031455 absolute error = 1.894798589927106e-17 relative error = 2.0287890649219317440933612270432e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.687 Order of pole = 2.173 x[1] = -1.351 y[1] (analytic) = -0.93360165509995908125225106325821 y[1] (numeric) = -0.93360165509995910036249417990286 absolute error = 1.911024311664465e-17 relative error = 2.0469375790254517064024578995479e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop memory used=99.1MB, alloc=4.4MB, time=13.81 Complex estimate of poles used Radius of convergence = 1.686 Order of pole = 2.173 x[1] = -1.35 y[1] (analytic) = -0.93324752865620386989366255071266 y[1] (numeric) = -0.9332475286562038891670560421753 absolute error = 1.927339349146264e-17 relative error = 2.0651963064091547121078627512714e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.685 Order of pole = 2.173 x[1] = -1.349 y[1] (analytic) = -0.93289306329345530925242578701804 y[1] (numeric) = -0.93289306329345532868986637650194 absolute error = 1.943744058948390e-17 relative error = 2.0835657755737396462784479394427e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.685 Order of pole = 2.173 x[1] = -1.348 y[1] (analytic) = -0.93253825861413564033767220643751 y[1] (numeric) = -0.93253825861413565994006019244113 absolute error = 1.960238798600362e-17 relative error = 2.1020465171193226435856866973119e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.684 Order of pole = 2.173 x[1] = -1.347 y[1] (analytic) = -0.93218311422024728987582674333956 y[1] (numeric) = -0.93218311422024730964406600918376 absolute error = 1.976823926584420e-17 relative error = 2.1206390637508962572819727380406e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.683 Order of pole = 2.172 x[1] = -1.346 y[1] (analytic) = -0.93182762971337295812064313492198 y[1] (numeric) = -0.93182762971337297805564115826765 absolute error = 1.993499802334567e-17 relative error = 2.1393439502837674259909358526846e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.682 Order of pole = 2.172 x[1] = -1.345 y[1] (analytic) = -0.93147180469467571007140574138755 y[1] (numeric) = -0.93147180469467573017407360374334 absolute error = 2.010266786235579e-17 relative error = 2.1581617136489903661345456994906e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.681 Order of pole = 2.172 x[1] = -1.344 y[1] (analytic) = -0.93111563876489907011795154007108 y[1] (numeric) = -0.93111563876489909038920393629075 absolute error = 2.027125239621967e-17 relative error = 2.1770928928987772737432256503262e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.68 Order of pole = 2.172 x[1] = -1.343 y[1] (analytic) = -0.93075913152436712013124004796093 y[1] (numeric) = -0.93075913152436714057199529572993 absolute error = 2.044075524776900e-17 relative error = 2.1961380292118965268700229256033e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.68 Order of pole = 2.172 x[1] = -1.342 y[1] (analytic) = -0.93040228257298460101827322041664 y[1] (numeric) = -0.9304022825729846216294532697276 absolute error = 2.061118004931096e-17 relative error = 2.2152976658990659599092769230238e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.679 Order of pole = 2.172 x[1] = -1.341 y[1] (analytic) = -0.93004509151023701776024186243806 y[1] (numeric) = -0.93004509151023703854277230505462 absolute error = 2.078253044261656e-17 relative error = 2.2345723484083143974990794504558e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.678 Order of pole = 2.172 x[1] = -1.34 y[1] (analytic) = -0.92968755793519074795284977236147 y[1] (numeric) = -0.92968755793519076890765985127021 absolute error = 2.095481007890874e-17 relative error = 2.2539626243303469398749140158975e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.677 Order of pole = 2.172 x[1] = -1.339 y[1] (analytic) = -0.92932968144649315386784171611018 y[1] (numeric) = -0.92932968144649317499586433496007 absolute error = 2.112802261884989e-17 relative error = 2.2734690434038775057585808494984e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.676 Order of pole = 2.172 x[1] = -1.338 y[1] (analytic) = -0.92897146164237269805483640286348 y[1] (numeric) = -0.92897146164237271935700813539253 absolute error = 2.130217173252905e-17 relative error = 2.2930921575209566140642475376643e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.676 Order of pole = 2.172 x[1] = -1.337 y[1] (analytic) = -0.92861289812063906250264089997777 y[1] (numeric) = -0.92861289812063908397990199942641 absolute error = 2.147726109944864e-17 relative error = 2.3128325207322783201028058201935e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.675 Order of pole = 2.172 x[1] = -1.336 y[1] (analytic) = -0.9282539904786832713792983859323 y[1] (numeric) = -0.9282539904786832930325927944431 absolute error = 2.165329440851080e-17 relative error = 2.3326906892524749500431395212802e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.674 Order of pole = 2.171 x[1] = -1.335 y[1] (analytic) = -0.92789473831347781737019679471032 y[1] (numeric) = -0.9278947383134778392004721527135 absolute error = 2.183027535800318e-17 relative error = 2.3526672214653824391195399876361e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.673 Order of pole = 2.171 x[1] = -1.334 y[1] (analytic) = -0.9275351412215767916336417530827 y[1] (numeric) = -0.92753514122157681364184940866712 absolute error = 2.200820765558442e-17 relative error = 2.3727626779293021508458159879614e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.672 Order of pole = 2.171 x[1] = -1.333 y[1] (analytic) = -0.92717519879911601739337325344792 y[1] (numeric) = -0.92717519879911603958046827171709 absolute error = 2.218709501826917e-17 relative error = 2.3929776213822430714864252546979e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.672 Order of pole = 2.171 x[1] = -1.332 y[1] (analytic) = -0.92681491064181318718758173890066 y[1] (numeric) = -0.9268149106418132095545229113132 absolute error = 2.236694117241254e-17 relative error = 2.4133126167471325399431909379483e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.671 Order of pole = 2.171 x[1] = -1.331 y[1] (analytic) = -0.92645427634496800379405570374402 y[1] (numeric) = -0.92645427634496802634180555743827 absolute error = 2.254774985369425e-17 relative error = 2.4337682311370246529114952680061e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.67 Order of pole = 2.171 x[1] = -1.33 y[1] (analytic) = -0.92609329550346232485116953141216 y[1] (numeric) = -0.92609329550346234758069433851439 absolute error = 2.272952480710223e-17 relative error = 2.4543450338602794260223872115290e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.669 Order of pole = 2.171 x[1] = -1.329 y[1] (analytic) = -0.92573196771176031119449710240413 y[1] (numeric) = -0.92573196771176033410676688931991 absolute error = 2.291226978691578e-17 relative error = 2.4750435964257245959273208995425e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.668 Order of pole = 2.171 x[1] = -1.328 y[1] (analytic) = -0.92537029256390857892891370701149 y[1] (numeric) = -0.92537029256390860202490226369974 absolute error = 2.309598855668825e-17 relative error = 2.4958644925477957755836818556363e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.668 Order of pole = 2.171 x[1] = -1.327 y[1] (analytic) = -0.92500826965353635525612599100731 y[1] (numeric) = -0.92500826965353637853681088023664 absolute error = 2.328068488922933e-17 relative error = 2.5168082981516647154941139073367e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.667 Order of pole = 2.171 x[1] = -1.326 y[1] (analytic) = -0.92464589857385563807764704669849 y[1] (numeric) = -0.92464589857385566154400961328523 absolute error = 2.346636256658674e-17 relative error = 2.5378755913783330093223437054605e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.666 Order of pole = 2.171 x[1] = -1.325 memory used=103.0MB, alloc=4.4MB, time=14.33 y[1] (analytic) = -0.92428317891766135939331133646255 y[1] (numeric) = -0.92428317891766138304633671649008 absolute error = 2.365302538002753e-17 relative error = 2.5590669525897139518296247541601e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.665 Order of pole = 2.171 x[1] = -1.324 y[1] (analytic) = -0.92392011027733155251550190072182 y[1] (numeric) = -0.9239201102773315763561790307407 absolute error = 2.384067713001888e-17 relative error = 2.5803829643736906932415307307799e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.664 Order of pole = 2.171 x[1] = -1.323 y[1] (analytic) = -0.9235566922448275231193402568679 y[1] (numeric) = -0.92355669224482754714866188307631 absolute error = 2.402932162620841e-17 relative error = 2.6018242115491517901258310678140e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.664 Order of pole = 2.171 x[1] = -1.322 y[1] (analytic) = -0.92319292441169402414916753954524 y[1] (numeric) = -0.92319292441169404836813022694919 absolute error = 2.421896268740395e-17 relative error = 2.6233912811709987570668070533516e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.663 Order of pole = 2.17 x[1] = -1.321 y[1] (analytic) = -0.92282880636905943460172376553024 y[1] (numeric) = -0.92282880636905945901132790708316 absolute error = 2.440960414155292e-17 relative error = 2.6450847625351418788125105076493e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.662 Order of pole = 2.17 x[1] = -1.32 y[1] (analytic) = -0.92246433770763594220651062778974 y[1] (numeric) = -0.92246433770763596680776045351084 absolute error = 2.460124982572110e-17 relative error = 2.6669052471834604838862673742733e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.661 Order of pole = 2.17 x[1] = -1.319 y[1] (analytic) = -0.92209951801771973002390193274498 y[1] (numeric) = -0.92209951801771975481780551881597 absolute error = 2.479390358607099e-17 relative error = 2.6888533289087493536005372636881e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.66 Order of pole = 2.17 x[1] = -1.318 y[1] (analytic) = -0.92173434688919116698164469187176 y[1] (numeric) = -0.92173434688919119196921396971132 absolute error = 2.498756927783956e-17 relative error = 2.7109296037596296124435481387764e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.659 Order of pole = 2.17 x[1] = -1.317 y[1] (analytic) = -0.92136882391151500237047296308935 y[1] (numeric) = -0.92136882391151502755272372840493 absolute error = 2.518225076531558e-17 relative error = 2.7331346700454447054311763157022e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.659 Order of pole = 2.17 x[1] = -1.316 y[1] (analytic) = -0.92100294867374056431963580847627 y[1] (numeric) = -0.92100294867374058969758773029264 absolute error = 2.537795192181637e-17 relative error = 2.7554691283411241312401489086825e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.658 Order of pole = 2.17 x[1] = -1.315 y[1] (analytic) = -0.92063672076450196227322019223409 y[1] (numeric) = -0.92063672076450198784789682189816 absolute error = 2.557467662966407e-17 relative error = 2.7779335814920257861153657351528e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.657 Order of pole = 2.17 x[1] = -1.314 y[1] (analytic) = -0.92027013977201829348822928602602 y[1] (numeric) = -0.92027013977201831926065806618735 absolute error = 2.577242878016133e-17 relative error = 2.8005286346187460752072874261138e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.656 Order of pole = 2.17 x[1] = -1.313 y[1] (analytic) = -0.9199032052840938535754564773583 y[1] (numeric) = -0.91990320528409387954666875092484 absolute error = 2.597121227356654e-17 relative error = 2.8232548951219108288888341586625e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.655 Order of pole = 2.17 x[1] = -1.312 y[1] (analytic) = -0.9195359168881183511042753900523 y[1] (numeric) = -0.91953591688811837727530640912074 absolute error = 2.617103101906844e-17 relative error = 2.8461129726869296529367934520362e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.655 Order of pole = 2.17 x[1] = -1.311 y[1] (analytic) = -0.91916827417106712629254642356469 y[1] (numeric) = -0.91916827417106715266443535832495 absolute error = 2.637188893476026e-17 relative error = 2.8691034792887300119783404001148e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.654 Order of pole = 2.17 x[1] = -1.31 y[1] (analytic) = -0.91880027671950137380292069943421 y[1] (numeric) = -0.91880027671950140037671064704747 absolute error = 2.657378994761326e-17 relative error = 2.8922270291964569230747697423498e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.653 Order of pole = 2.17 x[1] = -1.309 y[1] (analytic) = -0.91843192411956836966690286793426 y[1] (numeric) = -0.91843192411956839644364086138402 absolute error = 2.677673799344976e-17 relative error = 2.9154842389781480448145134502634e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.652 Order of pole = 2.17 x[1] = -1.308 y[1] (analytic) = -0.91806321595700170235811497555074 y[1] (numeric) = -0.91806321595700172933885199246636 absolute error = 2.698073701691562e-17 relative error = 2.9388757275053798182714551856383e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.651 Order of pole = 2.17 x[1] = -1.307 y[1] (analytic) = -0.91769415181712150803628452363023 y[1] (numeric) = -0.91769415181712153522207549508231 absolute error = 2.718579097145208e-17 relative error = 2.9624021159578748536652938583663e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.651 Order of pole = 2.17 x[1] = -1.306 y[1] (analytic) = -0.91732473128483470998356095989065 y[1] (numeric) = -0.91732473128483473737546477915777 absolute error = 2.739190381926712e-17 relative error = 2.9860640278280879779760812501863e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.65 Order of pole = 2.17 x[1] = -1.305 y[1] (analytic) = -0.91695495394463526225484613687955 y[1] (numeric) = -0.91695495394463528985392566818579 absolute error = 2.759907953130624e-17 relative error = 3.0098620889257600599674121846426e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.649 Order of pole = 2.17 x[1] = -1.304 y[1] (analytic) = -0.91658481938060439756390574431597 y[1] (numeric) = -0.91658481938060442537122783153859 absolute error = 2.780732208722262e-17 relative error = 3.0337969273824352398775436544687e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.648 Order of pole = 2.17 x[1] = -1.303 y[1] (analytic) = -0.91621432717641087942711037496135 y[1] (numeric) = -0.91621432717641090744374585030809 absolute error = 2.801663547534674e-17 relative error = 3.0578691736559502740697728897532e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.648 Order of pole = 2.17 x[1] = -1.302 y[1] (analytic) = -0.91584347691531125858673671562287 y[1] (numeric) = -0.91584347691531128681376040827824 absolute error = 2.822702369265537e-17 relative error = 3.0820794605348861707821815680779e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.647 Order of pole = 2.17 x[1] = -1.301 y[1] (analytic) = -0.9154722681801501337358413654747 y[1] (numeric) = -0.91547226818015016217433211021473 absolute error = 2.843849074474003e-17 relative error = 3.1064284231429930154148273966285e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.646 Order of pole = 2.17 x[1] = -1.3 y[1] (analytic) = -0.91510070055336041656680197245527 y[1] (numeric) = -0.91510070055336044521784261823012 absolute error = 2.865104064577485e-17 relative error = 3.1309166989435803417444920116535e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop memory used=106.8MB, alloc=4.4MB, time=14.85 Complex estimate of poles used Radius of convergence = 1.645 Order of pole = 2.17 x[1] = -1.299 y[1] (analytic) = -0.91472877361696360116570274441395 y[1] (numeric) = -0.91472877361696363003038016289767 absolute error = 2.886467741848372e-17 relative error = 3.1555449277438610075721103970085e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.644 Order of pole = 2.17 x[1] = -1.298 y[1] (analytic) = -0.91435648695257003777482393427902 y[1] (numeric) = -0.91435648695257006685422902838603 absolute error = 2.907940509410701e-17 relative error = 3.1803137516992791468075457354156e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.644 Order of pole = 2.17 x[1] = -1.297 y[1] (analytic) = -0.91398384014137921094557761713002 y[1] (numeric) = -0.91398384014137924024080532949756 absolute error = 2.929522771236754e-17 relative error = 3.2052238153177872226782449959433e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.643 Order of pole = 2.17 x[1] = -1.296 y[1] (analytic) = -0.91361083276418002210431497099579 y[1] (numeric) = -0.91361083276418005161646429243177 absolute error = 2.951214932143598e-17 relative error = 3.2302757654640918203831205776540e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.642 Order of pole = 2.17 x[1] = -1.295 y[1] (analytic) = -0.91323746440135107655351334176968 y[1] (numeric) = -0.91323746440135110628368731966535 absolute error = 2.973017397789567e-17 relative error = 3.2554702513638670762275859322071e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.641 Order of pole = 2.17 x[1] = -1.294 y[1] (analytic) = -0.91286373463286097493093461512522 y[1] (numeric) = -0.91286373463286100488024036183195 absolute error = 2.994930574670673e-17 relative error = 3.2808079246079214910201423057987e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.64 Order of pole = 2.17 x[1] = -1.293 y[1] (analytic) = -0.91248964303826860914942983400763 y[1] (numeric) = -0.91248964303826863931897853517728 absolute error = 3.016954870116965e-17 relative error = 3.3062894391563388974465746289986e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.64 Order of pole = 2.17 x[1] = -1.292 y[1] (analytic) = -0.91211518919672346284014858843398 y[1] (numeric) = -0.91211518919672349323105551132209 absolute error = 3.039090692288811e-17 relative error = 3.3319154513425661794579475750689e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.639 Order of pole = 2.17 x[1] = -1.291 y[1] (analytic) = -0.91174037268696591632199546420924 y[1] (numeric) = -0.9117403726869659469353799659405 absolute error = 3.061338450173126e-17 relative error = 3.3576866198774728980124268984495e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.638 Order of pole = 2.17 x[1] = -1.29 y[1] (analytic) = -0.91136519308732755612025976799717 y[1] (numeric) = -0.9113651930873275869572453037925 absolute error = 3.083698553579533e-17 relative error = 3.3836036058533685587234475881121e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.637 Order of pole = 2.17 x[1] = -1.289 y[1] (analytic) = -0.91098964997573148905742884719871 y[1] (numeric) = -0.91098964997573152011914297856328 absolute error = 3.106171413136457e-17 relative error = 3.4096670727479774799477785970242e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.636 Order of pole = 2.17 x[1] = -1.288 y[1] (analytic) = -0.91061374292969266093927959349981 y[1] (numeric) = -0.91061374292969269222685399637136 absolute error = 3.128757440287155e-17 relative error = 3.4358776864283745138589274684049e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.636 Order of pole = 2.17 x[1] = -1.287 y[1] (analytic) = -0.91023747152631817985942715795435 y[1] (numeric) = -0.91023747152631821137399763081113 absolute error = 3.151457047285678e-17 relative error = 3.4622361151548771931716168473434e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.635 Order of pole = 2.17 x[1] = -1.286 y[1] (analytic) = -0.90986083534230764414559451225186 y[1] (numeric) = -0.90986083534230767588830098417952 absolute error = 3.174270647192766e-17 relative error = 3.4887430295848953565667329034364e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.634 Order of pole = 2.17 x[1] = -1.285 y[1] (analytic) = -0.90948383395395347497095126455629 y[1] (numeric) = -0.9094838339539535069429378032731 absolute error = 3.197198653871681e-17 relative error = 3.5153991027767437071048640508803e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.633 Order of pole = 2.17 x[1] = -1.284 y[1] (analytic) = -0.90910646693714125365395507814968 y[1] (numeric) = -0.9091064669371412858563698979893 absolute error = 3.220241481983962e-17 relative error = 3.5422050101933996760815434580397e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.632 Order of pole = 2.17 x[1] = -1.283 y[1] (analytic) = -0.90872873386735006367021414621744 y[1] (numeric) = -0.90872873386735009610420961606865 absolute error = 3.243399546985121e-17 relative error = 3.5691614297062274212199154644644e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.632 Order of pole = 2.17 x[1] = -1.282 y[1] (analytic) = -0.9083506343196528373999744456014 y[1] (numeric) = -0.90835063431965287006670709680405 absolute error = 3.266673265120265e-17 relative error = 3.5962690415986514264923211800177e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.631 Order of pole = 2.17 x[1] = -1.281 y[1] (analytic) = -0.90797216786871670763492092533866 y[1] (numeric) = -0.90797216786871674053555145953517 absolute error = 3.290063053419651e-17 relative error = 3.6235285285697873452982670903299e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.63 Order of pole = 2.17 x[1] = -1.28 y[1] (analytic) = -0.90759333408880336386806738140148 y[1] (numeric) = -0.90759333408880339700376067834317 absolute error = 3.313569329694169e-17 relative error = 3.6509405757380245320224495934284e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.629 Order of pole = 2.171 x[1] = -1.279 y[1] (analytic) = -0.90721413255376941339059552634412 y[1] (numeric) = -0.90721413255376944676252065165165 absolute error = 3.337192512530753e-17 relative error = 3.6785058706445601994428588001835e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.629 Order of pole = 2.171 x[1] = -1.278 y[1] (analytic) = -0.90683456283706674721958968061981 y[1] (numeric) = -0.90683456283706678082891989349706 absolute error = 3.360933021287725e-17 relative error = 3.7062251032568906525126097360163e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.628 Order of pole = 2.171 x[1] = -1.277 y[1] (analytic) = -0.90645462451174291088069959021487 y[1] (numeric) = -0.9064546245117429447286123511155 absolute error = 3.384791276090063e-17 relative error = 3.7340989659722496221021545254818e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.627 Order of pole = 2.171 x[1] = -1.276 y[1] (analytic) = -0.90607431715044148006985011200152 y[1] (numeric) = -0.9060743171504415141575270902475 absolute error = 3.408767697824598e-17 relative error = 3.7621281536209991396950769739686e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.626 Order of pole = 2.171 x[1] = -1.275 y[1] (analytic) = -0.90569364032540244121820290286556 y[1] (numeric) = -0.90569364032540247554682998421698 absolute error = 3.432862708135142e-17 relative error = 3.7903133634699750994661864841462e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.625 Order of pole = 2.171 memory used=110.6MB, alloc=4.4MB, time=15.37 x[1] = -1.274 y[1] (analytic) = -0.90531259360846257698466180023588 y[1] (numeric) = -0.9053125936084626115554290944112 absolute error = 3.457076729417532e-17 relative error = 3.8186552952257708829317068270454e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.625 Order of pole = 2.171 x[1] = -1.273 y[1] (analytic) = -0.90493117657105585670030028912789 y[1] (numeric) = -0.90493117657105589151440213727404 absolute error = 3.481410184814615e-17 relative error = 3.8471546510379865671607249145452e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.624 Order of pole = 2.171 x[1] = -1.272 y[1] (analytic) = -0.90454938878421383178917631319944 y[1] (numeric) = -0.90454938878421386684781129531084 absolute error = 3.505863498211140e-17 relative error = 3.8758121355024061040243253889592e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.623 Order of pole = 2.171 x[1] = -1.271 y[1] (analytic) = -0.90416722981856603619008670357256 y[1] (numeric) = -0.90416722981856607149445764585848 absolute error = 3.530437094228592e-17 relative error = 3.9046284556641410438156726941119e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.622 Order of pole = 2.171 x[1] = -1.27 y[1] (analytic) = -0.90378469924434039180390066825438 y[1] (numeric) = -0.9037846992443404273552146504538 absolute error = 3.555131398219942e-17 relative error = 3.9336043210207120125191260462419e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.621 Order of pole = 2.171 x[1] = -1.269 y[1] (analytic) = -0.90340179663136361899119910583233 y[1] (numeric) = -0.90340179663136365479066746847548 absolute error = 3.579946836264315e-17 relative error = 3.9627404435250700480710825556946e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.621 Order of pole = 2.171 x[1] = -1.268 y[1] (analytic) = -0.90301852154906165214503397864655 y[1] (numeric) = -0.90301852154906168819387233026248 absolute error = 3.604883835161593e-17 relative error = 3.9920375375885765184506365107746e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.62 Order of pole = 2.171 x[1] = -1.267 y[1] (analytic) = -0.90263487356646006036370960176363 y[1] (numeric) = -0.90263487356646009666313782603295 absolute error = 3.629942822426932e-17 relative error = 4.0214963200839183085416062856202e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.619 Order of pole = 2.172 x[1] = -1.266 y[1] (analytic) = -0.90225085225218447324857547368169 y[1] (numeric) = -0.90225085225218450979981773653372 absolute error = 3.655124226285203e-17 relative error = 4.0511175103479692414685764975538e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.618 Order of pole = 2.172 x[1] = -1.265 y[1] (analytic) = -0.90186645717446101185190819166293 y[1] (numeric) = -0.90186645717446104865619294831647 absolute error = 3.680428475665354e-17 relative error = 4.0809018301845943223029655923878e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.618 Order of pole = 2.172 x[1] = -1.264 y[1] (analytic) = -0.90148168790111672480004805777634 y[1] (numeric) = -0.90148168790111676185860805972323 absolute error = 3.705856000194689e-17 relative error = 4.1108500038673922705772619708364e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.617 Order of pole = 2.172 x[1] = -1.263 y[1] (analytic) = -0.90109654399958002961704418998251 y[1] (numeric) = -0.9010965439995800669311164919133 absolute error = 3.731407230193079e-17 relative error = 4.1409627581423928773999856868094e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.616 Order of pole = 2.172 x[1] = -1.262 y[1] (analytic) = -0.9007110250368811592741503047328 y[1] (numeric) = -0.90071102503688119684497627140353 absolute error = 3.757082596667073e-17 relative error = 4.1712408222306735979660877913956e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.615 Order of pole = 2.172 x[1] = -1.261 y[1] (analytic) = -0.90032513057965261399060183239525 y[1] (numeric) = -0.9003251305796526518194271454347 absolute error = 3.782882531303945e-17 relative error = 4.2016849278309351960639876871048e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.614 Order of pole = 2.172 x[1] = -1.26 y[1] (analytic) = -0.89993886019412961831119366315553 y[1] (numeric) = -0.89993886019412965639926832781204 absolute error = 3.808807466465651e-17 relative error = 4.2322958091220074994817760534688e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.614 Order of pole = 2.172 x[1] = -1.259 y[1] (analytic) = -0.89955221344615058348626659764845 y[1] (numeric) = -0.89955221344615062183484494947545 absolute error = 3.834857835182700e-17 relative error = 4.2630742027652895752378247506376e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.613 Order of pole = 2.172 x[1] = -1.258 y[1] (analytic) = -0.89916518990115757517979949221502 y[1] (numeric) = -0.89916518990115761379014020369456 absolute error = 3.861034071147954e-17 relative error = 4.2940208479071408812385577465514e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.612 Order of pole = 2.172 x[1] = -1.257 y[1] (analytic) = -0.89877778912419678653139314209609 y[1] (numeric) = -0.89877778912419682540475922919938 absolute error = 3.887336608710329e-17 relative error = 4.3251364861811921646259269677155e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.611 Order of pole = 2.173 x[1] = -1.256 y[1] (analytic) = -0.89839001067991901659802113579054 y[1] (numeric) = -0.89839001067991905573567996447476 absolute error = 3.913765882868422e-17 relative error = 4.3564218617106037631691895848855e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.61 Order of pole = 2.173 x[1] = -1.255 y[1] (analytic) = -0.89800185413258015420151223893491 y[1] (numeric) = -0.8980018541325801936047355315754 absolute error = 3.940322329264049e-17 relative error = 4.3878777211102545174899186136184e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.61 Order of pole = 2.173 x[1] = -1.254 y[1] (analytic) = -0.89761331904604166720781832509275 y[1] (numeric) = -0.89761331904604170687788216684975 absolute error = 3.967006384175700e-17 relative error = 4.4195048134888678385954234606113e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.609 Order of pole = 2.173 x[1] = -1.253 y[1] (analytic) = -0.89722440498377109726421146245035 y[1] (numeric) = -0.89722440498377113720239630756937 absolute error = 3.993818484511902e-17 relative error = 4.4513038904510647789229133215975e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.608 Order of pole = 2.173 x[1] = -1.252 y[1] (analytic) = -0.89683511150884256002064348825749 y[1] (numeric) = -0.89683511150884260022823416630248 absolute error = 4.020759067804499e-17 relative error = 4.4832757060993539897548086206819e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.607 Order of pole = 2.173 x[1] = -1.251 y[1] (analytic) = -0.89644543818393725086159125556641 y[1] (numeric) = -0.89644543818393729133987697758486 absolute error = 4.047828572201845e-17 relative error = 4.5154210170360539797222302520539e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.607 Order of pole = 2.173 x[1] = -1.25 y[1] (analytic) = -0.89605538457134395617480071802994 y[1] (numeric) = -0.896055384571343996925075082649 absolute error = 4.075027436461906e-17 relative error = 4.5477405823651430724675016307464e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.606 Order of pole = 2.173 x[1] = -1.249 y[1] (analytic) = -0.89566495023295957018343312682384 y[1] (numeric) = -0.89566495023295961120699412627659 absolute error = 4.102356099945275e-17 relative error = 4.5802351636940413766629917266110e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop memory used=114.4MB, alloc=4.4MB, time=15.87 Complex estimate of poles used Radius of convergence = 1.605 Order of pole = 2.174 x[1] = -1.248 y[1] (analytic) = -0.89527413473028961736820684774343 y[1] (numeric) = -0.89527413473028965866635687382438 absolute error = 4.129815002608095e-17 relative error = 4.6129055251353190430644571492996e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.604 Order of pole = 2.174 x[1] = -1.247 y[1] (analytic) = -0.89488293762444878050621866475726 y[1] (numeric) = -0.89488293762444882208026451470619 absolute error = 4.157404584994893e-17 relative error = 4.6457524333083340022235923746268e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.604 Order of pole = 2.174 x[1] = -1.246 y[1] (analytic) = -0.89449135847616143435321891732852 y[1] (numeric) = -0.89449135847616147620447179964177 absolute error = 4.185125288231325e-17 relative error = 4.6787766573407990329876905087091e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.603 Order of pole = 2.174 x[1] = -1.245 y[1] (analytic) = -0.89409939684576218499620542116814 y[1] (numeric) = -0.89409939684576222712598096133638 absolute error = 4.212977554016824e-17 relative error = 4.7119789688702690630518155851062e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.602 Order of pole = 2.174 x[1] = -1.244 y[1] (analytic) = -0.89370705229319641490329184427196 y[1] (numeric) = -0.89370705229319645731291009044358 absolute error = 4.240961824617162e-17 relative error = 4.7453601420455608298447955243702e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.601 Order of pole = 2.174 x[1] = -1.243 y[1] (analytic) = -0.89331432437802083369789705061129 y[1] (numeric) = -0.89331432437802087638868247918042 absolute error = 4.269078542856913e-17 relative error = 4.7789209535280902055377343451528e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.6 Order of pole = 2.174 x[1] = -1.242 y[1] (analytic) = -0.89292121265940403468439288116255 y[1] (numeric) = -0.89292121265940407765767440228084 absolute error = 4.297328152111829e-17 relative error = 4.8126621824931404354307435608439e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.6 Order of pole = 2.174 x[1] = -1.241 y[1] (analytic) = -0.89252771669612705715243891453388 y[1] (numeric) = -0.89252771669612710040954987754498 absolute error = 4.325711096301110e-17 relative error = 4.8465846106310398519446260173895e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.599 Order of pole = 2.175 x[1] = -1.24 y[1] (analytic) = -0.8921338360465839544873239357062 y[1] (numeric) = -0.89213383604658399802960213450216 absolute error = 4.354227819879596e-17 relative error = 4.8806890221482802326146308716324e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.598 Order of pole = 2.175 x[1] = -1.239 y[1] (analytic) = -0.89173957026878236811372513977167 y[1] (numeric) = -0.89173957026878241194251281807014 absolute error = 4.382878767829847e-17 relative error = 4.9149762037685375526494642342202e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.597 Order of pole = 2.175 x[1] = -1.238 y[1] (analytic) = -0.89134491892034410730038750641614 y[1] (numeric) = -0.89134491892034415141703136295749 absolute error = 4.411664385654135e-17 relative error = 4.9494469447336218166652569060791e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.597 Order of pole = 2.175 x[1] = -1.237 y[1] (analytic) = -0.89094988155850573485331729863291 y[1] (numeric) = -0.8909498815585057792591684922963 absolute error = 4.440585119366339e-17 relative error = 4.9841020368043457085894974147012e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.596 Order of pole = 2.175 x[1] = -1.236 y[1] (analytic) = -0.89055445774011915872517526412684 y[1] (numeric) = -0.89055445774011920342158941896421 absolute error = 4.469641415483737e-17 relative error = 5.0189422742613051301404075570469e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.595 Order of pole = 2.175 x[1] = -1.235 y[1] (analytic) = -0.8901586470216522295686468484082 y[1] (numeric) = -0.89015864702165227455698405859524 absolute error = 4.498833721018704e-17 relative error = 5.0539684539055815236082711121547e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.594 Order of pole = 2.176 x[1] = -1.234 y[1] (analytic) = -0.88976244895918934426165856299982 y[1] (numeric) = -0.88976244895918938954328339770293 absolute error = 4.528162483470311e-17 relative error = 5.0891813750593601743329209010160e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.593 Order of pole = 2.176 x[1] = -1.233 y[1] (analytic) = -0.88936586310843205543240158878552 y[1] (numeric) = -0.88936586310843210100868309694372 absolute error = 4.557628150815820e-17 relative error = 5.1245818395664586666334091669700e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.593 Order of pole = 2.176 x[1] = -1.232 y[1] (analytic) = -0.88896888902469968701221573158732 y[1] (numeric) = -0.88896888902469973288452744660812 absolute error = 4.587231171502080e-17 relative error = 5.1601706517927708941129179498492e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.592 Order of pole = 2.176 x[1] = -1.231 y[1] (analytic) = -0.8885715262629299558444789828289 y[1] (numeric) = -0.88857152626293000201419892719716 absolute error = 4.616971994436826e-17 relative error = 5.1959486186266286672957365937665e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.591 Order of pole = 2.176 x[1] = -1.23 y[1] (analytic) = -0.88817377437767959937774017085746 y[1] (numeric) = -0.88817377437767964584625086065614 absolute error = 4.646851068979868e-17 relative error = 5.2319165494790660792636482564920e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.59 Order of pole = 2.176 x[1] = -1.229 y[1] (analytic) = -0.88777563292312500947142451636804 y[1] (numeric) = -0.88777563292312505624011296570987 absolute error = 4.676868844934183e-17 relative error = 5.2680752562840010223964498495721e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.59 Order of pole = 2.176 x[1] = -1.228 y[1] (analytic) = -0.88737710145306287234253432659716 y[1] (numeric) = -0.8873771014530629194127920519662 absolute error = 4.707025772536904e-17 relative error = 5.3044255534983268884294891645857e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.589 Order of pole = 2.177 x[1] = -1.227 y[1] (analytic) = -0.88697817952091081468185957569679 y[1] (numeric) = -0.88697817952091086205508260019876 absolute error = 4.737322302450197e-17 relative error = 5.3409682581019040756832245618373e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.588 Order of pole = 2.177 x[1] = -1.226 y[1] (analytic) = -0.88657886667970805596830572111477 y[1] (numeric) = -0.88657886667970810364589457863521 absolute error = 4.767758885752044e-17 relative error = 5.3777041895974713429680262503605e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.587 Order of pole = 2.177 x[1] = -1.225 y[1] (analytic) = -0.88617916248211606701003879602405 y[1] (numeric) = -0.88617916248211611499339853529315 absolute error = 4.798335973926910e-17 relative error = 5.4146341700104519831356575421491e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.587 Order of pole = 2.177 x[1] = -1.224 y[1] (analytic) = -0.88577906648041923474124059396521 y[1] (numeric) = -0.88577906648041928303178078252835 absolute error = 4.829054018856314e-17 relative error = 5.4517590238886771137011144297465e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.586 Order of pole = 2.177 memory used=118.2MB, alloc=4.4MB, time=16.39 x[1] = -1.223 y[1] (analytic) = -0.88537857822652553330335962198217 y[1] (numeric) = -0.88537857822652558190249435007498 absolute error = 4.859913472809281e-17 relative error = 5.4890795783019998945361417283133e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.585 Order of pole = 2.177 x[1] = -1.222 y[1] (analytic) = -0.88497769727196720143983644070145 y[1] (numeric) = -0.88497769727196725034898432502839 absolute error = 4.890914788432694e-17 relative error = 5.5265966628418218455059782162626e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.584 Order of pole = 2.178 x[1] = -1.221 y[1] (analytic) = -0.88457642316790142623337503207328 y[1] (numeric) = -0.88457642316790147545395921948866 absolute error = 4.922058418741538e-17 relative error = 5.5643111096205219893007489251821e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.583 Order of pole = 2.178 x[1] = -1.22 y[1] (analytic) = -0.88417475546511103321492493587706 y[1] (numeric) = -0.88417475546511108274837310696732 absolute error = 4.953344817109026e-17 relative error = 5.6022237532707772478926228611663e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.583 Order of pole = 2.178 x[1] = -1.219 y[1] (analytic) = -0.88377269371400518287363207259055 y[1] (numeric) = -0.88377269371400523272137644515685 absolute error = 4.984774437256630e-17 relative error = 5.6403354309447998176151295066411e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.582 Order of pole = 2.178 x[1] = -1.218 y[1] (analytic) = -0.88337023746462007359710942080753 y[1] (numeric) = -0.88337023746462012376058675324735 absolute error = 5.016347733243982e-17 relative error = 5.6786469823134516825989924763214e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.581 Order of pole = 2.178 x[1] = -1.217 y[1] (analytic) = -0.88296738626661965107147204001199 y[1] (numeric) = -0.88296738626661970155212363459877 absolute error = 5.048065159458678e-17 relative error = 5.7171592495652732928471583414765e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.58 Order of pole = 2.178 x[1] = -1.216 y[1] (analytic) = -0.88256413966929632417067432210968 y[1] (numeric) = -0.88256413966929637496994602816932 absolute error = 5.079927170605964e-17 relative error = 5.7558730774054023816388227310387e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.58 Order of pole = 2.179 x[1] = -1.215 y[1] (analytic) = -0.88216049722157168736478081558392 y[1] (numeric) = -0.88216049722157173848412303256702 absolute error = 5.111934221698310e-17 relative error = 5.7947893130543894145637988626770e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.579 Order of pole = 2.179 x[1] = -1.214 y[1] (analytic) = -0.8817564584719972496768954923663 y[1] (numeric) = -0.88175645847199730111776317281498 absolute error = 5.144086768044868e-17 relative error = 5.8339088062469048438606846303454e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.578 Order of pole = 2.179 x[1] = -1.213 y[1] (analytic) = -0.88135202296875517021856791735284 y[1] (numeric) = -0.88135202296875522198242056976102 absolute error = 5.176385265240818e-17 relative error = 5.8732324092303423996261619783035e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.577 Order of pole = 2.179 x[1] = -1.212 y[1] (analytic) = -0.88094719025965900033358843178966 y[1] (numeric) = -0.8809471902596590524218901233556 absolute error = 5.208830169156594e-17 relative error = 5.9127609767633090418986264950843e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.577 Order of pole = 2.179 x[1] = -1.211 y[1] (analytic) = -0.88054195989215443238017817231064 y[1] (numeric) = -0.88054195989215448479439753158067 absolute error = 5.241421935927003e-17 relative error = 5.9524953661140160106770212295798e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.576 Order of pole = 2.179 x[1] = -1.21 y[1] (analytic) = -0.88013633141332005518167351502311 y[1] (numeric) = -0.88013633141332010792328373442525 absolute error = 5.274161021940214e-17 relative error = 5.9924364370585445599135156405714e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.575 Order of pole = 2.18 x[1] = -1.209 y[1] (analytic) = -0.87973030436986811617589835647002 y[1] (numeric) = -0.87973030436986816924637719473642 absolute error = 5.307047883826640e-17 relative error = 6.0325850518790121514225179171742e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.574 Order of pole = 2.18 x[1] = -1.208 y[1] (analytic) = -0.87932387830814529029351151829054 y[1] (numeric) = -0.87932387830814534369434130276751 absolute error = 5.340082978447697e-17 relative error = 6.0729420753616206260374213428216e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.574 Order of pole = 2.18 x[1] = -1.207 y[1] (analytic) = -0.8789170527741334555957104876714 y[1] (numeric) = -0.87891705277413350932837811651581 absolute error = 5.373266762884441e-17 relative error = 6.1135083747945871415485409031322e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.573 Order of pole = 2.18 x[1] = -1.206 y[1] (analytic) = -0.87850982731345047570176667892124 y[1] (numeric) = -0.87850982731345052976776362318217 absolute error = 5.406599694426093e-17 relative error = 6.1542848199659689129208859050894e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.572 Order of pole = 2.18 x[1] = -1.205 y[1] (analytic) = -0.8781022014713509890369614203781 y[1] (numeric) = -0.87810220147135104343778372596242 absolute error = 5.440082230558432e-17 relative error = 6.1952722831613586651044272731581e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.571 Order of pole = 2.18 x[1] = -1.204 y[1] (analytic) = -0.87769417479272720493158593301797 y[1] (numeric) = -0.87769417479272725966873422253873 absolute error = 5.473714828952076e-17 relative error = 6.2364716391614731953916549508598e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.57 Order of pole = 2.181 x[1] = -1.203 y[1] (analytic) = -0.8772857468221097066017626701898 y[1] (numeric) = -0.87728574682210976167674214469614 absolute error = 5.507497947450634e-17 relative error = 6.2778837652396153484054107823810e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.57 Order of pole = 2.181 x[1] = -1.202 y[1] (analytic) = -0.87687691710366826104293952945143 y[1] (numeric) = -0.87687691710366831645725997003882 absolute error = 5.541432044058739e-17 relative error = 6.3195095411590204229583793026533e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.569 Order of pole = 2.181 x[1] = -1.201 y[1] (analytic) = -0.87646768518121263586700262509067 y[1] (numeric) = -0.87646768518121269162217839439019 absolute error = 5.575517576929952e-17 relative error = 6.3613498491700752505892229014032e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.568 Order of pole = 2.181 x[1] = -1.2 y[1] (analytic) = -0.87605805059819342311404752112834 y[1] (numeric) = -0.87605805059819347921159756467381 absolute error = 5.609755004354547e-17 relative error = 6.4034055740074209695315607114608e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.567 Order of pole = 2.181 x[1] = -1.199 y[1] (analytic) = -0.87564801289770287006994306693323 y[1] (numeric) = -0.87564801289770292651139091440489 absolute error = 5.644144784747166e-17 relative error = 6.4456776028869265751760254872553e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.567 Order of pole = 2.181 x[1] = -1.198 y[1] (analytic) = -0.87523757162247571712091624852353 y[1] (numeric) = -0.87523757162247577390779001486698 absolute error = 5.678687376634345e-17 relative error = 6.4881668255025339885633994085219e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop memory used=122.0MB, alloc=4.4MB, time=16.90 Complex estimate of poles used Radius of convergence = 1.566 Order of pole = 2.182 x[1] = -1.197 y[1] (analytic) = -0.87482672631489004267648076565183 y[1] (numeric) = -0.87482672631489009981031315207106 absolute error = 5.713383238641923e-17 relative error = 6.5308741340229879593582249085890e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.565 Order of pole = 2.182 x[1] = -1.196 y[1] (analytic) = -0.87441547651696811519212636531058 y[1] (numeric) = -0.87441547651696817267445466013367 absolute error = 5.748232829482309e-17 relative error = 6.5738004230884218540829847963542e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.564 Order of pole = 2.182 x[1] = -1.195 y[1] (analytic) = -0.87400382177037725232328030376495 y[1] (numeric) = -0.87400382177037731015564638318127 absolute error = 5.783236607941632e-17 relative error = 6.6169465898068274776738264778849e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.564 Order of pole = 2.182 x[1] = -1.194 y[1] (analytic) = -0.87359176161643068724214666900907 y[1] (numeric) = -0.87359176161643074542609699767659 absolute error = 5.818395032866752e-17 relative error = 6.6603135337503833797513124095877e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.563 Order of pole = 2.182 x[1] = -1.193 y[1] (analytic) = -0.87317929559608844214912367100827 y[1] (numeric) = -0.87317929559608850068620930252971 absolute error = 5.853708563152144e-17 relative error = 6.7039021569516549369651945761929e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.562 Order of pole = 2.182 x[1] = -1.192 y[1] (analytic) = -0.87276642324995820901059339556994 y[1] (numeric) = -0.87276642324995826790236997283651 absolute error = 5.889177657726657e-17 relative error = 6.7477133638996680932611823345290e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.561 Order of pole = 2.183 x[1] = -1.191 y[1] (analytic) = -0.87235314411829623755497291648526 y[1] (numeric) = -0.87235314411829629680300067188655 absolute error = 5.924802775540129e-17 relative error = 6.7917480615358345724022863150094e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.561 Order of pole = 2.183 x[1] = -1.19 y[1] (analytic) = -0.87193945774100823055901006698341 y[1] (numeric) = -0.87193945774100829016485382248212 absolute error = 5.960584375549871e-17 relative error = 6.8360071592497429908549522130415e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.56 Order of pole = 2.183 x[1] = -1.189 y[1] (analytic) = -0.87152536365765024645640158279211 y[1] (numeric) = -0.8715253636576503064216307498624 absolute error = 5.996522916707029e-17 relative error = 6.8804915688748257622288815154549e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.559 Order of pole = 2.183 x[1] = -1.188 y[1] (analytic) = -0.87111086140742960930090574242953 y[1] (numeric) = -0.8711108614074296696270943218575 absolute error = 6.032618857942797e-17 relative error = 6.9252022046838703936396903746533e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.558 Order of pole = 2.183 x[1] = -1.187 y[1] (analytic) = -0.87069595052920582611621604295923 y[1] (numeric) = -0.87069595052920588680494262450422 absolute error = 6.068872658154499e-17 relative error = 6.9701399833843953356477570650778e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.558 Order of pole = 2.183 x[1] = -1.186 y[1] (analytic) = -0.87028063056149151166495685849426 y[1] (numeric) = -0.87028063056149157271780462040963 absolute error = 6.105284776191537e-17 relative error = 7.0153058241138864920230591772820e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.557 Order of pole = 2.184 x[1] = -1.185 y[1] (analytic) = -0.86986490104245332066925643137952 y[1] (numeric) = -0.86986490104245338208781313979153 absolute error = 6.141855670841201e-17 relative error = 7.0607006484348893291216572780600e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.556 Order of pole = 2.184 x[1] = -1.184 y[1] (analytic) = -0.86944876150991288751544693932856 y[1] (numeric) = -0.86944876150991294930130494747193 absolute error = 6.178585800814337e-17 relative error = 7.1063253803299515032509750729789e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.555 Order of pole = 2.184 x[1] = -1.183 y[1] (analytic) = -0.86903221150134777347553576292759 y[1] (numeric) = -0.8690322115013478356302920102364 absolute error = 6.215475624730881e-17 relative error = 7.1521809461964247112703073644721e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.555 Order of pole = 2.184 x[1] = -1.182 y[1] (analytic) = -0.86861525055389242147818644390392 y[1] (numeric) = -0.8686152505538924840034424549564 absolute error = 6.252525601105248e-17 relative error = 7.1982682748411126270217434336694e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.554 Order of pole = 2.184 x[1] = -1.181 y[1] (analytic) = -0.86819787820433911846204217241719 y[1] (numeric) = -0.86819787820433918135940405573306 absolute error = 6.289736188331587e-17 relative error = 7.2445882974747770734283885341812e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.553 Order of pole = 2.184 x[1] = -1.18 y[1] (analytic) = -0.86778009398913896534431896837048 y[1] (numeric) = -0.86778009398913902861539741505932 absolute error = 6.327107844668884e-17 relative error = 7.2911419477064812060249100256827e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.552 Order of pole = 2.184 x[1] = -1.179 y[1] (analytic) = -0.86736189744440285463769002432538 y[1] (numeric) = -0.86736189744440291828410030658472 absolute error = 6.364641028225934e-17 relative error = 7.3379301615377933636397665473277e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.551 Order of pole = 2.185 x[1] = -1.178 y[1] (analytic) = -0.86694328810590245574857695298421 y[1] (numeric) = -0.86694328810590251977193892244588 absolute error = 6.402336196946167e-17 relative error = 7.3849538773568338057171002833888e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.551 Order of pole = 2.185 x[1] = -1.177 y[1] (analytic) = -0.86652426550907120799005792728567 y[1] (numeric) = -0.86652426550907127239199601320883 absolute error = 6.440193808592316e-17 relative error = 7.4322140359321499469923749138417e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.55 Order of pole = 2.185 x[1] = -1.176 y[1] (analytic) = -0.86610482918900532134269691283129 y[1] (numeric) = -0.86610482918900538612484012014094 absolute error = 6.478214320730965e-17 relative error = 7.4797115804064633718773377401985e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.549 Order of pole = 2.185 x[1] = -1.175 y[1] (analytic) = -0.86568497868046478499669236747438 y[1] (numeric) = -0.86568497868046485016067427464367 absolute error = 6.516398190716929e-17 relative error = 7.5274474562902327329995183487877e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.548 Order of pole = 2.185 x[1] = -1.174 y[1] (analytic) = -0.86526471351787438370883791828302 y[1] (numeric) = -0.86526471351787444925629667505797 absolute error = 6.554745875677495e-17 relative error = 7.5754226114550654092821100343722e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.548 Order of pole = 2.185 x[1] = -1.173 y[1] (analytic) = -0.8648440332353247220078816185301 y[1] (numeric) = -0.86484403323532478794045994349534 absolute error = 6.593257832496524e-17 relative error = 7.6236379961269773920874070041826e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop memory used=125.8MB, alloc=4.4MB, time=17.42 Complex estimate of poles used Radius of convergence = 1.547 Order of pole = 2.185 x[1] = -1.172 y[1] (analytic) = -0.86442293736657325628196443362994 y[1] (numeric) = -0.86442293736657332260130961161377 absolute error = 6.631934517798383e-17 relative error = 7.6720945628794650014962756369870e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.546 Order of pole = 2.185 x[1] = -1.171 y[1] (analytic) = -0.86400142544504533478191260176575 y[1] (numeric) = -0.86400142544504540148967648108332 absolute error = 6.670776387931757e-17 relative error = 7.7207932666264456402630318532090e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.545 Order of pole = 2.186 x[1] = -1.17 y[1] (analytic) = -0.86357949700383524557425245904025 y[1] (numeric) = -0.86357949700383531267209144857305 absolute error = 6.709783898953280e-17 relative error = 7.7697350646149964789869498150933e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.545 Order of pole = 2.186 x[1] = -1.169 y[1] (analytic) = -0.86315715157570727247791020700319 y[1] (numeric) = -0.86315715157570733996748527311357 absolute error = 6.748957506611038e-17 relative error = 7.8189209164179517589243014535776e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.544 Order of pole = 2.186 x[1] = -1.168 y[1] (analytic) = -0.86273438869309675901865292900854 y[1] (numeric) = -0.86273438869309682690162959228763 absolute error = 6.788297666327909e-17 relative error = 7.8683517839263176324693262915250e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.543 Order of pole = 2.186 x[1] = -1.167 y[1] (analytic) = -0.86231120788811118043542092763953 y[1] (numeric) = -0.86231120788811124871346925948705 absolute error = 6.827804833184752e-17 relative error = 7.9180286313415178025139875860192e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.542 Order of pole = 2.186 x[1] = -1.166 y[1] (analytic) = -0.86188760869253122377279515499178 y[1] (numeric) = -0.86188760869253129244758977402622 absolute error = 6.867479461903444e-17 relative error = 7.9679524251674681880741952221280e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.542 Order of pole = 2.186 x[1] = -1.165 y[1] (analytic) = -0.86146359063781187609393713747144 y[1] (numeric) = -0.86146359063781194516715720576904 absolute error = 6.907322006829760e-17 relative error = 8.0181241342024741907086804951616e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.541 Order of pole = 2.186 x[1] = -1.164 y[1] (analytic) = -0.86103915325508352084843235346227 y[1] (numeric) = -0.86103915325508359032176157262324 absolute error = 6.947332921916097e-17 relative error = 8.0685447295309510765861568858821e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.54 Order of pole = 2.186 x[1] = -1.163 y[1] (analytic) = -0.86061429607515304242956150222843 y[1] (numeric) = -0.86061429607515311230468810926889 absolute error = 6.987512660704046e-17 relative error = 8.1192151845149714742170705558361e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.539 Order of pole = 2.186 x[1] = -1.162 y[1] (analytic) = -0.86018901862850493895561750220035 y[1] (numeric) = -0.86018901862850500923423426526835 absolute error = 7.027861676306800e-17 relative error = 8.1701364747856254003649655217777e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.539 Order of pole = 2.187 x[1] = -1.161 y[1] (analytic) = -0.85976332044530244330997937275969 y[1] (numeric) = -0.8597633204453025139937835866738 absolute error = 7.068380421391411e-17 relative error = 8.2213095782342072439244925007825e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.538 Order of pole = 2.187 x[1] = -1.16 y[1] (analytic) = -0.85933720105538865247474738218528 y[1] (numeric) = -0.85933720105538872356544086379406 absolute error = 7.109069348160878e-17 relative error = 8.2727354750032081175542324699430e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.537 Order of pole = 2.187 x[1] = -1.159 y[1] (analytic) = -0.85891065998828766519283698189882 y[1] (numeric) = -0.85891065998828773669212606525971 absolute error = 7.149928908336089e-17 relative error = 8.3244151474771396332199108707228e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.536 Order of pole = 2.187 x[1] = -1.158 y[1] (analytic) = -0.85848369677320572799352208988201 y[1] (numeric) = -0.85848369677320579990311762125786 absolute error = 7.190959553137585e-17 relative error = 8.3763495802731511919786825321956e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.536 Order of pole = 2.187 x[1] = -1.157 y[1] (analytic) = -0.85805631093903238961651123041341 y[1] (numeric) = -0.85805631093903246193812856308521 absolute error = 7.232161733267180e-17 relative error = 8.4285397602314796426030094225785e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.535 Order of pole = 2.187 x[1] = -1.156 y[1] (analytic) = -0.85762850201434166386973287935281 y[1] (numeric) = -0.85762850201434173660509186824681 absolute error = 7.273535898889400e-17 relative error = 8.4809866764056875290314297604258e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.534 Order of pole = 2.187 x[1] = -1.155 y[1] (analytic) = -0.8572002695273932009560991003046 y[1] (numeric) = -0.85720026952739327410692409643236 absolute error = 7.315082499612776e-17 relative error = 8.5336913200527299633244888570221e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.533 Order of pole = 2.187 x[1] = -1.154 y[1] (analytic) = -0.85677161300613346730460918331194 y[1] (numeric) = -0.85677161300613354087262902802153 absolute error = 7.356801984470959e-17 relative error = 8.5866546846228121171842521159340e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.533 Order of pole = 2.187 x[1] = -1.153 y[1] (analytic) = -0.85634253197819693394124751042508 y[1] (numeric) = -0.85634253197819700792819552946184 absolute error = 7.398694801903676e-17 relative error = 8.6398777657490587255640054968006e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.532 Order of pole = 2.187 x[1] = -1.152 y[1] (analytic) = -0.85591302597090727343522226767391 y[1] (numeric) = -0.85591302597090734784283626504908 absolute error = 7.440761399737517e-17 relative error = 8.6933615612369831965027446632746e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.531 Order of pole = 2.187 x[1] = -1.151 y[1] (analytic) = -0.85548309451127856545618389674488 y[1] (numeric) = -0.85548309451127864028620614841045 absolute error = 7.483002225166557e-17 relative error = 8.7471070710537602334196344049379e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.53 Order of pole = 2.188 x[1] = -1.15 y[1] (analytic) = -0.85505273712601651097815432807059 y[1] (numeric) = -0.85505273712601658623233157539865 absolute error = 7.525417724732806e-17 relative error = 8.8011152973172930238987274893218e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.53 Order of pole = 2.188 x[1] = -1.149 y[1] (analytic) = -0.85462195334151965516599005610624 y[1] (numeric) = -0.85462195334151973084607349917122 absolute error = 7.568008344306498e-17 relative error = 8.8553872442850870716755974979208e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.529 Order of pole = 2.188 x[1] = -1.148 y[1] (analytic) = -0.8541907426838806189802940032773 y[1] (numeric) = -0.85419074268388069508803929393926 absolute error = 7.610774529066196e-17 relative error = 8.9099239183429029902273618651801e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.528 Order of pole = 2.188 x[1] = -1.147 memory used=129.7MB, alloc=4.4MB, time=17.95 y[1] (analytic) = -0.85375910467888733953678286738632 y[1] (numeric) = -0.85375910467888741607395010217376 absolute error = 7.653716723478744e-17 relative error = 8.9647263279932237109278633720814e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.527 Order of pole = 2.188 x[1] = -1.146 y[1] (analytic) = -0.8533270388520243192562082540819 y[1] (numeric) = -0.85332703885202439622456196687217 absolute error = 7.696835371279027e-17 relative error = 9.0197954838434896669101315419423e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.527 Order of pole = 2.188 x[1] = -1.145 y[1] (analytic) = -0.85289454472847388384102135719752 y[1] (numeric) = -0.85289454472847396124233051169327 absolute error = 7.740130915449575e-17 relative error = 9.0751323985941432581431081977579e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.526 Order of pole = 2.188 x[1] = -1.144 y[1] (analytic) = -0.85246162183311744911506226121002 y[1] (numeric) = -0.85246162183311752695110024320989 absolute error = 7.783603798199987e-17 relative error = 9.1307380870264536828911122807995e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.525 Order of pole = 2.188 x[1] = -1.143 y[1] (analytic) = -0.85202826969053679676264609755514 y[1] (numeric) = -0.8520282696905368750351907070169 absolute error = 7.827254460946176e-17 relative error = 9.1866135659901224416356909581080e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.524 Order of pole = 2.188 x[1] = -1.142 y[1] (analytic) = -0.85159448782501535900350928584565 y[1] (numeric) = -0.85159448782501543771434272874013 absolute error = 7.871083344289448e-17 relative error = 9.2427598543906839083924773020874e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.524 Order of pole = 2.188 x[1] = -1.141 y[1] (analytic) = -0.8511602757605395122401699279044 y[1] (numeric) = -0.85116027576053959139107880785834 absolute error = 7.915090887995394e-17 relative error = 9.2991779731766754740118472303288e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.523 Order of pole = 2.188 x[1] = -1.14 y[1] (analytic) = -0.85072563302079987971434709265195 y[1] (numeric) = -0.85072563302079995930712240237807 absolute error = 7.959277530972612e-17 relative error = 9.3558689453265963261671361918481e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.522 Order of pole = 2.188 x[1] = -1.139 y[1] (analytic) = -0.85029055912919264320917422894271 y[1] (numeric) = -0.85029055912919272324561134145519 absolute error = 8.003643711251248e-17 relative error = 9.4128337958356410750496747365452e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.521 Order of pole = 2.188 x[1] = -1.138 y[1] (analytic) = -0.84985505360882086383403226705359 y[1] (numeric) = -0.84985505360882094431593092666718 absolute error = 8.048189865961359e-17 relative error = 9.4700735517022108471017562562743e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.521 Order of pole = 2.188 x[1] = -1.137 y[1] (analytic) = -0.84941911598249581192891811328848 y[1] (numeric) = -0.84941911598249589285808242639941 absolute error = 8.092916431311093e-17 relative error = 9.5275892419141950579253064152729e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.52 Order of pole = 2.188 x[1] = -1.136 y[1] (analytic) = -0.84898274577273830612535420162564 y[1] (numeric) = -0.84898274577273838750359262727254 absolute error = 8.137823842564690e-17 relative error = 9.5853818974350276447743624020110e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.519 Order of pole = 2.188 x[1] = -1.135 y[1] (analytic) = -0.84854594250178006160093453702301 y[1] (numeric) = -0.84854594250178014343005987722602 absolute error = 8.182912534020301e-17 relative error = 9.6434525511895133013533835259731e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.518 Order of pole = 2.188 x[1] = -1.134 y[1] (analytic) = -0.84810870569156504756469224238946 y[1] (numeric) = -0.84810870569156512984652163226572 absolute error = 8.228182938987626e-17 relative error = 9.7018022380494239518271569626308e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.518 Order of pole = 2.188 x[1] = -1.133 y[1] (analytic) = -0.84767103486375085401056300077308 y[1] (numeric) = -0.84767103486375093674691789842669 absolute error = 8.273635489765361e-17 relative error = 9.7604319948188527213060260544008e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.517 Order of pole = 2.188 x[1] = -1.132 y[1] (analytic) = -0.84723292953971006777630796141679 y[1] (numeric) = -0.84723292953971015096901413760147 absolute error = 8.319270617618468e-17 relative error = 9.8193428602193409309663574622262e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.516 Order of pole = 2.188 x[1] = -1.131 y[1] (analytic) = -0.84679438924053165794534864835617 y[1] (numeric) = -0.84679438924053174159623617590871 absolute error = 8.365088752755254e-17 relative error = 9.8785358748747606403232421733180e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.515 Order of pole = 2.188 x[1] = -1.13 y[1] (analytic) = -0.8463554134870223706290551685152 y[1] (numeric) = -0.84635541348702245473995841155788 absolute error = 8.411090324304268e-17 relative error = 9.9380120812959623581057546522938e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.515 Order of pole = 2.188 x[1] = -1.129 y[1] (analytic) = -0.84591600179970813316711755808518 y[1] (numeric) = -0.84591600179970821773987516099527 absolute error = 8.457275760291009e-17 relative error = 9.9977725238651786646015656771346e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.514 Order of pole = 2.188 x[1] = -1.128 y[1] (analytic) = -0.84547615369883546778371842660505 y[1] (numeric) = -0.8454761536988355528201733027494 absolute error = 8.503645487614435e-17 relative error = 1.0057818248820170897477857283571e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.513 Order of pole = 2.188 x[1] = -1.127 y[1] (analytic) = -0.84503586870437291473731315281279 y[1] (numeric) = -0.84503586870437300023931247304585 absolute error = 8.550199932023306e-17 relative error = 1.0118150304238156880760400559066e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.512 Order of pole = 2.188 x[1] = -1.126 y[1] (analytic) = -0.84459514633601246500191175018609 y[1] (numeric) = -0.84459514633601255097130693110918 absolute error = 8.596939518092309e-17 relative error = 1.0178769740019457190876625966765e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.512 Order of pole = 2.188 x[1] = -1.125 y[1] (analytic) = -0.84415398611317100251784414827165 y[1] (numeric) = -0.84415398611317108895649084025177 absolute error = 8.643864669198012e-17 relative error = 1.0239677607870914465666846230872e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.511 Order of pole = 2.188 x[1] = -1.124 y[1] (analytic) = -0.8437123875549917560500780235181 y[1] (numeric) = -0.8437123875549918429598360984643 absolute error = 8.690975807494620e-17 relative error = 1.0300874961289052778102580016448e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.51 Order of pole = 2.188 x[1] = -1.123 y[1] (analytic) = -0.84327035018034576069224545543492 y[1] (numeric) = -0.84327035018034584807497899433023 absolute error = 8.738273353889531e-17 relative error = 1.0362362855542973600634759207431e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.509 Order of pole = 2.188 x[1] = -1.122 y[1] (analytic) = -0.84282787350783332905462157552018 y[1] (numeric) = -0.84282787350783341691219885570723 absolute error = 8.785757728018705e-17 relative error = 1.0424142347657002664232114103784e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=133.5MB, alloc=4.4MB, time=18.48 Complex estimate of poles used Radius of convergence = 1.509 Order of pole = 2.188 x[1] = -1.121 y[1] (analytic) = -0.84238495705578553217438501251365 y[1] (numeric) = -0.84238495705578562050867849473206 absolute error = 8.833429348221841e-17 relative error = 1.0486214496393080703866321850334e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.508 Order of pole = 2.188 x[1] = -1.12 y[1] (analytic) = -0.84194160034226569018657631307918 y[1] (numeric) = -0.84194160034226577899946262825265 absolute error = 8.881288631517347e-17 relative error = 1.0548580362232879170992142967694e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.507 Order of pole = 2.188 x[1] = -1.119 y[1] (analytic) = -0.84149780288507087279425662690147 y[1] (numeric) = -0.84149780288507096208761656267267 absolute error = 8.929335993577120e-17 relative error = 1.0611241007359659936682732859322e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.506 Order of pole = 2.188 x[1] = -1.118 y[1] (analytic) = -0.84105356420173340957645478425806 y[1] (numeric) = -0.84105356420173349935217327126939 absolute error = 8.977571848701133e-17 relative error = 1.0674197495639874304976030403753e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.506 Order of pole = 2.188 x[1] = -1.117 y[1] (analytic) = -0.84060888380952241017257645721684 y[1] (numeric) = -0.84060888380952250043254255513496 absolute error = 9.025996609791812e-17 relative error = 1.0737450892604479977056272622795e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.505 Order of pole = 2.188 x[1] = -1.116 y[1] (analytic) = -0.84016376122544529438203437749157 y[1] (numeric) = -0.84016376122544538512814126077378 absolute error = 9.074610688328221e-17 relative error = 1.0801002265429996170293179665257e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.504 Order of pole = 2.188 x[1] = -1.115 y[1] (analytic) = -0.83971819596624933221794357940112 y[1] (numeric) = -0.83971819596624942345208852280156 absolute error = 9.123414494340044e-17 relative error = 1.0864852682919282641580620334507e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.503 Order of pole = 2.188 x[1] = -1.114 y[1] (analytic) = -0.83927218754842319395381034001953 y[1] (numeric) = -0.83927218754842328567789470383317 absolute error = 9.172408436381364e-17 relative error = 1.0929003215482041405756575542355e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.503 Order of pole = 2.188 x[1] = -1.113 y[1] (analytic) = -0.83882573548819851020222789512899 y[1] (numeric) = -0.83882573548819860241815711017146 absolute error = 9.221592921504247e-17 relative error = 1.0993454935115049466980770350256e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.502 Order of pole = 2.188 x[1] = -1.112 y[1] (analytic) = -0.83837883930155144206467611361151 y[1] (numeric) = -0.83837883930155153477435966593262 absolute error = 9.270968355232111e-17 relative error = 1.1058208915382097513692220632981e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.501 Order of pole = 2.188 x[1] = -1.111 y[1] (analytic) = -0.83793149850420426139160610900939 y[1] (numeric) = -0.83793149850420435459695752433837 absolute error = 9.320535141532898e-17 relative error = 1.1123266231393654765724021381050e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.5 Order of pole = 2.188 x[1] = -1.11 y[1] (analytic) = -0.83748371261162694119207424968141 y[1] (numeric) = -0.8374837126116270348950110776018 absolute error = 9.370293682792039e-17 relative error = 1.1188627959786246809800426935957e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.5 Order of pole = 2.187 x[1] = -1.109 y[1] (analytic) = -0.83703548113903875623227319276935 y[1] (numeric) = -0.8370354811390388504347169906215 absolute error = 9.420244379785215e-17 relative error = 1.1254295178701548729309442374615e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.499 Order of pole = 2.187 x[1] = -1.108 y[1] (analytic) = -0.83658680360140989386239040651503 y[1] (numeric) = -0.8365868036014099885662667230241 absolute error = 9.470387631650907e-17 relative error = 1.1320268967765183885649495421500e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.498 Order of pole = 2.187 x[1] = -1.107 y[1] (analytic) = -0.83613767951346307511130715473607 y[1] (numeric) = -0.83613767951346317031854551336347 absolute error = 9.520723835862740e-17 relative error = 1.1386550408065233013575167598777e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.497 Order of pole = 2.187 x[1] = -1.106 y[1] (analytic) = -0.83568810838967518608873309084051 y[1] (numeric) = -0.83568810838967528180126697285671 absolute error = 9.571253388201620e-17 relative error = 1.1453140582130451128015687422877e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.497 Order of pole = 2.187 x[1] = -1.105 y[1] (analytic) = -0.83523808974427891973445344095598 y[1] (numeric) = -0.83523808974427901595422026823254 absolute error = 9.621976682727656e-17 relative error = 1.1520040573908181342954231275905e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.496 Order of pole = 2.187 x[1] = -1.104 y[1] (analytic) = -0.83478762309126442795444724084365 y[1] (numeric) = -0.83478762309126452468338835836242 absolute error = 9.672894111751877e-17 relative error = 1.1587251468741976212961814524620e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.495 Order of pole = 2.187 x[1] = -1.103 y[1] (analytic) = -0.83433670794438098418371622349463 y[1] (numeric) = -0.83433670794438108142377688157195 absolute error = 9.724006065807732e-17 relative error = 1.1654774353348910880107329040045e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.494 Order of pole = 2.187 x[1] = -1.102 y[1] (analytic) = -0.83388534381713865641574472785561 y[1] (numeric) = -0.83388534381713875416887406407943 absolute error = 9.775312933622382e-17 relative error = 1.1722610315796597418866755858396e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.494 Order of pole = 2.187 x[1] = -1.101 y[1] (analytic) = -0.83343353022280999073859140814839 y[1] (numeric) = -0.83343353022281008900674242902616 absolute error = 9.826815102087777e-17 relative error = 1.1790760445479890609082737129165e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.493 Order of pole = 2.187 x[1] = -1.1 y[1] (analytic) = -0.83298126667443170541769356183636 y[1] (numeric) = -0.83298126667443180420282312415153 absolute error = 9.878512956231517e-17 relative error = 1.1859225833097282522138537553712e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.492 Order of pole = 2.187 x[1] = -1.099 y[1] (analytic) = -0.83252855268480639556554455650889 y[1] (numeric) = -0.83252855268480649486961334838387 absolute error = 9.930406879187498e-17 relative error = 1.1928007570626985690792748075992e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.491 Order of pole = 2.187 x[1] = -1.098 y[1] (analytic) = -0.8320753877665042484384841158165 y[1] (numeric) = -0.83207538776650434826345663747996 absolute error = 9.982497252166346e-17 relative error = 1.1997106751302707030025940163261e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.491 Order of pole = 2.186 x[1] = -1.097 y[1] (analytic) = -0.83162177143186476940092011606585 y[1] (numeric) = -0.83162177143186486974876466032211 absolute error = 1.0034784454425626e-16 relative error = 1.2066524469589095440444337984791e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.49 Order of pole = 2.186 memory used=137.3MB, alloc=4.4MB, time=19.00 x[1] = -1.096 y[1] (analytic) = -0.83116770319299851859737904209964 y[1] (numeric) = -0.83116770319299861947006767449803 absolute error = 1.0087268863239839e-16 relative error = 1.2136261821156877226745170087940e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.489 Order of pole = 2.186 x[1] = -1.095 y[1] (analytic) = -0.83071318256178885837286034752405 y[1] (numeric) = -0.83071318256178895977236888622607 absolute error = 1.0139950853870202e-16 relative error = 1.2206319902857671851461802026706e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.488 Order of pole = 2.186 x[1] = -1.094 y[1] (analytic) = -0.83025820904989371148204765404158 y[1] (numeric) = -0.83025820904989381341035564938355 absolute error = 1.0192830799534197e-16 relative error = 1.2276699812698469665589917799029e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.488 Order of pole = 2.186 x[1] = -1.093 y[1] (analytic) = -0.829802782168747330128007001391 y[1] (numeric) = -0.82980278216874743258709771514016 absolute error = 1.0245909071374916e-16 relative error = 1.2347402649815802580459539040892e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.487 Order of pole = 2.186 x[1] = -1.092 y[1] (analytic) = -0.82934690142956207587107921693591 y[1] (numeric) = -0.8293469014295621788629396012376 absolute error = 1.0299186038430169e-16 relative error = 1.2418429514449566429035665866523e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.486 Order of pole = 2.186 x[1] = -1.091 y[1] (analytic) = -0.8288905663433302104487499059786 y[1] (numeric) = -0.82889056634333031397537058199237 absolute error = 1.0352662067601377e-16 relative error = 1.2489781507916519931085952632522e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.485 Order of pole = 2.186 x[1] = -1.09 y[1] (analytic) = -0.82843377642082569754735656406296 y[1] (numeric) = -0.82843377642082580161073180028539 absolute error = 1.0406337523622243e-16 relative error = 1.2561459732583450274270973819907e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.485 Order of pole = 2.185 x[1] = -1.089 y[1] (analytic) = -0.82797653117260601556656787447792 y[1] (numeric) = -0.82797653117260612016869556474986 absolute error = 1.0460212769027194e-16 relative error = 1.2633465291839995272978299937615e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.484 Order of pole = 2.185 x[1] = -1.088 y[1] (analytic) = -0.82751883010901398141764537144525 y[1] (numeric) = -0.82751883010901408656052701264126 absolute error = 1.0514288164119601e-16 relative error = 1.2705799290071128934064079481699e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.483 Order of pole = 2.185 x[1] = -1.087 y[1] (analytic) = -0.82706067274017958539657231559006 y[1] (numeric) = -0.82706067274017969108221298498777 absolute error = 1.0568564066939771e-16 relative error = 1.2778462832629301564152882987269e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.482 Order of pole = 2.185 x[1] = -1.086 y[1] (analytic) = -0.82660205857602183717320883672012 y[1] (numeric) = -0.82660205857602194340361716904726 absolute error = 1.0623040833232714e-16 relative error = 1.2851457025806236395364200005279e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.482 Order of pole = 2.185 x[1] = -1.085 y[1] (analytic) = -0.82614298712625062293770614310606 y[1] (numeric) = -0.82614298712625072971489430726289 absolute error = 1.0677718816415683e-16 relative error = 1.2924782976804378656359383011562e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.481 Order of pole = 2.185 x[1] = -1.084 y[1] (analytic) = -0.82568345790036857374548586973706 y[1] (numeric) = -0.82568345790036868107146954519187 absolute error = 1.0732598367545481e-16 relative error = 1.2998441793707988146461584791156e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.48 Order of pole = 2.185 x[1] = -1.083 y[1] (analytic) = -0.82522347040767294510216343375631 y[1] (numeric) = -0.82522347040767305297896178661175 absolute error = 1.0787679835285544e-16 relative error = 1.3072434585453884500997815705585e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.479 Order of pole = 2.185 x[1] = -1.082 y[1] (analytic) = -0.82476302415725750782986657674292 y[1] (numeric) = -0.82476302415725761625950223547079 absolute error = 1.0842963565872787e-16 relative error = 1.3146762461801827695934393742979e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.479 Order of pole = 2.184 x[1] = -1.081 y[1] (analytic) = -0.8243021186580144502564720939379 y[1] (numeric) = -0.82430211865801455924097112478019 absolute error = 1.0898449903084229e-16 relative error = 1.3221426533304551436420392597153e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.478 Order of pole = 2.184 x[1] = -1.08 y[1] (analytic) = -0.82384075341863629176935507310251 y[1] (numeric) = -0.82384075341863640131074695513624 absolute error = 1.0954139188203373e-16 relative error = 1.3296427911277418592867631713946e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.477 Order of pole = 2.184 x[1] = -1.079 y[1] (analytic) = -0.82337892794761780777531578358861 y[1] (numeric) = -0.82337892794761791787563338345227 absolute error = 1.1010031759986366e-16 relative error = 1.3371767707767727213990730313883e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.476 Order of pole = 2.184 x[1] = -1.078 y[1] (analytic) = -0.82291664175325796610841966248861 y[1] (numeric) = -0.82291664175325807676969920876778 absolute error = 1.1066127954627917e-16 relative error = 1.3447447035523638653299230746960e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.476 Order of pole = 2.184 x[1] = -1.077 y[1] (analytic) = -0.8224538943436618749275556324629 y[1] (numeric) = -0.82245389434366198615183668973269 absolute error = 1.1122428105726979e-16 relative error = 1.3523467007962733255078473947545e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.475 Order of pole = 2.184 x[1] = -1.076 y[1] (analytic) = -0.82199068522674274214558724801428 y[1] (numeric) = -0.82199068522674285393491269053632 absolute error = 1.1178932544252204e-16 relative error = 1.3599828739140202712853109855928e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.474 Order of pole = 2.184 x[1] = -1.075 y[1] (analytic) = -0.82152701391022384643203989654275 y[1] (numeric) = -0.82152701391022395878845588161431 absolute error = 1.1235641598507156e-16 relative error = 1.3676533343716659033372740269820e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.473 Order of pole = 2.183 x[1] = -1.074 y[1] (analytic) = -0.82106287990164051983133547037153 y[1] (numeric) = -0.82106287990164063275689141132439 absolute error = 1.1292555594095286e-16 relative error = 1.3753581936925563082054242437018e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.473 Order of pole = 2.183 x[1] = -1.073 y[1] (analytic) = -0.82059828270834214203865356894012 y[1] (numeric) = -0.82059828270834225553540210778685 absolute error = 1.1349674853884673e-16 relative error = 1.3830975634540275691858340206664e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.472 Order of pole = 2.183 x[1] = -1.072 y[1] (analytic) = -0.82013322183749414637556537931749 y[1] (numeric) = -0.82013322183749426044556235904271 absolute error = 1.1406999697972522e-16 relative error = 1.3908715552840718472606674929872e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.471 Order of pole = 2.183 x[1] = -1.071 y[1] (analytic) = -0.81966769679608003750765291085383 y[1] (numeric) = -0.81966769679608015215295734734811 absolute error = 1.1464530443649428e-16 relative error = 1.3986802808579653352025922078986e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=141.1MB, alloc=4.4MB, time=19.51 Complex estimate of poles used Radius of convergence = 1.47 Order of pole = 2.183 x[1] = -1.07 y[1] (analytic) = -0.81920170709090342094639221886951 y[1] (numeric) = -0.81920170709090353616906627250344 absolute error = 1.1522267405363393e-16 relative error = 1.4065238518948563057865562434769e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.47 Order of pole = 2.183 x[1] = -1.069 y[1] (analytic) = -0.81873525222859004437764463543247 y[1] (numeric) = -0.81873525222859016017975358226856 absolute error = 1.1580210894683609e-16 relative error = 1.4144023801543146418137605952623e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.469 Order of pole = 2.183 x[1] = -1.068 y[1] (analytic) = -0.8182683317155898508591648251087 y[1] (numeric) = -0.81826833171558996724277702774862 absolute error = 1.1638361220263992e-16 relative error = 1.4223159774328408193451473010881e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.468 Order of pole = 2.182 x[1] = -1.067 y[1] (analytic) = -0.81780094505817904392959869264274 y[1] (numeric) = -0.81780094505817916089678557070755 absolute error = 1.1696718687806481e-16 relative error = 1.4302647555603358515993136746663e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.467 Order of pole = 2.182 x[1] = -1.066 y[1] (analytic) = -0.81733309176246216467150778034594 y[1] (numeric) = -0.81733309176246228222434378058676 absolute error = 1.1755283600024082e-16 relative error = 1.4382488263965295472044536152885e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.467 Order of pole = 2.182 x[1] = -1.065 y[1] (analytic) = -0.81686477133437418077101979799745 y[1] (numeric) = -0.81686477133437429891158236403427 absolute error = 1.1814056256603682e-16 relative error = 1.4462683018273699324479488213307e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.466 Order of pole = 2.182 x[1] = -1.064 y[1] (analytic) = -0.81639598327968258761676731970674 y[1] (numeric) = -0.81639598327968270634713686139284 absolute error = 1.1873036954168610e-16 relative error = 1.4543232937613708199363834553968e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.465 Order of pole = 2.182 x[1] = -1.063 y[1] (analytic) = -0.81592672710398952148083845280427 y[1] (numeric) = -0.81592672710398964080309831521377 absolute error = 1.1932225986240950e-16 relative error = 1.4624139141259179230969422793085e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.465 Order of pole = 2.182 x[1] = -1.062 y[1] (analytic) = -0.81545700231273388482452442572805 y[1] (numeric) = -0.81545700231273400474076085776417 absolute error = 1.1991623643203612e-16 relative error = 1.4705402748635340395924432250938e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.464 Order of pole = 2.181 x[1] = -1.061 y[1] (analytic) = -0.8149868084111934837717095473155 y[1] (numeric) = -0.81498680841119360428401166993704 absolute error = 1.2051230212262154e-16 relative error = 1.4787024879281022331921590583345e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.463 Order of pole = 2.181 x[1] = -1.06 y[1] (analytic) = -0.8145161449044871777928088510994 y[1] (numeric) = -0.81451614490448729890326862516298 absolute error = 1.2111045977406358e-16 relative error = 1.4869006652810471655939280307840e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.462 Order of pole = 2.181 x[1] = -1.059 y[1] (analytic) = -0.81404501129757704164221794730035 y[1] (numeric) = -0.81404501129757716335293014101587 absolute error = 1.2171071219371552e-16 relative error = 1.4951349188874733782767304271104e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.462 Order of pole = 2.181 x[1] = -1.058 y[1] (analytic) = -0.81357340709527053959229815431042 y[1] (numeric) = -0.81357340709527066190536031030731 absolute error = 1.2231306215599689e-16 relative error = 1.5034053607122616534330616192795e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.461 Order of pole = 2.181 x[1] = -1.057 y[1] (analytic) = -0.81310133180222271200697786262905 y[1] (numeric) = -0.81310133180222283492449026463076 absolute error = 1.2291751240200171e-16 relative error = 1.5117121027161217587347692057808e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.46 Order of pole = 2.181 x[1] = -1.056 y[1] (analytic) = -0.81262878492293837429810828944388 y[1] (numeric) = -0.8126287849229384978221739285481 absolute error = 1.2352406563910422e-16 relative error = 1.5200552568516018408696795131147e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.459 Order of pole = 2.181 x[1] = -1.055 y[1] (analytic) = -0.81215576596177432830776830329865 y[1] (numeric) = -0.81215576596177445244049284386078 absolute error = 1.2413272454056213e-16 relative error = 1.5284349350590546100124651401994e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.459 Order of pole = 2.18 x[1] = -1.054 y[1] (analytic) = -0.8116822744229415861597688274566 y[1] (numeric) = -0.81168227442294171090326057257393 absolute error = 1.2474349174511733e-16 relative error = 1.5368512492625593483704325625216e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.458 Order of pole = 2.18 x[1] = -1.053 y[1] (analytic) = -0.8112083098105076066236624594993 y[1] (numeric) = -0.81120830981050773198003231609332 absolute error = 1.2535636985659402e-16 relative error = 1.5453043113657990170927592913471e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.457 Order of pole = 2.18 x[1] = -1.052 y[1] (analytic) = -0.81073387162839854403461836519281 y[1] (numeric) = -0.81073387162839867000597980868719 absolute error = 1.2597136144349438e-16 relative error = 1.5537942332478937050573003486543e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.456 Order of pole = 2.18 x[1] = -1.051 y[1] (analytic) = -0.81025895938040150981257620845091 y[1] (numeric) = -0.81025895938040163640104524704257 absolute error = 1.2658846903859166e-16 relative error = 1.5623211267591887059513764155437e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.456 Order of pole = 2.18 x[1] = -1.05 y[1] (analytic) = -0.80978357257016684662414585801889 y[1] (numeric) = -0.80978357257016697383184099653957 absolute error = 1.2720769513852068e-16 relative error = 1.5708851037169968595075865445121e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.455 Order of pole = 2.18 x[1] = -1.049 y[1] (analytic) = -0.80930771070121041523077185693212 y[1] (numeric) = -0.80930771070121054305981406029799 absolute error = 1.2782904220336587e-16 relative error = 1.5794862759012965199898396955731e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.454 Order of pole = 2.18 x[1] = -1.048 y[1] (analytic) = -0.8088313732769158940667331444573 y[1] (numeric) = -0.80883137327691602251924580070388 absolute error = 1.2845251265624658e-16 relative error = 1.5881247550503815751045453233103e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.453 Order of pole = 2.179 x[1] = -1.047 y[1] (analytic) = -0.80835455980053709159059927363556 y[1] (numeric) = -0.80835455980053722066870815653561 absolute error = 1.2907810888290005e-16 relative error = 1.5968006528564680854509943978938e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.453 Order of pole = 2.179 x[1] = -1.046 y[1] (analytic) = -0.80787726977520027145381436219776 y[1] (numeric) = -0.80787726977520040115964759345932 absolute error = 1.2970583323126156e-16 relative error = 1.6055140809612513662838515285750e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.452 Order of pole = 2.179 memory used=144.9MB, alloc=4.4MB, time=20.04 x[1] = -1.045 y[1] (analytic) = -0.80739950270390649053012924194074 y[1] (numeric) = -0.80739950270390662086581725298291 absolute error = 1.3033568801104217e-16 relative error = 1.6142651509514183262509589765412e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.451 Order of pole = 2.179 x[1] = -1.044 y[1] (analytic) = -0.80692125808953394984965072301643 y[1] (numeric) = -0.80692125808953408081732621632021 absolute error = 1.3096767549330378e-16 relative error = 1.6230539743541114724937667866928e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.451 Order of pole = 2.179 x[1] = -1.043 y[1] (analytic) = -0.80644253543484035848132455631469 y[1] (numeric) = -0.80644253543484049008312246634632 absolute error = 1.3160179791003163e-16 relative error = 1.6318806626323458095649794686102e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.45 Order of pole = 2.179 x[1] = -1.042 y[1] (analytic) = -0.80596333424246531040771555048592 y[1] (numeric) = -0.8059633342424654426457730041901 absolute error = 1.3223805745370418e-16 relative error = 1.6407453271803776311059839447712e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.449 Order of pole = 2.179 x[1] = -1.041 y[1] (analytic) = -0.80548365401493267443599437136622 y[1] (numeric) = -0.80548365401493280731245064822662 absolute error = 1.3287645627686040e-16 relative error = 1.6496480793190253148173328116450e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.448 Order of pole = 2.178 x[1] = -1.04 y[1] (analytic) = -0.80500349425465299718908581179884 y[1] (numeric) = -0.80500349425465313070608230346324 absolute error = 1.3351699649166440e-16 relative error = 1.6585890302909409885511285024088e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.448 Order of pole = 2.178 x[1] = -1.039 y[1] (analytic) = -0.80452285446392591922097776019939 y[1] (numeric) = -0.8045228544639260533806579296669 absolute error = 1.3415968016946751e-16 relative error = 1.6675682912558341662912934034693e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.447 Order of pole = 2.178 x[1] = -1.038 y[1] (analytic) = -0.80404173414494260430023370774418 y[1] (numeric) = -0.80404173414494273910474304811184 absolute error = 1.3480450934036766e-16 relative error = 1.6765859732856452233594338803248e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.446 Order of pole = 2.178 x[1] = -1.037 y[1] (analytic) = -0.80356013279978818190579440777151 y[1] (numeric) = -0.80356013279978831735728040053769 absolute error = 1.3545148599276618e-16 relative error = 1.6856421873596699290052671850404e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.445 Order of pole = 2.178 x[1] = -1.036 y[1] (analytic) = -0.80307804993044420297919622782263 y[1] (numeric) = -0.80307804993044433907980830074455 absolute error = 1.3610061207292192e-16 relative error = 1.6947370443596335198815552080831e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.445 Order of pole = 2.178 x[1] = -1.035 y[1] (analytic) = -0.80259548503879110897737480560451 y[1] (numeric) = -0.8025954850387912457292642901073 absolute error = 1.3675188948450279e-16 relative error = 1.7038706550647152814920627571899e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.444 Order of pole = 2.178 x[1] = -1.034 y[1] (analytic) = -0.80211243762661071427026282587016 y[1] (numeric) = -0.80211243762661085167558291400472 absolute error = 1.3740532008813456e-16 relative error = 1.7130431301465213668580997759868e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.443 Order of pole = 2.177 x[1] = -1.033 y[1] (analytic) = -0.80162890719558870192743006656715 y[1] (numeric) = -0.80162890719558883998833576751425 absolute error = 1.3806090570094710e-16 relative error = 1.7222545801640078110071829849372e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.443 Order of pole = 2.177 x[1] = -1.032 y[1] (analytic) = -0.80114489324731713293805231033253 y[1] (numeric) = -0.80114489324731727165670040645041 absolute error = 1.3871864809611788e-16 relative error = 1.7315051155583512146941160429154e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.442 Order of pole = 2.177 x[1] = -1.031 y[1] (analytic) = -0.80066039528329696890853327218613 y[1] (numeric) = -0.80066039528329710828708227459902 absolute error = 1.3937854900241289e-16 relative error = 1.7407948466477688039672451834482e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.441 Order of pole = 2.177 x[1] = -1.03 y[1] (analytic) = -0.80017541280494060828214034671685 y[1] (numeric) = -0.80017541280494074832275045044164 absolute error = 1.4004061010372479e-16 relative error = 1.7501238836222852053194255676006e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.44 Order of pole = 2.177 x[1] = -1.029 y[1] (analytic) = -0.79968994531357443612505071873144 y[1] (numeric) = -0.79968994531357457682988375733991 absolute error = 1.4070483303860847e-16 relative error = 1.7594923365384478889547726270574e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.44 Order of pole = 2.177 x[1] = -1.028 y[1] (analytic) = -0.79920399231044138752323920075595 y[1] (numeric) = -0.79920399231044152889445860056987 absolute error = 1.4137121939981392e-16 relative error = 1.7689003153139897375833299117943e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.439 Order of pole = 2.177 x[1] = -1.027 y[1] (analytic) = -0.79871755329670352463467304940031 y[1] (numeric) = -0.79871755329670366667444378321667 absolute error = 1.4203977073381636e-16 relative error = 1.7783479297224378155422594735514e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.438 Order of pole = 2.177 x[1] = -1.026 y[1] (analytic) = -0.7982306277734446274413119608184 y[1] (numeric) = -0.79823062777344477015180050116212 absolute error = 1.4271048854034372e-16 relative error = 1.7878352893876691612750209219650e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.437 Order of pole = 2.177 x[1] = -1.025 y[1] (analytic) = -0.79774321524167279824544344366491 y[1] (numeric) = -0.79774321524167294162881771556638 absolute error = 1.4338337427190147e-16 relative error = 1.7973625037784133008896032329551e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.437 Order of pole = 2.176 x[1] = -1.024 y[1] (analytic) = -0.7972553152023230799549148063568 y[1] (numeric) = -0.79725531520232322401334413965148 absolute error = 1.4405842933329468e-16 relative error = 1.8069296822026996727325604502486e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.436 Order of pole = 2.176 x[1] = -1.023 y[1] (analytic) = -0.7967669271562600882018530643258 y[1] (numeric) = -0.79676692715626023293750814547323 absolute error = 1.4473565508114743e-16 relative error = 1.8165369338022511550634888656249e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.435 Order of pole = 2.176 x[1] = -1.022 y[1] (analytic) = -0.79627805060428065733949316247976 y[1] (numeric) = -0.79627805060428080275454598589924 absolute error = 1.4541505282341948e-16 relative error = 1.8261843675468222563157425505848e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.435 Order of pole = 2.176 x[1] = -1.021 y[1] (analytic) = -0.79578868504711650036176300839759 y[1] (numeric) = -0.79578868504711664645838682731786 absolute error = 1.4609662381892027e-16 relative error = 1.8358720922284825297589724987970e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.434 Order of pole = 2.176 x[1] = -1.02 y[1] (analytic) = -0.79529882998543688279030091293498 y[1] (numeric) = -0.79529882998543702957067018975516 absolute error = 1.4678036927682018e-16 relative error = 1.8456002164558440156066776336271e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=148.7MB, alloc=4.4MB, time=20.56 Complex estimate of poles used Radius of convergence = 1.433 Order of pole = 2.176 x[1] = -1.019 y[1] (analytic) = -0.79480848491985131057360712692719 y[1] (numeric) = -0.79480848491985145803989748308629 absolute error = 1.4746629035615910e-16 relative error = 1.8553688486482330163117362195860e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.432 Order of pole = 2.176 x[1] = -1.018 y[1] (analytic) = -0.79431764935091223204305623549979 y[1] (numeric) = -0.794317649350912380197444400852 absolute error = 1.4815438816535221e-16 relative error = 1.8651780970298046226761494782524e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.432 Order of pole = 2.176 x[1] = -1.017 y[1] (analytic) = -0.79382632277911775397052121503755 y[1] (numeric) = -0.79382632277911790281518497673073 absolute error = 1.4884466376169318e-16 relative error = 1.8750280696236023044889369344953e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.431 Order of pole = 2.176 x[1] = -1.016 y[1] (analytic) = -0.79333450470491437177238296196316 y[1] (numeric) = -0.79333450470491452130950111281765 absolute error = 1.4953711815085449e-16 relative error = 1.8849188742455584610741761393478e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.43 Order of pole = 2.176 x[1] = -1.015 y[1] (analytic) = -0.79284219462869971390472105692811 y[1] (numeric) = -0.79284219462869986413647334331323 absolute error = 1.5023175228638512e-16 relative error = 1.8948506184984387426003311540333e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.43 Order of pole = 2.176 x[1] = -1.014 y[1] (analytic) = -0.79234939205082530049450242255327 y[1] (numeric) = -0.79234939205082545142306949175875 absolute error = 1.5092856706920548e-16 relative error = 1.9048234097657281698396181079976e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.429 Order of pole = 2.176 x[1] = -1.013 y[1] (analytic) = -0.79185609647159931625160435715196 y[1] (numeric) = -0.79185609647159946787916770425153 absolute error = 1.5162756334709957e-16 relative error = 1.9148373552054585844245054221469e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.428 Order of pole = 2.175 x[1] = -1.012 y[1] (analytic) = -0.79136230739128939770652717054556 y[1] (numeric) = -0.79136230739128955003526908475008 absolute error = 1.5232874191420452e-16 relative error = 1.9248925617439789798649385272463e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.427 Order of pole = 2.175 x[1] = -1.011 y[1] (analytic) = -0.79086802431012543481866930070553 y[1] (numeric) = -0.79086802431012558785077281120275 absolute error = 1.5303210351049722e-16 relative error = 1.9349891360696647065440010452991e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.427 Order of pole = 2.175 x[1] = -1.01 y[1] (analytic) = -0.79037324672830238700005434103398 y[1] (numeric) = -0.79037324672830254073770316231233 absolute error = 1.5373764882127835e-16 relative error = 1.9451271846265691139269335926941e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.426 Order of pole = 2.175 x[1] = -1.009 y[1] (analytic) = -0.78987797414598311359941484708087 y[1] (numeric) = -0.78987797414598326804479332373449 absolute error = 1.5444537847665362e-16 relative error = 1.9553068136080148796595653538782e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.425 Order of pole = 2.175 x[1] = -1.008 y[1] (analytic) = -0.78938220606330121889155210778431 y[1] (numeric) = -0.78938220606330137404684515879654 absolute error = 1.5515529305101223e-16 relative error = 1.9655281289501247937577975921949e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.424 Order of pole = 2.175 x[1] = -1.007 y[1] (analytic) = -0.78888594198036391161690424925101 y[1] (numeric) = -0.78888594198036406748429731175364 absolute error = 1.5586739306250263e-16 relative error = 1.9757912363252926509153454659006e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.424 Order of pole = 2.175 x[1] = -1.006 y[1] (analytic) = -0.78838918139725487911626707794983 y[1] (numeric) = -0.78838918139725503569794605045538 absolute error = 1.5658167897250555e-16 relative error = 1.9860962411355935106552500634169e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.423 Order of pole = 2.175 x[1] = -1.005 y[1] (analytic) = -0.78789192381403717610562295419854 y[1] (numeric) = -0.78789192381403733340377413930271 absolute error = 1.5729815118510417e-16 relative error = 1.9964432485061313107672667629325e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.422 Order of pole = 2.175 x[1] = -1.004 y[1] (analytic) = -0.78739416873075612813604270515221 y[1] (numeric) = -0.7873941687307562861528527517039 absolute error = 1.5801681004655169e-16 relative error = 2.0068323632783267609782774595574e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.422 Order of pole = 2.175 x[1] = -1.003 y[1] (analytic) = -0.78689591564744224978363412826506 y[1] (numeric) = -0.7868959156474424085212899730011 absolute error = 1.5873765584473604e-16 relative error = 2.0172636900031418489922270736735e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.421 Order of pole = 2.175 x[1] = -1.002 y[1] (analytic) = -0.7863971640641141776145179904516 y[1] (numeric) = -0.78639716406411433707520679909344 absolute error = 1.5946068880864184e-16 relative error = 2.0277373329342419760820309997789e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.42 Order of pole = 2.175 x[1] = -1.001 y[1] (analytic) = -0.78589791348078161796981858391858 y[1] (numeric) = -0.78589791348078177815572769172827 absolute error = 1.6018590910780969e-16 relative error = 2.0382533960210963614411582017232e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.419 Order of pole = 2.175 x[1] = -1 y[1] (analytic) = -0.78539816339744830961566084581988 y[1] (numeric) = -0.78539816339744847052897769761248 absolute error = 1.6091331685179260e-16 relative error = 2.0488119829020139186081650372225e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = -0.999 y[1] (analytic) = -0.78489791331411500130316977438783 y[1] (numeric) = -0.78489791331411516294608186399758 absolute error = 1.6164291208960975e-16 relative error = 2.0594131968971166330173401514039e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.418 Order of pole = 2.175 x[1] = -0.998 y[1] (analytic) = -0.78439716273078244428347036784842 y[1] (numeric) = -0.78439716273078260665816517704584 absolute error = 1.6237469480919742e-16 relative error = 2.0700571410012480166171936100649e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.417 Order of pole = 2.175 x[1] = -0.997 y[1] (analytic) = -0.78389591114745439982268756300563 y[1] (numeric) = -0.78389591114745456293135249986286 absolute error = 1.6310866493685723e-16 relative error = 2.0807439178768180287200991644232e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.417 Order of pole = 2.175 x[1] = -0.996 y[1] (analytic) = -0.78339415806414066176194564660061 y[1] (numeric) = -0.78339415806414082560676798330217 absolute error = 1.6384482233670156e-16 relative error = 2.0914736298465824113587296476915e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.416 Order of pole = 2.175 x[1] = -0.995 y[1] (analytic) = -0.78289190298086009416736534307272 y[1] (numeric) = -0.78289190298086025875053215316902 absolute error = 1.6458316681009630e-16 relative error = 2.1022463788863579519341153403865e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.415 Order of pole = 2.175 memory used=152.6MB, alloc=4.4MB, time=21.08 x[1] = -0.994 y[1] (analytic) = -0.78238914539764368411505423577632 y[1] (numeric) = -0.78238914539764384943875233087705 absolute error = 1.6532369809510073e-16 relative error = 2.1130622666176707187542107727762e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.415 Order of pole = 2.175 x[1] = -0.993 y[1] (analytic) = -0.78188588481453760965608234358511 y[1] (numeric) = -0.78188588481453777572249820948988 absolute error = 1.6606641586590477e-16 relative error = 2.1239213943003399258058322523492e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.414 Order of pole = 2.175 x[1] = -0.992 y[1] (analytic) = -0.78138212073160632300642953963571 y[1] (numeric) = -0.78138212073160648981774927189907 absolute error = 1.6681131973226336e-16 relative error = 2.1348238628249939523215911920322e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.413 Order of pole = 2.175 x[1] = -0.991 y[1] (analytic) = -0.7808778526489356490068850521564 y[1] (numeric) = -0.78087785264893581656529429108456 absolute error = 1.6755840923892816e-16 relative error = 2.1457697727055205298997093494797e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.412 Order of pole = 2.175 x[1] = -0.99 y[1] (analytic) = -0.78037308006663589889787151727255 y[1] (numeric) = -0.78037308006663606720555538234905 absolute error = 1.6830768386507650e-16 relative error = 2.1567592240714497870655956640231e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.412 Order of pole = 2.175 x[1] = -0.989 y[1] (analytic) = -0.77986780248484499945415694869755 y[1] (numeric) = -0.77986780248484516851329997243507 absolute error = 1.6905914302373752e-16 relative error = 2.1677923166602689610874924520571e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.411 Order of pole = 2.175 x[1] = -0.988 y[1] (analytic) = -0.77936201940373163752440753756922 y[1] (numeric) = -0.77936201940373180733719359878485 absolute error = 1.6981278606121563e-16 relative error = 2.1788691498096700170295677188467e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.41 Order of pole = 2.175 x[1] = -0.987 y[1] (analytic) = -0.7788557303234984200205223855848 y[1] (numeric) = -0.77885573032349859058913464209596 absolute error = 1.7056861225651116e-16 relative error = 2.1899898224497280806761075262405e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.41 Order of pole = 2.175 x[1] = -0.986 y[1] (analytic) = -0.77834893474438504940167809417195 y[1] (numeric) = -0.77834893474438522072829891491028 absolute error = 1.7132662082073833e-16 relative error = 2.2011544330950119199107772050702e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.409 Order of pole = 2.175 x[1] = -0.985 y[1] (analytic) = -0.77784163216667151469799656980282 y[1] (numeric) = -0.77784163216667168678480746634323 absolute error = 1.7208681089654041e-16 relative error = 2.2123630798366243714012277276577e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.408 Order of pole = 2.175 x[1] = -0.984 y[1] (analytic) = -0.77733382209068129811873344875008 y[1] (numeric) = -0.77733382209068147096791500625228 absolute error = 1.7284918155750220e-16 relative error = 2.2236158603341739416395711820983e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.407 Order of pole = 2.175 x[1] = -0.983 y[1] (analytic) = -0.77682550401678459728986718157898 y[1] (numeric) = -0.77682550401678477090359898913871 absolute error = 1.7361373180755973e-16 relative error = 2.2349128718076758554373719481208e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.407 Order of pole = 2.175 x[1] = -0.982 y[1] (analytic) = -0.77631667744540156316595003639188 y[1] (numeric) = -0.77631667744540173754641061679911 absolute error = 1.7438046058040723e-16 relative error = 2.2462542110293827465198395032149e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.406 Order of pole = 2.175 x[1] = -0.981 y[1] (analytic) = -0.77580734187700555366106206815972 y[1] (numeric) = -0.77580734187700572881042880706111 absolute error = 1.7514936673890139e-16 relative error = 2.2576399743155447975556726366970e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.405 Order of pole = 2.175 x[1] = -0.98 y[1] (analytic) = -0.77529749681212640304368744720001 y[1] (numeric) = -0.7752974968121265789641365216629 absolute error = 1.7592044907446289e-16 relative error = 2.2690702575180986183765682826224e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.405 Order of pole = 2.175 x[1] = -0.979 y[1] (analytic) = -0.77478714175135370714030943074885 y[1] (numeric) = -0.774787141751353883834015737224 absolute error = 1.7669370630647515e-16 relative error = 2.2805451560162837585430316957430e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.404 Order of pole = 2.175 x[1] = -0.978 y[1] (analytic) = -0.77427627619534012439249568532425 y[1] (numeric) = -0.77427627619534030186163276700469 absolute error = 1.7746913708168044e-16 relative error = 2.2920647647081881968268470661302e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.403 Order of pole = 2.176 x[1] = -0.977 y[1] (analytic) = -0.77376489964480469281221961183374 y[1] (numeric) = -0.77376489964480487105895958540695 absolute error = 1.7824673997357321e-16 relative error = 2.3036291780022205369192021394730e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.403 Order of pole = 2.176 x[1] = -0.976 y[1] (analytic) = -0.77325301160053616288013577772672 y[1] (numeric) = -0.77325301160053634190664925951747 absolute error = 1.7902651348179075e-16 relative error = 2.3152384898085098580728283074779e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.402 Order of pole = 2.176 x[1] = -0.975 y[1] (analytic) = -0.7727406115633963464314985084645 y[1] (numeric) = -0.7727406115633965262399545399656 absolute error = 1.7980845603150110e-16 relative error = 2.3268927935302317139215092217772e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.401 Order of pole = 2.176 x[1] = -0.974 y[1] (analytic) = -0.77222769903432348157438212165215 y[1] (numeric) = -0.77222769903432366216694809444042 absolute error = 1.8059256597278827e-16 relative error = 2.3385921820548605759468437726371e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.4 Order of pole = 2.176 x[1] = -0.973 y[1] (analytic) = -0.77171427351433561368482918876728 y[1] (numeric) = -0.77171427351433579506367076880206 absolute error = 1.8137884158003478e-16 relative error = 2.3503367477453483699949536503282e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.4 Order of pole = 2.176 x[1] = -0.972 y[1] (analytic) = -0.77120033450453399252351956889503 y[1] (numeric) = -0.77120033450453417469080062019654 absolute error = 1.8216728105130151e-16 relative error = 2.3621265824312284912989103214145e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.399 Order of pole = 2.176 x[1] = -0.971 y[1] (analytic) = -0.77068588150610648551851776354492 y[1] (numeric) = -0.77068588150610666847640027124971 absolute error = 1.8295788250770479e-16 relative error = 2.3739617773996438999055341900168e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.398 Order of pole = 2.176 x[1] = -0.97 y[1] (analytic) = -0.77017091402033100725861937873632 y[1] (numeric) = -0.77017091402033119100926337152722 absolute error = 1.8375064399279090e-16 relative error = 2.3858424233863010053534832208129e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.398 Order of pole = 2.176 x[1] = -0.969 y[1] (analytic) = -0.76965543154857896524177913729363 y[1] (numeric) = -0.76965543154857914978734260920146 absolute error = 1.8454556347190783e-16 relative error = 2.3977686105663468991051593426169e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=156.4MB, alloc=4.4MB, time=21.62 Complex estimate of poles used Radius of convergence = 1.397 Order of pole = 2.176 x[1] = -0.968 y[1] (analytic) = -0.7691394335923187219230629478318 y[1] (numeric) = -0.76913943359231890726570177940622 absolute error = 1.8534263883157442e-16 relative error = 2.4097404285451709887793392147111e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.396 Order of pole = 2.176 x[1] = -0.967 y[1] (analytic) = -0.76862291965311907310652499432522 y[1] (numeric) = -0.76862291965311925924839287317197 absolute error = 1.8614186787884675e-16 relative error = 2.4217579663491288395079902949922e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.396 Order of pole = 2.177 x[1] = -0.966 y[1] (analytic) = -0.76810588923265274272536764847069 y[1] (numeric) = -0.76810588923265292966861598915266 absolute error = 1.8694324834068197e-16 relative error = 2.4338213124161901802095407020055e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.395 Order of pole = 2.177 x[1] = -0.965 y[1] (analytic) = -0.76758834183269989405469721325594 y[1] (numeric) = -0.76758834183270008180147507655536 absolute error = 1.8774677786329942e-16 relative error = 2.4459305545865086118220071817796e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.394 Order of pole = 2.177 x[1] = -0.964 y[1] (analytic) = -0.76707027695515165740114206715144 y[1] (numeric) = -0.76707027695515184595359607869054 absolute error = 1.8855245401153910e-16 relative error = 2.4580857800929132771011904760047e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.394 Order of pole = 2.177 x[1] = -0.963 y[1] (analytic) = -0.76655169410201367431355168102381 y[1] (numeric) = -0.76655169410201386367382594924139 absolute error = 1.8936027426821758e-16 relative error = 2.4702870755513231424855885655682e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.393 Order of pole = 2.177 x[1] = -0.962 y[1] (analytic) = -0.76603259277540965835894521103788 y[1] (numeric) = -0.76603259277540984852918124451903 absolute error = 1.9017023603348115e-16 relative error = 2.4825345269510807584445138160373e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.392 Order of pole = 2.177 x[1] = -0.961 y[1] (analytic) = -0.76551297247758497250782691723027 y[1] (numeric) = -0.76551297247758516349016354138673 absolute error = 1.9098233662415646e-16 relative error = 2.4948282196452082242559208473910e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.391 Order of pole = 2.177 x[1] = -0.96 y[1] (analytic) = -0.76499283271091022317293250580695 y[1] (numeric) = -0.76499283271091041496950577890548 absolute error = 1.9179657327309853e-16 relative error = 2.5071682383405832594117795853618e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.391 Order of pole = 2.177 x[1] = -0.959 y[1] (analytic) = -0.76447217297788487094541563019121 y[1] (numeric) = -0.76447217297788506355835875872729 absolute error = 1.9261294312853608e-16 relative error = 2.5195546670880341862001721730243e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.39 Order of pole = 2.178 x[1] = -0.958 y[1] (analytic) = -0.76395099278114085807242719802459 y[1] (numeric) = -0.76395099278114105150387045143896 absolute error = 1.9343144325341437e-16 relative error = 2.5319875892723557611232942263800e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.389 Order of pole = 2.178 x[1] = -0.957 y[1] (analytic) = -0.76342929162344625271998180524668 y[1] (numeric) = -0.76342929162344644697205242998204 absolute error = 1.9425207062473536e-16 relative error = 2.5444670876022428239068653150731e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.389 Order of pole = 2.178 x[1] = -0.956 y[1] (analytic) = -0.76290706900770891006494554053962 y[1] (numeric) = -0.762907069007709105139767673435 absolute error = 1.9507482213289538e-16 relative error = 2.5569932441001436952795605212458e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.388 Order of pole = 2.178 x[1] = -0.955 y[1] (analytic) = -0.76238432443698015025991756025857 y[1] (numeric) = -0.76238432443698034615961214127873 absolute error = 1.9589969458102016e-16 relative error = 2.5695661400920308036131498469488e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.387 Order of pole = 2.178 x[1] = -0.954 y[1] (analytic) = -0.7618610574144584533147142118633 y[1] (numeric) = -0.76186105741445865004139889616059 absolute error = 1.9672668468429729e-16 relative error = 2.5821858561970888923771614801730e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.387 Order of pole = 2.178 x[1] = -0.953 y[1] (analytic) = -0.7613372674434931709380990691512 y[1] (numeric) = -0.76133726744349336849388813845749 absolute error = 1.9755578906930629e-16 relative error = 2.5948524723173226051148034279523e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.386 Order of pole = 2.178 x[1] = -0.952 y[1] (analytic) = -0.76081295402758825538333502154699 y[1] (numeric) = -0.76081295402758845377033929489289 absolute error = 1.9838700427334590e-16 relative error = 2.6075660676270777605574070432006e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.385 Order of pole = 2.179 x[1] = -0.951 y[1] (analytic) = -0.76028811667040600534106551855479 y[1] (numeric) = -0.76028811667040620456139226231385 absolute error = 1.9922032674375906e-16 relative error = 2.6203267205624819086074627780110e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.385 Order of pole = 2.179 x[1] = -0.95 y[1] (analytic) = -0.75976275487577082892296119539998 y[1] (numeric) = -0.7597627548757710289787140326552 absolute error = 2.0005575283725522e-16 relative error = 2.6331345088107988622894672869557e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.384 Order of pole = 2.179 x[1] = -0.949 y[1] (analytic) = -0.75923686814767302377949538300192 y[1] (numeric) = -0.75923686814767322467277420223219 absolute error = 2.0089327881923027e-16 relative error = 2.6459895092997004306077639244030e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.383 Order of pole = 2.179 x[1] = -0.948 y[1] (analytic) = -0.75871045599027257439513742079615 y[1] (numeric) = -0.75871045599027277612803828388004 absolute error = 2.0173290086308389e-16 relative error = 2.6588917981864521347234972072556e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.383 Order of pole = 2.179 x[1] = -0.947 y[1] (analytic) = -0.75818351790790296660417623058367 y[1] (numeric) = -0.75818351790790316917879128011812 absolute error = 2.0257461504953445e-16 relative error = 2.6718414508470140224375118673220e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.382 Order of pole = 2.179 x[1] = -0.946 y[1] (analytic) = -0.75765605340507501937030825949417 y[1] (numeric) = -0.75765605340507522278872562542566 absolute error = 2.0341841736593149e-16 relative error = 2.6848385418650563802040424058908e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.381 Order of pole = 2.18 x[1] = -0.945 y[1] (analytic) = -0.75712806198648073387304364622577 y[1] (numeric) = -0.75712806198648093813734735179141 absolute error = 2.0426430370556564e-16 relative error = 2.6978831450208878933574217012541e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.381 Order of pole = 2.18 x[1] = -0.944 y[1] (analytic) = -0.75659954315699715994390229283119 y[1] (numeric) = -0.7565995431569973650561721598074 absolute error = 2.0511226986697621e-16 relative error = 2.7109753332802986797429497306964e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.38 Order of pole = 2.18 x[1] = -0.943 y[1] (analytic) = -0.75607049642169027989528742027612 y[1] (numeric) = -0.75607049642169048585759897353241 absolute error = 2.0596231155325629e-16 relative error = 2.7241151787833154751112821704490e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=160.2MB, alloc=4.4MB, time=22.18 Complex estimate of poles used Radius of convergence = 1.379 Order of pole = 2.18 x[1] = -0.942 y[1] (analytic) = -0.75554092128581890978483813556302 y[1] (numeric) = -0.75554092128581911659926250691845 absolute error = 2.0681442437135543e-16 relative error = 2.7373027528328692754343520929568e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.378 Order of pole = 2.18 x[1] = -0.941 y[1] (analytic) = -0.75501081725483861815797452710932 y[1] (numeric) = -0.75501081725483882582657835848932 absolute error = 2.0766860383138000e-16 relative error = 2.7505381258833761381845942957375e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.378 Order of pole = 2.18 x[1] = -0.94 y[1] (analytic) = -0.75448018383440566231125881895763 y[1] (numeric) = -0.75448018383440587083610416484868 absolute error = 2.0852484534589105e-16 relative error = 2.7638213675292281352295840470176e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.377 Order of pole = 2.181 x[1] = -0.939 y[1] (analytic) = -0.75394902053038094211910413889271 y[1] (numeric) = -0.75394902053038115150224836809258 absolute error = 2.0938314422919987e-16 relative error = 2.7771525464931964710060493168264e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.376 Order of pole = 2.181 x[1] = -0.938 y[1] (analytic) = -0.75341732684883397146626847621346 y[1] (numeric) = -0.75341732684883418170976417287467 absolute error = 2.1024349569666121e-16 relative error = 2.7905317306147456032881917564862e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.376 Order of pole = 2.181 x[1] = -0.937 y[1] (analytic) = -0.75288510229604686732847540727496 y[1] (numeric) = -0.75288510229604707843437027123906 absolute error = 2.1110589486396410e-16 relative error = 2.8039589868382569294471286139384e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.375 Order of pole = 2.181 x[1] = -0.936 y[1] (analytic) = -0.75235234637851835654340513644584 y[1] (numeric) = -0.75235234637851856851374188286623 absolute error = 2.1197033674642039e-16 relative error = 2.8174343812011629832265455153604e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.374 Order of pole = 2.181 x[1] = -0.935 y[1] (analytic) = -0.75181905860296780031419932224089 y[1] (numeric) = -0.75181905860296801315101558049188 absolute error = 2.1283681625825099e-16 relative error = 2.8309579788219912280113711607832e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.374 Order of pole = 2.181 x[1] = -0.934 y[1] (analytic) = -0.75128523847633923648752101846173 y[1] (numeric) = -0.75128523847633945019284923033149 absolute error = 2.1370532821186976e-16 relative error = 2.8445298438883161258071626595295e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.373 Order of pole = 2.182 x[1] = -0.933 y[1] (analytic) = -0.75075088550580543964810684353473 y[1] (numeric) = -0.75075088550580565422397416069992 absolute error = 2.1457586731716519e-16 relative error = 2.8581500396446206821551713939455e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.372 Order of pole = 2.182 x[1] = -0.932 y[1] (analytic) = -0.75021599919877199907164218315471 y[1] (numeric) = -0.75021599919877221452007036393453 absolute error = 2.1544842818077982e-16 relative error = 2.8718186283800661391462977392570e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.372 Order of pole = 2.182 x[1] = -0.931 y[1] (analytic) = -0.7496805790628814145776818170566 y[1] (numeric) = -0.74968057906288163090068712244397 absolute error = 2.1632300530538737e-16 relative error = 2.8855356714161687456051738496062e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.371 Order of pole = 2.182 x[1] = -0.93 y[1] (analytic) = -0.74914462460601721032422782543075 y[1] (numeric) = -0.74914462460601742752382091439843 absolute error = 2.1719959308896768e-16 relative error = 2.8993012290943842603809652261191e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.37 Order of pole = 2.182 x[1] = -0.929 y[1] (analytic) = -0.74860813533630806658546395930997 y[1] (numeric) = -0.74860813533630828466364978338944 absolute error = 2.1807818582407947e-16 relative error = 2.9131153607635996438659826579814e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.37 Order of pole = 2.183 x[1] = -0.928 y[1] (analytic) = -0.7480711107621319695540308372817 y[1] (numeric) = -0.74807111076213218851280853441254 absolute error = 2.1895877769713084e-16 relative error = 2.9269781247675301843020757908974e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.369 Order of pole = 2.183 x[1] = -0.927 y[1] (analytic) = -0.74753355039212037920910934316415 y[1] (numeric) = -0.74753355039212059905047213081187 absolute error = 2.1984136278764772e-16 relative error = 2.9408895784320241724175683722961e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.368 Order of pole = 2.183 x[1] = -0.926 y[1] (analytic) = -0.7469954537351624152914604308347 y[1] (numeric) = -0.74699545373516263601739549837477 absolute error = 2.2072593506754007e-16 relative error = 2.9548497780522717590673956994016e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.368 Order of pole = 2.183 x[1] = -0.925 y[1] (analytic) = -0.74645682030040906142644817817025 y[1] (numeric) = -0.74645682030040928303893657853627 absolute error = 2.2161248840036602e-16 relative error = 2.9688587788799198334459751249659e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.367 Order of pole = 2.183 x[1] = -0.924 y[1] (analytic) = -0.7459176495972773874359493569671 y[1] (numeric) = -0.74591764959727760993696589756096 absolute error = 2.2250101654059386e-16 relative error = 2.9829166351100910138703686751627e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.366 Order of pole = 2.183 x[1] = -0.923 y[1] (analytic) = -0.74537794113545478987992698462241 y[1] (numeric) = -0.74537794113545501327144011748438 absolute error = 2.2339151313286197e-16 relative error = 2.9970233998683072445601312090775e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.366 Order of pole = 2.184 x[1] = -0.922 y[1] (analytic) = -0.7448376944249032508683172811079 y[1] (numeric) = -0.74483769442490347515228899234458 absolute error = 2.2428397171123668e-16 relative error = 3.0111791251973171496834103308668e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.365 Order of pole = 2.184 x[1] = -0.921 y[1] (analytic) = -0.74429690897586361518374915613281 y[1] (numeric) = -0.74429690897586384036213485460094 absolute error = 2.2517838569846813e-16 relative error = 3.0253838620438273634039302082985e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.364 Order of pole = 2.184 x[1] = -0.92 y[1] (analytic) = -0.74375558429885988575548278111912 y[1] (numeric) = -0.74375558429886011183023118636311 absolute error = 2.2607474840524399e-16 relative error = 3.0396376602451352299643049136516e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.364 Order of pole = 2.184 x[1] = -0.919 y[1] (analytic) = -0.74321371990470353752481894339661 y[1] (numeric) = -0.74321371990470376449787197283794 absolute error = 2.2697305302944133e-16 relative error = 3.0539405685156660358597608652088e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.363 Order of pole = 2.184 x[1] = -0.918 y[1] (analytic) = -0.74267131530449784974209372052736 y[1] (numeric) = -0.74267131530449807761538637590379 absolute error = 2.2787329265537643e-16 relative error = 3.0682926344334112196531008513905e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.362 Order of pole = 2.184 x[1] = -0.917 y[1] (analytic) = -0.74212837000964225673523353550388 y[1] (numeric) = -0.74212837000964248551069378855653 absolute error = 2.2877546025305265e-16 relative error = 3.0826939044262684283817130565447e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=164.0MB, alloc=4.4MB, time=22.72 Complex estimate of poles used Radius of convergence = 1.362 Order of pole = 2.185 x[1] = -0.916 y[1] (analytic) = -0.74158488353183671718970384330967 y[1] (numeric) = -0.74158488353183694686925252071603 absolute error = 2.2967954867740636e-16 relative error = 3.0971444237582826739012665940256e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.361 Order of pole = 2.185 x[1] = -0.915 y[1] (analytic) = -0.74104085538308610197954054051997 y[1] (numeric) = -0.74104085538308633256509120807099 absolute error = 2.3058555066755102e-16 relative error = 3.1116442365157890501004332217500e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.36 Order of pole = 2.185 x[1] = -0.914 y[1] (analytic) = -0.74049628507570460058900666675088 y[1] (numeric) = -0.74049628507570483208246551277019 absolute error = 2.3149345884601931e-16 relative error = 3.1261933855934549062317753397488e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.36 Order of pole = 2.185 x[1] = -0.913 y[1] (analytic) = -0.73995117212232014616426806429228 y[1] (numeric) = -0.73995117212232037856753378229573 absolute error = 2.3240326571800345e-16 relative error = 3.1407919126802226001061109372791e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.359 Order of pole = 2.185 x[1] = -0.912 y[1] (analytic) = -0.73940551603587885923433036460311 y[1] (numeric) = -0.73940551603587909254929403519679 absolute error = 2.3331496367059368e-16 relative error = 3.1554398582451516597877623132299e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.358 Order of pole = 2.185 x[1] = -0.911 y[1] (analytic) = -0.73885931632964951014032596188535 y[1] (numeric) = -0.73885931632964974436887093390026 absolute error = 2.3422854497201491e-16 relative error = 3.1701372615231597142930197363848e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.358 Order of pole = 2.186 x[1] = -0.91 y[1] (analytic) = -0.73831257251722800021208349902745 y[1] (numeric) = -0.73831257251722823535608526988911 absolute error = 2.3514400177086166e-16 relative error = 3.1848841605006630372767127711857e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.357 Order of pole = 2.186 x[1] = -0.909 y[1] (analytic) = -0.73776528411254186173075381412421 y[1] (numeric) = -0.73776528411254209779207990945538 absolute error = 2.3606132609533117e-16 relative error = 3.1996805919011142970013865175727e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.356 Order of pole = 2.186 x[1] = -0.908 y[1] (analytic) = -0.73721745062985477671610526080511 y[1] (numeric) = -0.73721745062985501369661511325991 absolute error = 2.3698050985245480e-16 relative error = 3.2145265911704383444401113617235e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.356 Order of pole = 2.186 x[1] = -0.907 y[1] (analytic) = -0.73666907158377111457693780696961 y[1] (numeric) = -0.7366690715837713524784826342974 absolute error = 2.3790154482732779e-16 relative error = 3.2294221924623661949108032062646e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.355 Order of pole = 2.186 x[1] = -0.906 y[1] (analytic) = -0.73612014648924048866289931843169 y[1] (numeric) = -0.73612014648924072748732200076901 absolute error = 2.3882442268233732e-16 relative error = 3.2443674286236655908859798014406e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.354 Order of pole = 2.186 x[1] = -0.905 y[1] (analytic) = -0.73557067486156233175581893057822 y[1] (numeric) = -0.73557067486156257150495388696707 absolute error = 2.3974913495638885e-16 relative error = 3.2593623311792670651142747120853e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.354 Order of pole = 2.187 x[1] = -0.904 y[1] (analytic) = -0.73502065621639049053850138657306 y[1] (numeric) = -0.73502065621639073121417445070408 absolute error = 2.4067567306413102e-16 relative error = 3.2744069303172884955303533875115e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.353 Order of pole = 2.187 x[1] = -0.903 y[1] (analytic) = -0.73447009006973783907875265898499 y[1] (numeric) = -0.73447009006973808068278095416376 absolute error = 2.4160402829517877e-16 relative error = 3.2895012548739527171736092746273e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.352 Order of pole = 2.187 x[1] = -0.902 y[1] (analytic) = -0.73391897593798091136623105704051 y[1] (numeric) = -0.73391897593798115390042287037559 absolute error = 2.4253419181333508e-16 relative error = 3.3046453323184028038651310831235e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.352 Order of pole = 2.187 x[1] = -0.901 y[1] (analytic) = -0.73336731333786455293953933803141 y[1] (numeric) = -0.73336731333786479640569399384249 absolute error = 2.4346615465581108e-16 relative error = 3.3198391887374107941269421461729e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.351 Order of pole = 2.187 x[1] = -0.9 y[1] (analytic) = -0.73281510178650659164079207273428 y[1] (numeric) = -0.73281510178650683604069980517895 absolute error = 2.4439990773244467e-16 relative error = 3.3350828488199809295891321635687e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.35 Order of pole = 2.187 x[1] = -0.899 y[1] (analytic) = -0.73226234080140252753470864499028 y[1] (numeric) = -0.73226234080140277287015046990805 absolute error = 2.4533544182491777e-16 relative error = 3.3503763358418482046528119767778e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.35 Order of pole = 2.187 x[1] = -0.898 y[1] (analytic) = -0.73170902990043024202909577878 y[1] (numeric) = -0.73170902990043048830184336475203 absolute error = 2.4627274758597203e-16 relative error = 3.3657196716498690648987736129508e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.349 Order of pole = 2.187 x[1] = -0.897 y[1] (analytic) = -0.73115516860185472623339436611259 y[1] (numeric) = -0.73115516860185497344520990473582 absolute error = 2.4721181553862323e-16 relative error = 3.3811128766463065405862421278864e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.348 Order of pole = 2.188 x[1] = -0.896 y[1] (analytic) = -0.73060075642433282859177359970418 y[1] (numeric) = -0.73060075642433307674440967507842 absolute error = 2.4815263607537424e-16 relative error = 3.3965559697730071851663197433439e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.348 Order of pole = 2.188 x[1] = -0.895 y[1] (analytic) = -0.73004579288691802182706097959097 y[1] (numeric) = -0.73004579288691827092226043701769 absolute error = 2.4909519945742672e-16 relative error = 3.4120489684954714162436163754327e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.347 Order of pole = 2.188 x[1] = -0.894 y[1] (analytic) = -0.72949027750906518923159964632426 y[1] (numeric) = -0.72949027750906543927109546021573 absolute error = 2.5003949581389147e-16 relative error = 3.4275918887868151620697254195562e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.346 Order of pole = 2.188 x[1] = -0.893 y[1] (analytic) = -0.72893420981063543034092467901531 y[1] (numeric) = -0.72893420981063568132643982001287 absolute error = 2.5098551514099756e-16 relative error = 3.4431847451116237191210377868746e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.346 Order of pole = 2.188 x[1] = -0.892 y[1] (analytic) = -0.72837758931190088602594746799975 y[1] (numeric) = -0.72837758931190113795919476929992 absolute error = 2.5193324730130017e-16 relative error = 3.4588275504096959831314336919965e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.345 Order of pole = 2.188 x[1] = -0.891 y[1] (analytic) = -0.72782041553354958303913201300904 y[1] (numeric) = -0.72782041553354983592181403589637 absolute error = 2.5288268202288733e-16 relative error = 3.4745203160796807741298286528290e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=167.8MB, alloc=4.4MB, time=23.27 Complex estimate of poles used Radius of convergence = 1.344 Order of pole = 2.188 x[1] = -0.89 y[1] (analytic) = -0.72726268799669029804993899218082 y[1] (numeric) = -0.72726268799669055188374789076622 absolute error = 2.5383380889858540e-16 relative error = 3.4902630519626021711006663235691e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.344 Order of pole = 2.188 x[1] = -0.889 y[1] (analytic) = -0.72670440622285744120460267869537 y[1] (numeric) = -0.72670440622285769599122006385884 absolute error = 2.5478661738516347e-16 relative error = 3.5060557663252754286948780972375e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.343 Order of pole = 2.188 x[1] = -0.888 y[1] (analytic) = -0.7261455697340159592450922339541 y[1] (numeric) = -0.72614556973401621498618903649085 absolute error = 2.5574109680253675e-16 relative error = 3.5218984658436135402899928739296e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.342 Order of pole = 2.189 x[1] = -0.887 y[1] (analytic) = -0.72558617805256625822189256265554 y[1] (numeric) = -0.7255861780525665149191288956243 absolute error = 2.5669723633296876e-16 relative error = 3.5377911555858209258505859388310e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.342 Order of pole = 2.189 x[1] = -0.886 y[1] (analytic) = -0.72502623070134914583502075949023 y[1] (numeric) = -0.72502623070134940349004577976286 absolute error = 2.5765502502027263e-16 relative error = 3.5537338389954775946458000572812e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.341 Order of pole = 2.189 x[1] = -0.885 y[1] (analytic) = -0.72446572720365079343747219306286 y[1] (numeric) = -0.72446572720365105205192396207427 absolute error = 2.5861445176901141e-16 relative error = 3.5697265178745114912524646896231e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.34 Order of pole = 2.189 x[1] = -0.884 y[1] (analytic) = -0.72390466708320771773506544363048 y[1] (numeric) = -0.72390466708320797731057078732786 absolute error = 2.5957550534369738e-16 relative error = 3.5857691923660579593673367860306e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.34 Order of pole = 2.189 x[1] = -0.883 y[1] (analytic) = -0.72334304986421178221642762087224 y[1] (numeric) = -0.72334304986421204275460198886279 absolute error = 2.6053817436799055e-16 relative error = 3.6018618609372080132646396377810e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.339 Order of pole = 2.189 x[1] = -0.882 y[1] (analytic) = -0.72278087507131521834663101971347 y[1] (numeric) = -0.72278087507131547984907834360976 absolute error = 2.6150244732389629e-16 relative error = 3.6180045203616436553489483900077e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.338 Order of pole = 2.189 x[1] = -0.881 y[1] (analytic) = -0.72221814222963566655775860972884 y[1] (numeric) = -0.72221814222963592902607116069089 absolute error = 2.6246831255096205e-16 relative error = 3.6341971657021587411905081459536e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.338 Order of pole = 2.189 x[1] = -0.88 y[1] (analytic) = -0.7216548508647612370694394803436 y[1] (numeric) = -0.72165485086476150050519772581709 absolute error = 2.6343575824547349e-16 relative error = 3.6504397902930688695553844469743e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.337 Order of pole = 2.189 x[1] = -0.879 y[1] (analytic) = -0.72109100050275559057215606341951 y[1] (numeric) = -0.72109100050275585497692852306918 absolute error = 2.6440477245964967e-16 relative error = 3.6667323857225045021308427165583e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.336 Order of pole = 2.189 x[1] = -0.878 y[1] (analytic) = -0.72052659067016303880588271031575 y[1] (numeric) = -0.72052659067016330418122581115349 absolute error = 2.6537534310083774e-16 relative error = 3.6830749418145924425130973717264e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.336 Order of pole = 2.189 x[1] = -0.877 y[1] (analytic) = -0.71996162089401366506636999560608 y[1] (numeric) = -0.71996162089401393141382792631292 absolute error = 2.6634745793070684e-16 relative error = 3.6994674466115206936462931388947e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.335 Order of pole = 2.189 x[1] = -0.876 y[1] (analytic) = -0.71939609070182846467114093774452 y[1] (numeric) = -0.71939609070182873199224550218601 absolute error = 2.6732110456444149e-16 relative error = 3.7159098863554896018448097612909e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.334 Order of pole = 2.189 x[1] = -0.875 y[1] (analytic) = -0.7188299996216245054170141515259 y[1] (numeric) = -0.71882999962162477371328462146028 absolute error = 2.6829627046993438e-16 relative error = 3.7324022454705470634399860850293e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.334 Order of pole = 2.189 x[1] = -0.874 y[1] (analytic) = -0.71826334718192010806071476159228 y[1] (numeric) = -0.7182633471819203773336577285709 absolute error = 2.6927294296697862e-16 relative error = 3.7489445065443076413250926685075e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.333 Order of pole = 2.189 x[1] = -0.873 y[1] (analytic) = -0.71769613291174004685387669388919 y[1] (numeric) = -0.71769613291174031710498592034882 absolute error = 2.7025110922645963e-16 relative error = 3.7655366503095571065677340221940e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.332 Order of pole = 2.189 x[1] = -0.872 y[1] (analytic) = -0.71712835634062077016347970626342 y[1] (numeric) = -0.71712835634062104139423597580983 absolute error = 2.7123075626954641e-16 relative error = 3.7821786556257377911087466552738e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.332 Order of pole = 2.189 x[1] = -0.871 y[1] (analytic) = -0.71656001699861564120850120369166 y[1] (numeric) = -0.71656001699861591342037217057433 absolute error = 2.7221187096688267e-16 relative error = 3.7988704994603204322711928789171e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.331 Order of pole = 2.189 x[1] = -0.87 y[1] (analytic) = -0.71599111441630019894329649130695 y[1] (numeric) = -0.71599111441630047213773652908436 absolute error = 2.7319444003777741e-16 relative error = 3.8156121568700557923467960156993e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.33 Order of pole = 2.189 x[1] = -0.869 y[1] (analytic) = -0.7154216481247774391179516328036 y[1] (numeric) = -0.71542164812477771329640168219895 absolute error = 2.7417845004939535e-16 relative error = 3.8324036009821106126257953137079e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.33 Order of pole = 2.189 x[1] = -0.868 y[1] (analytic) = -0.71485161765568311554558048630709 y[1] (numeric) = -0.71485161765568339070946790225417 absolute error = 2.7516388741594708e-16 relative error = 3.8492448029750850729175340180803e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.329 Order of pole = 2.189 x[1] = -0.867 y[1] (analytic) = -0.71428102254119106160626176773712 y[1] (numeric) = -0.71428102254119133775700016561618 absolute error = 2.7615073839787906e-16 relative error = 3.8661357320599125463711311235592e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.328 Order of pole = 2.189 x[1] = -0.866 y[1] (analytic) = -0.7137098623140185320170331264127 y[1] (numeric) = -0.71370986231401880915602222747607 absolute error = 2.7713898910106337e-16 relative error = 3.8830763554606392186131777990714e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.328 Order of pole = 2.189 x[1] = -0.865 y[1] (analytic) = -0.71313813650743156489707719248401 y[1] (numeric) = -0.7131381365074318430257026684715 absolute error = 2.7812862547598749e-16 relative error = 3.9000666383950864499501370128866e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.327 memory used=171.6MB, alloc=4.4MB, time=23.83 Order of pole = 2.189 x[1] = -0.864 y[1] (analytic) = -0.7125658446552503641569493540621 y[1] (numeric) = -0.71256584465525064327658267100607 absolute error = 2.7911963331694397e-16 relative error = 3.9171065440553928803892183710675e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.327 Order of pole = 2.189 x[1] = -0.863 y[1] (analytic) = -0.71199298629185470224040862698539 y[1] (numeric) = -0.71199298629185498235240688820558 absolute error = 2.8011199826122019e-16 relative error = 3.9341960335884380300084160679921e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.326 Order of pole = 2.189 x[1] = -0.862 y[1] (analytic) = -0.71141956095218934324712137534374 y[1] (numeric) = -0.7114195609521896243528271636318 absolute error = 2.8110570578828806e-16 relative error = 3.9513350660761442354545822109482e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.325 Order of pole = 2.189 x[1] = -0.861 y[1] (analytic) = -0.71084556817176948646421280950628 y[1] (numeric) = -0.71084556817176976856495402850019 absolute error = 2.8210074121899391e-16 relative error = 3.9685235985156593667639710716476e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.325 Order of pole = 2.189 x[1] = -0.86 y[1] (analytic) = -0.71027100748668623033434311380219 y[1] (numeric) = -0.71027100748668651343143282855076 absolute error = 2.8309708971474857e-16 relative error = 3.9857615857994192613803918988067e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.324 Order of pole = 2.189 x[1] = -0.859 y[1] (analytic) = -0.70969587843361205688768372151701 y[1] (numeric) = -0.7096958784336123409824199982346 absolute error = 2.8409473627671759e-16 relative error = 4.0030489806950880975226083028395e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.323 Order of pole = 2.189 x[1] = -0.858 y[1] (analytic) = -0.70912018054980633666486464382927 y[1] (numeric) = -0.70912018054980662175853038884109 absolute error = 2.8509366574501182e-16 relative error = 4.0203857338253787217080536788972e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.323 Order of pole = 2.189 x[1] = -0.857 y[1] (analytic) = -0.7085439133731208541576558550652 y[1] (numeric) = -0.70854391337312114025151865294344 absolute error = 2.8609386279787824e-16 relative error = 4.0377717936477502975323157833978e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.322 Order of pole = 2.189 x[1] = -0.856 y[1] (analytic) = -0.70796707644200535379383452253935 y[1] (numeric) = -0.70796707644200564088914647343059 absolute error = 2.8709531195089124e-16 relative error = 4.0552071064339850010389105881032e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.321 Order of pole = 2.189 x[1] = -0.855 y[1] (analytic) = -0.70738966929551310649237532863155 y[1] (numeric) = -0.70738966929551339459037288477583 absolute error = 2.8809799755614428e-16 relative error = 4.0726916162496416790285573750404e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.321 Order of pole = 2.189 x[1] = -0.854 y[1] (analytic) = -0.70681169147330649681478324898522 y[1] (numeric) = -0.70681169147330678591668705042729 absolute error = 2.8910190380144207e-16 relative error = 4.0902252649333873407465464997475e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.32 Order of pole = 2.189 x[1] = -0.853 y[1] (analytic) = -0.70623314251566263073806690717074 y[1] (numeric) = -0.70623314251566292084508161666408 absolute error = 2.9010701470949334e-16 relative error = 4.1078079920762063644970192091294e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.319 Order of pole = 2.189 x[1] = -0.852 y[1] (analytic) = -0.70565402196347896407452600621932 y[1] (numeric) = -0.70565402196347925518784014332343 absolute error = 2.9111331413710411e-16 relative error = 4.1254397350004850291497815999396e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.319 Order of pole = 2.189 x[1] = -0.851 y[1] (analytic) = -0.7050743293582789515631983244893 y[1] (numeric) = -0.70507432935827924368398409886108 absolute error = 2.9212078577437178e-16 relative error = 4.1431204287389747763619562735298e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.318 Order of pole = 2.188 x[1] = -0.85 y[1] (analytic) = -0.704494064242217716657480340782 y[1] (numeric) = -0.7044940642422180097868934846618 absolute error = 2.9312941314387980e-16 relative error = 4.1608500060136296793398038827249e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.317 Order of pole = 2.188 x[1] = -0.849 y[1] (analytic) = -0.70391322615808774203310070489447 y[1] (numeric) = -0.70391322615808803617228030478772 absolute error = 2.9413917959989325e-16 relative error = 4.1786283972143216582905820461730e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.317 Order of pole = 2.188 x[1] = -0.848 y[1] (analytic) = -0.70333181464932458084028747831459 y[1] (numeric) = -0.70333181464932487599035580586972 absolute error = 2.9515006832755513e-16 relative error = 4.1964555303774294670577340531662e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.316 Order of pole = 2.188 x[1] = -0.847 y[1] (analytic) = -0.70274982926001258872362831897636 y[1] (numeric) = -0.70274982926001288488569066106008 absolute error = 2.9616206234208372e-16 relative error = 4.2143313311643054143594453997514e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.315 Order of pole = 2.188 x[1] = -0.846 y[1] (analytic) = -0.70216726953489067663277755736639 y[1] (numeric) = -0.70216726953489097380792204533711 absolute error = 2.9717514448797072e-16 relative error = 4.2322557228396145487769431986681e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.315 Order of pole = 2.188 x[1] = -0.845 y[1] (analytic) = -0.70158413501935808444681539228811 y[1] (numeric) = -0.70158413501935838263611283046874 absolute error = 2.9818929743818063e-16 relative error = 4.2502286262495516882444740608406e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.314 Order of pole = 2.188 x[1] = -0.844 y[1] (analytic) = -0.70100042525948017543471220675283 y[1] (numeric) = -0.70100042525948047463921590010386 absolute error = 2.9920450369335103e-16 relative error = 4.2682499597999302948096083723739e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.313 Order of pole = 2.188 x[1] = -0.843 y[1] (analytic) = -0.70041613980199425157399525129839 y[1] (numeric) = -0.70041613980199455179474083229252 absolute error = 3.0022074558099413e-16 relative error = 4.2863196394341472887806970746121e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.313 Order of pole = 2.188 x[1] = -0.842 y[1] (analytic) = -0.69983127819431538974935564708506 y[1] (numeric) = -0.69983127819431569098736090178458 absolute error = 3.0123800525469952e-16 relative error = 4.3044375786110216329319688461425e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.312 Order of pole = 2.188 x[1] = -0.841 y[1] (analytic) = -0.69924583998454229885257080795234 y[1] (numeric) = -0.69924583998454260110883550129053 absolute error = 3.0225626469333819e-16 relative error = 4.3226036882825065015649519750271e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.311 Order of pole = 2.187 x[1] = -0.84 y[1] (analytic) = -0.69865982472146319780475095283515 y[1] (numeric) = -0.69865982472146350108025665310301 absolute error = 3.0327550570026786e-16 relative error = 4.3408178768712744150355218945124e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.311 Order of pole = 2.187 x[1] = -0.839 y[1] (analytic) = -0.69807323195456171452154836115342 y[1] (numeric) = -0.69807323195456201881725826369329 absolute error = 3.0429570990253987e-16 relative error = 4.3590800502481777209108055498654e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.31 Order of pole = 2.187 memory used=175.4MB, alloc=4.4MB, time=24.37 x[1] = -0.838 y[1] (analytic) = -0.6974860612340228058415943976546 y[1] (numeric) = -0.69748606123402311115845314776195 absolute error = 3.0531685875010735e-16 relative error = 4.3773901117095792166583153150418e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.309 Order of pole = 2.187 x[1] = -0.837 y[1] (analytic) = -0.69689831211073869843805208337957 y[1] (numeric) = -0.69689831211073900477698559841469 absolute error = 3.0633893351503512e-16 relative error = 4.3957479619545581451077358085203e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.309 Order of pole = 2.187 x[1] = -0.836 y[1] (analytic) = -0.69630998413631485073279109964804 y[1] (numeric) = -0.69630998413631515809470639035913 absolute error = 3.0736191529071109e-16 relative error = 4.4141534990619870598663392088307e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.308 Order of pole = 2.187 x[1] = -0.835 y[1] (analytic) = -0.69572107686307593583230756595716 y[1] (numeric) = -0.69572107686307624421809255701662 absolute error = 3.0838578499105946e-16 relative error = 4.4326066184674826418363343161658e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.308 Order of pole = 2.187 x[1] = -0.834 y[1] (analytic) = -0.69513158984407184550412271423008 y[1] (numeric) = -0.69513158984407215491464606398558 absolute error = 3.0941052334975550e-16 relative error = 4.4511072129402260846425600211101e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.307 Order of pole = 2.186 x[1] = -0.833 y[1] (analytic) = -0.69454152263308371521200267474446 y[1] (numeric) = -0.69454152263308402564811359418684 absolute error = 3.1043611091944238e-16 relative error = 4.4696551725596585680292652724258e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.306 Order of pole = 2.186 x[1] = -0.832 y[1] (analytic) = -0.69395087478462997022794597715901 y[1] (numeric) = -0.69395087478463028169047404810873 absolute error = 3.1146252807094972e-16 relative error = 4.4882503846920458439879607248973e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.306 Order of pole = 2.186 x[1] = -0.831 y[1] (analytic) = -0.69335964585397239283848603721595 y[1] (numeric) = -0.69335964585397270532824102973016 absolute error = 3.1248975499251421e-16 relative error = 4.5068927339669157233803053279532e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.305 Order of pole = 2.186 x[1] = -0.83 y[1] (analytic) = -0.69276783539712221066245282985001 y[1] (numeric) = -0.69276783539712252418022451885223 absolute error = 3.1351777168900222e-16 relative error = 4.5255821022533660660193795192109e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.304 Order of pole = 2.186 x[1] = -0.829 y[1] (analytic) = -0.69217544297084620609693112653644 y[1] (numeric) = -0.69217544297084652064348910767099 absolute error = 3.1454655798113455e-16 relative error = 4.5443183686362441800021374421186e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.304 Order of pole = 2.186 x[1] = -0.828 y[1] (analytic) = -0.69158246813267284690774208276376 y[1] (numeric) = -0.69158246813267316248383558747714 absolute error = 3.1557609350471338e-16 relative error = 4.5631014093921972372602234403597e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.303 Order of pole = 2.186 x[1] = -0.827 y[1] (analytic) = -0.69098891044089843798036058456422 y[1] (numeric) = -0.69098891044089875458671829441565 absolute error = 3.1660635770985143e-16 relative error = 4.5819310979655925823372935189860e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.302 Order of pole = 2.185 x[1] = -0.826 y[1] (analytic) = -0.69039476945459329424676258516441 y[1] (numeric) = -0.69039476945459361188409244536796 absolute error = 3.1763732986020355e-16 relative error = 4.6008073049443098417375126405058e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.302 Order of pole = 2.185 x[1] = -0.825 y[1] (analytic) = -0.68980004473360793480327466816595 y[1] (numeric) = -0.68980004473360825347226370036655 absolute error = 3.1866898903220060e-16 relative error = 4.6197298980354015317420107653365e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.301 Order of pole = 2.185 x[1] = -0.824 y[1] (analytic) = -0.68920473583857929823407224641217 y[1] (numeric) = -0.68920473583857961793538636069814 absolute error = 3.1970131411428597e-16 relative error = 4.6386987420406259457580455710985e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.3 Order of pole = 2.185 x[1] = -0.823 y[1] (analytic) = -0.68860884233093697915454313007522 y[1] (numeric) = -0.68860884233093729988882693622974 absolute error = 3.2073428380615452e-16 relative error = 4.6577136988318478471437559473959e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.3 Order of pole = 2.185 x[1] = -0.822 y[1] (analytic) = -0.68801236377290948598829965778962 y[1] (numeric) = -0.68801236377290980775617627578389 absolute error = 3.2176787661799427e-16 relative error = 4.6767746273263104528110052249482e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.299 Order of pole = 2.185 x[1] = -0.821 y[1] (analytic) = -0.68741529972753051999118516519992 y[1] (numeric) = -0.68741529972753084279325603493069 absolute error = 3.2280207086973077e-16 relative error = 4.6958813834617763944662043930539e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.298 Order of pole = 2.184 x[1] = -0.82 y[1] (analytic) = -0.6868176497586452755351792504699 y[1] (numeric) = -0.6868176497586455993720239407442 absolute error = 3.2383684469027430e-16 relative error = 4.7150338201715385277443188426666e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.298 Order of pole = 2.184 x[1] = -0.819 y[1] (analytic) = -0.68621941343091676166466107056475 y[1] (numeric) = -0.68621941343091708653683708733464 absolute error = 3.2487217601676989e-16 relative error = 4.7342317873592991302057939702934e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.297 Order of pole = 2.184 x[1] = -0.818 y[1] (analytic) = -0.68562059030983214493704074996715 y[1] (numeric) = -0.68562059030983247084508334381759 absolute error = 3.2590804259385044e-16 relative error = 4.7534751318739202449952978370833e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.297 Order of pole = 2.184 x[1] = -0.817 y[1] (analytic) = -0.68502117996170911355931588948628 y[1] (numeric) = -0.68502117996170944050373786237896 absolute error = 3.2694442197289268e-16 relative error = 4.7727636974840400595330220146725e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.296 Order of pole = 2.184 x[1] = -0.816 y[1] (analytic) = -0.68442118195370226283165311158532 y[1] (numeric) = -0.68442118195370259081294462286181 absolute error = 3.2798129151127649e-16 relative error = 4.7920973248525615655641150696561e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.295 Order of pole = 2.184 x[1] = -0.815 y[1] (analytic) = -0.68382059585380950190863355487523 y[1] (numeric) = -0.68382059585380983092726192652245 absolute error = 3.2901862837164722e-16 relative error = 4.8114758515110069180878775376823e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.295 Order of pole = 2.183 x[1] = -0.814 y[1] (analytic) = -0.68321942123087848188833621884604 y[1] (numeric) = -0.68321942123087881194474574002754 absolute error = 3.3005640952118150e-16 relative error = 4.8308991118337433017790540402514e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.294 Order of pole = 2.183 x[1] = -0.813 y[1] (analytic) = -0.68261765765461304523896404534848 y[1] (numeric) = -0.68261765765461337633357577620473 absolute error = 3.3109461173085625e-16 relative error = 4.8503669370120747240444430203668e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.293 Order of pole = 2.183 memory used=179.3MB, alloc=4.4MB, time=24.93 x[1] = -0.812 y[1] (analytic) = -0.68201530469557969657224459067786 y[1] (numeric) = -0.68201530469558002870545616539914 absolute error = 3.3213321157472128e-16 relative error = 4.8698791550282040811828805091815e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.293 Order of pole = 2.183 x[1] = -0.811 y[1] (analytic) = -0.68141236192521409477236007630161 y[1] (numeric) = -0.68141236192521442794454550547702 absolute error = 3.3317218542917541e-16 relative error = 4.8894355906290631203685658252526e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.292 Order of pole = 2.183 x[1] = -0.81 y[1] (analytic) = -0.68080882891582756648868049233182 y[1] (numeric) = -0.68080882891582790070018996457799 absolute error = 3.3421150947224617e-16 relative error = 4.9090360653000098090842100471482e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.291 Order of pole = 2.183 x[1] = -0.809 y[1] (analytic) = -0.68020470524061364100008825087016 y[1] (numeric) = -0.68020470524061397625124793374345 absolute error = 3.3525115968287329e-16 relative error = 4.9286803972383948215922859819785e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.291 Order of pole = 2.182 x[1] = -0.808 y[1] (analytic) = -0.6795999904736546064581936315132 y[1] (numeric) = -0.67959999047365494274930547170923 absolute error = 3.3629111184019603e-16 relative error = 4.9483684013269965060760237869956e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.29 Order of pole = 2.182 x[1] = -0.807 y[1] (analytic) = -0.67899468418992808751624691384673 y[1] (numeric) = -0.67899468418992842484758843669101 absolute error = 3.3733134152284428e-16 relative error = 4.9680998891073219204646497269470e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.29 Order of pole = 2.182 x[1] = -0.806 y[1] (analytic) = -0.67838878596531364435005563700132 y[1] (numeric) = -0.67838878596531398272187974523514 absolute error = 3.3837182410823382e-16 relative error = 4.9878746687527782847190332228160e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.289 Order of pole = 2.182 x[1] = -0.805 y[1] (analytic) = -0.67778229537659939307671384969174 y[1] (numeric) = -0.67778229537659973248924862155725 absolute error = 3.3941253477186551e-16 relative error = 5.0076925450417100771605541157675e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.288 Order of pole = 2.182 x[1] = -0.804 y[1] (analytic) = -0.67717521200148864757644450110429 y[1] (numeric) = -0.67717521200148898802989298773305 absolute error = 3.4045344848662876e-16 relative error = 5.0275533193303055294583544704940e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.288 Order of pole = 2.182 x[1] = -0.803 y[1] (analytic) = -0.67656753541860658272234625909796 y[1] (numeric) = -0.67656753541860692421688628120716 absolute error = 3.4149454002210920e-16 relative error = 5.0474567895253699424080109848173e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.287 Order of pole = 2.181 x[1] = -0.802 y[1] (analytic) = -0.67595926520750691902232201310071 y[1] (numeric) = -0.67595926520750726155810595700145 absolute error = 3.4253578394390074e-16 relative error = 5.0674027500569672166420221014609e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.286 Order of pole = 2.181 x[1] = -0.801 y[1] (analytic) = -0.67535040094867862867694811055325 y[1] (numeric) = -0.67535040094867897225410272347532 absolute error = 3.4357715461292207e-16 relative error = 5.0873909918509289256471926968762e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.286 Order of pole = 2.181 x[1] = -0.8 y[1] (analytic) = -0.67474094222355266305652097360981 y[1] (numeric) = -0.67474094222355300767514715834752 absolute error = 3.4461862618473771e-16 relative error = 5.1074213023012311390449985856148e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.285 Order of pole = 2.181 x[1] = -0.799 y[1] (analytic) = -0.67413088861450870159999113297004 y[1] (numeric) = -0.67413088861450904726016374185373 absolute error = 3.4566017260888369e-16 relative error = 5.1274934652422387567732285807030e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.284 Order of pole = 2.181 x[1] = -0.798 y[1] (analytic) = -0.67352023970488192213796388420386 y[1] (numeric) = -0.6735202397048822688397315124018 absolute error = 3.4670176762819794e-16 relative error = 5.1476072609208171092699636812765e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.284 Order of pole = 2.181 x[1] = -0.797 y[1] (analytic) = -0.67290899507896979264141070485116 y[1] (numeric) = -0.67290899507897014038479548300675 absolute error = 3.4774338477815559e-16 relative error = 5.1677624659683123564761043635892e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.283 Order of pole = 2.181 x[1] = -0.796 y[1] (analytic) = -0.6722971543220388843971962541381 y[1] (numeric) = -0.67229715432203923318219364034719 absolute error = 3.4878499738620909e-16 relative error = 5.1879588533723979122502659244529e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.283 Order of pole = 2.18 x[1] = -0.795 y[1] (analytic) = -0.67168471702033170661098219765699 y[1] (numeric) = -0.67168471702033205643756076879042 absolute error = 3.4982657857113343e-16 relative error = 5.2081961924487896053211772483989e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.282 Order of pole = 2.18 x[1] = -0.794 y[1] (analytic) = -0.67107168276107356243752124321432 y[1] (numeric) = -0.6710716827610739133056224855908 absolute error = 3.5086810124237648e-16 relative error = 5.2284742488128284294719767990929e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.281 Order of pole = 2.18 x[1] = -0.793 y[1] (analytic) = -0.67045805113247942643780262777169 y[1] (numeric) = -0.67045805113247977834734072718617 absolute error = 3.5190953809941448e-16 relative error = 5.2487927843509298726257099630091e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.281 Order of pole = 2.18 x[1] = -0.792 y[1] (analytic) = -0.66984382172376084346195384560104 y[1] (numeric) = -0.66984382172376119641281547671404 absolute error = 3.5295086163111300e-16 relative error = 5.2691515571919031326526495659612e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.28 Order of pole = 2.18 x[1] = -0.791 y[1] (analytic) = -0.66922899412513284895624264117225 y[1] (numeric) = -0.66922899412513320294828675626538 absolute error = 3.5399204411509313e-16 relative error = 5.2895503216781351803639954597320e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.279 Order of pole = 2.18 x[1] = -0.79 y[1] (analytic) = -0.66861356792782091069195819371662 y[1] (numeric) = -0.66861356792782126572501581081997 absolute error = 3.5503305761710335e-16 relative error = 5.3099888283366449091640553798713e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.279 Order of pole = 2.18 x[1] = -0.789 y[1] (analytic) = -0.66799754272406789191338098080874 y[1] (numeric) = -0.6679975427240682479872549712057 absolute error = 3.5607387399039696e-16 relative error = 5.3304668238500041126509294941013e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.278 Order of pole = 2.179 x[1] = -0.788 y[1] (analytic) = -0.6673809181071410359014770127346 y[1] (numeric) = -0.66738091810714139301594188784986 absolute error = 3.5711446487511526e-16 relative error = 5.3509840510271266486535530826741e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.277 Order of pole = 2.179 x[1] = -0.787 y[1] (analytic) = -0.6667636936713389719493739650383 y[1] (numeric) = -0.66676369367133933010417566271482 absolute error = 3.5815480169767652e-16 relative error = 5.3715402487739249047614666362238e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.277 Order of pole = 2.179 memory used=183.1MB, alloc=4.4MB, time=25.48 x[1] = -0.786 y[1] (analytic) = -0.66614586901199874274509419075016 y[1] (numeric) = -0.66614586901199910193994986092113 absolute error = 3.5919485567017097e-16 relative error = 5.3921351520638355222819924032212e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.276 Order of pole = 2.179 x[1] = -0.785 y[1] (analytic) = -0.66552744372550285315643265380409 y[1] (numeric) = -0.66552744372550321339103044356582 absolute error = 3.6023459778976173e-16 relative error = 5.4127684919082116883425816392115e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.276 Order of pole = 2.179 x[1] = -0.784 y[1] (analytic) = -0.6649084174092863404122764785805 y[1] (numeric) = -0.6649084174092867016862753166725 absolute error = 3.6127399883809200e-16 relative error = 5.4334399953265852979314672908707e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.275 Order of pole = 2.179 x[1] = -0.783 y[1] (analytic) = -0.66428878966184386567406704501692 y[1] (numeric) = -0.6642887896618442279870964257153 absolute error = 3.6231302938069838e-16 relative error = 5.4541493853167955343261038158293e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.274 Order of pole = 2.179 x[1] = -0.782 y[1] (analytic) = -0.66366856008273682699050536209043 y[1] (numeric) = -0.66366856008273719034216512852112 absolute error = 3.6335165976643069e-16 relative error = 5.4748963808249879207005662824472e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.274 Order of pole = 2.179 x[1] = -0.781 y[1] (analytic) = -0.66304772827260049362799681260274 y[1] (numeric) = -0.66304772827260085801785693948087 absolute error = 3.6438986012687813e-16 relative error = 5.4956806967154799288498681501314e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.273 Order of pole = 2.179 x[1] = -0.78 y[1] (analytic) = -0.66242629383315116176872226712701 y[1] (numeric) = -0.66242629383315152719632264292913 absolute error = 3.6542760037580212e-16 relative error = 5.5165020437404967458893942118486e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.272 Order of pole = 2.179 x[1] = -0.779 y[1] (analytic) = -0.66180425636719333156760900287767 y[1] (numeric) = -0.66180425636719369803245921145343 absolute error = 3.6646485020857576e-16 relative error = 5.5373601285097747789685599600205e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.272 Order of pole = 2.178 x[1] = -0.778 y[1] (analytic) = -0.66118161547862690555885682244484 y[1] (numeric) = -0.66118161547862727306043592407498 absolute error = 3.6750157910163014e-16 relative error = 5.5582546534600348421761658456355e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.271 Order of pole = 2.178 x[1] = -0.777 y[1] (analytic) = -0.66055837077245440840205223623725 y[1] (numeric) = -0.66055837077245477693980854814477 absolute error = 3.6853775631190752e-16 relative error = 5.5791853168243238015847874046850e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.271 Order of pole = 2.178 x[1] = -0.776 y[1] (analytic) = -0.65993452185478822795727653968384 y[1] (numeric) = -0.65993452185478859753062741600539 absolute error = 3.6957335087632155e-16 relative error = 5.6001518126012257143536639822631e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.27 Order of pole = 2.178 x[1] = -0.775 y[1] (analytic) = -0.65931006833285787767798207047818 y[1] (numeric) = -0.6593100683328582482863136817028 absolute error = 3.7060833161122462e-16 relative error = 5.6211538305239422885171856039042e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.269 Order of pole = 2.178 x[1] = -0.774 y[1] (analytic) = -0.65868500981501728030977486128001 y[1] (numeric) = -0.65868500981501765195244197316249 absolute error = 3.7164266711188248e-16 relative error = 5.6421910560292432441359988792596e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.269 Order of pole = 2.178 x[1] = -0.773 y[1] (analytic) = -0.65805934591075207288260129832832 y[1] (numeric) = -0.6580593459107524455589270502845 absolute error = 3.7267632575195618e-16 relative error = 5.6632631702262857895236152014687e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.268 Order of pole = 2.178 x[1] = -0.772 y[1] (analytic) = -0.65743307623068693298319124553388 y[1] (numeric) = -0.65743307623068730669246692852537 absolute error = 3.7370927568299149e-16 relative error = 5.6843698498653040897389374938093e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.268 Order of pole = 2.178 x[1] = -0.771 y[1] (analytic) = -0.65680620038659292629396038611918 y[1] (numeric) = -0.65680620038659330103544522003516 absolute error = 3.7474148483391598e-16 relative error = 5.7055107673061699120157642965249e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.267 Order of pole = 2.178 x[1] = -0.77 y[1] (analytic) = -0.65617871799139487538392025922877 y[1] (numeric) = -0.65617871799139525115684116977247 absolute error = 3.7577292091054370e-16 relative error = 5.7266855904868219806288312105464e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.266 Order of pole = 2.178 x[1] = -0.769 y[1] (analytic) = -0.65555062865917874973648561676434 y[1] (numeric) = -0.65555062865917912654003701185213 absolute error = 3.7680355139508779e-16 relative error = 5.7478939828915675003207652901578e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.266 Order of pole = 2.178 x[1] = -0.768 y[1] (analytic) = -0.65492193200519907699840528578902 y[1] (numeric) = -0.65492193200519945483174883146993 absolute error = 3.7783334354568091e-16 relative error = 5.7691356035192526119022412845693e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.265 Order of pole = 2.178 x[1] = -0.767 y[1] (analytic) = -0.65429262764588637543337468413477 y[1] (numeric) = -0.65429262764588675429563908003865 absolute error = 3.7886226439590388e-16 relative error = 5.7904101068513061569514370382841e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.264 Order of pole = 2.178 x[1] = -0.766 y[1] (analytic) = -0.65366271519885460756321549144051 y[1] (numeric) = -0.65366271519885498745349624576287 absolute error = 3.7989028075432236e-16 relative error = 5.8117171428196525914686536547225e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.264 Order of pole = 2.178 x[1] = -0.765 y[1] (analytic) = -0.65303219428290865497883071501561 y[1] (numeric) = -0.65303219428290903589618991904752 absolute error = 3.8091735920403191e-16 relative error = 5.8330563567744976623452784326156e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.263 Order of pole = 2.178 x[1] = -0.764 y[1] (analytic) = -0.65240106451805181430246150010213 y[1] (numeric) = -0.65240106451805219624592760231356 absolute error = 3.8194346610221143e-16 relative error = 5.8544273894519852732680026297897e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.263 Order of pole = 2.178 x[1] = -0.763 y[1] (analytic) = -0.6517693255254933142820855079063 y[1] (numeric) = -0.65176932552549369725065308759149 absolute error = 3.8296856757968519e-16 relative error = 5.8758298769417271728892628505130e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.262 Order of pole = 2.178 x[1] = -0.762 y[1] (analytic) = -0.65113697692765585399810551296651 y[1] (numeric) = -0.65113697692765623799073505345994 absolute error = 3.8399262954049343e-16 relative error = 5.8972634506542035748735611863043e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.261 Order of pole = 2.178 x[1] = -0.761 y[1] (analytic) = -0.65050401834818316216178104497632 y[1] (numeric) = -0.65050401834818354717739870644816 absolute error = 3.8501561766147184e-16 relative error = 5.9187277372880378741279469083027e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.261 Order of pole = 2.178 memory used=186.9MB, alloc=4.4MB, time=26.04 x[1] = -0.76 y[1] (analytic) = -0.64987044941194757748415541022072 y[1] (numeric) = -0.64987044941194796352165280206062 absolute error = 3.8603749739183990e-16 relative error = 5.9402223587971435666500067004457e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.26 Order of pole = 2.178 x[1] = -0.759 y[1] (analytic) = -0.64923626974505765009352526562472 y[1] (numeric) = -0.64923626974505803715175921842296 absolute error = 3.8705823395279824e-16 relative error = 5.9617469323577442345958280957265e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.26 Order of pole = 2.178 x[1] = -0.758 y[1] (analytic) = -0.6486014789748657639787900755522 y[1] (numeric) = -0.64860147897486615205658241268739 absolute error = 3.8807779233713519e-16 relative error = 5.9833010703352676155210626323933e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.259 Order of pole = 2.178 x[1] = -0.757 y[1] (analytic) = -0.6479660767299757804353042496109 y[1] (numeric) = -0.64796607672997616953144155845345 absolute error = 3.8909613730884255e-16 relative error = 6.0048843802511126185908933004555e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.258 Order of pole = 2.178 x[1] = -0.756 y[1] (analytic) = -0.64733006264025070248913553068554 y[1] (numeric) = -0.6473300626402510926023689334264 absolute error = 3.9011323340274086e-16 relative error = 6.0264964647492920001233837282507e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.258 Order of pole = 2.178 x[1] = -0.755 y[1] (analytic) = -0.6466934363368203602749092682959 y[1] (numeric) = -0.64669343633682075140395419241002 absolute error = 3.9112904492411412e-16 relative error = 6.0481369215629483257770179170183e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.257 Order of pole = 2.178 x[1] = -0.754 y[1] (analytic) = -0.64605619745208911734168956541143 y[1] (numeric) = -0.64605619745208950948522551376563 absolute error = 3.9214353594835420e-16 relative error = 6.0698053434807453132903220102798e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.257 Order of pole = 2.178 x[1] = -0.753 y[1] (analytic) = -0.64541834561974359786061491949861 y[1] (numeric) = -0.64541834561974399101728524011362 absolute error = 3.9315667032061501e-16 relative error = 6.0915013183131340287762341617008e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.256 Order of pole = 2.178 x[1] = -0.752 y[1] (analytic) = -0.64477988047476043470726788347657 y[1] (numeric) = -0.64477988047476082887567953895323 absolute error = 3.9416841165547666e-16 relative error = 6.1132244288584958834200146983251e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.255 Order of pole = 2.178 x[1] = -0.751 y[1] (analytic) = -0.64414080165341403839101544225916 y[1] (numeric) = -0.64414080165341443356973877887877 absolute error = 3.9517872333661961e-16 relative error = 6.1349742528691608187816981228523e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.255 Order of pole = 2.178 x[1] = -0.75 y[1] (analytic) = -0.64350110879328438680280922871732 y[1] (numeric) = -0.64350110879328478299037774522624 absolute error = 3.9618756851650892e-16 relative error = 6.1567503630173007620926232301484e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.254 Order of pole = 2.178 x[1] = -0.749 y[1] (analytic) = -0.64286080153326483575218238246156 y[1] (numeric) = -0.64286080153326523294709249855055 absolute error = 3.9719491011608899e-16 relative error = 6.1785523268607027856880684993337e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.254 Order of pole = 2.178 x[1] = -0.748 y[1] (analytic) = -0.64221987951356995026342277928661 y[1] (numeric) = -0.64221987951357034846413360377518 absolute error = 3.9820071082448857e-16 relative error = 6.2003797068084169383988585603523e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.253 Order of pole = 2.179 x[1] = -0.747 y[1] (analytic) = -0.64157834237574335660014052211505 y[1] (numeric) = -0.64157834237574375580507362085147 absolute error = 3.9920493309873642e-16 relative error = 6.2222320600862830251183459826252e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.252 Order of pole = 2.179 x[1] = -0.746 y[1] (analytic) = -0.64093618976266561498668097971591 y[1] (numeric) = -0.64093618976266601519422014320353 absolute error = 4.0020753916348762e-16 relative error = 6.2441089387023347127942435591534e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.252 Order of pole = 2.179 x[1] = -0.745 y[1] (analytic) = -0.64029342131856211299406328146577 y[1] (numeric) = -0.64029342131856251420255429222655 absolute error = 4.0120849101076078e-16 relative error = 6.2660098894120832292405983909171e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.251 Order of pole = 2.179 x[1] = -0.744 y[1] (analytic) = -0.63965003668901097955734801929148 y[1] (numeric) = -0.6396500366890113817650984189776 absolute error = 4.0220775039968612e-16 relative error = 6.2879344536836785586845658627684e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.251 Order of pole = 2.179 x[1] = -0.743 y[1] (analytic) = -0.63900603552095101959055696623484 y[1] (numeric) = -0.63900603552095142279583582249964 absolute error = 4.0320527885626480e-16 relative error = 6.3098821676629524340246821154232e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.25 Order of pole = 2.179 x[1] = -0.742 y[1] (analytic) = -0.63836141746268966916448188958658 y[1] (numeric) = -0.63836141746269007336551956272588 absolute error = 4.0420103767313930e-16 relative error = 6.3318525621383383714525704373804e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.249 Order of pole = 2.179 x[1] = -0.741 y[1] (analytic) = -0.63771618216391097121192901025105 y[1] (numeric) = -0.63771618216391137640691691962635 absolute error = 4.0519498790937530e-16 relative error = 6.3538451625056741440559493932678e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.249 Order of pole = 2.179 x[1] = -0.74 y[1] (analytic) = -0.63707032927568357172415033415913 y[1] (numeric) = -0.63707032927568397791124072441418 absolute error = 4.0618709039025505e-16 relative error = 6.3758594887328849109449001560723e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.248 Order of pole = 2.179 x[1] = -0.739 y[1] (analytic) = -0.63642385845046873640141295161108 y[1] (numeric) = -0.6364238584504691435787186586934 absolute error = 4.0717730570708232e-16 relative error = 6.3978950553245467720965033456446e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.248 Order of pole = 2.179 x[1] = -0.738 y[1] (analytic) = -0.63577676934212838771985246210598 y[1] (numeric) = -0.63577676934212879588544667910519 absolute error = 4.0816559421699921e-16 relative error = 6.4199513712863335025409693797894e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.247 Order of pole = 2.18 x[1] = -0.737 y[1] (analytic) = -0.63512906160593316237594693144324 y[1] (numeric) = -0.63512906160593357152786297425807 absolute error = 4.0915191604281483e-16 relative error = 6.4420279400893449877070827227375e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.246 Order of pole = 2.18 x[1] = -0.736 y[1] (analytic) = -0.6344807348985704890691332208467 y[1] (numeric) = -0.63448073489857089920536429369274 absolute error = 4.1013623107284604e-16 relative error = 6.4641242596343187035474926672079e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.246 Order of pole = 2.18 x[1] = -0.735 y[1] (analytic) = -0.63383178887815268658226814099248 y[1] (numeric) = -0.63383178887815309770076710176288 absolute error = 4.1111849896077040e-16 relative error = 6.4862398222157249618795828680894e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.245 Order of pole = 2.18 x[1] = -0.734 memory used=190.7MB, alloc=4.4MB, time=26.58 y[1] (analytic) = -0.63318222320422508211881267379345 y[1] (numeric) = -0.63318222320422549421749179928489 absolute error = 4.1209867912549144e-16 relative error = 6.5083741144857460125016709481680e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.245 Order of pole = 2.18 x[1] = -0.733 y[1] (analytic) = -0.63253203753777414985478846853174 y[1] (numeric) = -0.63253203753777456293151921954819 absolute error = 4.1307673075101645e-16 relative error = 6.5305266174181405142233010116965e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.244 Order of pole = 2.18 x[1] = -0.732 y[1] (analytic) = -0.63188123154123566966272195361638 y[1] (numeric) = -0.63188123154123608371533473996315 absolute error = 4.1405261278634677e-16 relative error = 6.5526968062719914147293279894530e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.244 Order of pole = 2.18 x[1] = -0.731 y[1] (analytic) = -0.63122980487850290596395270830971 y[1] (numeric) = -0.63122980487850332099023665369068 absolute error = 4.1502628394538097e-16 relative error = 6.5748841505553417553154659359797e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.243 Order of pole = 2.181 x[1] = -0.73 y[1] (analytic) = -0.63057775721493480666483920791007 y[1] (numeric) = -0.63057775721493522266254191474094 absolute error = 4.1599770270683087e-16 relative error = 6.5970881139887159731657433167300e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.242 Order of pole = 2.181 x[1] = -0.729 y[1] (analytic) = -0.6299250882173642221315466890534 y[1] (numeric) = -0.62992508821736463909837400320398 absolute error = 4.1696682731415058e-16 relative error = 6.6193081544685279020907078676826e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.242 Order of pole = 2.181 x[1] = -0.728 y[1] (analytic) = -0.62927179755410614415724867722518 y[1] (numeric) = -0.62927179755410656209086445270392 absolute error = 4.1793361577547874e-16 relative error = 6.6415437240303766797064224281505e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.241 Order of pole = 2.181 x[1] = -0.727 y[1] (analytic) = -0.62861788489496596487471567474472 y[1] (numeric) = -0.62861788489496638377274153833881 absolute error = 4.1889802586359409e-16 relative error = 6.6637942688122309808256445740106e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.241 Order of pole = 2.181 x[1] = -0.726 y[1] (analytic) = -0.62796334991124775556640162315481 y[1] (numeric) = -0.62796334991124817542641673903932 absolute error = 4.1986001511588451e-16 relative error = 6.6860592290175021567600683397846e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.24 Order of pole = 2.181 x[1] = -0.725 y[1] (analytic) = -0.62730819227576256532327102815488 y[1] (numeric) = -0.62730819227576298614281186248457 absolute error = 4.2081954083432969e-16 relative error = 6.7083380388780071811071131087842e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.239 Order of pole = 2.182 x[1] = -0.724 y[1] (analytic) = -0.62665241166283673950273706726331 y[1] (numeric) = -0.62665241166283716127929715276076 absolute error = 4.2177656008549745e-16 relative error = 6.7306301266168200732804850397162e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.239 Order of pole = 2.182 x[1] = -0.723 y[1] (analytic) = -0.6259960077483202579352035898733 y[1] (numeric) = -0.62599600774832068066623329042745 absolute error = 4.2273102970055415e-16 relative error = 6.7529349144110171664853856746826e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.238 Order of pole = 2.182 x[1] = -0.722 y[1] (analytic) = -0.62533898020959509282782166614858 y[1] (numeric) = -0.62533898020959551651072794143756 absolute error = 4.2368290627528898e-16 relative error = 6.7752518183543112348444368513376e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.238 Order of pole = 2.182 x[1] = -0.721 y[1] (analytic) = -0.62468132872558358631318424544497 y[1] (numeric) = -0.6246813287255840109453304155975 absolute error = 4.2463214617015253e-16 relative error = 6.7975802484195792147961493732437e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.237 Order of pole = 2.182 x[1] = -0.72 y[1] (analytic) = -0.62402305297675684758979054708821 y[1] (numeric) = -0.62402305297675727316849605739787 absolute error = 4.2557870551030966e-16 relative error = 6.8199196084212822036302428618238e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.237 Order of pole = 2.182 x[1] = -0.719 y[1] (analytic) = -0.62336415264514316960021502712216 y[1] (numeric) = -0.62336415264514359612275521282906 absolute error = 4.2652254018570690e-16 relative error = 6.8422692959777797731536274683006e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.236 Order of pole = 2.183 x[1] = -0.718 y[1] (analytic) = -0.62270462741433646519201414509621 y[1] (numeric) = -0.62270462741433689265561999625061 absolute error = 4.2746360585115440e-16 relative error = 6.8646287024735372787931315566582e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.235 Order of pole = 2.183 x[1] = -0.717 y[1] (analytic) = -0.62204447696950472270549769641355 y[1] (numeric) = -0.62204447696950515110735562283634 absolute error = 4.2840185792642279e-16 relative error = 6.8869972130212302965878547118801e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.235 Order of pole = 2.183 x[1] = -0.716 y[1] (analytic) = -0.62138370099739848093158017984252 y[1] (numeric) = -0.62138370099739891026883177619736 absolute error = 4.2933725159635484e-16 relative error = 6.9093742064237427893990728114093e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.234 Order of pole = 2.183 x[1] = -0.715 y[1] (analytic) = -0.62072229918635932338201153843224 y[1] (numeric) = -0.62072229918635975365175334942452 absolute error = 4.3026974181099228e-16 relative error = 6.9317590551360631441367175031669e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.234 Order of pole = 2.183 x[1] = -0.714 y[1] (analytic) = -0.62006027122632839181336564751054 y[1] (numeric) = -0.62006027122632882301264893322834 absolute error = 4.3119928328571780e-16 relative error = 6.9541511252270767713809043118704e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.233 Order of pole = 2.184 x[1] = -0.713 y[1] (analytic) = -0.61939761680885491894523912822447 y[1] (numeric) = -0.61939761680885535107106962963693 absolute error = 4.3212583050141246e-16 relative error = 6.9765497763412573356434522169000e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.233 Order of pole = 2.184 x[1] = -0.712 y[1] (analytic) = -0.61873433562710478031218244207203 y[1] (numeric) = -0.61873433562710521336152014670064 absolute error = 4.3304933770462861e-16 relative error = 6.9989543616602565988455347095998e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.232 Order of pole = 2.184 x[1] = -0.711 y[1] (analytic) = -0.61807042737586906518794977424468 y[1] (numeric) = -0.61807042737586949915770868202314 absolute error = 4.3396975890777846e-16 relative error = 7.0213642278643935043481697680575e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.231 Order of pole = 2.184 x[1] = -0.71 y[1] (analytic) = -0.61740589175157266651971394484851 y[1] (numeric) = -0.61740589175157310140676183418701 absolute error = 4.3488704788933850e-16 relative error = 7.0437787150940441038356804559501e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.231 Order of pole = 2.184 x[1] = -0.709 y[1] (analytic) = -0.61674072845228288980894750101495 y[1] (numeric) = -0.61674072845228332561010569508487 absolute error = 4.3580115819406992e-16 relative error = 7.0661971569109331302546218682684e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.23 Order of pole = 2.185 x[1] = -0.708 y[1] (analytic) = -0.61607493717771808087472124369114 y[1] (numeric) = -0.61607493717771851758676437694622 absolute error = 4.3671204313325508e-16 relative error = 7.0886188802593264016322045037448e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=194.5MB, alloc=4.4MB, time=27.12 Complex estimate of poles used Radius of convergence = 1.23 Order of pole = 2.185 x[1] = -0.707 y[1] (analytic) = -0.6154085176292562724342167349853 y[1] (numeric) = -0.61540851762925671005387251993564 absolute error = 4.3761965578495034e-16 relative error = 7.1110432054271274562718826431152e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.229 Order of pole = 2.185 x[1] = -0.706 y[1] (analytic) = -0.61474146950994384943428982013514 y[1] (numeric) = -0.61474146950994428795823881439041 absolute error = 4.3852394899425527e-16 relative error = 7.1334694460068771298091201869273e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.229 Order of pole = 2.185 x[1] = -0.705 y[1] (analytic) = -0.61407379252450423306695788760219 y[1] (numeric) = -0.61407379252450467249183326120063 absolute error = 4.3942487537359844e-16 relative error = 7.1558969088566577026526546565442e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.228 Order of pole = 2.185 x[1] = -0.704 y[1] (analytic) = -0.61340548637934658340071448694449 y[1] (numeric) = -0.61340548637934702372310178998445 absolute error = 4.4032238730303996e-16 relative error = 7.1783248940609027694572995120990e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.227 Order of pole = 2.185 x[1] = -0.703 y[1] (analytic) = -0.6127365507825745205586010327978 y[1] (numeric) = -0.61273655078257496177503796338868 absolute error = 4.4121643693059088e-16 relative error = 7.2007526948911130111865089339248e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.227 Order of pole = 2.186 x[1] = -0.702 y[1] (analytic) = -0.61206698544399486437298665065737 y[1] (numeric) = -0.61206698544399530647996282320703 absolute error = 4.4210697617254966e-16 relative error = 7.2231795977664796838338659677092e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.226 Order of pole = 2.186 x[1] = -0.701 y[1] (analytic) = -0.61139679007512639244602377270172 y[1] (numeric) = -0.61139679007512683543998048655752 absolute error = 4.4299395671385580e-16 relative error = 7.2456048822144156892121300699175e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.226 Order of pole = 2.186 x[1] = -0.7 y[1] (analytic) = -0.61072596438920861654375887649024 y[1] (numeric) = -0.61072596438920906042108888495102 absolute error = 4.4387733000846078e-16 relative error = 7.2680278208309950726981337176251e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.225 Order of pole = 2.186 x[1] = -0.699 y[1] (analytic) = -0.61005450810121057725088478320319 y[1] (numeric) = -0.6100545081012110220079320629198 absolute error = 4.4475704727971661e-16 relative error = 7.2904476792413042573018971747771e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.225 Order of pole = 2.186 x[1] = -0.698 y[1] (analytic) = -0.60938242092783965681212320273872 y[1] (numeric) = -0.6093824209278401024451827235206 absolute error = 4.4563305952078188e-16 relative error = 7.3128637160597016227959750932168e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.224 Order of pole = 2.187 x[1] = -0.697 y[1] (analytic) = -0.6087097025875504100852237383574 y[1] (numeric) = -0.60870970258755085659054123340309 absolute error = 4.4650531749504569e-16 relative error = 7.3352751828499900568835089811324e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.223 Order of pole = 2.187 x[1] = -0.696 y[1] (analytic) = -0.60803635280055341352955835195498 y[1] (numeric) = -0.60803635280055386090333008852452 absolute error = 4.4737377173656954e-16 relative error = 7.3576813240855022107965520211777e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.223 Order of pole = 2.187 x[1] = -0.695 y[1] (analytic) = -0.60736237128882413215327835109793 y[1] (numeric) = -0.60736237128882458039165090164525 absolute error = 4.4823837255054732e-16 relative error = 7.3800813771090991757141521314639e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.222 Order of pole = 2.187 x[1] = -0.694 y[1] (analytic) = -0.60668775777611180434098429969133 y[1] (numeric) = -0.60668775777611225344005431347485 absolute error = 4.4909907001378352e-16 relative error = 7.4024745720930829716159604503597e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.222 Order of pole = 2.187 x[1] = -0.693 y[1] (analytic) = -0.60601251198794834448283788495535 y[1] (numeric) = -0.60601251198794879443865186014526 absolute error = 4.4995581397518991e-16 relative error = 7.4248601319990253874064618059909e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.221 Order of pole = 2.187 x[1] = -0.692 y[1] (analytic) = -0.60533663365165726332501870402994 y[1] (numeric) = -0.60533663365165771413357276033066 absolute error = 4.5080855405630072e-16 relative error = 7.4472372725375120980760607534796e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.221 Order of pole = 2.188 x[1] = -0.691 y[1] (analytic) = -0.60466012249636260596039817414992 y[1] (numeric) = -0.60466012249636305761763782595656 absolute error = 4.5165723965180664e-16 relative error = 7.4696052021278057698279887348183e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.22 Order of pole = 2.188 x[1] = -0.69 y[1] (analytic) = -0.60398297825299790737726733146002 y[1] (numeric) = -0.60398297825299835987908726156764 absolute error = 4.5250181993010762e-16 relative error = 7.4919631218574262667753730432432e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.219 Order of pole = 2.188 x[1] = -0.689 y[1] (analytic) = -0.60330520065431516548291517607949 y[1] (numeric) = -0.60330520065431561882515900996421 absolute error = 4.5334224383388472e-16 relative error = 7.5143102254416505300305463800671e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.219 Order of pole = 2.188 x[1] = -0.688 y[1] (analytic) = -0.60262678943489383151780945627653 y[1] (numeric) = -0.60262678943489428569626953696769 absolute error = 4.5417846008069116e-16 relative error = 7.5366456991829330625560926714223e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.218 Order of pole = 2.188 x[1] = -0.687 y[1] (analytic) = -0.60194774433114981777508237426087 y[1] (numeric) = -0.60194774433115027278549953782354 absolute error = 4.5501041716356267e-16 relative error = 7.5589687219302471298326709107723e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.218 Order of pole = 2.188 x[1] = -0.686 y[1] (analytic) = -0.60126806508134452253896965223023 y[1] (numeric) = -0.60126806508134497837703300387764 absolute error = 4.5583806335164741e-16 relative error = 7.5812784650383496137059644457285e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.217 Order of pole = 2.188 x[1] = -0.685 y[1] (analytic) = -0.60058775142559387215479273239255 y[1] (numeric) = -0.60058775142559432881613942324797 absolute error = 4.5666134669085542e-16 relative error = 7.6035740923269673207682560249822e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.217 Order of pole = 2.189 x[1] = -0.684 y[1] (analytic) = -0.59990680310587738014201061160889 y[1] (numeric) = -0.59990680310587783762222561613691 absolute error = 4.5748021500452802e-16 relative error = 7.6258547600399101936230139979761e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.216 Order of pole = 2.189 x[1] = -0.683 y[1] (analytic) = -0.59922521986604722326079994334617 y[1] (numeric) = -0.59922521986604768155541583747318 absolute error = 4.5829461589412701e-16 relative error = 7.6481196168041074097389573986448e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.215 Order of pole = 2.189 x[1] = -0.682 y[1] (analytic) = -0.59854300145183733444154959048228 y[1] (numeric) = -0.59854300145183779354604633042639 absolute error = 4.5910449673994411e-16 relative error = 7.6703678035885721725117226025047e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=198.3MB, alloc=4.4MB, time=27.66 Complex estimate of poles used Radius of convergence = 1.215 Order of pole = 2.189 x[1] = -0.681 y[1] (analytic) = -0.59786014761087251248557879626971 y[1] (numeric) = -0.59786014761087297239538349810028 absolute error = 4.5990980470183057e-16 relative error = 7.6925984536632925209313645691654e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.214 Order of pole = 2.189 x[1] = -0.68 y[1] (analytic) = -0.59717665809267754844430657194869 y[1] (numeric) = -0.59717665809267800915479329189595 absolute error = 4.6071048671994726e-16 relative error = 7.7148106925580518224170054841593e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.214 Order of pole = 2.189 x[1] = -0.679 y[1] (analytic) = -0.59649253264868636858301379303678 y[1] (numeric) = -0.59649253264868683008950330857208 absolute error = 4.6150648951553530e-16 relative error = 7.7370036380211784551536936980536e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.213 Order of pole = 2.189 x[1] = -0.678 y[1] (analytic) = -0.59580777103225119383424886755647 y[1] (numeric) = -0.59580777103225165613200845926388 absolute error = 4.6229775959170741e-16 relative error = 7.7591763999782261952574849956537e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.213 Order of pole = 2.189 x[1] = -0.677 y[1] (analytic) = -0.59512237299865171564483270416632 y[1] (numeric) = -0.59512237299865217872907593842649 absolute error = 4.6308424323426017e-16 relative error = 7.7813280804905870055625507847488e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.212 Order of pole = 2.189 x[1] = -0.676 y[1] (analytic) = -0.59443633830510428811931908253125 y[1] (numeric) = -0.5944363383051047519852055950385 absolute error = 4.6386588651250725e-16 relative error = 7.8034577737140357510946993695140e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.212 Order of pole = 2.189 x[1] = -0.675 y[1] (analytic) = -0.59374966671077113636166242892846 y[1] (numeric) = -0.5937496667107716010042977090624 absolute error = 4.6464263528013394e-16 relative error = 7.8255645658572109089053545671575e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.211 Order of pole = 2.19 x[1] = -0.674 y[1] (analytic) = -0.59306235797676958091573644409534 y[1] (numeric) = -0.59306235797677004633017162016819 absolute error = 4.6541443517607285e-16 relative error = 7.8476475351400276209519450770869e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.21 Order of pole = 2.19 x[1] = -0.673 y[1] (analytic) = -0.59237441186618127820423403517565 y[1] (numeric) = -0.59237441186618174438546566057689 absolute error = 4.6618123162540124e-16 relative error = 7.8697057517520293645098297546651e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.21 Order of pole = 2.19 x[1] = -0.672 y[1] (analytic) = -0.59168582814406147686436158724269 y[1] (numeric) = -0.59168582814406194380733142750265 absolute error = 4.6694296984025996e-16 relative error = 7.8917382778106764603318849081067e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.209 Order of pole = 2.19 x[1] = -0.671 y[1] (analytic) = -0.59099660657744828987761879064397 y[1] (numeric) = -0.59099660657744875757721361143807 absolute error = 4.6769959482079410e-16 relative error = 7.9137441673195716525863315150956e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.209 Order of pole = 2.19 x[1] = -0.67 y[1] (analytic) = -0.59030674693537198238982903713835 y[1] (numeric) = -0.59030674693537245084088039325409 absolute error = 4.6845105135611574e-16 relative error = 7.9357224661266279094219145878102e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.208 Order of pole = 2.19 x[1] = -0.669 y[1] (analytic) = -0.58961624898886427511645482974902 y[1] (numeric) = -0.58961624898886474431373885503765 absolute error = 4.6919728402528863e-16 relative error = 7.9576722118821741435164421003449e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.208 Order of pole = 2.19 x[1] = -0.668 y[1] (analytic) = -0.58892511251096766322709773814752 y[1] (numeric) = -0.58892511251096813316533493648277 absolute error = 4.6993823719833525e-16 relative error = 7.9795924339970050394046046263967e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.207 Order of pole = 2.19 x[1] = -0.667 y[1] (analytic) = -0.58823333727674475060194319338716 y[1] (numeric) = -0.58823333727674522127579823065334 absolute error = 4.7067385503726618e-16 relative error = 8.0014821536003723926241290587170e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.207 Order of pole = 2.19 x[1] = -0.666 y[1] (analytic) = -0.58754092306328759935176687354266 y[1] (numeric) = -0.58754092306328807075584837067477 absolute error = 4.7140408149713211e-16 relative error = 8.0233403834979221495799228330390e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.206 Order of pole = 2.19 x[1] = -0.665 y[1] (analytic) = -0.58684786964972709449197160637497 y[1] (numeric) = -0.58684786964972756662083193347342 absolute error = 4.7212886032709845e-16 relative error = 8.0451661281295750719768673632522e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.205 Order of pole = 2.19 x[1] = -0.664 y[1] (analytic) = -0.58615417681724232365997162807491 y[1] (numeric) = -0.58615417681724279650810669961773 absolute error = 4.7284813507154282e-16 relative error = 8.0669583835273543897396310736100e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.205 Order of pole = 2.19 x[1] = -0.663 y[1] (analytic) = -0.585459844349069971764084710463 y[1] (numeric) = -0.58545984434907044532593378163862 absolute error = 4.7356184907117562e-16 relative error = 8.0887161372731624721888882083414e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.204 Order of pole = 2.19 x[1] = -0.662 y[1] (analytic) = -0.58476487203051373045093212522176 y[1] (numeric) = -0.5847648720305142047208775894054 absolute error = 4.7426994546418364e-16 relative error = 8.1104383684565044628501906593811e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.204 Order of pole = 2.19 x[1] = -0.661 y[1] (analytic) = -0.584069259648953722277181675768 y[1] (numeric) = -0.58406925964895419724954886316501 absolute error = 4.7497236718739701e-16 relative error = 8.1321240476321626255445965975203e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.203 Order of pole = 2.19 x[1] = -0.66 y[1] (analytic) = -0.58337300699385593947030011867094 y[1] (numeric) = -0.58337300699385641513935709615055 absolute error = 4.7566905697747961e-16 relative error = 8.1537721367778221002840182471605e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.203 Order of pole = 2.19 x[1] = -0.659 y[1] (analytic) = -0.58267611385678169716180824099949 y[1] (numeric) = -0.5826761138567821735217656131425 absolute error = 4.7635995737214301e-16 relative error = 8.1753815892516479168171632656691e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.202 Order of pole = 2.19 x[1] = -0.658 y[1] (analytic) = -0.58197858003139710097535468203206 y[1] (numeric) = -0.5819785800313975780203653934163 absolute error = 4.7704501071138424e-16 relative error = 8.1969513497498170650573344834430e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.202 Order of pole = 2.19 x[1] = -0.657 y[1] (analytic) = -0.58128040531348252885074331226501 y[1] (numeric) = -0.5812804053134830065749024510124 absolute error = 4.7772415913874739e-16 relative error = 8.2184803542640042979518071917524e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.201 Order of pole = 2.19 x[1] = -0.656 y[1] (analytic) = -0.58058158950094212698386363497623 y[1] (numeric) = -0.5805815895009426053812082375854 absolute error = 4.7839734460260917e-16 relative error = 8.2399675300388225697325358231284e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=202.1MB, alloc=4.4MB, time=28.21 Complex estimate of poles used Radius of convergence = 1.2 Order of pole = 2.19 x[1] = -0.655 y[1] (analytic) = -0.57988213239381331976128428159638 y[1] (numeric) = -0.57988213239381379882579313908521 absolute error = 4.7906450885748883e-16 relative error = 8.2614117955292236783174483431352e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.2 Order of pole = 2.19 x[1] = -0.654 y[1] (analytic) = -0.57918203379427633356707625816345 y[1] (numeric) = -0.57918203379427681329266972354565 absolute error = 4.7972559346538220e-16 relative error = 8.2828120603578536854816475922800e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.199 Order of pole = 2.19 x[1] = -0.653 y[1] (analytic) = -0.5784812935066637343382351930325 y[1] (numeric) = -0.5784812935066642147187749901528 absolute error = 4.8038053979712030e-16 relative error = 8.3041672252723695648950232601699e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.199 Order of pole = 2.19 x[1] = -0.652 y[1] (analytic) = -0.57777991133746997874387046313095 y[1] (numeric) = -0.57777991133747045977315949688351 absolute error = 4.8102928903375256e-16 relative error = 8.3254761821027164957855318148307e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.198 Order of pole = 2.19 x[1] = -0.651 y[1] (analytic) = -0.57707788709536097886212376523933 y[1] (numeric) = -0.57707788709536146053390593319404 absolute error = 4.8167178216795471e-16 relative error = 8.3467378137183655622872858616230e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.198 Order of pole = 2.19 x[1] = -0.65 y[1] (analytic) = -0.57637522059118368022757047839377 y[1] (numeric) = -0.57637522059118416253553048385542 absolute error = 4.8230796000546165e-16 relative error = 8.3679509939855159550608129893432e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.197 Order of pole = 2.189 x[1] = -0.649 y[1] (analytic) = -0.57567191163797565312064406241416 y[1] (numeric) = -0.57567191163797613605840722893948 absolute error = 4.8293776316652532e-16 relative error = 8.3891145877242607756706963661082e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.197 Order of pole = 2.189 x[1] = -0.648 y[1] (analytic) = -0.57496796005097469696940678513601 y[1] (numeric) = -0.57496796005097518053053887253368 absolute error = 4.8356113208739767e-16 relative error = 8.4102274506657169283981120039113e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.196 Order of pole = 2.189 x[1] = -0.647 y[1] (analytic) = -0.57426336564762845773276929705423 y[1] (numeric) = -0.57426336564762894191077631889329 absolute error = 4.8417800702183906e-16 relative error = 8.4312884294091235956896302593178e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.196 Order of pole = 2.189 x[1] = -0.646 y[1] (analytic) = -0.57355812824760405813303700718107 y[1] (numeric) = -0.57355812824760454292136504983309 absolute error = 4.8478832804265202e-16 relative error = 8.4522963613789068653552059379214e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.195 Order of pole = 2.189 x[1] = -0.645 y[1] (analytic) = -0.57285224767279774060443288890464 y[1] (numeric) = -0.57285224767279822599646793214527 absolute error = 4.8539203504324063e-16 relative error = 8.4732500747817138161815064505360e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.194 Order of pole = 2.189 x[1] = -0.644 y[1] (analytic) = -0.57214572374734452282301429095948 y[1] (numeric) = -0.57214572374734500881208203015506 absolute error = 4.8598906773919558e-16 relative error = 8.4941483885634159075260589837261e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.194 Order of pole = 2.189 x[1] = -0.643 y[1] (analytic) = -0.57143855629762786568216557826183 y[1] (numeric) = -0.57143855629762835226153124816704 absolute error = 4.8657936566990521e-16 relative error = 8.5149901123660857188497771844359e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.193 Order of pole = 2.189 x[1] = -0.642 y[1] (analytic) = -0.57073074515228935357660901282491 y[1] (numeric) = -0.57073074515228984073947721301724 absolute error = 4.8716286820019233e-16 relative error = 8.5357740464849423666230070645739e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.193 Order of pole = 2.189 x[1] = -0.641 y[1] (analytic) = -0.57002229014223838685663323928788 y[1] (numeric) = -0.57002229014223887459614776126528 absolute error = 4.8773951452197740e-16 relative error = 8.5564989818252745654643578447381e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.192 Order of pole = 2.189 x[1] = -0.64 y[1] (analytic) = -0.56931319110066188631299209633831 y[1] (numeric) = -0.56931319110066237462223575230612 absolute error = 4.8830924365596781e-16 relative error = 8.5771636998593356372043676974914e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.192 Order of pole = 2.188 x[1] = -0.639 y[1] (analytic) = -0.56860344786303400955167626858668 y[1] (numeric) = -0.56860344786303449842367072196028 absolute error = 4.8887199445337360e-16 relative error = 8.5977669725832152692885990162197e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.191 Order of pole = 2.188 x[1] = -0.638 y[1] (analytic) = -0.56789306026712587911650655791082 y[1] (numeric) = -0.56789306026712636854421215556055 absolute error = 4.8942770559764973e-16 relative error = 8.6183075624736888242264821995455e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.191 Order of pole = 2.188 x[1] = -0.637 y[1] (analytic) = -0.56718202815301532221624032411637 y[1] (numeric) = -0.56718202815301581219255593038133 absolute error = 4.8997631560626496e-16 relative error = 8.6387842224450441307812356226340e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.19 Order of pole = 2.188 x[1] = -0.636 y[1] (analytic) = -0.56647035136309662191162195769052 y[1] (numeric) = -0.56647035136309711242938479018803 absolute error = 4.9051776283249751e-16 relative error = 8.6591956958058876313214588647122e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.19 Order of pole = 2.188 x[1] = -0.635 y[1] (analytic) = -0.56575802974209027961654413874205 y[1] (numeric) = -0.56575802974209077066852960599975 absolute error = 4.9105198546725770e-16 relative error = 8.6795407162159323115149975381910e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.189 Order of pole = 2.188 x[1] = -0.634 y[1] (analytic) = -0.56504506313705278876621914275387 y[1] (numeric) = -0.56504506313705328034514068369138 absolute error = 4.9157892154093751e-16 relative error = 8.6998180076427652643590775282277e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.188 Order of pole = 2.188 x[1] = -0.633 y[1] (analytic) = -0.56433145139738641950398861290861 y[1] (numeric) = -0.56433145139738691160249753819604 absolute error = 4.9209850892528743e-16 relative error = 8.7200262843186003412982942248224e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.188 Order of pole = 2.187 x[1] = -0.632 y[1] (analytic) = -0.56361719437484901423712606842608 y[1] (numeric) = -0.56361719437484950684781140374651 absolute error = 4.9261068533532043e-16 relative error = 8.7401642506970118203236637245658e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.187 Order of pole = 2.187 x[1] = -0.631 y[1] (analytic) = -0.56290229192356379391070899707045 y[1] (numeric) = -0.56290229192356428702609732831402 absolute error = 4.9311538833124357e-16 relative error = 8.7602306014096572405483512003926e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.187 Order of pole = 2.187 x[1] = -0.63 y[1] (analytic) = -0.56218674390002917484735672680714 y[1] (numeric) = -0.56218674390002966845991204722401 absolute error = 4.9361255532041687e-16 relative error = 8.7802240212229816297958123261202e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=206.0MB, alloc=4.4MB, time=28.77 Complex estimate of poles used Radius of convergence = 1.186 Order of pole = 2.187 x[1] = -0.629 y[1] (analytic) = -0.56147055016312859599934642613475 y[1] (numeric) = -0.5614705501631290901014699854748 absolute error = 4.9410212355934005e-16 relative error = 8.8001431849949129079674136671588e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.186 Order of pole = 2.187 x[1] = -0.628 y[1] (analytic) = -0.56075371057414035645833258507828 y[1] (numeric) = -0.56075371057414085104236274074519 absolute error = 4.9458403015566691e-16 relative error = 8.8199867576315433722509881217637e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.185 Order of pole = 2.187 x[1] = -0.627 y[1] (analytic) = -0.56003622499674746306660521996036 y[1] (numeric) = -0.56003622499674795812481729020803 absolute error = 4.9505821207024767e-16 relative error = 8.8397533940438019422694118156951e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.185 Order of pole = 2.186 x[1] = -0.626 y[1] (analytic) = -0.55931809329704748797252886619788 y[1] (numeric) = -0.55931809329704798349713498539713 absolute error = 4.9552460611919925e-16 relative error = 8.8594417391041158158281676324642e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.184 Order of pole = 2.186 x[1] = -0.625 y[1] (analytic) = -0.55859931534356243597150821640166 y[1] (numeric) = -0.5585993153435629319546571924054 absolute error = 4.9598314897600374e-16 relative error = 8.8790504276030650090912290641679e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.184 Order of pole = 2.186 x[1] = -0.624 y[1] (analytic) = -0.5578798910072486214725270684647 y[1] (numeric) = -0.55787989100724911790630424209971 absolute error = 4.9643377717363501e-16 relative error = 8.8985780842060279169013198973341e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.183 Order of pole = 2.186 x[1] = -0.623 y[1] (analytic) = -0.55715982016150655492900511316377 y[1] (numeric) = -0.55715982016150705180543221987754 absolute error = 4.9687642710671377e-16 relative error = 8.9180233234098224747426380739212e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.182 Order of pole = 2.186 x[1] = -0.622 y[1] (analytic) = -0.55643910268219083857141205670568 y[1] (numeric) = -0.55643910268219133588244709039666 absolute error = 4.9731103503369098e-16 relative error = 8.9373847494993401867428354024578e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.182 Order of pole = 2.186 x[1] = -0.621 y[1] (analytic) = -0.55571773844762007127777068484036 y[1] (numeric) = -0.55571773844762056901530776390026 absolute error = 4.9773753707905990e-16 relative error = 8.9566609565041772775638383661765e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.181 Order of pole = 2.185 x[1] = -0.62 y[1] (analytic) = -0.55499572733858676241686977644094 y[1] (numeric) = -0.55499572733858726057273901203772 absolute error = 4.9815586923559678e-16 relative error = 8.9758505281552620489529628154131e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.181 Order of pole = 2.185 x[1] = -0.619 y[1] (analytic) = -0.5542730692383672544976943112058 y[1] (numeric) = -0.55427306923836775306366167783615 absolute error = 4.9856596736663035e-16 relative error = 8.9949520378414804028685105937750e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.18 Order of pole = 2.185 x[1] = -0.618 y[1] (analytic) = -0.55354976403273165445726423434827 y[1] (numeric) = -0.55354976403273215342503144268836 absolute error = 4.9896776720834009e-16 relative error = 9.0139640485662982659534208743471e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.18 Order of pole = 2.185 x[1] = -0.617 y[1] (analytic) = -0.55282581160995377341775418737637 y[1] (numeric) = -0.55282581160995427277895855946005 absolute error = 4.9936120437208368e-16 relative error = 9.0328851129043872384151622683011e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.179 Order of pole = 2.185 x[1] = -0.616 y[1] (analytic) = -0.5521012118608210747424451354934 y[1] (numeric) = -0.55210121186082157448865948224674 absolute error = 4.9974621434675334e-16 relative error = 9.0517137729582473632739206018105e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.179 Order of pole = 2.184 x[1] = -0.615 y[1] (analytic) = -0.55137596467864463021873476652808 y[1] (numeric) = -0.55137596467864513034146726768952 absolute error = 5.0012273250116144e-16 relative error = 9.0704485603148330036147259850534e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.178 Order of pole = 2.184 x[1] = -0.614 y[1] (analytic) = -0.55065006995926908419510695199093 y[1] (numeric) = -0.55065006995926958468580103844636 absolute error = 5.0049069408645543e-16 relative error = 9.0890879960021818900493900801701e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.178 Order of pole = 2.184 x[1] = -0.613 y[1] (analytic) = -0.54992352760108262549763149680776 y[1] (numeric) = -0.54992352760108312634766573536983 absolute error = 5.0085003423856207e-16 relative error = 9.1076305904460461329419478109442e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.177 Order of pole = 2.184 x[1] = -0.612 y[1] (analytic) = -0.5491963375050269669502339100622 y[1] (numeric) = -0.54919633750502746815092189072337 absolute error = 5.0120068798066117e-16 relative error = 9.1260748434265281737730702499139e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.177 Order of pole = 2.184 x[1] = -0.611 y[1] (analytic) = -0.5484684995746073323216410548511 y[1] (numeric) = -0.54846849957460783386423128053998 absolute error = 5.0154259022568888e-16 relative error = 9.1444192440347215867260428789667e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.176 Order of pole = 2.184 x[1] = -0.61 y[1] (analytic) = -0.54774001371590245052057233188898 y[1] (numeric) = -0.54774001371590295239624811075964 absolute error = 5.0187567577887066e-16 relative error = 9.1626622706293582885719376772112e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.176 Order of pole = 2.183 x[1] = -0.609 y[1] (analytic) = -0.54701087983757455685940757016806 y[1] (numeric) = -0.54701087983757505905928691045206 absolute error = 5.0219987934028400e-16 relative error = 9.1808023907934626395563441199971e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.175 Order of pole = 2.183 x[1] = -0.608 y[1] (analytic) = -0.54628109785087940120522209077634 y[1] (numeric) = -0.54628109785087990372035759822723 absolute error = 5.0251513550745089e-16 relative error = 9.1988380612910116467473117483333e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.174 Order of pole = 2.183 x[1] = -0.607 y[1] (analytic) = -0.54555066766967626283573652949589 y[1] (numeric) = -0.54555066766967676565711530745621 absolute error = 5.0282137877796032e-16 relative error = 9.2167677280236056103513657200047e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.174 Order of pole = 2.183 x[1] = -0.606 y[1] (analytic) = -0.54481958921043797181638400325995 y[1] (numeric) = -0.5448195892104384749349275553806 absolute error = 5.0311854355212065e-16 relative error = 9.2345898259871455291286352997955e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.173 Order of pole = 2.183 x[1] = -0.605 y[1] (analytic) = -0.54408786239226093671335013876632 y[1] (numeric) = -0.54408786239226144011991427440855 absolute error = 5.0340656413564223e-16 relative error = 9.2523027792285234715717413921515e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.173 Order of pole = 2.183 x[1] = -0.604 y[1] (analytic) = -0.54335548713687517845609240297155 y[1] (numeric) = -0.54335548713687568214146714532152 absolute error = 5.0368537474234997e-16 relative error = 9.2699050008023196768493461524286e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=209.8MB, alloc=4.4MB, time=29.32 Complex estimate of poles used Radius of convergence = 1.172 Order of pole = 2.182 x[1] = -0.603 y[1] (analytic) = -0.54262246336865437016149413988553 y[1] (numeric) = -0.54262246336865487411640363681182 absolute error = 5.0395490949692629e-16 relative error = 9.2873948927275135408105304773712e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.172 Order of pole = 2.182 x[1] = -0.602 y[1] (analytic) = -0.5418887910146258827304557817339 y[1] (numeric) = -0.54188879101462638694555821941824 absolute error = 5.0421510243768434e-16 relative error = 9.3047708459442057600587206201146e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.171 Order of pole = 2.182 x[1] = -0.601 y[1] (analytic) = -0.54115447000448083602637092145812 y[1] (numeric) = -0.54115447000448134049225844082971 absolute error = 5.0446588751937159e-16 relative error = 9.3220312402703527637490297362529e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.171 Order of pole = 2.182 x[1] = -0.6 y[1] (analytic) = -0.5404195002705841554435783646086 y[1] (numeric) = -0.54041950027058466015077698061246 absolute error = 5.0470719861600386e-16 relative error = 9.3391744443585140255542245209819e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.17 Order of pole = 2.182 x[1] = -0.599 y[1] (analytic) = -0.53968388174798463367252297950538 y[1] (numeric) = -0.53968388174798513861149250323525 absolute error = 5.0493896952372987e-16 relative error = 9.3561988156526130457225697114285e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.17 Order of pole = 2.182 x[1] = -0.598 y[1] (analytic) = -0.5389476143744249974669981932726 y[1] (numeric) = -0.538947614374425502628132156999 absolute error = 5.0516113396372640e-16 relative error = 9.3731027003447129931361323591640e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.169 Order of pole = 2.181 x[1] = -0.597 y[1] (analytic) = -0.53821069809035197921748139680147 y[1] (numeric) = -0.53821069809035248459110698192558 absolute error = 5.0537362558512411e-16 relative error = 9.3898844333318072708117230086537e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.169 Order of pole = 2.181 x[1] = -0.596 y[1] (analytic) = -0.53747313283892639313321038329677 y[1] (numeric) = -0.53747313283892689870958835126072 absolute error = 5.0557637796796395e-16 relative error = 9.4065423381726230444985406778713e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.168 Order of pole = 2.181 x[1] = -0.595 y[1] (analytic) = -0.53673491856603321583428431287756 y[1] (numeric) = -0.53673491856603372160360893906206 absolute error = 5.0576932462618450e-16 relative error = 9.4230747270444433972977752718072e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.168 Order of pole = 2.181 x[1] = -0.594 y[1] (analytic) = -0.53599605522029167115370663043049 y[1] (numeric) = -0.53599605522029217710610564107053 absolute error = 5.0595239901064004e-16 relative error = 9.4394799006999437670357194502126e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.167 Order of pole = 2.181 x[1] = -0.593 y[1] (analytic) = -0.53525654275306531894791992688144 y[1] (numeric) = -0.53525654275306582507345443903091 absolute error = 5.0612553451214947e-16 relative error = 9.4557561484240442598706102947017e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.167 Order of pole = 2.181 x[1] = -0.592 y[1] (analytic) = -0.53451638111847214771301398722078 y[1] (numeric) = -0.53451638111847265400167845179702 absolute error = 5.0628866446457624e-16 relative error = 9.4719017479907802058341050185913e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.166 Order of pole = 2.181 x[1] = -0.591 y[1] (analytic) = -0.53377557027339467080241827458693 y[1] (numeric) = -0.53377557027339517724414042252615 absolute error = 5.0644172214793922e-16 relative error = 9.4879149656201890456937373780042e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.166 Order of pole = 2.181 x[1] = -0.59 y[1] (analytic) = -0.53303411017749002604051892171453 y[1] (numeric) = -0.53303411017749053262515971326905 absolute error = 5.0658464079155452e-16 relative error = 9.5037940559352131245940903873052e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.165 Order of pole = 2.181 x[1] = -0.589 y[1] (analytic) = -0.53229200079320007852526800295814 y[1] (numeric) = -0.53229200079320058524262158016668 absolute error = 5.0671735357720854e-16 relative error = 9.5195372619186230420933124050435e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.165 Order of pole = 2.18 x[1] = -0.588 y[1] (analytic) = -0.53154924208576152641147950641846 y[1] (numeric) = -0.53154924208576203325127314878044 absolute error = 5.0683979364236198e-16 relative error = 9.5351428148699559196160065819241e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.164 Order of pole = 2.18 x[1] = -0.587 y[1] (analytic) = -0.53080583402321600946513208157198 y[1] (numeric) = -0.53080583402321651641702616495699 absolute error = 5.0695189408338501e-16 relative error = 9.5506089343624717443894292857377e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.164 Order of pole = 2.18 x[1] = -0.586 y[1] (analytic) = -0.53006177657642022017762336902401 y[1] (numeric) = -0.53006177657642072723121132784778 absolute error = 5.0705358795882377e-16 relative error = 9.5659338282001304250701246979309e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.163 Order of pole = 2.18 x[1] = -0.585 y[1] (analytic) = -0.52931706971905601722754459199737 y[1] (numeric) = -0.52931706971905652437235288469524 absolute error = 5.0714480829269787e-16 relative error = 9.5811156923745827846046736304368e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.163 Order of pole = 2.18 x[1] = -0.584 y[1] (analytic) = -0.52857171342764054107616717100159 y[1] (numeric) = -0.5285717134276410483016552488309 absolute error = 5.0722548807782931e-16 relative error = 9.5961527110221828355936732934628e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.162 Order of pole = 2.18 x[1] = -0.583 y[1] (analytic) = -0.52782570768153633148145548151349 y[1] (numeric) = -0.52782570768153683877701576071607 absolute error = 5.0729556027920258e-16 relative error = 9.6110430563810162691522083658458e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.161 Order of pole = 2.18 x[1] = -0.582 y[1] (analytic) = -0.52707905246296144671404157779054 y[1] (numeric) = -0.52707905246296195406899941514664 absolute error = 5.0735495783735610e-16 relative error = 9.6257848887479476269284373071063e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.161 Order of pole = 2.18 x[1] = -0.581 y[1] (analytic) = -0.52633174775699958425721882313211 y[1] (numeric) = -0.52633174775700009166083249493705 absolute error = 5.0740361367180494e-16 relative error = 9.6403763564356844811321344522179e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.16 Order of pole = 2.18 x[1] = -0.58 y[1] (analytic) = -0.52558379355161020277163196763958 y[1] (numeric) = -0.52558379355161071021309265213457 absolute error = 5.0744146068449499e-16 relative error = 9.6548155957298613116039072938915e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.16 Order of pole = 2.18 x[1] = -0.579 y[1] (analytic) = -0.52483518983763864510396136909014 y[1] (numeric) = -0.52483518983763915257239313237845 absolute error = 5.0746843176328831e-16 relative error = 9.6691007308461374232289115726070e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.159 Order of pole = 2.18 x[1] = -0.578 y[1] (analytic) = -0.52408593660882626211751883185905 y[1] (numeric) = -0.52408593660882676960197861733906 absolute error = 5.0748445978548001e-16 relative error = 9.6832298738873150197575474032615e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=213.6MB, alloc=4.4MB, time=29.86 Complex estimate of poles used Radius of convergence = 1.159 Order of pole = 2.18 x[1] = -0.577 y[1] (analytic) = -0.52333603386182053712129201447699 y[1] (numeric) = -0.52333603386182104461076963582341 absolute error = 5.0748947762134642e-16 relative error = 9.6972011248004723535848330152422e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.158 Order of pole = 2.18 x[1] = -0.576 y[1] (analytic) = -0.52258548159618521067259360061084 y[1] (numeric) = -0.52258548159618571815601173833556 absolute error = 5.0748341813772472e-16 relative error = 9.7110125713341146657592769151187e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.158 Order of pole = 2.18 x[1] = -0.575 y[1] (analytic) = -0.52183427981441040552709051387444 y[1] (numeric) = -0.5218342798144109129933047154983 absolute error = 5.0746621420162386e-16 relative error = 9.7246622889953391536497769124166e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.157 Order of pole = 2.18 x[1] = -0.574 y[1] (analytic) = -0.52108242852192275150860745741986 y[1] (numeric) = -0.52108242852192325894640614128686 absolute error = 5.0743779868386700e-16 relative error = 9.7381483410070178441377728991171e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.157 Order of pole = 2.18 x[1] = -0.573 y[1] (analytic) = -0.52032992772709551006971804888762 y[1] (numeric) = -0.52032992772709601746782251165287 absolute error = 5.0739810446276525e-16 relative error = 9.7514687782649936541868062623527e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.156 Order of pole = 2.18 x[1] = -0.572 y[1] (analytic) = -0.51957677744125869831275587480688 y[1] (numeric) = -0.51957677744125920565982030262968 absolute error = 5.0734706442782280e-16 relative error = 9.7646216392952908400060989320383e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.156 Order of pole = 2.18 x[1] = -0.571 y[1] (analytic) = -0.51882297767870921223949698138323 y[1] (numeric) = -0.51882297767870971952410846485677 absolute error = 5.0728461148347354e-16 relative error = 9.7776049502113412503183228829898e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.155 Order of pole = 2.18 x[1] = -0.57 y[1] (analytic) = -0.51806852845672094899638472688591 y[1] (numeric) = -0.51806852845672145620706327973478 absolute error = 5.0721067855284887e-16 relative error = 9.7904167246712201024457592069432e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.155 Order of pole = 2.18 x[1] = -0.569 y[1] (analytic) = -0.51731342979555492788078762128681 y[1] (numeric) = -0.51731342979555543500598620286383 absolute error = 5.0712519858157702e-16 relative error = 9.8030549638348969193972567031435e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.154 Order of pole = 2.18 x[1] = -0.568 y[1] (analytic) = -0.51655768171846940987240084879645 y[1] (numeric) = -0.51655768171846991690050539041012 absolute error = 5.0702810454161367e-16 relative error = 9.8155176563214970795692474554361e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.154 Order of pole = 2.18 x[1] = -0.567 y[1] (analytic) = -0.51580128425173001545252268651617 y[1] (numeric) = -0.51580128425173052237185212161993 absolute error = 5.0691932943510376e-16 relative error = 9.8278027781665713239825583923678e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.153 Order of pole = 2.18 x[1] = -0.566 y[1] (analytic) = -0.51504423742461984047255807625541 y[1] (numeric) = -0.51504423742462034727136437453024 absolute error = 5.0679880629827483e-16 relative error = 9.8399082927793792797169356184482e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.153 Order of pole = 2.18 x[1] = -0.565 y[1] (analytic) = -0.51428654126944956983172325596836 y[1] (numeric) = -0.51428654126945007649819146132975 absolute error = 5.0666646820536139e-16 relative error = 9.8518321509001768041322444102271e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.152 Order of pole = 2.18 x[1] = -0.564 y[1] (analytic) = -0.5135281958215675887225476922058 y[1] (numeric) = -0.51352819582156809524479596476646 absolute error = 5.0652224827256066e-16 relative error = 9.8635722905575131995549481171449e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.152 Order of pole = 2.18 x[1] = -0.563 y[1] (analytic) = -0.51276920111937009120139265606366 y[1] (numeric) = -0.51276920111937059756747231808312 absolute error = 5.0636607966201946e-16 relative error = 9.8751266370255335064731395862701e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.152 Order of pole = 2.18 x[1] = -0.562 y[1] (analytic) = -0.51200955720431118583982973358653 y[1] (numeric) = -0.51200955720431169203772531943878 absolute error = 5.0619789558585225e-16 relative error = 9.8864931027812853313077082456169e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.151 Order of pole = 2.18 x[1] = -0.561 y[1] (analytic) = -0.51124926412091299821134743934316 y[1] (numeric) = -0.51124926412091350422897674953349 absolute error = 5.0601762931019033e-16 relative error = 9.8976695874620298619631766070371e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.151 Order of pole = 2.18 x[1] = -0.56 y[1] (analytic) = -0.51048832191677576996647999146307 y[1] (numeric) = -0.51048832191677627579169415072515 absolute error = 5.0582521415926208e-16 relative error = 9.9086539778225541817053697740255e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.15 Order of pole = 2.18 x[1] = -0.559 y[1] (analytic) = -0.50972673064258795424807929098041 y[1] (numeric) = -0.5097267306425884598686628104846 absolute error = 5.0562058351950419e-16 relative error = 9.9194441476924833387807710988091e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.15 Order of pole = 2.18 x[1] = -0.558 y[1] (analytic) = -0.50896449035213630719707931168446 y[1] (numeric) = -0.50896449035213681260075015538841 absolute error = 5.0540367084370395e-16 relative error = 9.9300379579335929765285554052189e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.149 Order of pole = 2.181 x[1] = -0.557 y[1] (analytic) = -0.50820160110231597529773153327486 y[1] (numeric) = -0.50820160110231648047214118844726 absolute error = 5.0517440965517240e-16 relative error = 9.9404332563971180336555520736207e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.149 Order of pole = 2.181 x[1] = -0.556 y[1] (analytic) = -0.50743806295314057830992082555081 y[1] (numeric) = -0.50743806295314108324265437749908 absolute error = 5.0493273355194827e-16 relative error = 9.9506278778810555403895392070948e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.148 Order of pole = 2.181 x[1] = -0.555 y[1] (analytic) = -0.50667387596775228753480340034943 y[1] (numeric) = -0.50667387596775279221337961138229 absolute error = 5.0467857621103286e-16 relative error = 9.9606196440874638625689109463632e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.148 Order of pole = 2.181 x[1] = -0.554 y[1] (analytic) = -0.50590904021243189915864217734826 y[1] (numeric) = -0.50590904021243240357051357000377 absolute error = 5.0441187139265551e-16 relative error = 9.9704063635797508990970829538698e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.147 Order of pole = 2.181 x[1] = -0.553 y[1] (analytic) = -0.50514355575660890241835024665051 y[1] (numeric) = -0.5051435557566094065509031912203 absolute error = 5.0413255294456979e-16 relative error = 9.9799858317399531578633082974217e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.147 Order of pole = 2.181 x[1] = -0.552 y[1] (analytic) = -0.50437742267287154233089014290409 y[1] (numeric) = -0.50437742267287204617144494928434 absolute error = 5.0384055480638025e-16 relative error = 9.9893558307260019170472002853307e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=217.4MB, alloc=4.4MB, time=30.41 Complex estimate of poles used Radius of convergence = 1.146 Order of pole = 2.181 x[1] = -0.551 y[1] (analytic) = -0.50361064103697687672731546082092 y[1] (numeric) = -0.50361064103697738026312647472058 absolute error = 5.0353581101389966e-16 relative error = 9.9985141294289744278453062913027e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.146 Order of pole = 2.181 x[1] = -0.55 y[1] (analytic) = -0.50284321092786082733088202924528 y[1] (numeric) = -0.50284321092786133054913773278197 absolute error = 5.0321825570353669e-16 relative error = 1.0007458483430328495605780248281e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.145 Order of pole = 2.182 x[1] = -0.549 y[1] (analytic) = -0.50207513242764822461729850988092 y[1] (numeric) = -0.50207513242764872750512162659479 absolute error = 5.0288782311671387e-16 relative error = 1.0016186634959116573262625563351e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.145 Order of pole = 2.182 x[1] = -0.548 y[1] (analytic) = -0.5013064056216628461938309875637 y[1] (numeric) = -0.50130640562166334873827859187957 absolute error = 5.0254444760431587e-16 relative error = 1.0024696312849179451288630447882e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.144 Order of pole = 2.182 x[1] = -0.547 y[1] (analytic) = -0.50053703059843744843262296232195 y[1] (numeric) = -0.50053703059843795062068659348973 absolute error = 5.0218806363116778e-16 relative error = 1.0032985232496312445260484161647e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.144 Order of pole = 2.182 x[1] = -0.546 y[1] (analytic) = -0.49976700744972379109224123078388 y[1] (numeric) = -0.49976700744972429291084701132754 absolute error = 5.0181860578054366e-16 relative error = 1.0041051095815408708320337857032e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.143 Order of pole = 2.182 x[1] = -0.545 y[1] (analytic) = -0.49899633627050265466010954777656 y[1] (numeric) = -0.49899633627050315609611830648134 absolute error = 5.0143600875870478e-16 relative error = 1.0048891591197567326805793852230e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.143 Order of pole = 2.182 x[1] = -0.544 y[1] (analytic) = -0.49822501715899385014714578083503 y[1] (numeric) = -0.49822501715899435118735318030289 absolute error = 5.0104020739946786e-16 relative error = 1.0056504393467171576133374593376e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.142 Order of pole = 2.183 x[1] = -0.543 y[1] (analytic) = -0.49745305021666622106457460404516 y[1] (numeric) = -0.49745305021666672169571127284816 absolute error = 5.0063113666880300e-16 relative error = 1.0063887163838930325164836329789e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.142 Order of pole = 2.183 x[1] = -0.542 y[1] (analytic) = -0.49668043554824763731154671703126 y[1] (numeric) = -0.49668043554824813752027838649244 absolute error = 5.0020873166946118e-16 relative error = 1.0071037549874879323573977862503e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.141 Order of pole = 2.183 x[1] = -0.541 y[1] (analytic) = -0.49590717326173498070085721443614 y[1] (numeric) = -0.49590717326173548047378486006741 absolute error = 4.9977292764563127e-16 relative error = 1.0077953185441340283868747978086e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.141 Order of pole = 2.183 x[1] = -0.54 y[1] (analytic) = -0.49513326346840412184872016600183 y[1] (numeric) = -0.49513326346840462117238015362828 absolute error = 4.9932365998762645e-16 relative error = 1.0084631690665834843670956202250e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.14 Order of pole = 2.183 x[1] = -0.539 y[1] (analytic) = -0.49435870628281988815322379302575 y[1] (numeric) = -0.49435870628282038701408802962551 absolute error = 4.9886086423659976e-16 relative error = 1.0091070671893946824168354157138e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.14 Order of pole = 2.184 x[1] = -0.538 y[1] (analytic) = -0.49358350182284602258476093982638 y[1] (numeric) = -0.49358350182284652096923702911524 absolute error = 4.9838447608928886e-16 relative error = 1.0097267721646133419419114784312e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.14 Order of pole = 2.184 x[1] = -0.537 y[1] (analytic) = -0.49280765020965513301040293579342 y[1] (numeric) = -0.49280765020965563090483433858315 absolute error = 4.9789443140278973e-16 relative error = 1.0103220418574478864746415381102e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.139 Order of pole = 2.184 x[1] = -0.536 y[1] (analytic) = -0.49203115156773863177286152210769 y[1] (numeric) = -0.49203115156773912916352772146685 absolute error = 4.9739066619935916e-16 relative error = 1.0108926327419386497702174061436e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.139 Order of pole = 2.184 x[1] = -0.535 y[1] (analytic) = -0.49125400602491666524336337537996 y[1] (numeric) = -0.49125400602491716211648004662592 absolute error = 4.9687311667124596e-16 relative error = 1.0114382998966206709511480898915e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.138 Order of pole = 2.184 x[1] = -0.534 y[1] (analytic) = -0.49047621371234803306644499695386 y[1] (numeric) = -0.49047621371234852940816418250454 absolute error = 4.9634171918555068e-16 relative error = 1.0119587970001795406388774339908e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.138 Order of pole = 2.184 x[1] = -0.533 y[1] (analytic) = -0.48969777476454009681336245071409 y[1] (numeric) = -0.48969777476454059260977273982786 absolute error = 4.9579641028911377e-16 relative error = 1.0124538763271000398172421385606e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.137 Order of pole = 2.185 x[1] = -0.532 y[1] (analytic) = -0.48891868931935867775950072379414 y[1] (numeric) = -0.48891868931935917299662743722598 absolute error = 4.9523712671343184e-16 relative error = 1.0129232887433067583864289345832e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.137 Order of pole = 2.185 x[1] = -0.531 y[1] (analytic) = -0.48813895751803794349986145402698 y[1] (numeric) = -0.48813895751803843816366683362906 absolute error = 4.9466380537960208e-16 relative error = 1.0133667837017966901585613935382e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.136 Order of pole = 2.185 x[1] = -0.53 y[1] (analytic) = -0.48735857950519028311540551635107 y[1] (numeric) = -0.48735857950519077719178891964564 absolute error = 4.9407638340329457e-16 relative error = 1.0137841092382631246058821487510e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.136 Order of pole = 2.185 x[1] = -0.529 y[1] (analytic) = -0.4865775554288161706017285892706 y[1] (numeric) = -0.48657755542881666407652668902281 absolute error = 4.9347479809975221e-16 relative error = 1.0141750119667101476731146954579e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.135 Order of pole = 2.185 x[1] = -0.528 y[1] (analytic) = -0.48579588544031401627025343404732 y[1] (numeric) = -0.48579588544031450912924042286563 absolute error = 4.9285898698881831e-16 relative error = 1.0145392370750576939525178163022e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.135 Order of pole = 2.186 x[1] = -0.527 y[1] (analytic) = -0.48501356969449000583083231631739 y[1] (numeric) = -0.48501356969449049805972011630882 absolute error = 4.9222888779999143e-16 relative error = 1.0148765283207361646596676609700e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.134 Order of pole = 2.186 x[1] = -0.526 y[1] (analytic) = -0.48423060834956792686336688559064 y[1] (numeric) = -0.48423060834956841844780536309816 absolute error = 4.9158443847750752e-16 relative error = 1.0151866280262705637588374177695e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop memory used=221.2MB, alloc=4.4MB, time=30.96 Complex estimate of poles used Radius of convergence = 1.134 Order of pole = 2.186 x[1] = -0.525 y[1] (analytic) = -0.48344700156719898238477100647878 y[1] (numeric) = -0.48344700156719947331034819192769 absolute error = 4.9092557718544891e-16 relative error = 1.0154692770748530703992189308909e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.134 Order of pole = 2.186 x[1] = -0.524 y[1] (analytic) = -0.48266274951247159121632461094724 y[1] (numeric) = -0.4826627495124720814685669238274 absolute error = 4.9025224231288016e-16 relative error = 1.0157242149059039054829138360641e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.133 Order of pole = 2.186 x[1] = -0.523 y[1] (analytic) = -0.48187785235392117485519371838436 y[1] (numeric) = -0.48187785235392166441956619739486 absolute error = 4.8956437247901050e-16 relative error = 1.0159511795106197679159606600241e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.133 Order of pole = 2.187 x[1] = -0.522 y[1] (analytic) = -0.48109231026353993055262345537446 y[1] (numeric) = -0.48109231026354041941452999375707 absolute error = 4.8886190653838261e-16 relative error = 1.0161499074275091488481690464293e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.132 Order of pole = 2.187 x[1] = -0.521 y[1] (analytic) = -0.48030612341678659030004730583775 y[1] (numeric) = -0.48030612341678707844483089192539 absolute error = 4.8814478358608764e-16 relative error = 1.0163201337379141360771007608306e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.132 Order of pole = 2.187 x[1] = -0.52 y[1] (analytic) = -0.47951929199259616542309704129544 y[1] (numeric) = -0.47951929199259665283604000430151 absolute error = 4.8741294296300607e-16 relative error = 1.0164615920615176906821903103738e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.131 Order of pole = 2.187 x[1] = -0.519 y[1] (analytic) = -0.47873181617338967648224392760468 y[1] (numeric) = -0.47873181617339016314856818867918 absolute error = 4.8666632426107450e-16 relative error = 1.0165740145518363886986804275406e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.131 Order of pole = 2.187 x[1] = -0.518 y[1] (analytic) = -0.47794369614508386817755298629518 y[1] (numeric) = -0.47794369614508435408242031487289 absolute error = 4.8590486732857771e-16 relative error = 1.0166571318916970518946983345529e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.13 Order of pole = 2.188 x[1] = -0.517 y[1] (analytic) = -0.47715493209710090895378841386356 y[1] (numeric) = -0.47715493209710139408230068932981 absolute error = 4.8512851227546625e-16 relative error = 1.0167106732886975995474971984830e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.13 Order of pole = 2.188 x[1] = -0.516 y[1] (analytic) = -0.47636552422237807500086983981014 y[1] (numeric) = -0.47636552422237855933806931850902 absolute error = 4.8433719947869888e-16 relative error = 1.0167343664706504847672977383043e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.129 Order of pole = 2.188 x[1] = -0.515 y[1] (analytic) = -0.47557547271737741834344604311808 y[1] (numeric) = -0.47557547271737790187431563072803 absolute error = 4.8353086958760995e-16 relative error = 1.0167279376810086768073310153224e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.129 Order of pole = 2.188 x[1] = -0.514 y[1] (analytic) = -0.47478477778209541871212515708092 y[1] (numeric) = -0.47478477778209590142158868638223 absolute error = 4.8270946352930131e-16 relative error = 1.0166911116742730976697119002786e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.129 Order of pole = 2.188 x[1] = -0.513 y[1] (analytic) = -0.47399343962007261888767838419311 y[1] (numeric) = -0.47399343962007310076060089825163 absolute error = 4.8187292251405852e-16 relative error = 1.0166236117113807869882221092111e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.128 Order of pole = 2.188 x[1] = -0.512 y[1] (analytic) = -0.4732014584384032432083179270488 y[1] (numeric) = -0.47320145843840372422950596783999 absolute error = 4.8102118804079119e-16 relative error = 1.0165251595550731867106864742843e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.128 Order of pole = 2.189 x[1] = -0.511 y[1] (analytic) = -0.47240883444774479892893932916842 y[1] (numeric) = -0.47240883444774527908314123166544 absolute error = 4.8015420190249702e-16 relative error = 1.0163954754652433790125332755625e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.127 Order of pole = 2.189 x[1] = -0.51 y[1] (analytic) = -0.47161556786232766012001382320594 y[1] (numeric) = -0.47161556786232813939192001495544 absolute error = 4.7927190619174950e-16 relative error = 1.0162342781942619225522530936715e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.127 Order of pole = 2.189 x[1] = -0.509 y[1] (analytic) = -0.47082165889996463379261771539125 y[1] (numeric) = -0.47082165889996511216686102160004 absolute error = 4.7837424330620879e-16 relative error = 1.0160412849822799932511635909592e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.126 Order of pole = 2.189 x[1] = -0.508 y[1] (analytic) = -0.47002710778206050793489340712344 y[1] (numeric) = -0.47002710778206098539604936127912 absolute error = 4.7746115595415568e-16 relative error = 1.0158162115525093271370525859212e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.126 Order of pole = 2.189 x[1] = -0.507 y[1] (analytic) = -0.46923191473362158114405048062601 y[1] (numeric) = -0.46923191473362205767663764067424 absolute error = 4.7653258716004823e-16 relative error = 1.0155587721064778169852601166764e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.125 Order of pole = 2.189 x[1] = -0.506 y[1] (analytic) = -0.46843607998326517353683546925015 y[1] (numeric) = -0.46843607998326564912531573935101 absolute error = 4.7558848027010086e-16 relative error = 1.0152686793192599621316403624524e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.125 Order of pole = 2.189 x[1] = -0.505 y[1] (analytic) = -0.46763960376322911862022560858391 y[1] (numeric) = -0.46763960376322959324900456646945 absolute error = 4.7462877895788554e-16 relative error = 1.0149456443346811036168901301076e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.124 Order of pole = 2.189 x[1] = -0.504 y[1] (analytic) = -0.4668424863093812358029351366709 y[1] (numeric) = -0.46684248630938170945636236662583 absolute error = 4.7365342722995493e-16 relative error = 1.0145893767604947909246382568502e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.124 Order of pole = 2.19 x[1] = -0.503 y[1] (analytic) = -0.46604472786122878322716269549778 y[1] (numeric) = -0.4660447278612292558895321269848 absolute error = 4.7266236943148702e-16 relative error = 1.0141995846635319741547737369684e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.124 Order of pole = 2.19 x[1] = -0.502 y[1] (analytic) = -0.4652463286619278905988551970611 y[1] (numeric) = -0.46524632866192836225440544901209 absolute error = 4.7165555025195099e-16 relative error = 1.0137759745648210631691633994047e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.123 Order of pole = 2.19 x[1] = -0.501 y[1] (analytic) = -0.46444728895829297169361727180093 y[1] (numeric) = -0.464447288958293442326532002595 absolute error = 4.7063291473079407e-16 relative error = 1.0133182514346780114286776823066e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.123 Order of pole = 2.19 x[1] = -0.5 y[1] (analytic) = -0.46364760900080611621425623146121 y[1] (numeric) = -0.46364760900080658580866449461022 absolute error = 4.6959440826314901e-16 relative error = 1.0128261186877652041197166750604e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop memory used=225.0MB, alloc=4.4MB, time=31.52 Complex estimate of poles used Radius of convergence = 1.122 Order of pole = 2.19 x[1] = -0.499 y[1] (analytic) = -0.46284728904362646067482046940466 y[1] (numeric) = -0.46284728904362692921479707496645 absolute error = 4.6853997660556179e-16 relative error = 1.0122992781781179566321564649189e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.122 Order of pole = 2.19 x[1] = -0.498 y[1] (analytic) = -0.46204632934459953798486450640014 y[1] (numeric) = -0.46204632934460000545443038813958 absolute error = 4.6746956588173944e-16 relative error = 1.0117374301941379324173917710753e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.121 Order of pole = 2.19 x[1] = -0.497 y[1] (analytic) = -0.46124473016526660540655658665868 y[1] (numeric) = -0.46124473016526707178967917497606 absolute error = 4.6638312258831738e-16 relative error = 1.0111402734535517824051325931069e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.121 Order of pole = 2.19 x[1] = -0.496 y[1] (analytic) = -0.46044249177087395055613495557731 y[1] (numeric) = -0.46044249177087441583672855622342 absolute error = 4.6528059360064611e-16 relative error = 1.0105075050983341966982439787746e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.12 Order of pole = 2.19 x[1] = -0.495 y[1] (analytic) = -0.45963961443038217512011682582162 y[1] (numeric) = -0.45963961443038263928204300441857 absolute error = 4.6416192617859695e-16 relative error = 1.0098388206895942651080522110581e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.12 Order of pole = 2.19 x[1] = -0.494 y[1] (analytic) = -0.45883609841647545595556968100047 y[1] (numeric) = -0.45883609841647591898263765338673 absolute error = 4.6302706797238626e-16 relative error = 1.0091339142024234391477999265810e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.12 Order of pole = 2.19 x[1] = -0.493 y[1] (analytic) = -0.45803194400557078324266809561153 y[1] (numeric) = -0.45803194400557124511863512402957 absolute error = 4.6187596702841804e-16 relative error = 1.0083924780207043901754802151199e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.119 Order of pole = 2.19 x[1] = -0.492 y[1] (analytic) = -0.45722715147782717535668078590424 y[1] (numeric) = -0.45722715147782763606525258104868 absolute error = 4.6070857179514444e-16 relative error = 1.0076142029318792390869780170948e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.119 Order of pole = 2.19 x[1] = -0.491 y[1] (analytic) = -0.45642172111715487012546226893092 y[1] (numeric) = -0.45642172111715532965029339787467 absolute error = 4.5952483112894375e-16 relative error = 1.0067987781216756989238051189295e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.118 Order of pole = 2.19 x[1] = -0.49 y[1] (analytic) = -0.4556156532112244921374614168227 y[1] (numeric) = -0.45561565321122495046215571683832 absolute error = 4.5832469430001562e-16 relative error = 1.0059458911687900459822575253702e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.118 Order of pole = 2.19 x[1] = -0.489 y[1] (analytic) = -0.45480894805147619576420547108282 y[1] (numeric) = -0.45480894805147665287231646937594 absolute error = 4.5710811099829312e-16 relative error = 1.0050552280395255115508396133221e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.117 Order of pole = 2.19 x[1] = -0.488 y[1] (analytic) = -0.45400160593312878356017284863738 y[1] (numeric) = -0.45400160593312923943520418800853 absolute error = 4.5587503133937115e-16 relative error = 1.0041264730823844458260625675749e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.117 Order of pole = 2.19 x[1] = -0.487 y[1] (analytic) = -0.45319362715518879970193144907309 y[1] (numeric) = -0.45319362715518925432733731952407 absolute error = 4.5462540587045098e-16 relative error = 1.0031593090226131774861911941911e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.116 Order of pole = 2.19 x[1] = -0.486 y[1] (analytic) = -0.45238501202045959812739128281232 y[1] (numeric) = -0.45238501202046005148657685911272 absolute error = 4.5335918557630040e-16 relative error = 1.0021534169566978134701641485153e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.116 Order of pole = 2.19 x[1] = -0.485 y[1] (analytic) = -0.45157576083555038503500120514868 y[1] (numeric) = -0.45157576083555083711132309037778 absolute error = 4.5207632188522910e-16 relative error = 1.0011084763468095079475034686452e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.116 Order of pole = 2.19 x[1] = -0.484 y[1] (analytic) = -0.4507658739108852354017094836356 y[1] (numeric) = -0.45076587391088568617847615871463 absolute error = 4.5077676667507903e-16 relative error = 1.0000241650151979962394655455039e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.115 Order of pole = 2.19 x[1] = -0.483 y[1] (analytic) = -0.4499553515607120831775069691474 y[1] (numeric) = -0.44995535156071253263797924837647 absolute error = 4.4946047227922907e-16 relative error = 9.9890015913853123814298393391202e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.115 Order of pole = 2.19 x[1] = -0.482 y[1] (analytic) = -0.44914419410311168481337990718263 y[1] (numeric) = -0.44914419410311213294077139979647 absolute error = 4.4812739149261384e-16 relative error = 9.9773613324218009662663457908634e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.114 Order of pole = 2.19 x[1] = -0.481 y[1] (analytic) = -0.44833240186000655577851703912131 y[1] (numeric) = -0.44833240186000700255599461687741 absolute error = 4.4677747757775610e-16 relative error = 9.9653176019444611408148328757243e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.114 Order of pole = 2.19 x[1] = -0.48 y[1] (analytic) = -0.44751997515716987972164272693692 y[1] (numeric) = -0.44751997515717032513232699774931 absolute error = 4.4541068427081239e-16 relative error = 9.9528671120073086639771055730358e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.113 Order of pole = 2.19 x[1] = -0.479 y[1] (analytic) = -0.44670691432423438993038451334011 y[1] (numeric) = -0.44670691432423483395735030097151 absolute error = 4.4402696578763140e-16 relative error = 9.9400065579764499408900676047875e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.113 Order of pole = 2.19 x[1] = -0.478 y[1] (analytic) = -0.44589321969470122274162992680622 y[1] (numeric) = -0.44589321969470166536790675663094 absolute error = 4.4262627682982472e-16 relative error = 9.9267326184705533997351163954941e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.113 Order of pole = 2.19 x[1] = -0.477 y[1] (analytic) = -0.44507889160594874255488358198993 y[1] (numeric) = -0.44507889160594918376345617283941 absolute error = 4.4120857259084948e-16 relative error = 9.9130419553006828452166399633325e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.112 Order of pole = 2.19 x[1] = -0.476 y[1] (analytic) = -0.44426393039924133809970183549022 y[1] (numeric) = -0.44426393039924177787351059759268 absolute error = 4.3977380876210246e-16 relative error = 9.8989312134094749861900696130509e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.112 Order of pole = 2.19 x[1] = -0.475 y[1] (analytic) = -0.44344833641973818960735855987661 y[1] (numeric) = -0.44344833641973862792930009890186 absolute error = 4.3832194153902525e-16 relative error = 9.8843970208096430631887453223258e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.111 Order of pole = 2.19 x[1] = -0.474 y[1] (analytic) = -0.44263211001650200653598212064039 y[1] (numeric) = -0.44263211001650244338890974786028 absolute error = 4.3685292762721989e-16 relative error = 9.8694359885217848357430651491989e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.111 Order of pole = 2.19 memory used=228.8MB, alloc=4.4MB, time=32.07 x[1] = -0.473 y[1] (analytic) = -0.44181525154250773549750050683741 y[1] (numeric) = -0.44181525154250817086422475541211 absolute error = 4.3536672424857470e-16 relative error = 9.8540447105114791942962930741491e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.11 Order of pole = 2.189 x[1] = -0.472 y[1] (analytic) = -0.44099776135465123803383890240663 y[1] (numeric) = -0.4409977613546516718971280498063 absolute error = 4.3386328914739967e-16 relative error = 9.8382197636256477065904697730869e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.11 Order of pole = 2.189 x[1] = -0.471 y[1] (analytic) = -0.44017963981375793788893191745446 y[1] (numeric) = -0.44017963981375837023151251402553 absolute error = 4.3234258059657107e-16 relative error = 9.8219577075281636320520052388732e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.11 Order of pole = 2.189 x[1] = -0.47 y[1] (analytic) = -0.43936088728459143742224135336384 y[1] (numeric) = -0.43936088728459186822679875704854 absolute error = 4.3080455740368470e-16 relative error = 9.8052550846346852016712951997475e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.109 Order of pole = 2.189 x[1] = -0.469 y[1] (analytic) = -0.43854150413586210280860987878256 y[1] (numeric) = -0.43854150413586253205778879599998 absolute error = 4.2924917891721742e-16 relative error = 9.7881084200466946169222696152115e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.109 Order of pole = 2.189 x[1] = -0.468 y[1] (analytic) = -0.43772149074023561766843147191357 y[1] (numeric) = -0.43772149074023604534483650460988 absolute error = 4.2767640503269631e-16 relative error = 9.7705142214847173035097418414307e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.108 Order of pole = 2.189 x[1] = -0.467 y[1] (analytic) = -0.43690084747434150477128106478589 y[1] (numeric) = -0.43690084747434193085747726366104 absolute error = 4.2608619619887515e-16 relative error = 9.7524689792207033399530401258392e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.108 Order of pole = 2.189 x[1] = -0.466 y[1] (analytic) = -0.43607957471878161545531863420582 y[1] (numeric) = -0.43607957471878203993383205812336 absolute error = 4.2447851342391754e-16 relative error = 9.7339691660095442077812137168527e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.107 Order of pole = 2.188 x[1] = -0.465 y[1] (analytic) = -0.43525767285813858640396714890097 y[1] (numeric) = -0.43525767285813900925728543048728 absolute error = 4.2285331828158631e-16 relative error = 9.7150112370197051694134272740009e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.107 Order of pole = 2.188 x[1] = -0.464 y[1] (analytic) = -0.43443514228098426342055943014255 y[1] (numeric) = -0.43443514228098468463113234758122 absolute error = 4.2121057291743867e-16 relative error = 9.6955916297629486600890968330781e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.106 Order of pole = 2.188 x[1] = -0.463 y[1] (analytic) = -0.43361198337988809184085624116206 y[1] (numeric) = -0.43361198337988851139109629618852 absolute error = 4.1955024005502646e-16 relative error = 9.6757067640231216124015429495664e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.106 Order of pole = 2.188 x[1] = -0.462 y[1] (analytic) = -0.43278819655142547322255691638437 y[1] (numeric) = -0.4327881965514258910948399184856 absolute error = 4.1787228300210123e-16 relative error = 9.6553530417839877495258909321307e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.106 Order of pole = 2.188 x[1] = -0.461 y[1] (analytic) = -0.4319637821961860879501547024079 y[1] (numeric) = -0.43196378219618650412682035923127 absolute error = 4.1617666565682337e-16 relative error = 9.6345268471560737668643521138886e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.105 Order of pole = 2.188 x[1] = -0.46 y[1] (analytic) = -0.43113874071878218339273183639798 y[1] (numeric) = -0.43113874071878259785608435037291 absolute error = 4.1446335251397493e-16 relative error = 9.6132245463025075667384464291708e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.105 Order of pole = 2.187 x[1] = -0.459 y[1] (analytic) = -0.43031307252785682725154436183623 y[1] (numeric) = -0.43031307252785723998385303301178 absolute error = 4.1273230867117555e-16 relative error = 9.5914424873638212409556371682362e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.104 Order of pole = 2.187 x[1] = -0.458 y[1] (analytic) = -0.42948677803609212573351390417567 y[1] (numeric) = -0.42948677803609253671701373927653 absolute error = 4.1098349983510086e-16 relative error = 9.5691770003816896559641578254307e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.104 Order of pole = 2.187 x[1] = -0.457 y[1] (analytic) = -0.42865985766021740618602322774456 y[1] (numeric) = -0.42865985766021781540291555544762 absolute error = 4.0921689232770306e-16 relative error = 9.5464243972215831866789337856916e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.104 Order of pole = 2.187 x[1] = -0.456 y[1] (analytic) = -0.42783231182101736382770449813268 y[1] (numeric) = -0.42783231182101777126015759056548 absolute error = 4.0743245309243280e-16 relative error = 9.5231809714942989977435171807342e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.103 Order of pole = 2.187 x[1] = -0.455 y[1] (analytic) = -0.42700414094334017220921390923532 y[1] (numeric) = -0.42700414094334057783936360969738 absolute error = 4.0563014970046206e-16 relative error = 9.4994429984763482759809079933861e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.103 Order of pole = 2.187 x[1] = -0.454 y[1] (analytic) = -0.42617534545610555703730382911058 y[1] (numeric) = -0.42617534545610596084725418601793 absolute error = 4.0380995035690735e-16 relative error = 9.4752067350291675227620420954980e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.102 Order of pole = 2.186 x[1] = -0.453 y[1] (analytic) = -0.42534592579231283299483400183079 y[1] (numeric) = -0.42534592579231323496665790888349 absolute error = 4.0197182390705270e-16 relative error = 9.4504684195171250163127230826615e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.102 Order of pole = 2.186 x[1] = -0.452 y[1] (analytic) = -0.42451588238904890318870674159748 y[1] (numeric) = -0.42451588238904930330444658416937 absolute error = 4.0011573984257189e-16 relative error = 9.4252242717242926020329356808033e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.101 Order of pole = 2.186 x[1] = -0.451 y[1] (analytic) = -0.42368521568749622085706759855491 y[1] (numeric) = -0.42368521568749661909873590630414 absolute error = 3.9824166830774923e-16 relative error = 9.3994704927699491665366255829528e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.101 Order of pole = 2.186 x[1] = -0.45 y[1] (analytic) = -0.42285392613294071296648279098114 y[1] (numeric) = -0.42285392613294110931606289667963 absolute error = 3.9634958010569849e-16 relative error = 9.3732032650227884490969729233137e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.101 Order of pole = 2.186 x[1] = -0.449 y[1] (analytic) = -0.42202201417477966532918791383329 y[1] (numeric) = -0.42202201417478005976863461841256 absolute error = 3.9443944670457927e-16 relative error = 9.3464187520137960350489739211283e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.1 Order of pole = 2.185 x[1] = -0.448 y[1] (analytic) = -0.42118948026652956886989917691197 y[1] (numeric) = -0.42118948026652996138113942072218 absolute error = 3.9251124024381021e-16 relative error = 9.3191130983477623981670685612746e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.1 Order of pole = 2.185 memory used=232.7MB, alloc=4.4MB, time=32.61 x[1] = -0.447 y[1] (analytic) = -0.42035632486583392667108882507671 y[1] (numeric) = -0.42035632486583431723602236535526 absolute error = 3.9056493354027855e-16 relative error = 9.2912824296134009159280178061623e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.099 Order of pole = 2.185 x[1] = -0.446 y[1] (analytic) = -0.41952254843447102142505057581581 y[1] (numeric) = -0.41952254843447141002555067036107 absolute error = 3.8860050009454526e-16 relative error = 9.2629228522920323390656890922987e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.099 Order of pole = 2.185 x[1] = -0.445 y[1] (analytic) = -0.41868815143836164292051900380119 y[1] (numeric) = -0.41868815143836202953843310084656 absolute error = 3.8661791409704537e-16 relative error = 9.2340304536648063382939873587587e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.098 Order of pole = 2.185 x[1] = -0.444 y[1] (analytic) = -0.417853134347576775191058935508 y[1] (numeric) = -0.41785313434757715980820936979069 absolute error = 3.8461715043428269e-16 relative error = 9.2046013017184197130594894414660e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.098 Order of pole = 2.184 x[1] = -0.443 y[1] (analytic) = -0.41701749763634524295190721711507 y[1] (numeric) = -0.4170174976363456255500919121335 absolute error = 3.8259818469501843e-16 relative error = 9.1746314450492978334333462783709e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.098 Order of pole = 2.184 x[1] = -0.442 y[1] (analytic) = -0.41618124178306131695142981318172 y[1] (numeric) = -0.41618124178306169751242298963463 absolute error = 3.8056099317645291e-16 relative error = 9.1441169127661976190115177394933e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.097 Order of pole = 2.184 x[1] = -0.441 y[1] (analytic) = -0.41534436727029227786285220934857 y[1] (numeric) = -0.41534436727029265636840509974865 absolute error = 3.7850555289040008e-16 relative error = 9.1130537143912024049448001826998e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.097 Order of pole = 2.184 x[1] = -0.44 y[1] (analytic) = -0.41450687458478593834143065673049 y[1] (numeric) = -0.41450687458478631477327222618434 absolute error = 3.7643184156945385e-16 relative error = 9.0814378397590611522334426820766e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.096 Order of pole = 2.184 x[1] = -0.439 y[1] (analytic) = -0.41366876421747812287175603580052 y[1] (numeric) = -0.41366876421747849721159370894632 absolute error = 3.7433983767314580e-16 relative error = 9.0492652589148374232157538253112e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.096 Order of pole = 2.184 x[1] = -0.438 y[1] (analytic) = -0.41283003666350010502942116028857 y[1] (numeric) = -0.41283003666350047725894155438215 absolute error = 3.7222952039409358e-16 relative error = 9.0165319220098266366097242610835e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.096 Order of pole = 2.183 x[1] = -0.437 y[1] (analytic) = -0.41199069242218600178083631364152 y[1] (numeric) = -0.41199069242218637188170597778097 absolute error = 3.7010086966413945e-16 relative error = 8.9832337591957027906410422721984e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.095 Order of pole = 2.183 x[1] = -0.436 y[1] (analytic) = -0.41115073199708012444454683843121 y[1] (numeric) = -0.41115073199708049239841299890924 absolute error = 3.6795386616047803e-16 relative error = 8.9493666805168459167603479840154e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.095 Order of pole = 2.183 x[1] = -0.435 y[1] (analytic) = -0.41031015589594428593699080906606 y[1] (numeric) = -0.41031015589594465172548212083907 absolute error = 3.6578849131177301e-16 relative error = 8.9149265758008172497301077565355e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.094 Order of pole = 2.183 x[1] = -0.434 y[1] (analytic) = -0.40946896463076506392523433636331 y[1] (numeric) = -0.40946896463076542752996164062511 absolute error = 3.6360472730426180e-16 relative error = 8.8799093145469296998038710202110e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.094 Order of pole = 2.183 x[1] = -0.433 y[1] (analytic) = -0.40862715871776101950883700483963 y[1] (numeric) = -0.40862715871776138091139409268728 absolute error = 3.6140255708784765e-16 relative error = 8.8443107458128737547894189663077e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.094 Order of pole = 2.183 x[1] = -0.432 y[1] (analytic) = -0.40778473867738987105263045560879 y[1] (numeric) = -0.40778473867739023023459483778739 absolute error = 3.5918196438217860e-16 relative error = 8.8081266980993540561570670885077e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.093 Order of pole = 2.182 x[1] = -0.431 y[1] (analytic) = -0.40694170503435562279183932490758 y[1] (numeric) = -0.40694170503435597973477300761999 absolute error = 3.5694293368271241e-16 relative error = 8.7713529792326859339015296316421e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.093 Order of pole = 2.182 x[1] = -0.43 y[1] (analytic) = -0.40609805831761564783063575560739 y[1] (numeric) = -0.40609805831761600251608602237432 absolute error = 3.5468545026676693e-16 relative error = 8.7339853762453079166917551545255e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.092 Order of pole = 2.182 x[1] = -0.429 y[1] (analytic) = -0.40525379906038772515489664142896 y[1] (numeric) = -0.40525379906038807756439684098428 absolute error = 3.5240950019955532e-16 relative error = 8.6960196552541642061619081537947e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.092 Order of pole = 2.182 x[1] = -0.428 y[1] (analytic) = -0.40440892780015703027962676548326 y[1] (numeric) = -0.40440892780015738039469710568836 absolute error = 3.5011507034020510e-16 relative error = 8.6574515613368996399304221523294e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.092 Order of pole = 2.182 x[1] = -0.427 y[1] (analytic) = -0.4035634450786830791512211804215 y[1] (numeric) = -0.40356344507868342695336952818229 absolute error = 3.4780214834776079e-16 relative error = 8.6182768184058279682646667619612e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.091 Order of pole = 2.182 x[1] = -0.426 y[1] (analytic) = -0.40271735144200662492446667077956 y[1] (numeric) = -0.40271735144200697039518935794858 absolute error = 3.4547072268716902e-16 relative error = 8.5784911290796116929440258310566e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.091 Order of pole = 2.182 x[1] = -0.425 y[1] (analytic) = -0.40187064744045650723392506258874 y[1] (numeric) = -0.40187064744045685035470769783451 absolute error = 3.4312078263524577e-16 relative error = 8.5380901745526100174921803270983e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.09 Order of pole = 2.182 x[1] = -0.424 y[1] (analytic) = -0.40102333362865645357910062419067 y[1] (numeric) = -0.40102333362865679433141891081543 absolute error = 3.4075231828662476e-16 relative error = 8.4970696144618346941864531851417e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.09 Order of pole = 2.181 x[1] = -0.423 y[1] (analytic) = -0.40017541056553183244256995826032 y[1] (numeric) = -0.40017541056553217080789051794676 absolute error = 3.3836532055968644e-16 relative error = 8.4554250867514632061189590750868e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.09 Order of pole = 2.181 x[1] = -0.422 y[1] (analytic) = -0.39932687881431635776004574075014 y[1] (numeric) = -0.39932687881431669371982694321706 absolute error = 3.3595978120246692e-16 relative error = 8.4131522075348550344245257546245e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.089 Order of pole = 2.181 memory used=236.5MB, alloc=4.4MB, time=33.16 x[1] = -0.421 y[1] (analytic) = -0.39847773894255874436115553986372 y[1] (numeric) = -0.39847773894255907789684833840958 absolute error = 3.3353569279854586e-16 relative error = 8.3702465709540077295066422847055e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.089 Order of pole = 2.181 x[1] = -0.42 y[1] (analytic) = -0.39762799152212931399954386888093 y[1] (numeric) = -0.39762799152212964509259264179389 absolute error = 3.3109304877291296e-16 relative error = 8.3267037490364039377655189260728e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.088 Order of pole = 2.181 x[1] = -0.419 y[1] (analytic) = -0.396777637129226551590749711896 y[1] (numeric) = -0.39677763712922688022259310970807 absolute error = 3.2863184339781207e-16 relative error = 8.2825192915491839916099899063719e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.088 Order of pole = 2.181 x[1] = -0.418 y[1] (analytic) = -0.39592667634438361127617313205893 y[1] (numeric) = -0.3959266763443839374282449306212 absolute error = 3.2615207179856227e-16 relative error = 8.2376887258505857989284811911865e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.088 Order of pole = 2.181 x[1] = -0.417 y[1] (analytic) = -0.3950751097524747719313233480394 y[1] (numeric) = -0.39507510975247509558505330739464 absolute error = 3.2365372995935524e-16 relative error = 8.1922075567385919195660194550162e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.087 Order of pole = 2.181 x[1] = -0.416 y[1] (analytic) = -0.39422293794272184173643696599993 y[1] (numeric) = -0.3942229379427221628732516950281 absolute error = 3.2113681472902817e-16 relative error = 8.1460712662967208143966673695047e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.087 Order of pole = 2.181 x[1] = -0.415 y[1] (analytic) = -0.39337016150870051142746900072409 y[1] (numeric) = -0.39337016150870083002879282753545 absolute error = 3.1860132382681136e-16 relative error = 8.0992753137368955285608630597558e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.086 Order of pole = 2.181 x[1] = -0.414 y[1] (analytic) = -0.39251678104834665584539102954872 y[1] (numeric) = -0.39251678104834697189264687759868 absolute error = 3.1604725584804996e-16 relative error = 8.0518151352393294612437818529597e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.086 Order of pole = 2.181 x[1] = -0.413 y[1] (analytic) = -0.39166279716396258340168041473383 y[1] (numeric) = -0.39166279716396289687629068463282 absolute error = 3.1347461026989899e-16 relative error = 8.0036861437893598128189417682606e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.086 Order of pole = 2.181 x[1] = -0.412 y[1] (analytic) = -0.39080821046222323307785212167521 y[1] (numeric) = -0.39080821046222354396123957866609 absolute error = 3.1088338745699088e-16 relative error = 7.9548837290111605485925203622626e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.085 Order of pole = 2.181 x[1] = -0.411 y[1] (analytic) = -0.3899530215541823185768703691828 y[1] (numeric) = -0.38995302155418262685045903625771 absolute error = 3.0827358866707491e-16 relative error = 7.9054032569982690139270818996189e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.085 Order of pole = 2.181 x[1] = -0.41 y[1] (analytic) = -0.38909723105527841924428129061132 y[1] (numeric) = -0.38909723105527872488949734723892 absolute error = 3.0564521605662760e-16 relative error = 7.8552400701408505940724016343583e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.085 Order of pole = 2.181 x[1] = -0.409 y[1] (analytic) = -0.38824083958534101737693007705868 y[1] (numeric) = -0.38824083958534132037520276349217 absolute error = 3.0299827268643349e-16 relative error = 7.8043894869496344193277503979962e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.084 Order of pole = 2.181 x[1] = -0.408 y[1] (analytic) = -0.38738384776859648153716683167276 y[1] (numeric) = -0.38738384776859678186992935880818 absolute error = 3.0033276252713542e-16 relative error = 7.7528468018764433050330292319786e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.084 Order of pole = 2.181 x[1] = -0.407 y[1] (analytic) = -0.38652625623367399549050470224825 y[1] (numeric) = -0.38652625623367429313919516700188 absolute error = 2.9764869046475363e-16 relative error = 7.7006072851312450763502435398881e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.083 Order of pole = 2.181 x[1] = -0.406 y[1] (analytic) = -0.38566806561361143238477189205102 y[1] (numeric) = -0.38566806561361172733083419822387 absolute error = 2.9494606230617285e-16 relative error = 7.6476661824956471295031017003844e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.083 Order of pole = 2.181 x[1] = -0.405 y[1] (analytic) = -0.38480927654586117378889598983605 y[1] (numeric) = -0.38480927654586146601378077443273 absolute error = 2.9222488478459668e-16 relative error = 7.5940187151327579493764307904058e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.083 Order of pole = 2.181 x[1] = -0.404 y[1] (analytic) = -0.38394988967229587320957482233077 y[1] (numeric) = -0.38394988967229616269474038729917 absolute error = 2.8948516556496840e-16 relative error = 7.5396600793933336525092380483349e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.082 Order of pole = 2.181 x[1] = -0.403 y[1] (analytic) = -0.38308990563921416370422282837193 y[1] (numeric) = -0.38308990563921445043113607772954 absolute error = 2.8672691324935761e-16 relative error = 7.4845854466181328194153096172185e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.082 Order of pole = 2.181 x[1] = -0.402 y[1] (analytic) = -0.38222932509734630920873589505817 y[1] (numeric) = -0.38222932509734659315887327736979 absolute error = 2.8395013738231162e-16 relative error = 7.4287899629363888163767670751692e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.082 Order of pole = 2.181 x[1] = -0.401 y[1] (analytic) = -0.38136814870185979919879079365685 y[1] (numeric) = -0.38136814870186008035363924982812 absolute error = 2.8115484845617127e-16 relative error = 7.3722687490603269682212640357491e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.081 Order of pole = 2.181 x[1] = -0.4 y[1] (analytic) = -0.38050637711236488630358791681043 y[1] (numeric) = -0.38050637711236516464464583316024 absolute error = 2.7834105791634981e-16 relative error = 7.3150169000756249026390910507898e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.081 Order of pole = 2.181 x[1] = -0.399 y[1] (analytic) = -0.37964401099292006649115805831544 y[1] (numeric) = -0.37964401099292034199993622489013 absolute error = 2.7550877816657469e-16 relative error = 7.2570294852277445415229213117245e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.08 Order of pole = 2.182 x[1] = -0.398 y[1] (analytic) = -0.37878105101203750144458560114141 y[1] (numeric) = -0.37878105101203777410260817523238 absolute error = 2.7265802257409097e-16 relative error = 7.1983015477040326780257810155110e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.08 Order of pole = 2.182 x[1] = -0.397 y[1] (analytic) = -0.37791749784268838274875179639149 y[1] (numeric) = -0.37791749784268865253755727121734 absolute error = 2.6978880547482585e-16 relative error = 7.1388281044115059588578155036801e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.08 Order of pole = 2.182 x[1] = -0.396 y[1] (analytic) = -0.37705335216230823750747293277759 y[1] (numeric) = -0.37705335216230850440861511129099 absolute error = 2.6690114217851340e-16 relative error = 7.0786041457502232657255098837266e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.079 Order of pole = 2.182 memory used=240.3MB, alloc=4.4MB, time=33.69 x[1] = -0.395 y[1] (analytic) = -0.3761886146528021750111992192848 y[1] (numeric) = -0.37618861465280243900624819306355 absolute error = 2.6399504897377875e-16 relative error = 7.0176246353821513444592390800211e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.079 Order of pole = 2.182 x[1] = -0.394 y[1] (analytic) = -0.3753232860005500740757512386144 y[1] (numeric) = -0.37532328600055033514629437179542 absolute error = 2.6107054313318102e-16 relative error = 6.9558845099954281767029288653043e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.079 Order of pole = 2.182 x[1] = -0.393 y[1] (analytic) = -0.37445736689641171067290198047233 y[1] (numeric) = -0.37445736689641196880054489868631 absolute error = 2.5812764291821398e-16 relative error = 6.8933786790639189241752105701424e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.078 Order of pole = 2.182 x[1] = -0.392 y[1] (analytic) = -0.37359085803573182547396383571233 y[1] (numeric) = -0.37359085803573208064033141997619 absolute error = 2.5516636758426386e-16 relative error = 6.8301020246019686768875789960981e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.078 Order of pole = 2.182 x[1] = -0.391 y[1] (analytic) = -0.37272376011834513092791162779101 y[1] (numeric) = -0.37272376011834538311464901331448 absolute error = 2.5218673738552347e-16 relative error = 6.7660494009142473175954368163443e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.077 Order of pole = 2.183 x[1] = -0.39 y[1] (analytic) = -0.37185607384858125749596487910426 y[1] (numeric) = -0.37185607384858150668473845896597 absolute error = 2.4918877357986171e-16 relative error = 6.7012156343405775445266231788080e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.077 Order of pole = 2.183 x[1] = -0.389 y[1] (analytic) = -0.37098779993526963866496515781415 y[1] (numeric) = -0.37098779993526988483746359146199 absolute error = 2.4617249843364784e-16 relative error = 6.6355955229956427027429135201523e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.077 Order of pole = 2.183 x[1] = -0.388 y[1] (analytic) = -0.37011893909174433436231762609371 y[1] (numeric) = -0.37011893909174457750025285262323 absolute error = 2.4313793522652952e-16 relative error = 6.5691838365034592342660264430322e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.076 Order of pole = 2.183 x[1] = -0.387 y[1] (analytic) = -0.36924949203584879239571991273415 y[1] (numeric) = -0.36924949203584903248082816889816 absolute error = 2.4008510825616401e-16 relative error = 6.5019753157265065018543750223751e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.076 Order of pole = 2.183 x[1] = -0.386 y[1] (analytic) = -0.36837945948994054754137626025184 y[1] (numeric) = -0.3683794594899407845554191031535 absolute error = 2.3701404284290166e-16 relative error = 6.4339646724893974761461197972273e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.076 Order of pole = 2.183 x[1] = -0.385 y[1] (analytic) = -0.36750884218089585790489064651353 y[1] (numeric) = -0.36750884218089609182965598093422 absolute error = 2.3392476533442069e-16 relative error = 6.3651465892969678455756347808656e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.075 Order of pole = 2.184 x[1] = -0.384 y[1] (analytic) = -0.36663764084011427817954935000224 y[1] (numeric) = -0.36663764084011450899685246031511 absolute error = 2.3081730311031287e-16 relative error = 6.2955157190466752293220517024218e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.075 Order of pole = 2.184 x[1] = -0.383 y[1] (analytic) = -0.36576585620352316942724131171394 y[1] (numeric) = -0.36576585620352339711892589833275 absolute error = 2.2769168458661881e-16 relative error = 6.2250666847351733083220538404576e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.075 Order of pole = 2.184 x[1] = -0.382 y[1] (analytic) = -0.364893489011582145007823739832 y[1] (numeric) = -0.36489348901158236955576296014447 absolute error = 2.2454793922031247e-16 relative error = 6.1537940791589475706618977444515e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.074 Order of pole = 2.184 x[1] = -0.381 y[1] (analytic) = -0.36402054000928745228332079927382 y[1] (numeric) = -0.36402054000928767366941831300764 absolute error = 2.2138609751373382e-16 relative error = 6.0816924646088783106390462854254e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.074 Order of pole = 2.184 x[1] = -0.38 y[1] (analytic) = -0.36314700994617628972394501939422 y[1] (numeric) = -0.36314700994617650793013603836311 absolute error = 2.1820619101896889e-16 relative error = 6.0087563725586022644548093351474e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.074 Order of pole = 2.185 x[1] = -0.379 y[1] (analytic) = -0.36227289957633105904355433095675 y[1] (numeric) = -0.36227289957633127405180667313329 absolute error = 2.1500825234217654e-16 relative error = 5.9349803033465440548166726778632e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.073 Order of pole = 2.185 x[1] = -0.378 y[1] (analytic) = -0.36139820965838355199280249826068 y[1] (numeric) = -0.36139820965838376378511764612162 absolute error = 2.1179231514786094e-16 relative error = 5.8603587258514764972780776049720e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.073 Order of pole = 2.185 x[1] = -0.377 y[1] (analytic) = -0.3605229409555190714389072332569 y[1] (numeric) = -0.36052294095551927999732139634596 absolute error = 2.0855841416308906e-16 relative error = 5.7848860771614744603236766676983e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.073 Order of pole = 2.185 x[1] = -0.376 y[1] (analytic) = -0.35964709423548048636164855370809 y[1] (numeric) = -0.35964709423548069166823373536046 absolute error = 2.0530658518165237e-16 relative error = 5.7085567622361213273297306449589e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.072 Order of pole = 2.185 x[1] = -0.375 y[1] (analytic) = -0.35877067027057222039592006392646 y[1] (numeric) = -0.3587706702705724224327851320984 absolute error = 2.0203686506817194e-16 relative error = 5.6313651535618238429037857637168e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.072 Order of pole = 2.186 x[1] = -0.374 y[1] (analytic) = -0.35789366983766417355188788019004 y[1] (numeric) = -0.35789366983766437230117964233602 absolute error = 1.9874929176214598e-16 relative error = 5.5533055908000838701658320924720e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.072 Order of pole = 2.186 x[1] = -0.373 y[1] (analytic) = -0.3570160937181955767445659782684 y[1] (numeric) = -0.35701609371819577218847026020771 absolute error = 1.9544390428193931e-16 relative error = 5.4743723804285849683632324802291e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.071 Order of pole = 2.186 x[1] = -0.372 y[1] (analytic) = -0.3561379426981787787653928910759 y[1] (numeric) = -0.35613794269817897088613561978952 absolute error = 1.9212074272871362e-16 relative error = 5.3945597953749309588817777057568e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.071 Order of pole = 2.186 x[1] = -0.371 y[1] (analytic) = -0.35525921756820296532919301261312 y[1] (numeric) = -0.35525921756820315410904130291108 absolute error = 1.8877984829029796e-16 relative error = 5.3138620746428864978261051304812e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.07 Order of pole = 2.186 x[1] = -0.37 y[1] (analytic) = -0.35437991912343780983072635114399 y[1] (numeric) = -0.35437991912343799525198959614248 absolute error = 1.8542126324499849e-16 relative error = 5.2322734229309548666550859620325e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.07 Order of pole = 2.187 memory used=244.1MB, alloc=4.4MB, time=34.24 x[1] = -0.369 y[1] (analytic) = -0.35350004816363705544587349984586 y[1] (numeric) = -0.3535000481636372374909044651927 absolute error = 1.8204503096534684e-16 relative error = 5.1497880102431336977735000594221e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.07 Order of pole = 2.187 x[1] = -0.368 y[1] (analytic) = -0.35261960549314202821336793557796 y[1] (numeric) = -0.35261960549314220686456385736405 absolute error = 1.7865119592178609e-16 relative error = 5.0663999714916762563965928186883e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.069 Order of pole = 2.187 x[1] = -0.367 y[1] (analytic) = -0.35173859192088508073387559329219 y[1] (numeric) = -0.35173859192088525597367927958587 absolute error = 1.7523980368629368e-16 relative error = 4.9821034060916906972449230967204e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.069 Order of pole = 2.187 x[1] = -0.366 y[1] (analytic) = -0.35085700826039296612413207103548 y[1] (numeric) = -0.35085700826039313793503300697596 absolute error = 1.7181090093594048e-16 relative error = 4.8968923775474037817131996155461e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.069 Order of pole = 2.187 x[1] = -0.365 y[1] (analytic) = -0.34997485532979014186478087324435 y[1] (numeric) = -0.34997485532979031022931632962944 absolute error = 1.6836453545638509e-16 relative error = 4.8107609130299071800867640920159e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.068 Order of pole = 2.188 x[1] = -0.364 y[1] (analytic) = -0.34909213395180200318151187157945 y[1] (numeric) = -0.34909213395180216808226801688206 absolute error = 1.6490075614530261e-16 relative error = 4.7237030029462053771383001860433e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.068 Order of pole = 2.188 x[1] = -0.363 y[1] (analytic) = -0.34820884495375804560007772503169 y[1] (numeric) = -0.34820884495375820701969074077895 absolute error = 1.6141961301574726e-16 relative error = 4.6357126004993842436237874213475e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.068 Order of pole = 2.188 x[1] = -0.362 y[1] (analytic) = -0.34732498916759495631676742525021 y[1] (numeric) = -0.34732498916759511423792462469787 absolute error = 1.5792115719944766e-16 relative error = 4.5467836212396989311256814041526e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.067 Order of pole = 2.188 x[1] = -0.361 y[1] (analytic) = -0.34644056742985963402694048843014 y[1] (numeric) = -0.34644056742985978843238143846456 absolute error = 1.5440544095003442e-16 relative error = 4.4569099426063995651530634578444e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.067 Order of pole = 2.188 x[1] = -0.36 y[1] (analytic) = -0.34555558058171213685527266971645 y[1] (numeric) = -0.34555558058171228772779031591535 absolute error = 1.5087251764619890e-16 relative error = 4.3660854034600863058284802840250e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.067 Order of pole = 2.188 x[1] = -0.359 y[1] (analytic) = -0.34467002946892855803243449659233 y[1] (numeric) = -0.34467002946892870535487629137486 absolute error = 1.4732244179478253e-16 relative error = 4.2743038036053961070771590364675e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.066 Order of pole = 2.189 x[1] = -0.358 y[1] (analytic) = -0.34378391494190382896401746938312 y[1] (numeric) = -0.34378391494190397271928650317894 absolute error = 1.4375526903379582e-16 relative error = 4.1815589033038115272012472448005e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.066 Order of pole = 2.189 x[1] = -0.357 y[1] (analytic) = -0.34289723785565444933863952364844 y[1] (numeric) = -0.34289723785565458950969565901475 absolute error = 1.4017105613536631e-16 relative error = 4.0878444227763807599512596322022e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.066 Order of pole = 2.189 x[1] = -0.356 y[1] (analytic) = -0.34200999906982114392330135324171 y[1] (numeric) = -0.34200999906982128049316236185633 absolute error = 1.3656986100861462e-16 relative error = 3.9931540416961306939649503226055e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.065 Order of pole = 2.189 x[1] = -0.355 y[1] (analytic) = -0.34112219944867144569522851511548 y[1] (numeric) = -0.3411221994486715786469712175734 absolute error = 1.3295174270245792e-16 relative error = 3.8974813986699545938623894389232e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.065 Order of pole = 2.189 x[1] = -0.354 y[1] (analytic) = -0.34023383986110220496062093699477 y[1] (numeric) = -0.34023383986110233427738234533464 absolute error = 1.2931676140833987e-16 relative error = 3.8008200907097431282583650096507e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.065 Order of pole = 2.189 x[1] = -0.353 y[1] (analytic) = -0.33934492118064202411194158478934 y[1] (numeric) = -0.33934492118064214977692004767578 absolute error = 1.2566497846288644e-16 relative error = 3.7031636726925328537538633895036e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.064 Order of pole = 2.19 x[1] = -0.352 y[1] (analytic) = -0.33845544428545361767660967452334 y[1] (numeric) = -0.33845544428545373967306602501 absolute error = 1.2199645635048666e-16 relative error = 3.6045056568094304913232359981491e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.064 Order of pole = 2.19 x[1] = -0.351 y[1] (analytic) = -0.33756541005833609731122098855611 y[1] (numeric) = -0.33756541005833621562247969435377 absolute error = 1.1831125870579766e-16 relative error = 3.5048395120030750223121982004732e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.064 Order of pole = 2.19 x[1] = -0.35 y[1] (analytic) = -0.33667481938672718139669863134177 y[1] (numeric) = -0.3366748193867272960061489475149 absolute error = 1.1460945031617313e-16 relative error = 3.4041586633933873595658555318201e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.063 Order of pole = 2.19 x[1] = -0.349 y[1] (analytic) = -0.33578367316270532889108198776164 y[1] (numeric) = -0.33578367316270543978217911177616 absolute error = 1.1089109712401452e-16 relative error = 3.3024564916913572815997785086455e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.063 Order of pole = 2.19 x[1] = -0.348 y[1] (analytic) = -0.33489197228299179709798977742652 y[1] (numeric) = -0.3348919722829919042542560064706 absolute error = 1.0715626622904408e-16 relative error = 3.1997263326006049942445160740797e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.063 Order of pole = 2.19 x[1] = -0.347 y[1] (analytic) = -0.33399971764895262301014497996033 y[1] (numeric) = -0.33399971764895272641517087045952 absolute error = 1.0340502589049919e-16 relative error = 3.0959614762064591188784085051411e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.062 Order of pole = 2.19 x[1] = -0.346 y[1] (analytic) = -0.3331069101666005278887250862171 y[1] (numeric) = -0.33310691016660062752617061546411 absolute error = 9.963744552924701e-17 relative error = 2.9911551663522743202433831153300e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.062 Order of pole = 2.19 x[1] = -0.345 y[1] (analytic) = -0.33221355074659674474070065410268 y[1] (numeric) = -0.33221355074659684059429638392148 absolute error = 9.585359572981880e-17 relative error = 2.8853006000027150140010319798276e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.062 Order of pole = 2.19 x[1] = -0.344 y[1] (analytic) = -0.33131964030425276835774855899215 y[1] (numeric) = -0.3313196403042528604112968013553 absolute error = 9.205354824236315e-17 relative error = 2.7783909265937219085587861546420e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.062 Order of pole = 2.19 x[1] = -0.343 memory used=247.9MB, alloc=4.4MB, time=34.79 y[1] (analytic) = -0.33042517975953202758177366982368 y[1] (numeric) = -0.33042517975953211581914965434103 absolute error = 8.823737598451735e-17 relative error = 2.6704192473688712280383669367898e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.061 Order of pole = 2.19 x[1] = -0.342 y[1] (analytic) = -0.32953017003705147946354399331424 y[1] (numeric) = -0.32953017003705156386869703651047 absolute error = 8.440515304319623e-17 relative error = 2.5613786147018327118849672628321e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.061 Order of pole = 2.191 x[1] = -0.341 y[1] (analytic) = -0.32863461206608312498243964920775 y[1] (numeric) = -0.32863461206608320553939432550535 absolute error = 8.055695467629760e-17 relative error = 2.4512620314046195012897169366750e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.061 Order of pole = 2.191 x[1] = -0.34 y[1] (analytic) = -0.32773850678055544599683540615889 y[1] (numeric) = -0.32773850678055552268969272048254 absolute error = 7.669285731432365e-17 relative error = 2.3400624500213228245543994772073e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.06 Order of pole = 2.191 x[1] = -0.339 y[1] (analytic) = -0.32684185511905476309617995619504 y[1] (numeric) = -0.32684185511905483590911851811269 absolute error = 7.281293856191765e-17 relative error = 2.2277727721070165275640081318227e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.06 Order of pole = 2.191 x[1] = -0.338 y[1] (analytic) = -0.32594465802482651402740266937482 y[1] (numeric) = -0.32594465802482658294467986868978 absolute error = 6.891727719931496e-17 relative error = 2.1143858474914989099097633351074e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.06 Order of pole = 2.191 x[1] = -0.337 y[1] (analytic) = -0.32504691644577645236987028122436 y[1] (numeric) = -0.32504691644577651737582346493238 absolute error = 6.500595318370802e-17 relative error = 1.9998944735275517472584743013468e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.059 Order of pole = 2.191 x[1] = -0.336 y[1] (analytic) = -0.32414863133447176613473185397701 y[1] (numeric) = -0.32414863133447182721377950450119 absolute error = 6.107904765052418e-17 relative error = 1.8842913943233637455287851577646e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.059 Order of pole = 2.191 x[1] = -0.335 y[1] (analytic) = -0.32324980364814211596613044698888 y[1] (numeric) = -0.32324980364814217310277336160494 absolute error = 5.713664291461606e-17 relative error = 1.7675692999587829410307250641122e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.059 Order of pole = 2.191 x[1] = -0.334 y[1] (analytic) = -0.32235043434868059262342425859152 y[1] (numeric) = -0.32235043434868064580224672995496 absolute error = 5.317882247136344e-17 relative error = 1.6497208256850330930124879960706e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.058 Order of pole = 2.191 x[1] = -0.333 y[1] (analytic) = -0.32145052440264459342524858590824 y[1] (numeric) = -0.32145052440264464263091958359434 absolute error = 4.920567099768610e-17 relative error = 1.5307385511075334207542094481477e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.058 Order of pole = 2.191 x[1] = -0.332 y[1] (analytic) = -0.32055007478125661733796281382548 y[1] (numeric) = -0.32055007478125666255523716679241 absolute error = 4.521727435296693e-17 relative error = 1.4106149993514492130190373295131e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.058 Order of pole = 2.191 x[1] = -0.331 y[1] (analytic) = -0.31964908646040497839276381056737 y[1] (numeric) = -0.31964908646040501960648339045199 absolute error = 4.121371957988462e-17 relative error = 1.2893426362095915125972044522882e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.057 Order of pole = 2.19 x[1] = -0.33 y[1] (analytic) = -0.31874756042064443711750859451907 y[1] (numeric) = -0.31874756042064447431260349967419 absolute error = 3.719509490515512e-17 relative error = 1.1669138692722710482720292399578e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.057 Order of pole = 2.19 x[1] = -0.329 y[1] (analytic) = -0.31784549764719674967107496257369 y[1] (numeric) = -0.31784549764719678283256470275512 absolute error = 3.316148974018143e-17 relative error = 1.0433210470387136222135053055905e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.057 Order of pole = 2.19 x[1] = -0.328 y[1] (analytic) = -0.31694289912995113436989894995901 y[1] (numeric) = -0.31694289912995116348289363156988 absolute error = 2.911299468161087e-17 relative error = 9.1855645800962162051421514323763e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.056 Order of pole = 2.19 x[1] = -0.327 y[1] (analytic) = -0.31603976586346465529816253896612 y[1] (numeric) = -0.31603976586346468034786405076527 absolute error = 2.504970151179915e-17 relative error = 7.9261232976046152894180752417108e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.056 Order of pole = 2.19 x[1] = -0.326 y[1] (analytic) = -0.31513609884696252269496396108787 y[1] (numeric) = -0.31513609884696254366666716026863 absolute error = 2.097170319918076e-17 relative error = 6.6548082799505335982225752693330e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.056 Order of pole = 2.19 x[1] = -0.325 y[1] (analytic) = -0.31423189908433830981368625370098 y[1] (numeric) = -0.31423189908433832669278015224579 absolute error = 1.687909389854481e-17 relative error = 5.3715405557901502177822814237344e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.055 Order of pole = 2.19 x[1] = -0.324 y[1] (analytic) = -0.31332716758415408595068744658613 y[1] (numeric) = -0.313327167584154098722656397802 absolute error = 1.277196895121587e-17 relative error = 4.0762405155261702779116214342685e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.055 Order of pole = 2.19 x[1] = -0.323 y[1] (analytic) = -0.31242190535964046534236787132933 y[1] (numeric) = -0.31242190535964047399279275646835 absolute error = 8.65042488513902e-18 relative error = 2.7688279012258101593427575114245e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.055 Order of pole = 2.19 x[1] = -0.322 y[1] (analytic) = -0.31151611342869657163162661208564 y[1] (numeric) = -0.31151611342869657614618602695418 absolute error = 4.51455941486854e-18 relative error = 1.4492217963235101883230153241219e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.055 Order of pole = 2.19 x[1] = -0.321 y[1] (analytic) = -0.31060979281388991760670005144684 y[1] (numeric) = -0.31060979281388991797117149290657 absolute error = 3.6447144145973e-19 relative error = 1.1734061510356587998822413915468e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.054 Order of pole = 2.19 x[1] = -0.32 y[1] (analytic) = -0.30970294454245619991738081039242 y[1] (numeric) = -0.30970294454245619611764186265536 absolute error = 3.79973894773706e-18 relative error = 1.2268979080423840695448610575296e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.054 Order of pole = 2.189 x[1] = -0.319 y[1] (analytic) = -0.30879556964629900847564513467882 y[1] (numeric) = -0.3087955696462990004976746552984 absolute error = 7.97797047938042e-18 relative error = 2.5835767295879783862654441739521e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.054 Order of pole = 2.189 x[1] = -0.318 y[1] (analytic) = -0.30788766916198945024977093769348 y[1] (numeric) = -0.30788766916198943807965024315267 absolute error = 1.217012069454081e-17 relative error = 3.9527795080801771912714441858814e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.053 Order of pole = 2.189 x[1] = -0.317 y[1] (analytic) = -0.30697924413076568716310726590472 y[1] (numeric) = -0.30697924413076567078702131670192 memory used=251.7MB, alloc=4.4MB, time=35.32 absolute error = 1.637608594920280e-17 relative error = 5.3345906155879991430911592611412e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.053 Order of pole = 2.189 x[1] = -0.316 y[1] (analytic) = -0.30607029559853238781075889968589 y[1] (numeric) = -0.30607029559853236721499748481855 absolute error = 2.059576141486734e-17 relative error = 6.7290951493974696643636622456981e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.053 Order of pole = 2.189 x[1] = -0.315 y[1] (analytic) = -0.30516082461586009270957712954771 y[1] (numeric) = -0.30516082461586006788053605029307 absolute error = 2.482904107925464e-17 relative error = 8.1363789439583926056430266741911e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.052 Order of pole = 2.189 x[1] = -0.314 y[1] (analytic) = -0.30425083223798449279899944368794 y[1] (numeric) = -0.30425083223798446372318169657983 absolute error = 2.907581774710811e-17 relative error = 9.5565285830886582168311206518906e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.052 Order of pole = 2.188 x[1] = -0.313 y[1] (analytic) = -0.30334031952480562091245691320838 y[1] (numeric) = -0.30334031952480558757647387210838 absolute error = 3.333598304110000e-17 relative error = 1.0989631412442009276697340229284e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.052 Order of pole = 2.188 x[1] = -0.312 y[1] (analytic) = -0.30242928754088695594126845022163 y[1] (numeric) = -0.30242928754088691833184104738223 absolute error = 3.760942740283940e-17 relative error = 1.2435775552245345923713956476162e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.051 Order of pole = 2.188 x[1] = -0.311 y[1] (analytic) = -0.30151773735545443941516582315162 y[1] (numeric) = -0.30151773735545439751912572916875 absolute error = 4.189604009398287e-17 relative error = 1.3895049910311677032400958526534e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.051 Order of pole = 2.188 x[1] = -0.31 y[1] (analytic) = -0.3006056700423954042258423224989 y[1] (numeric) = -0.30060567004239535803013312505031 absolute error = 4.619570919744859e-17 relative error = 1.5367544195335190290589887476289e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.051 Order of pole = 2.188 x[1] = -0.309 y[1] (analytic) = -0.29969308668025741522219125675657 y[1] (numeric) = -0.29969308668025736471386963802235 absolute error = 5.050832161873422e-17 relative error = 1.6853348930474847253291318524235e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.051 Order of pole = 2.188 x[1] = -0.308 y[1] (analytic) = -0.29877998835224702140819799746658 y[1] (numeric) = -0.29877998835224696657443491012741 absolute error = 5.483376308733917e-17 relative error = 1.8352555467233247232871396861913e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.05 Order of pole = 2.187 x[1] = -0.307 y[1] (analytic) = -0.29786637614622841947677105790348 y[1] (numeric) = -0.2978663761462283603048528996116 absolute error = 5.917191815829188e-17 relative error = 1.9865255999637646286976490733897e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.05 Order of pole = 2.187 x[1] = -0.306 y[1] (analytic) = -0.29695225115472202841514365272399 y[1] (numeric) = -0.29695225115472196489247343894166 absolute error = 6.352267021378233e-17 relative error = 2.1391543578730069928205199486593e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.05 Order of pole = 2.187 x[1] = -0.305 y[1] (analytic) = -0.29603761447490297491984731513142 y[1] (numeric) = -0.29603761447490290703394585023091 absolute error = 6.788590146490051e-17 relative error = 2.2931512127373812948308722549223e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.049 Order of pole = 2.187 x[1] = -0.304 y[1] (analytic) = -0.29512246720859948936165341051156 y[1] (numeric) = -0.2951224672085994171001604570303 absolute error = 7.226149295348126e-17 relative error = 2.4485256455383703493227547627018e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.049 Order of pole = 2.187 x[1] = -0.303 y[1] (analytic) = -0.29420681046229121204329674576447 y[1] (numeric) = -0.29420681046229113539397219170851 absolute error = 7.664932455405596e-17 relative error = 2.6052872274987727506330399281541e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.049 Order of pole = 2.186 x[1] = -0.302 y[1] (analytic) = -0.29329064534710740949523789416054 y[1] (numeric) = -0.29329064534710732844596291824913 absolute error = 8.104927497591141e-17 relative error = 2.7634456216627763527325477365877e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.048 Order of pole = 2.186 x[1] = -0.301 y[1] (analytic) = -0.29237397297882510055718729677063 y[1] (numeric) = -0.29237397297882501509596553151399 absolute error = 8.546122176525664e-17 relative error = 2.9230105845107521085582141020741e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.048 Order of pole = 2.186 x[1] = -0.3 y[1] (analytic) = -0.29145679447786709199560462143289 y[1] (numeric) = -0.29145679447786700211056331393516 absolute error = 8.988504130749773e-17 relative error = 3.0839919676095765559701064029503e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.048 Order of pole = 2.186 x[1] = -0.299 y[1] (analytic) = -0.29053911096929992340990121468515 y[1] (numeric) = -0.29053911096929982908929238506372 absolute error = 9.432060882962143e-17 relative error = 3.2463997192993373619311613256982e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.048 Order of pole = 2.186 x[1] = -0.298 y[1] (analytic) = -0.28962092358283172118261172474643 y[1] (numeric) = -0.28962092358283162241481332205878 absolute error = 9.876779840268765e-17 relative error = 3.4102438864172744385147232507319e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.047 Order of pole = 2.185 x[1] = -0.297 y[1] (analytic) = -0.28870223345280996123136305587949 y[1] (numeric) = -0.28870223345280985800488011144792 absolute error = 1.0322648294443157e-16 relative error = 3.5755346160598557238057114052990e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.047 Order of pole = 2.185 x[1] = -0.296 y[1] (analytic) = -0.28778304171821914032305468546916 y[1] (numeric) = -0.28778304171821903262652046349367 absolute error = 1.0769653422197549e-16 relative error = 3.7422821573838891572399385908960e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.047 Order of pole = 2.185 x[1] = -0.295 y[1] (analytic) = -0.28686334952267835571327398182198 y[1] (numeric) = -0.28686334952267824353545112717097 absolute error = 1.1217782285465101e-16 relative error = 3.9104968634476132724480121627077e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.046 Order of pole = 2.185 x[1] = -0.294 y[1] (analytic) = -0.28594315801443879287660344768433 y[1] (numeric) = -0.28594315801443867620638513075252 absolute error = 1.1667021831693181e-16 relative error = 4.0801891930927233214077408258155e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.046 Order of pole = 2.185 x[1] = -0.293 y[1] (analytic) = -0.28502246834638112109613372417645 y[1] (numeric) = -0.28502246834638099992254478269903 absolute error = 1.2117358894147742e-16 relative error = 4.2513697128683202359419718025122e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.046 Order of pole = 2.184 x[1] = -0.292 y[1] (analytic) = -0.28410128167601279668317666236213 y[1] (numeric) = -0.28410128167601267099537474007377 absolute error = 1.2568780192228836e-16 relative error = 4.4240490989977964792169019000873e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.045 Order of pole = 2.184 x[1] = -0.291 y[1] (analytic) = -0.28317959916546527360087674284891 y[1] (numeric) = -0.28317959916546514338815342487595 absolute error = 1.3021272331797296e-16 relative error = 4.5982381393896982959704564099955e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=255.6MB, alloc=4.4MB, time=35.88 Complex estimate of poles used Radius of convergence = 1.045 Order of pole = 2.184 x[1] = -0.29 y[1] (analytic) = -0.28225742198149112126814653318423 y[1] (numeric) = -0.28225742198149098651992847805793 absolute error = 1.3474821805512630e-16 relative error = 4.7739477356936372065077529730864e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.045 Order of pole = 2.184 x[1] = -0.289 y[1] (analytic) = -0.28133475129546104932310265162365 y[1] (numeric) = -0.2813347512954609100289527198023 absolute error = 1.3929414993182135e-16 relative error = 4.9511889054023405399104799285806e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.045 Order of pole = 2.184 x[1] = -0.288 y[1] (analytic) = -0.28041158828336083912795278504169 y[1] (numeric) = -0.28041158828336069527757116382874 absolute error = 1.4385038162121295e-16 relative error = 5.1299727840009811121711628776591e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.044 Order of pole = 2.184 x[1] = -0.287 y[1] (analytic) = -0.27948793412578818180008161696429 y[1] (numeric) = -0.27948793412578803338330694170962 absolute error = 1.4841677467525467e-16 relative error = 5.3103106271649365064012800520917e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.044 Order of pole = 2.183 x[1] = -0.286 y[1] (analytic) = -0.27856379000794942255690398524164 y[1] (numeric) = -0.2785637900079492695637144567127 absolute error = 1.5299318952852894e-16 relative error = 5.4922138130071732281770761760502e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.044 Order of pole = 2.183 x[1] = -0.285 y[1] (analytic) = -0.27763915711965621116489713174288 y[1] (numeric) = -0.27763915711965605358541162955212 absolute error = 1.5757948550219076e-16 relative error = 5.6756938443764817325460360145973e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.043 Order of pole = 2.183 x[1] = -0.284 y[1] (analytic) = -0.27671403665532205828609045030453 y[1] (numeric) = -0.2767140366553218961105696422794 absolute error = 1.6217552080802513e-16 relative error = 5.8607623512078167689363852475803e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.043 Order of pole = 2.183 x[1] = -0.283 y[1] (analytic) = -0.27578842981395879751818060333197 y[1] (numeric) = -0.27578842981395863073702805071333 absolute error = 1.6678115255261864e-16 relative error = 6.0474310929260438969608134187517e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.043 Order of pole = 2.183 x[1] = -0.282 y[1] (analytic) = -0.27486233779917295292735217892747 y[1] (numeric) = -0.27486233779917278153111543728225 absolute error = 1.7139623674164522e-16 relative error = 6.2357119609044139743293015084726e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.043 Order of pole = 2.183 x[1] = -0.281 y[1] (analytic) = -0.27393576181916201187581911384407 y[1] (numeric) = -0.2739357618191618358551908295775 absolute error = 1.7602062828426657e-16 relative error = 6.4256169809791441078687692526455e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.042 Order of pole = 2.183 x[1] = -0.28 y[1] (analytic) = -0.27300870308671060294905982523562 y[1] (numeric) = -0.27300870308671042229487882758847 absolute error = 1.8065418099764715e-16 relative error = 6.6171583160214995512739768373117e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.042 Order of pole = 2.182 x[1] = -0.279 y[1] (analytic) = -0.27208116281918657879069928603027 y[1] (numeric) = -0.27208116281918639349395167444603 absolute error = 1.8529674761158424e-16 relative error = 6.8103482685688342565147314181996e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.042 Order of pole = 2.182 x[1] = -0.278 y[1] (analytic) = -0.27115314223853700365599405237651 y[1] (numeric) = -0.27115314223853681370781427912345 absolute error = 1.8994817977325306e-16 relative error = 7.0051992835160706081619373198852e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.042 Order of pole = 2.182 x[1] = -0.277 y[1] (analytic) = -0.27022464257128404549790141221517 y[1] (numeric) = -0.27022464257128385088957336014794 absolute error = 1.9460832805206723e-16 relative error = 7.2017239508691524394297867296624e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.041 Order of pole = 2.182 x[1] = -0.276 y[1] (analytic) = -0.26929566504852077240276127446637 y[1] (numeric) = -0.26929566504852057312571932981177 absolute error = 1.9927704194465460e-16 relative error = 7.3999350085620406762000269164326e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.041 Order of pole = 2.182 x[1] = -0.275 y[1] (analytic) = -0.2683662109059068531956890590657 y[1] (numeric) = -0.26836621090590664924151917911688 absolute error = 2.0395416987994882e-16 relative error = 7.5998453453388793560491501494940e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.041 Order of pole = 2.182 x[1] = -0.274 y[1] (analytic) = -0.2674362813836641620388695772418 y[1] (numeric) = -0.26743628138366395339931035284523 absolute error = 2.0863955922439657e-16 relative error = 7.8014680037029905291206150095306e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.04 Order of pole = 2.182 x[1] = -0.273 y[1] (analytic) = -0.26650587772657228684905560472492 y[1] (numeric) = -0.26650587772657207351599931744421 absolute error = 2.1333305628728071e-16 relative error = 8.0048161829344179909361311658159e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.04 Order of pole = 2.182 x[1] = -0.272 y[1] (analytic) = -0.26557500118396394136371044135735 y[1] (numeric) = -0.26557500118396372332920411519799 absolute error = 2.1803450632615936e-16 relative error = 8.2099032421777810380362963677223e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.04 Order of pole = 2.182 x[1] = -0.271 y[1] (analytic) = -0.26464365300972028068839110980497 y[1] (numeric) = -0.26464365300972005794463755738388 absolute error = 2.2274375355242109e-16 relative error = 8.4167427036022579330063063843187e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.04 Order of pole = 2.182 x[1] = -0.27 y[1] (analytic) = -0.26371183446226612016114786232071 y[1] (numeric) = -0.26371183446226589270050672536442 absolute error = 2.2746064113695629e-16 relative error = 8.6253482556355685836556775213670e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.039 Order of pole = 2.182 x[1] = -0.269 y[1] (analytic) = -0.26277954680456505737291622397537 y[1] (numeric) = -0.26277954680456482518790500803065 absolute error = 2.3218501121594472e-16 relative error = 8.8357337562738789549917785554153e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.039 Order of pole = 2.182 x[1] = -0.268 y[1] (analytic) = -0.26184679130411449718609978724919 y[1] (numeric) = -0.26184679130411426026939489048979 absolute error = 2.3691670489675940e-16 relative error = 9.0479132364696133148623798204577e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.039 Order of pole = 2.182 x[1] = -0.267 y[1] (analytic) = -0.26091356923294057959678526777799 y[1] (numeric) = -0.26091356923294033794122300379126 absolute error = 2.4165556226398673e-16 relative error = 9.2619009035992096499496770492250e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.039 Order of pole = 2.182 x[1] = -0.266 y[1] (analytic) = -0.25997988186759301028929581338912 y[1] (numeric) = -0.25997988186759276388787342782605 absolute error = 2.4640142238556307e-16 relative error = 9.4777111450129279697832663405939e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.038 Order of pole = 2.182 x[1] = -0.265 y[1] (analytic) = -0.25904573048913979373507410496906 y[1] (numeric) = -0.25904573048913954258095078594145 absolute error = 2.5115412331902761e-16 relative error = 9.6953585316688695375596355702657e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=259.4MB, alloc=4.4MB, time=36.42 Complex estimate of poles used Radius of convergence = 1.038 Order of pole = 2.182 x[1] = -0.264 y[1] (analytic) = -0.25811111638316186869119327240872 y[1] (numeric) = -0.25811111638316161277769115451709 absolute error = 2.5591350211789163e-16 relative error = 9.9148578218534410163533650158335e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.038 Order of pole = 2.182 x[1] = -0.263 y[1] (analytic) = -0.25717604083974764595712094371203 y[1] (numeric) = -0.25717604083974738527772610558799 absolute error = 2.6067939483812404e-16 relative error = 1.0136223964990557388258349179513e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.038 Order of pole = 2.182 x[1] = -0.262 y[1] (analytic) = -0.25624050515348744825170971977317 y[1] (numeric) = -0.25624050515348718280007317501978 absolute error = 2.6545163654475339e-16 relative error = 1.0359472105541959345130069043972e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.037 Order of pole = 2.182 x[1] = -0.261 y[1] (analytic) = -0.25530451062346785207575588837784 y[1] (numeric) = -0.25530451062346758184569456979192 absolute error = 2.7023006131858592e-16 relative error = 1.0584617587001069460109314142394e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.037 Order of pole = 2.182 x[1] = -0.26 y[1] (analytic) = -0.25436805855326593142885712332461 y[1] (numeric) = -0.25436805855326565641435486028461 absolute error = 2.7501450226304000e-16 relative error = 1.0811675955982916816961869710730e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.037 Order of pole = 2.182 x[1] = -0.259 y[1] (analytic) = -0.25343115025094340325270912045762 y[1] (numeric) = -0.25343115025094312344791760936098 absolute error = 2.7980479151109664e-16 relative error = 1.1040662966412711543321502646184e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.037 Order of pole = 2.182 x[1] = -0.258 y[1] (analytic) = -0.25249378702904067447641046172953 y[1] (numeric) = -0.25249378702904038987565022936352 absolute error = 2.8460076023236601e-16 relative error = 1.1271594583815741140835817102133e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.036 Order of pole = 2.182 x[1] = -0.257 y[1] (analytic) = -0.25155597020457079054279432865903 y[1] (numeric) = -0.25155597020457050114055568838909 absolute error = 2.8940223864026994e-16 relative error = 1.1504486989711344961224565639102e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.036 Order of pole = 2.182 x[1] = -0.256 y[1] (analytic) = -0.25061770109901328529827486280961 y[1] (numeric) = -0.25061770109901299108921886346939 absolute error = 2.9420905599934022e-16 relative error = 1.1739356586113803418541980657981e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.036 Order of pole = 2.182 x[1] = -0.255 y[1] (analytic) = -0.24967898103830793213218484590961 y[1] (numeric) = -0.24967898103830763311114421327704 absolute error = 2.9902104063263257e-16 relative error = 1.1976220000143069620403507267645e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.036 Order of pole = 2.182 x[1] = -0.254 y[1] (analytic) = -0.24873981135284839625508979628847 y[1] (numeric) = -0.24873981135284809241706986703229 absolute error = 3.0383801992925618e-16 relative error = 1.2215094088748364614139358799844e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.035 Order of pole = 2.182 x[1] = -0.253 y[1] (analytic) = -0.24780019337747578800909139937062 y[1] (numeric) = -0.24780019337747547934927104735204 absolute error = 3.0865982035201858e-16 relative error = 1.2455995943547747421533558259779e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.035 Order of pole = 2.182 x[1] = -0.252 y[1] (analytic) = -0.24686012845147211710668025362079 y[1] (numeric) = -0.24686012845147180362041280843511 absolute error = 3.1348626744518568e-16 relative error = 1.2698942895786873147138056861952e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.035 Order of pole = 2.183 x[1] = -0.251 y[1] (analytic) = -0.24591961791855364769826406277119 y[1] (numeric) = -0.24591961791855332938107822041429 absolute error = 3.1831718584235690e-16 relative error = 1.2943952521420258213139130428603e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.035 Order of pole = 2.183 x[1] = -0.25 y[1] (analytic) = -0.24497866312686415417208248121128 y[1] (numeric) = -0.24497866312686383101968320675633 absolute error = 3.2315239927445495e-16 relative error = 1.3191042646318463384000669396528e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.034 Order of pole = 2.183 x[1] = -0.249 y[1] (analytic) = -0.24403726542896807759382366054851 y[1] (numeric) = -0.24403726542896774960209308271827 absolute error = 3.2799173057783024e-16 relative error = 1.3440231351604732148944054942341e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.034 Order of pole = 2.183 x[1] = -0.248 y[1] (analytic) = -0.24309542618184358269687998765299 y[1] (numeric) = -0.24309542618184324986187828517339 absolute error = 3.3283500170247960e-16 relative error = 1.3691536979124723897886679532524e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.034 Order of pole = 2.183 x[1] = -0.247 y[1] (analytic) = -0.24215314674687551533782138172501 y[1] (numeric) = -0.24215314674687517765578766134599 absolute error = 3.3768203372037902e-16 relative error = 1.3944978137053100551143833419919e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.034 Order of pole = 2.183 x[1] = -0.246 y[1] (analytic) = -0.24121042848984826033532366146249 y[1] (numeric) = -0.2412104284898479178026768275323 absolute error = 3.4253264683393019e-16 relative error = 1.4200573705640850546180734794724e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.033 Order of pole = 2.183 x[1] = -0.245 y[1] (analytic) = -0.24026727278093849961446673229958 y[1] (numeric) = -0.24026727278093815222780634777902 absolute error = 3.4738666038452056e-16 relative error = 1.4458342843107358513614689333351e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.033 Order of pole = 2.184 x[1] = -0.244 y[1] (analytic) = -0.23932368099470787058201250463952 y[1] (numeric) = -0.23932368099470751833811964344301 absolute error = 3.5224389286119651e-16 relative error = 1.4718304991681355071708884075533e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.033 Order of pole = 2.184 x[1] = -0.243 y[1] (analytic) = -0.23837965451009552466198536138191 y[1] (numeric) = -0.23837965451009516755782345193248 absolute error = 3.5710416190944943e-16 relative error = 1.4980479883795026206335791598795e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.033 Order of pole = 2.184 x[1] = -0.242 y[1] (analytic) = -0.23743519471041058592460846888223 y[1] (numeric) = -0.23743519471041022395732412876785 absolute error = 3.6196728434011438e-16 relative error = 1.5244887548435697802917237090410e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.033 Order of pole = 2.184 x[1] = -0.241 y[1] (analytic) = -0.23649030298332450974539708949449 y[1] (numeric) = -0.23649030298332414291232095111367 absolute error = 3.6683307613838082e-16 relative error = 1.5511548317659649972222901945533e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.032 Order of pole = 2.184 x[1] = -0.24 y[1] (analytic) = -0.23554498072086334143497512343376 y[1] (numeric) = -0.23554498072086296973362265051856 absolute error = 3.7170135247291520e-16 relative error = 1.5780482833272780491223884382888e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.032 Order of pole = 2.184 x[1] = -0.239 y[1] (analytic) = -0.23459922931939987478396319794222 y[1] (numeric) = -0.2345992293193994982120354928472 absolute error = 3.7657192770509502e-16 relative error = 1.6051712053682987082559513338528e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop memory used=263.2MB, alloc=4.4MB, time=36.97 Complex estimate of poles used Radius of convergence = 1.032 Order of pole = 2.185 x[1] = -0.238 y[1] (analytic) = -0.23365305017964571047108554543775 y[1] (numeric) = -0.23365305017964532902647014708393 absolute error = 3.8144461539835382e-16 relative error = 1.6325257260929295640425445778257e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.032 Order of pole = 2.185 x[1] = -0.237 y[1] (analytic) = -0.23270644470664321428645847996177 y[1] (numeric) = -0.23270644470664282796723015232495 absolute error = 3.8631922832763682e-16 relative error = 1.6601140067892942498852397723944e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.031 Order of pole = 2.185 x[1] = -0.236 y[1] (analytic) = -0.23175941430975737512585530103053 y[1] (numeric) = -0.23175941430975698393027681206378 absolute error = 3.9119557848896675e-16 relative error = 1.6879382425695787727833055741476e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.031 Order of pole = 2.185 x[1] = -0.235 y[1] (analytic) = -0.23081196040266756271559073186302 y[1] (numeric) = -0.23081196040266716664211362274362 absolute error = 3.9607347710911940e-16 relative error = 1.7160006631291619176035891256644e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.031 Order of pole = 2.185 x[1] = -0.234 y[1] (analytic) = -0.22986408440335918503153233857194 y[1] (numeric) = -0.2298640844033587840787976831636 absolute error = 4.0095273465540834e-16 relative error = 1.7443035335256093695328586369565e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.031 Order of pole = 2.186 x[1] = -0.233 y[1] (analytic) = -0.22891578773411524537962657966637 y[1] (numeric) = -0.22891578773411483954646573408781 absolute error = 4.0583316084557856e-16 relative error = 1.7728491549781272515388747833569e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.031 Order of pole = 2.186 x[1] = -0.232 y[1] (analytic) = -0.22796707182150779910922300027972 y[1] (numeric) = -0.22796707182150738839465834247144 absolute error = 4.1071456465780828e-16 relative error = 1.8016398656880891326236400369794e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.03 Order of pole = 2.186 x[1] = -0.231 y[1] (analytic) = -0.22701793809638930993439140982068 y[1] (numeric) = -0.22701793809638889433763706900207 absolute error = 4.1559675434081861e-16 relative error = 1.8306780416812737363965440916592e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.03 Order of pole = 2.186 x[1] = -0.23 y[1] (analytic) = -0.2260683879938839058423534599328 y[1] (numeric) = -0.22606838799388348536281603584248 absolute error = 4.2047953742409032e-16 relative error = 1.8599660976724708975382937359732e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.03 Order of pole = 2.187 x[1] = -0.229 y[1] (analytic) = -0.22511842295337853457209166420795 y[1] (numeric) = -0.2251184229533781092093709360205 absolute error = 4.2536272072818745e-16 relative error = 1.8895064879531383862080258959573e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.03 Order of pole = 2.187 x[1] = -0.228 y[1] (analytic) = -0.22416804441851401865015536228796 y[1] (numeric) = -0.22416804441851358840404498710105 absolute error = 4.3024611037518691e-16 relative error = 1.9193017073028135958334687635109e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.029 Order of pole = 2.187 x[1] = -0.227 y[1] (analytic) = -0.22321725383717600997465421687039 y[1] (numeric) = -0.22321725383717557484514241765665 absolute error = 4.3512951179921374e-16 relative error = 1.9493542919250112439079777527138e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.029 Order of pole = 2.187 x[1] = -0.226 y[1] (analytic) = -0.22226605266148584394241532858389 y[1] (numeric) = -0.22226605266148540392968557150264 absolute error = 4.4001272975708125e-16 relative error = 1.9796668204083621037070322936151e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.029 Order of pole = 2.187 x[1] = -0.225 y[1] (analytic) = -0.22131444234779129311827974442012 y[1] (numeric) = -0.22131444234779084822271140538462 absolute error = 4.4489556833903550e-16 relative error = 2.0102419147137757282063378163100e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.029 Order of pole = 2.188 x[1] = -0.224 y[1] (analytic) = -0.22036242435665722044952780194386 y[1] (numeric) = -0.22036242435665677067169682234029 absolute error = 4.4977783097960357e-16 relative error = 2.0410822411884380576102165801301e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.029 Order of pole = 2.188 x[1] = -0.223 y[1] (analytic) = -0.21941000015285613203245017324312 y[1] (numeric) = -0.21941000015285567737312970469834 absolute error = 4.5465932046854478e-16 relative error = 2.0721905116074825831153373546931e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.028 Order of pole = 2.188 x[1] = -0.222 y[1] (analytic) = -0.21845717120535862944212242678504 y[1] (numeric) = -0.21845717120535816990228346488065 absolute error = 4.5953983896190439e-16 relative error = 2.1035694842442056698579950811454e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.028 Order of pole = 2.188 x[1] = -0.221 y[1] (analytic) = -0.2175039389873237616404951871435 y[1] (numeric) = -0.21750393898732329722130719397444 absolute error = 4.6441918799316906e-16 relative error = 2.1352219649697270198789664007995e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.028 Order of pole = 2.188 x[1] = -0.22 y[1] (analytic) = -0.21655030497608927648197931498645 y[1] (numeric) = -0.21655030497608880718481083046323 absolute error = 4.6929716848452322e-16 relative error = 2.1671508083830284321285145131890e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.028 Order of pole = 2.189 x[1] = -0.219 y[1] (analytic) = -0.21559627065316177183978572368475 y[1] (numeric) = -0.21559627065316129766620496547878 absolute error = 4.7417358075820597e-16 relative error = 2.1993589189723402987092053543817e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.028 Order of pole = 2.189 x[1] = -0.218 y[1] (analytic) = -0.21464183750420674638037226327621 y[1] (numeric) = -0.21464183750420626733214771530886 absolute error = 4.7904822454796735e-16 relative error = 2.2318492523088772301267365387497e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.027 Order of pole = 2.189 x[1] = -0.217 y[1] (analytic) = -0.2136870070190385500174553040726 y[1] (numeric) = -0.21368700701903806609655629344892 absolute error = 4.8392089901062368e-16 relative error = 2.2646248162739651604769661349395e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.027 Order of pole = 2.189 x[1] = -0.216 y[1] (analytic) = -0.21273178069161023408116100566043 y[1] (numeric) = -0.21273178069160974528975826794962 absolute error = 4.8879140273771081e-16 relative error = 2.2976886723206368577872675931006e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.027 Order of pole = 2.189 x[1] = -0.215 y[1] (analytic) = -0.21177616002000330124202052511406 y[1] (numeric) = -0.21177616002000280758248675787917 absolute error = 4.9365953376723489e-16 relative error = 2.3310439367708164881466729405738e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.027 Order of pole = 2.189 x[1] = -0.214 y[1] (analytic) = -0.21082014650641735523365436158161 y[1] (numeric) = -0.21082014650641685670856476606211 absolute error = 4.9852508959551950e-16 relative error = 2.3646937821492521350711354811655e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.026 Order of pole = 2.189 x[1] = -0.213 y[1] (analytic) = -0.20986374165715965042214341168905 y[1] (numeric) = -0.2098637416571591470342762225404 absolute error = 5.0338786718914865e-16 relative error = 2.3986414385554019107610632673532e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop memory used=267.0MB, alloc=4.4MB, time=37.52 Complex estimate of poles used Radius of convergence = 1.026 Order of pole = 2.19 x[1] = -0.212 y[1] (analytic) = -0.20890694698263454127424787811166 y[1] (numeric) = -0.20890694698263403302658488110706 absolute error = 5.0824766299700460e-16 relative error = 2.4328901950745221233205501883059e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.026 Order of pole = 2.19 x[1] = -0.211 y[1] (analytic) = -0.2079497639973328317808096868911 y[1] (numeric) = -0.20794976399733231867653672449132 absolute error = 5.1310427296239978e-16 relative error = 2.4674434012292549013059207945556e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.026 Order of pole = 2.19 x[1] = -0.21 y[1] (analytic) = -0.20699219421982102489585928037958 y[1] (numeric) = -0.20699219421982050693836674507766 absolute error = 5.1795749253530192e-16 relative error = 2.5023044684730612939865899944237e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.026 Order of pole = 2.19 x[1] = -0.209 y[1] (analytic) = -0.20603423917273047205614331288115 y[1] (numeric) = -0.20603423917272994924902662822965 absolute error = 5.2280711668465150e-16 relative error = 2.5374768717268974023053867210205e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 2.19 x[1] = -0.208 y[1] (analytic) = -0.20507590038274642284999563402438 y[1] (numeric) = -0.20507590038274589519705572325366 absolute error = 5.2765293991077072e-16 relative error = 2.5729641509605853008498795726664e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 2.19 x[1] = -0.207 y[1] (analytic) = -0.20411717938059697490868974762712 y[1] (numeric) = -0.20411717938059644241393348976416 absolute error = 5.3249475625786296e-16 relative error = 2.6087699128203855048758781720807e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 2.19 x[1] = -0.206 y[1] (analytic) = -0.20315807770104192409763642640581 y[1] (numeric) = -0.20315807770104138676527709980391 absolute error = 5.3733235932660190e-16 relative error = 2.6448978323043372506410349991208e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 2.19 x[1] = -0.205 y[1] (analytic) = -0.20219859688286151508902508857327 y[1] (numeric) = -0.20219859688286097292348280176398 absolute error = 5.4216554228680929e-16 relative error = 2.6813516544869931037164528685528e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 2.19 x[1] = -0.204 y[1] (analytic) = -0.20123873846884509240175164255016 y[1] (numeric) = -0.20123873846884454540765375232957 absolute error = 5.4699409789022059e-16 relative error = 2.7181351962952393526364947029538e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.024 Order of pole = 2.191 x[1] = -0.203 y[1] (analytic) = -0.20027850400577965199872852024381 y[1] (numeric) = -0.20027850400577910018091003690656 absolute error = 5.5181781848333725e-16 relative error = 2.7552523483369580704374187416458e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.024 Order of pole = 2.191 x[1] = -0.202 y[1] (analytic) = -0.19931789504443829353593428537757 y[1] (numeric) = -0.19931789504443773689943826501267 absolute error = 5.5663649602036490e-16 relative error = 2.7927070767843587910758123085724e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.024 Order of pole = 2.191 x[1] = -0.201 y[1] (analytic) = -0.19835691313956857336183025714339 y[1] (numeric) = -0.19835691313956801191190818090709 absolute error = 5.6144992207623630e-16 relative error = 2.8305034253138783977403809097658e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.024 Order of pole = 2.191 x[1] = -0.2 y[1] (analytic) = -0.19739555984988075837004976519479 y[1] (numeric) = -0.19739555984988019211216190547674 absolute error = 5.6625788785971805e-16 relative error = 2.8686455171046245393407160247615e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.024 Order of pole = 2.191 x[1] = -0.199 y[1] (analytic) = -0.19643383673803598081255168214006 y[1] (numeric) = -0.19643383673803540975236745553991 absolute error = 5.7106018422660015e-16 relative error = 2.9071375568974177739837499362327e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 2.191 x[1] = -0.198 y[1] (analytic) = -0.1954717453706342941847234949532 y[1] (numeric) = -0.195471745370633718328121801986 absolute error = 5.7585660169296720e-16 relative error = 2.9459838331165691559833066484419e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 2.191 x[1] = -0.197 y[1] (analytic) = -0.1945092873182026302982201061027 y[1] (numeric) = -0.19450928731820204965128965755237 absolute error = 5.8064693044855033e-16 relative error = 2.9851887200566183111935781639063e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 2.191 x[1] = -0.196 y[1] (analytic) = -0.19354646415518265766163252603031 y[1] (numeric) = -0.19354646415518207223067215587169 absolute error = 5.8543096037015862e-16 relative error = 3.0247566801363461726516753917574e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 2.191 x[1] = -0.195 y[1] (analytic) = -0.19258327745991854129339535655458 y[1] (numeric) = -0.19258327745991795108491432136539 absolute error = 5.9020848103518919e-16 relative error = 3.0646922662224736855309084856902e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 2.191 x[1] = -0.194 y[1] (analytic) = -0.19161972881464460409566319384601 y[1] (numeric) = -0.19161972881464400911638145863152 absolute error = 5.9497928173521449e-16 relative error = 3.1050001240255538471812128421654e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 2.191 x[1] = -0.193 y[1] (analytic) = -0.19065581980547288992221352222369 y[1] (numeric) = -0.19065581980547229017906203257768 absolute error = 5.9974315148964601e-16 relative error = 3.1456849945706720162483908123031e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.022 Order of pole = 2.191 x[1] = -0.192 y[1] (analytic) = -0.18969155202238062847776704695925 y[1] (numeric) = -0.18969155202238002397788798748618 absolute error = 6.0449987905947307e-16 relative error = 3.1867517167456754414483820040352e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.022 Order of pole = 2.191 x[1] = -0.191 y[1] (analytic) = -0.18872692705919760219045544477445 y[1] (numeric) = -0.18872692705919699294120248369882 absolute error = 6.0924925296107563e-16 relative error = 3.2282052299297684267887741203422e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.022 Order of pole = 2.191 x[1] = -0.19 y[1] (analytic) = -0.18776194651359341520351091246245 y[1] (numeric) = -0.18776194651359280121244943235249 absolute error = 6.1399106148010996e-16 relative error = 3.2700505767054284600440206957810e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.022 Order of pole = 2.191 x[1] = -0.189 y[1] (analytic) = -0.18679661198706466463660138320294 y[1] (numeric) = -0.18679661198706404591150869773707 absolute error = 6.1872509268546587e-16 relative error = 3.3122929056567229900105242124004e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.022 Order of pole = 2.19 x[1] = -0.188 y[1] (analytic) = -0.18583092508492201427158957132817 y[1] (numeric) = -0.18583092508492139082045512803364 absolute error = 6.2345113444329453e-16 relative error = 3.3549374742572393799946701406367e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 2.19 x[1] = -0.187 y[1] (analytic) = -0.18486488741627717082185281270067 y[1] (numeric) = -0.18486488741627654265287838159519 absolute error = 6.2816897443110548e-16 relative error = 3.3979896518509756871543876599512e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 2.19 x[1] = -0.186 y[1] (analytic) = -0.18389850059402976294866370120209 y[1] (numeric) = -0.18389850059402913007026354927041 absolute error = 6.3287840015193168e-16 relative error = 3.4414549227296852777612286103459e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop memory used=270.8MB, alloc=4.4MB, time=38.07 Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 2.19 x[1] = -0.185 y[1] (analytic) = -0.18293176623485412319249849239243 y[1] (numeric) = -0.18293176623485348561329954383106 absolute error = 6.3757919894856137e-16 relative error = 3.4853388893103189148805817286346e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 2.19 x[1] = -0.184 y[1] (analytic) = -0.18196468595918597299151086206316 y[1] (numeric) = -0.18196468595918533072035284422762 absolute error = 6.4227115801783554e-16 relative error = 3.5296472754163665538338778732016e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 2.19 x[1] = -0.183 y[1] (analytic) = -0.18099726139120901096378257767923 y[1] (numeric) = -0.18099726139120836400971815266965 absolute error = 6.4695406442500958e-16 relative error = 3.5743859296670660427954574344552e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 2.19 x[1] = -0.182 y[1] (analytic) = -0.18002949415884140463433967073478 y[1] (numeric) = -0.18002949415884075300663455255667 absolute error = 6.5162770511817811e-16 relative error = 3.6195608289786227125961963648363e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 2.19 x[1] = -0.181 y[1] (analytic) = -0.17906138589372218579230249265557 y[1] (numeric) = -0.1790613858937215295004355498942 absolute error = 6.5629186694276137e-16 relative error = 3.6651780821817635503851094531481e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 2.19 x[1] = -0.18 y[1] (analytic) = -0.17809293823119754966792029959123 y[1] (numeric) = -0.17809293823119688872158364353905 absolute error = 6.6094633665605218e-16 relative error = 3.7112439337601453702488802583601e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 2.189 x[1] = -0.179 y[1] (analytic) = -0.17712415281030705812362544449479 y[1] (numeric) = -0.17712415281030639253272450267289 absolute error = 6.6559090094182190e-16 relative error = 3.7577647677143351176229675707766e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 2.189 x[1] = -0.178 y[1] (analytic) = -0.17615503127376974705762855928587 y[1] (numeric) = -0.17615503127376907683228213430158 absolute error = 6.7022534642498429e-16 relative error = 3.8047471115562951798463831434373e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 2.189 x[1] = -0.177 y[1] (analytic) = -0.17518557526797013822296398541092 y[1] (numeric) = -0.17518557526796946337350429909519 absolute error = 6.7484945968631573e-16 relative error = 3.8521976404395270320016029977175e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 2.189 x[1] = -0.176 y[1] (analytic) = -0.17421578644294415566928385633262 y[1] (numeric) = -0.1742157864429434762062565791021 absolute error = 6.7946302727723052e-16 relative error = 3.9001231814302622977872469722025e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 2.189 x[1] = -0.175 y[1] (analytic) = -0.17324566645236494701908934781572 y[1] (numeric) = -0.17324566645236426295325361320578 absolute error = 6.8406583573460994e-16 relative error = 3.9485307179253364466990957920775e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 2.189 x[1] = -0.174 y[1] (analytic) = -0.1722752169535286097944783876051 y[1] (numeric) = -0.17227521695352792113680679192141 absolute error = 6.8865767159568369e-16 relative error = 3.9974273942226391057464854750674e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 2.188 x[1] = -0.173 y[1] (analytic) = -0.17130443960733982301488025038005 y[1] (numeric) = -0.17130443960733912977655883741792 absolute error = 6.9323832141296213e-16 relative error = 4.0468205202503063651385783057059e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 2.188 x[1] = -0.172 y[1] (analytic) = -0.17033333607829738429063865080129 y[1] (numeric) = -0.17033333607829668648306688158304 absolute error = 6.9780757176921825e-16 relative error = 4.0967175764611102290957926297502e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 2.188 x[1] = -0.171 y[1] (analytic) = -0.1693619080344796526416958800731 y[1] (numeric) = -0.16936190803447895027648658755548 absolute error = 7.0236520929251762e-16 relative error = 4.1471262188987983561870346940707e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 2.188 x[1] = -0.17 y[1] (analytic) = -0.16839015714752989727502090172968 y[1] (numeric) = -0.1683901571475291903640002304346 absolute error = 7.0691102067129508e-16 relative error = 4.1980542844434580737465269614219e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 2.188 x[1] = -0.169 y[1] (analytic) = -0.16741808509264155255881382133079 y[1] (numeric) = -0.16741808509264084111402115185403 absolute error = 7.1144479266947676e-16 relative error = 4.2495097962433125122780549736917e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 2.187 x[1] = -0.168 y[1] (analytic) = -0.1664456935485433794359074624614 y[1] (numeric) = -0.16644569354854266346959532081562 absolute error = 7.1596631214164578e-16 relative error = 4.3015009693407080328057286595679e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 2.187 x[1] = -0.167 y[1] (analytic) = -0.16547298419748453352317360698024 y[1] (numeric) = -0.16547298419748381304780755872988 absolute error = 7.2047536604825036e-16 relative error = 4.3540362165004261290254463489900e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 2.187 x[1] = -0.166 y[1] (analytic) = -0.16449995872521954014812647905254 y[1] (numeric) = -0.16449995872521881517638500819975 absolute error = 7.2497174147085279e-16 relative error = 4.4071241542488432579414583390186e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 2.187 x[1] = -0.165 y[1] (analytic) = -0.16352661882099317657829895745621 y[1] (numeric) = -0.1635266188209924471230733300384 absolute error = 7.2945522562741781e-16 relative error = 4.4607736091328759373067744274319e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 2.187 x[1] = -0.164 y[1] (analytic) = -0.16255296617752526170334747544429 y[1] (numeric) = -0.16255296617752452777774158780552 absolute error = 7.3392560588763877e-16 relative error = 4.5149936242080833226599797791522e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 2.186 x[1] = -0.163 y[1] (analytic) = -0.16157900249099535343421929774144 y[1] (numeric) = -0.16157900249099461505154950944114 absolute error = 7.3838266978830030e-16 relative error = 4.5697934657657617055646494619033e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 2.186 x[1] = -0.162 y[1] (analytic) = -0.16060472946102735408809053492158 y[1] (numeric) = -0.16060472946102661126188548624586 absolute error = 7.4282620504867572e-16 relative error = 4.6251826303093479257032731105550e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 2.186 x[1] = -0.161 y[1] (analytic) = -0.15963014879067402403215455058094 y[1] (numeric) = -0.15963014879067327677615496462309 absolute error = 7.4725599958595785e-16 relative error = 4.6811708517909640441629478877037e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 2.186 x[1] = -0.16 y[1] (analytic) = -0.15865526218640140386370801978126 y[1] (numeric) = -0.1586552621864006521918664890597 absolute error = 7.5167184153072156e-16 relative error = 4.7377681091194752385800126137294e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 2.186 x[1] = -0.159 y[1] (analytic) = -0.15768007135807314540834549089928 y[1] (numeric) = -0.15768007135807238933482624848265 absolute error = 7.5607351924241663e-16 relative error = 4.7949846339520065280546511755015e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop memory used=274.6MB, alloc=4.4MB, time=38.62 Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 2.185 x[1] = -0.158 y[1] (analytic) = -0.15670457801893475182243256932571 y[1] (numeric) = -0.1567045780189339913616112444365 absolute error = 7.6046082132488921e-16 relative error = 4.8528309187814670029400512973394e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 2.185 x[1] = -0.157 y[1] (analytic) = -0.15572878388559772709038246182826 y[1] (numeric) = -0.15572878388559696225684581989781 absolute error = 7.6483353664193045e-16 relative error = 4.9113177253332714699642100323185e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 2.185 x[1] = -0.156 y[1] (analytic) = -0.15475269067802363521161027564922 y[1] (numeric) = -0.15475269067802286602015594279856 absolute error = 7.6919145433285066e-16 relative error = 4.9704560932851244845638626478551e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 2.185 x[1] = -0.155 y[1] (analytic) = -0.15377630011950806937638383680651 y[1] (numeric) = -0.15377630011950729584202000872914 absolute error = 7.7353436382807737e-16 relative error = 5.0302573493244474325098813769473e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 2.185 x[1] = -0.154 y[1] (analytic) = -0.15279961393666453143412855733377 y[1] (numeric) = -0.15279961393666375357207369255796 absolute error = 7.7786205486477581e-16 relative error = 5.0907331165587877550597075780260e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 2.184 x[1] = -0.153 y[1] (analytic) = -0.15182263385940822196207672055546 y[1] (numeric) = -0.15182263385940743978775921806532 absolute error = 7.8217431750249014e-16 relative error = 5.1518953242953502170693906562229e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 2.184 x[1] = -0.152 y[1] (analytic) = -0.15084536162093974124647814570863 y[1] (numeric) = -0.15084536162093895477553600690492 absolute error = 7.8647094213880371e-16 relative error = 5.2137562182066392677767065289193e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 2.184 x[1] = -0.151 y[1] (analytic) = -0.14986779895772870149290921662043 y[1] (numeric) = -0.14986779895772791074118969160342 absolute error = 7.9075171952501701e-16 relative error = 5.2763283709001041750653208617737e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 2.184 x[1] = -0.15 y[1] (analytic) = -0.14888994760949725058653039165587 y[1] (numeric) = -0.14888994760949645557008960981454 absolute error = 7.9501644078184133e-16 relative error = 5.3396246929106285497369761353706e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 2.184 x[1] = -0.149 y[1] (analytic) = -0.14791180931920350772744823132506 y[1] (numeric) = -0.14791180931920270846255081621826 absolute error = 7.9926489741510680e-16 relative error = 5.4036584441357219156912089599509e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 2.184 x[1] = -0.148 y[1] (analytic) = -0.14693338583302491127063636300874 y[1] (numeric) = -0.14693338583302410777375503152576 absolute error = 8.0349688133148298e-16 relative error = 5.4684432457343409765836394975349e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 2.183 x[1] = -0.147 y[1] (analytic) = -0.14595467890034147910416032615277 y[1] (numeric) = -0.14595467890034067139197547194239 absolute error = 8.0771218485421038e-16 relative error = 5.5339930925114086013472759677255e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 2.183 x[1] = -0.146 y[1] (analytic) = -0.14497569027371898190373358265784 y[1] (numeric) = -0.14497569027371816999313284381656 absolute error = 8.1191060073884128e-16 relative error = 5.6003223658113077006042890516311e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 2.183 x[1] = -0.145 y[1] (analytic) = -0.14399642170889202960590581247847 y[1] (numeric) = -0.14399642170889121351398362349022 absolute error = 8.1609192218898825e-16 relative error = 5.6674458469449116438641190462960e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 2.183 x[1] = -0.144 y[1] (analytic) = -0.14301687496474707144644961987734 y[1] (numeric) = -0.14301687496474625119050674779882 absolute error = 8.2025594287207852e-16 relative error = 5.7353787311760756668589117724483e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 2.183 x[1] = -0.143 y[1] (analytic) = -0.142037051803305309914767627425 y[1] (numeric) = -0.14203705180330448551231069231235 absolute error = 8.2440245693511265e-16 relative error = 5.8041366422949661618473297695403e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 2.183 x[1] = -0.142 y[1] (analytic) = -0.14105695398970552897938830862945 y[1] (numeric) = -0.14105695398970470044812928820363 absolute error = 8.2853125902042582e-16 relative error = 5.8737356478071461929419268931669e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 2.183 x[1] = -0.141 y[1] (analytic) = -0.14007658329218683694385548186933 y[1] (numeric) = -0.14007658329218600430171120041936 absolute error = 8.3264214428144997e-16 relative error = 5.9441922747689757041628570723614e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 2.183 x[1] = -0.14 y[1] (analytic) = -0.13909594148207132429654283387275 y[1] (numeric) = -0.13909594148207048756163443539761 absolute error = 8.3673490839847514e-16 relative error = 6.0155235263016319601933104853952e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 2.182 x[1] = -0.139 y[1] (analytic) = -0.13811503033374663692214083609013 y[1] (numeric) = -0.1381150303337457961127932416818 absolute error = 8.4080934759440833e-16 relative error = 6.0877468988179148647785003715000e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 2.182 x[1] = -0.138 y[1] (analytic) = -0.13713385162464846504676863772256 y[1] (numeric) = -0.13713385162464762018150998719446 absolute error = 8.4486525865052810e-16 relative error = 6.1608803999979816420712839217391e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 2.182 x[1] = -0.137 y[1] (analytic) = -0.13615240713524294829285764070112 y[1] (numeric) = -0.13615240713524209939041871846786 absolute error = 8.4890243892223326e-16 relative error = 6.2349425675522669586560574150409e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 2.182 x[1] = -0.136 y[1] (analytic) = -0.13517069864900899722413616046052 y[1] (numeric) = -0.13517069864900814430344980567667 absolute error = 8.5292068635478385e-16 relative error = 6.3099524888120938215775192923649e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 2.182 x[1] = -0.135 y[1] (analytic) = -0.13418872795242053176521552792173 y[1] (numeric) = -0.13418872795241967484541602888888 absolute error = 8.5691979949903285e-16 relative error = 6.3859298211908827027327845841389e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 2.182 x[1] = -0.134 y[1] (analytic) = -0.13320649683492863688443686885172 y[1] (numeric) = -0.13320649683492777598485934170504 absolute error = 8.6089957752714668e-16 relative error = 6.4628948135614251348947918972502e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 2.182 x[1] = -0.133 y[1] (analytic) = -0.13222400708894363593278428305017 y[1] (numeric) = -0.13222400708894277107296403473731 absolute error = 8.6485982024831286e-16 relative error = 6.5408683285974251914552202113727e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 2.182 x[1] = -0.132 y[1] (analytic) = -0.13124126050981708203580391418966 y[1] (numeric) = -0.13124126050981621323547578975646 absolute error = 8.6880032812443320e-16 relative error = 6.6198718661304336895155558608261e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop memory used=278.4MB, alloc=4.4MB, time=39.19 Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 2.182 x[1] = -0.131 y[1] (analytic) = -0.13025825889582366793958912843124 y[1] (numeric) = -0.13025825889582279521868684263069 absolute error = 8.7272090228580055e-16 relative error = 6.6999275875764194817318156871207e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 2.182 x[1] = -0.13 y[1] (analytic) = -0.12927500404814305471599938326971 y[1] (numeric) = -0.12927500404814217809465483651219 absolute error = 8.7662134454675752e-16 relative error = 6.7810583414895632664864115943302e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 2.182 x[1] = -0.129 y[1] (analytic) = -0.12829149777084161973637404487675 y[1] (numeric) = -0.12829149777084073923491662354129 absolute error = 8.8050145742133546e-16 relative error = 6.8632876903044296075913430236961e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 2.182 x[1] = -0.128 y[1] (analytic) = -0.12730774187085412432708208031648 y[1] (numeric) = -0.1273077418708532399660379414447 absolute error = 8.8436104413887178e-16 relative error = 6.9466399383314934438180928301370e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 2.182 x[1] = -0.127 y[1] (analytic) = -0.12632373815796530152431388861787 y[1] (numeric) = -0.12632373815796441332440522901385 absolute error = 8.8819990865960402e-16 relative error = 7.0311401610750929836802328787912e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 2.182 x[1] = -0.126 y[1] (analytic) = -0.1253394884447913643495722204484 y[1] (numeric) = -0.12533948844479047233171653020955 absolute error = 8.9201785569023885e-16 relative error = 7.1168142359472645697304731688535e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 2.182 x[1] = -0.125 y[1] (analytic) = -0.12435499454676143503135484916387 y[1] (numeric) = -0.12435499454676053921666414966965 absolute error = 8.9581469069949422e-16 relative error = 7.2036888744556165833053850255515e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 2.182 x[1] = -0.124 y[1] (analytic) = -0.12337025828209889560254207593813 y[1] (numeric) = -0.12337025828209799601232214232518 absolute error = 8.9959021993361295e-16 relative error = 7.2917916559484424268052753261131e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 2.182 x[1] = -0.123 y[1] (analytic) = -0.12238528147180266030700695867723 y[1] (numeric) = -0.12238528147180175696275652683123 absolute error = 9.0334425043184600e-16 relative error = 7.3811510630056836029655080957972e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 2.182 x[1] = -0.122 y[1] (analytic) = -0.12140006593962837025295502924847 y[1] (numeric) = -0.12140006593962746317636498734494 absolute error = 9.0707659004190353e-16 relative error = 7.4717965185701634047248172601163e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 2.182 x[1] = -0.121 y[1] (analytic) = -0.12041461351206951075447288757797 y[1] (numeric) = -0.12041461351206859996742545220569 absolute error = 9.1078704743537228e-16 relative error = 7.5637584249197579025256438082283e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 2.182 x[1] = -0.12 y[1] (analytic) = -0.11942892601833845180672111641376 y[1] (numeric) = -0.11942892601833753733128899331665 absolute error = 9.1447543212309711e-16 relative error = 7.6570682045878762549483920306135e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 2.183 x[1] = -0.119 y[1] (analytic) = -0.11844300529034741214414612973054 y[1] (numeric) = -0.11844300529034649400259165920521 absolute error = 9.1814155447052533e-16 relative error = 7.7517583433468473333857874898772e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 2.183 x[1] = -0.118 y[1] (analytic) = -0.11745685316268934733500753430537 y[1] (numeric) = -0.11745685316268842554978182129366 absolute error = 9.2178522571301171e-16 relative error = 7.8478624353765726416462277751411e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 2.183 x[1] = -0.117 y[1] (analytic) = -0.11647047147261876236942203212415 y[1] (numeric) = -0.11647047147261783696316406104142 absolute error = 9.2540625797108273e-16 relative error = 7.9454152307491777648273426459814e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 2.183 x[1] = -0.116 y[1] (analytic) = -0.1154838620600324492020115059854 y[1] (numeric) = -0.11548386206003152019754724032742 absolute error = 9.2900446426565798e-16 relative error = 8.0444526853694049719914644702375e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 2.183 x[1] = -0.115 y[1] (analytic) = -0.11449702676745014971411139778798 y[1] (numeric) = -0.11449702676744921713445286456072 absolute error = 9.3257965853322726e-16 relative error = 8.1450120135202164185528625092371e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 2.183 x[1] = -0.114 y[1] (analytic) = -0.11350996743999514456434549522631 y[1] (numeric) = -0.11350996743999420843268985424496 absolute error = 9.3613165564098135e-16 relative error = 8.2471317431735613703521400905805e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 2.183 x[1] = -0.113 y[1] (analytic) = -0.11252268592537476840020447558666 y[1] (numeric) = -0.11252268592537382873993307369179 absolute error = 9.3966027140189487e-16 relative error = 8.3508517742375890112331965491229e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 2.184 x[1] = -0.112 y[1] (analytic) = -0.11153518407386085190707770359557 y[1] (numeric) = -0.11153518407385990874175511383616 absolute error = 9.4316532258975941e-16 relative error = 8.4562134399238206431716341986210e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 2.184 x[1] = -0.111 y[1] (analytic) = -0.11054746373827009117498053335496 y[1] (numeric) = -0.11054746373826914452835357918985 absolute error = 9.4664662695416511e-16 relative error = 8.5632595714310213111321710688335e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 2.184 x[1] = -0.11 y[1] (analytic) = -0.10955952677394434486699241285981 y[1] (numeric) = -0.10955952677394339476298917743074 absolute error = 9.5010400323542907e-16 relative error = 8.6720345661568210785417813538791e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 2.184 x[1] = -0.109 y[1] (analytic) = -0.10857137503873085967717412503826 y[1] (numeric) = -0.10857137503872990613990294556955 absolute error = 9.5353727117946871e-16 relative error = 8.7825844596636237101154706349360e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 2.184 x[1] = -0.108 y[1] (analytic) = -0.10758301039296242456946521437456 y[1] (numeric) = -0.1075830103929614676232136617562 absolute error = 9.5694625155261836e-16 relative error = 8.8949570016421225823071034521049e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 2.184 x[1] = -0.107 y[1] (analytic) = -0.10659443469943745429277473678898 y[1] (numeric) = -0.10659443469943649396200858040157 absolute error = 9.6033076615638741e-16 relative error = 9.0092017361339362472568986223510e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 2.185 x[1] = -0.106 y[1] (analytic) = -0.10560564982340000267116962753435 y[1] (numeric) = -0.10560564982339903898053178537621 absolute error = 9.6369063784215814e-16 relative error = 9.1253700862946108741740320319837e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 2.185 x[1] = -0.105 y[1] (analytic) = -0.10461665763251970617173490360063 y[1] (numeric) = -0.10461665763251873914604437777897 absolute error = 9.6702569052582166e-16 relative error = 9.2435154439996681156370368983734e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 2.185 memory used=282.3MB, alloc=4.4MB, time=39.75 x[1] = -0.104 y[1] (analytic) = -0.10362745999687165825632830090303 y[1] (numeric) = -0.10362745999687068792057909855308 absolute error = 9.7033574920234995e-16 relative error = 9.3636932646196556638042387427185e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 2.185 x[1] = -0.103 y[1] (analytic) = -0.10263805878891621502707849104183 y[1] (numeric) = -0.10263805878891524140643853073918 absolute error = 9.7362063996030265e-16 relative error = 9.4859611673154812612259606275665e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 2.185 x[1] = -0.102 y[1] (analytic) = -0.10164845588347873267908042764051 y[1] (numeric) = -0.10164845588347775579889043137403 absolute error = 9.7688018999626648e-16 relative error = 9.6103790412328547845218250402598e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 2.186 x[1] = -0.101 y[1] (analytic) = -0.10065865315772923727732333951344 y[1] (numeric) = -0.10065865315772825716309571028764 absolute error = 9.8011422762922580e-16 relative error = 9.7370091580046751881888409887954e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 2.186 x[1] = -0.1 y[1] (analytic) = -0.099668652491162027378446119878021 y[1] (numeric) = -0.09966865249116104405586380501543 absolute error = 9.83322582314862591e-16 relative error = 9.8659162910029037371246297001848e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 2.186 x[1] = -0.099 y[1] (analytic) = -0.098678455765575210021451061613666 y[1] (numeric) = -0.098678455765574223516366401829706 absolute error = 9.86505084659783960e-16 relative error = 9.9971678418171432647698416046012e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 2.186 x[1] = -0.098 y[1] (analytic) = -0.097688064865050170615019763733247 y[1] (numeric) = -0.097688064865049180953453328057588 absolute error = 9.89661566435675659e-16 relative error = 1.0130833974476103865739498866528e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 2.186 x[1] = -0.097 y[1] (analytic) = -0.096697481675930977252564290803152 y[1] (numeric) = -0.09669748167592998446070369742336 absolute error = 9.92791860593379792e-16 relative error = 1.0266987757970703738546697021508e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 2.187 x[1] = -0.096 y[1] (analytic) = -0.095706708086803719989612013576212 y[1] (numeric) = -0.095706708086802724093810736681153 absolute error = 9.95895801276895059e-16 relative error = 1.0405705317684118111233447592781e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 2.187 x[1] = -0.095 y[1] (analytic) = -0.094715745988475785621563705688444 y[1] (numeric) = -0.094715745988474786648339868390618 absolute error = 9.98973223837297826e-16 relative error = 1.0547065996385062264154655504343e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 2.187 x[1] = -0.094 y[1] (analytic) = -0.093724597273955068503281129604286 y[1] (numeric) = -0.093724597273954066479316283021948 absolute error = 1.002023964846582338e-15 relative error = 1.0691152525496449085810347492182e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 2.187 x[1] = -0.093 y[1] (analytic) = -0.092733263838429117955352228385887 y[1] (numeric) = -0.092733263838428112907490116967496 absolute error = 1.005047862111418391e-15 relative error = 1.0838051207412820972491049788608e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 2.187 x[1] = -0.092 y[1] (analytic) = -0.09174174757924422280524886327667 y[1] (numeric) = -0.091741747579243214760494176451871 absolute error = 1.008044754686824799e-15 relative error = 1.0987852109707208250717463313918e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 2.188 x[1] = -0.091 y[1] (analytic) = -0.090750050395884433614933517185563 y[1] (numeric) = -0.090750050395883422600450627428582 absolute error = 1.011014482889756981e-15 relative error = 1.1140649272141969660572693951925e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 2.188 x[1] = -0.09 y[1] (analytic) = -0.089758174189950523149787239319397 y[1] (numeric) = -0.089758174189949509192898926712389 absolute error = 1.013956888312607008e-15 relative error = 1.1296540927479464422285294950867e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 2.188 x[1] = -0.089 y[1] (analytic) = -0.088766120865138885647021056580154 y[1] (numeric) = -0.088766120865137868775207219965689 absolute error = 1.016871813836614465e-15 relative error = 1.1455629737177920132061843797939e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 2.188 x[1] = -0.088 y[1] (analytic) = -0.087773892327220375444996844858354 y[1] (numeric) = -0.087773892327219355685893199671872 absolute error = 1.019759103645186482e-15 relative error = 1.1618023043156530188836737582671e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 2.188 x[1] = -0.087 y[1] (analytic) = -0.086781490484019085538120961779159 y[1] (numeric) = -0.086781490484018062919517724653862 absolute error = 1.022618603237125297e-15 relative error = 1.1783833136922691209068565936850e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 2.189 x[1] = -0.086 y[1] (analytic) = -0.08578891724539106662518451742101 y[1] (numeric) = -0.08578891724539004117502507765928 absolute error = 1.025450159439761730e-15 relative error = 1.1953177547474561802254831294773e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.189 x[1] = -0.085 y[1] (analytic) = -0.084796174523202987222207728550445 y[1] (numeric) = -0.084796174523201958968587306557495 absolute error = 1.028253620421992950e-15 relative error = 1.2126179349525129408977868416657e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.189 x[1] = -0.084 y[1] (analytic) = -0.083803264231310735414002094452995 y[1] (numeric) = -0.083803264231309704385166387230084 absolute error = 1.031028835707222911e-15 relative error = 1.2302967493741227695476806387409e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.189 x[1] = -0.083 y[1] (analytic) = -0.082810188285537962821792879902799 y[1] (numeric) = -0.082810188285536929046136693698907 absolute error = 1.033775656186203892e-15 relative error = 1.2483677160854171070892349712126e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.189 x[1] = -0.082 y[1] (analytic) = -0.081816948603654571367345326612277 y[1] (numeric) = -0.081816948603653534873411196834763 absolute error = 1.036493934129777514e-15 relative error = 1.2668450141679810322864755664352e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.189 x[1] = -0.081 y[1] (analytic) = -0.080823547105355143417110874075862 y[1] (numeric) = -0.080823547105354104233587672562176 absolute error = 1.039183523201513686e-15 relative error = 1.2857435245287078922143365850670e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.19 x[1] = -0.08 y[1] (analytic) = -0.079829985712237315892954191567332 y[1] (numeric) = -0.079829985712236274048675721321445 absolute error = 1.041844278470245887e-15 relative error = 1.3050788737778005922448782735990e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.19 x[1] = -0.079 y[1] (analytic) = -0.078836266347780098939037744761377 y[1] (numeric) = -0.07883626634777905446298132226013 absolute error = 1.044476056422501247e-15 relative error = 1.3248674814391587359550441150230e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.19 x[1] = -0.078 y[1] (analytic) = -0.077842390937322139737427684745209 y[1] (numeric) = -0.077842390937321092658712709921356 absolute error = 1.047078714974823853e-15 relative error = 1.3451266107922101602287839028472e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.19 memory used=286.1MB, alloc=4.5MB, time=40.29 x[1] = -0.077 y[1] (analytic) = -0.07684836140803993206794279794194 y[1] (numeric) = -0.076848361408038882415829311952158 absolute error = 1.049652113485989782e-15 relative error = 1.3658744236753165256209345157709e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.19 x[1] = -0.076 y[1] (analytic) = -0.075854179688925972210696838750518 y[1] (numeric) = -0.075854179688924920014584069638231 absolute error = 1.052196112769112287e-15 relative error = 1.3871300396156330104784023511478e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.19 x[1] = -0.075 y[1] (analytic) = -0.074859847710766861792683530805484 y[1] (numeric) = -0.074859847710765807082108427169812 absolute error = 1.054710575103635672e-15 relative error = 1.4089135996892228408088771422049e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.19 x[1] = -0.074 y[1] (analytic) = -0.07386536740612135818262261821458 y[1] (numeric) = -0.073865367406120300987258370998273 absolute error = 1.057195364247216307e-15 relative error = 1.4312463355588814039050999662038e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.19 x[1] = -0.073 y[1] (analytic) = -0.072870740709298373041124327768794 y[1] (numeric) = -0.072870740709297313390778880279456 absolute error = 1.059650345447489338e-15 relative error = 1.4541506441861609710845964563675e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = -0.072 y[1] (analytic) = -0.071875969556334919636038222077939 y[1] (numeric) = -0.071875969556333857560652768358367 absolute error = 1.062075385453719572e-15 relative error = 1.4776501687692526177640753477497e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = -0.071 y[1] (analytic) = -0.070881055884974009535630439351791 y[1] (numeric) = -0.070881055884972945065277911016686 absolute error = 1.064470352528335105e-15 relative error = 1.5017698865205405397260031413100e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = -0.07 y[1] (analytic) = -0.069886001634642499294980487984493 y[1] (numeric) = -0.069886001634641432459864029642269 absolute error = 1.066835116458342224e-15 relative error = 1.5265362039677942174657692595311e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = -0.069 y[1] (analytic) = -0.068890808746428887753704855477416 y[1] (numeric) = -0.068890808746427818584156288857271 absolute error = 1.069169548566620145e-15 relative error = 1.5519770605422642652147935604932e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = -0.068 y[1] (analytic) = -0.067895479163061064565799466258348 y[1] (numeric) = -0.067895479163059993092277743164182 absolute error = 1.071473521723094166e-15 relative error = 1.5781220413067438043963103378038e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = -0.067 y[1] (analytic) = -0.066900014828884010585046248794124 y[1] (numeric) = -0.066900014828882936838135893008305 absolute error = 1.073746910355785819e-15 relative error = 1.6050024997785153361038071615825e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = -0.066 y[1] (analytic) = -0.065904417689837450732050518716517 y[1] (numeric) = -0.065904417689836374742460056977897 absolute error = 1.075989590461738620e-15 relative error = 1.6326516919178509827955924501454e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = -0.065 y[1] (analytic) = -0.064908689693433459971565323678831 y[1] (numeric) = -0.064908689693432381770125705860787 absolute error = 1.078201439617818044e-15 relative error = 1.6611049224845085166605112560351e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = -0.064 y[1] (analytic) = -0.063912832788734023031316102077865 y[1] (numeric) = -0.063912832788732942648979110693529 absolute error = 1.080382336991384336e-15 relative error = 1.6903997051149708661590621033472e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = -0.063 y[1] (analytic) = -0.062916848926328548496063758939631 y[1] (numeric) = -0.062916848926327465963900408102811 absolute error = 1.082532163350836820e-15 relative error = 1.7205759376449543547396958900176e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = -0.062 y[1] (analytic) = -0.061920740058311337913136338114124 y[1] (numeric) = -0.06192074005831025326233526208577 absolute error = 1.084650801076028354e-15 relative error = 1.7516760943984238357805575489237e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = -0.061 y[1] (analytic) = -0.060924508138259010548118653029661 y[1] (numeric) = -0.060924508138257923809984484481051 absolute error = 1.086738134168548610e-15 relative error = 1.7837454373900890879040853707759e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = -0.06 y[1] (analytic) = -0.059928155121207884431815313861521 y[1] (numeric) = -0.059928155121206795637767051986659 absolute error = 1.088794048261874862e-15 relative error = 1.8168322486479534197888074040188e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = -0.059 y[1] (analytic) = -0.058931682963631314341995345006739 y[1] (numeric) = -0.058931682963630223523564713617738 absolute error = 1.090818430631389001e-15 relative error = 1.8509880861616815518797559618666e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = -0.058 y[1] (analytic) = -0.05793509362341698736578581388078 y[1] (numeric) = -0.057935093623415894554615609621305 absolute error = 1.092811170204259475e-15 relative error = 1.8862680663081768460761783419277e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.191 x[1] = -0.057 y[1] (analytic) = -0.056938389059844176690907383663444 y[1] (numeric) = -0.056938389059843081918749814476531 absolute error = 1.094772157569186913e-15 relative error = 1.9227311760059531553304677450962e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.191 x[1] = -0.056 y[1] (analytic) = -0.055941571233560954276236254894526 y[1] (numeric) = -0.05594157123355985757495126888236 absolute error = 1.096701284986012166e-15 relative error = 1.9604406183143986961788111785034e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.19 x[1] = -0.055 y[1] (analytic) = -0.054944642106561363054434372728006 y[1] (numeric) = -0.054944642106560264455987977542452 absolute error = 1.098598446395185554e-15 relative error = 1.9994641957345527035008745426478e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.19 x[1] = -0.054 y[1] (analytic) = -0.053947603642162549321612849995005 y[1] (numeric) = -0.053947603642161448858075422898927 absolute error = 1.100463537427096078e-15 relative error = 2.0398747360986260496162184086504e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.19 x[1] = -0.053 y[1] (analytic) = -0.052950457804981855971182095649323 y[1] (numeric) = -0.052950457804980753674726684389897 absolute error = 1.102296455411259426e-15 relative error = 2.0817505666731924102251566381041e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.19 x[1] = -0.052 y[1] (analytic) = -0.051953206560913877231195951199129 y[1] (numeric) = -0.051953206560912773134096565835556 absolute error = 1.104097099385363573e-15 relative error = 2.1251760429663498195066931092384e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.19 x[1] = -0.051 y[1] (analytic) = -0.050955851877107475566616034788795 y[1] (numeric) = -0.050955851877106369701245930617978 absolute error = 1.105865370104170817e-15 relative error = 2.1702421397472387839820054463293e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.19 memory used=289.9MB, alloc=4.5MB, time=40.85 x[1] = -0.05 y[1] (analytic) = -0.049958395721942761410006287034845 y[1] (numeric) = -0.04995839572194165380883623875973 absolute error = 1.107601170048275115e-15 relative error = 2.2170471129876449508359383909032e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.19 x[1] = -0.049 y[1] (analytic) = -0.048960840065008036386216220836982 y[1] (numeric) = -0.04896084006500692708181278812342 absolute error = 1.109304403432713562e-15 relative error = 2.2656972428574106856862683847124e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.19 x[1] = -0.048 y[1] (analytic) = -0.04796318687707670069862441844896 y[1] (numeric) = -0.047963186877075589723648203018022 absolute error = 1.110974976215430938e-15 relative error = 2.3163076695940008061510829269076e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.189 x[1] = -0.047 y[1] (analytic) = -0.046965438130084125346491215369746 y[1] (numeric) = -0.04696543813008301273369510977354 absolute error = 1.112612796105596206e-15 relative error = 2.3690033360785412814270609165051e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.189 x[1] = -0.046 y[1] (analytic) = -0.045967595797104489844911087386725 y[1] (numeric) = -0.045967595797103375627138515616843 absolute error = 1.114217772571769882e-15 relative error = 2.4239200533562704475750881010878e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.189 x[1] = -0.045 y[1] (analytic) = -0.044969661852327586120760842694242 y[1] (numeric) = -0.044969661852326470330943992772993 absolute error = 1.115789816849921249e-15 relative error = 2.4812057082260872044066833997129e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.189 x[1] = -0.044 y[1] (analytic) = -0.043971638271035589259909146810246 y[1] (numeric) = -0.043971638271034471931067195515902 absolute error = 1.117328841951294344e-15 relative error = 2.5410216355010959132289407481940e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.189 x[1] = -0.043 y[1] (analytic) = -0.042973527029579795782786008494176 y[1] (numeric) = -0.042973527029578676948023338372458 absolute error = 1.118834762670121718e-15 relative error = 2.6035441817470524723851846753140e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.189 x[1] = -0.042 y[1] (analytic) = -0.041975330105357330127207467609551 y[1] (numeric) = -0.041975330105356209819711876424584 absolute error = 1.120307495591184967e-15 relative error = 2.6689664924116930792569418216741e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.188 x[1] = -0.041 y[1] (analytic) = -0.040977049476787820019110691581682 y[1] (numeric) = -0.040977049476786698272151594360638 absolute error = 1.121746959097221044e-15 relative error = 2.7375005604848504309164501109189e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.188 x[1] = -0.04 y[1] (analytic) = -0.039978687123290041413577849629375 y[1] (numeric) = -0.039978687123288918260504473455973 absolute error = 1.123153073376173402e-15 relative error = 2.8093795824572431588957997466858e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.188 x[1] = -0.039 y[1] (analytic) = -0.0389802450252585336902133403224 y[1] (numeric) = -0.038980245025257409164452912035385 absolute error = 1.124525760428287015e-15 relative error = 2.8848606767341085440879056316908e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.188 x[1] = -0.038 y[1] (analytic) = -0.03798172516404018578858804844537 y[1] (numeric) = -0.037981725164039059923643975399012 absolute error = 1.125864944073046358e-15 relative error = 2.9642280312716739124000826140105e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.188 x[1] = -0.037 y[1] (analytic) = -0.036983129521910793971076155052496 y[1] (numeric) = -0.036983129521909666800526199097047 absolute error = 1.127170549955955449e-15 relative error = 3.0477965616407854930755506302804e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.187 x[1] = -0.036 y[1] (analytic) = -0.035984460082051591901984476622269 y[1] (numeric) = -0.035984460082050463459478921463207 absolute error = 1.128442505555159062e-15 relative error = 3.1359161787674177036683403117793e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.187 x[1] = -0.035 y[1] (analytic) = -0.034985718828525753733411225257751 y[1] (numeric) = -0.034985718828524624052671037353507 absolute error = 1.129680740187904244e-15 relative error = 3.2289767882854368487769504489766e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.187 x[1] = -0.034 y[1] (analytic) = -0.033986907746254870889770325081708 y[1] (numeric) = -0.033986907746253740004585308240396 absolute error = 1.130885185016841312e-15 relative error = 3.3274141721276695694042983218720e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.187 x[1] = -0.033 y[1] (analytic) = -0.03298802882099540324437885678266 y[1] (numeric) = -0.032988028820994271188605800619173 absolute error = 1.132055773056163487e-15 relative error = 3.4317169394967324550989970775737e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.187 x[1] = -0.032 y[1] (analytic) = -0.031989084039315105382928702413424 y[1] (numeric) = -0.031989084039313972190489524829052 absolute error = 1.133192439177584372e-15 relative error = 3.5424347811424434806333579440811e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.186 x[1] = -0.031 y[1] (analytic) = -0.030990075388569428650048899079053 y[1] (numeric) = -0.030990075388568294354928782926554 absolute error = 1.134295120116152499e-15 relative error = 3.6601883212408477605769636502302e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.186 x[1] = -0.03 y[1] (analytic) = -0.029991004856877899676512459459942 y[1] (numeric) = -0.02999100485687676431275798355777 absolute error = 1.135363754475902172e-15 relative error = 3.7856809396485654427751442338694e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.186 x[1] = -0.029 y[1] (analytic) = -0.028991874433100476085950358930649 y[1] (numeric) = -0.028991874433099339687667623590774 absolute error = 1.136398282735339875e-15 relative error = 3.9197130401402959910397636522076e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.186 x[1] = -0.028 y[1] (analytic) = -0.027992686106813880081205906452323 y[1] (numeric) = -0.027992686106812742682558653686797 absolute error = 1.137398647252765526e-15 relative error = 4.0631993761252657816590093353315e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.186 x[1] = -0.027 y[1] (analytic) = -0.026993441868287910611694695912914 y[1] (numeric) = -0.026993441868286772246902424485029 absolute error = 1.138364792271427885e-15 relative error = 4.2171902265223428928848096103864e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.185 x[1] = -0.026 y[1] (analytic) = -0.025994143708461734824328666035373 y[1] (numeric) = -0.025994143708460595527664741521948 absolute error = 1.139296663924513425e-15 relative error = 4.3828974583749964591065445437239e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.185 x[1] = -0.025 y[1] (analytic) = -0.024994793618920159501717373649672 y[1] (numeric) = -0.024994793618919019307507133681644 absolute error = 1.140194210239968028e-15 relative error = 4.5617268444932549192533332531233e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.185 x[1] = -0.024 y[1] (analytic) = -0.023995393591869883192475303732253 y[1] (numeric) = -0.023995393591868742135094158581387 absolute error = 1.141057381145150866e-15 relative error = 4.7553184605055355766653695714564e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.185 memory used=293.7MB, alloc=4.5MB, time=41.41 x[1] = -0.023 y[1] (analytic) = -0.022995945620115729739540800295694 y[1] (numeric) = -0.02299594562011458785341232897583 absolute error = 1.141886128471319864e-15 relative error = 4.9655976202711736574693465161385e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.185 x[1] = -0.022 y[1] (analytic) = -0.021996451697036863913449908550467 y[1] (numeric) = -0.021996451697035721233043950602328 absolute error = 1.142680405957948139e-15 relative error = 5.1948397027684165481615494410457e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.184 x[1] = -0.021 y[1] (analytic) = -0.020996913816562989858506977810672 y[1] (numeric) = -0.0209969138165618464183377209398 absolute error = 1.143440169256870872e-15 relative error = 5.4457535009497027697394844507729e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.184 x[1] = -0.02 y[1] (analytic) = -0.019997333973150533060753196901596 y[1] (numeric) = -0.019997333973149388895377260639552 absolute error = 1.144165375936262044e-15 relative error = 5.7215895752527729216648821869597e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.184 x[1] = -0.019 y[1] (analytic) = -0.018997714161758806547554233360419 y[1] (numeric) = -0.01899771416175766169156874891988 absolute error = 1.144855985484440539e-15 relative error = 6.0262828240092327092744796694054e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.184 x[1] = -0.018 y[1] (analytic) = -0.017998056377826162029508742010976 y[1] (numeric) = -0.017998056377825016517549428505893 absolute error = 1.145511959313505083e-15 relative error = 6.3646425773217968996709779460378e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.184 x[1] = -0.017 y[1] (analytic) = -0.016998362617246126696220618556432 y[1] (numeric) = -0.016998362617244980562959855758858 absolute error = 1.146133260762797574e-15 relative error = 6.7426097828973159344757294798974e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.184 x[1] = -0.016 y[1] (analytic) = -0.015998634876343526378279424205559 y[1] (numeric) = -0.015998634876342379658424322011242 absolute error = 1.146719855102194317e-15 relative error = 7.1676106365662375140952196177751e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.183 x[1] = -0.015 y[1] (analytic) = -0.014998875151850595788555326093507 y[1] (numeric) = -0.01499887515184944851684579086875 absolute error = 1.147271709535224757e-15 relative error = 7.6490516650088372061882614512787e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.183 x[1] = -0.014 y[1] (analytic) = -0.013999085440883076556637116978684 y[1] (numeric) = -0.013999085440881928767843914961401 absolute error = 1.147788793202017283e-15 relative error = 8.1990269867915999933156545608025e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.183 x[1] = -0.013 y[1] (analytic) = -0.012999267740916303770924331543123 y[1] (numeric) = -0.012999267740915155499847149471413 absolute error = 1.148271077182071710e-15 relative error = 8.8333520015730622416625916230999e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.183 x[1] = -0.012 y[1] (analytic) = -0.011999424049761281743527104299417 y[1] (numeric) = -0.011999424049760133024992607441318 absolute error = 1.148718534496858099e-15 relative error = 9.5731139239112969730353438028478e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.183 x[1] = -0.011 y[1] (analytic) = -0.010999556365540749713730157881507 y[1] (numeric) = -0.010999556365539600582590045639961 absolute error = 1.149131140112241546e-15 relative error = 1.0447068062783176213646369400332e-11 % Correct digits = 12 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.183 x[1] = -0.01 y[1] (analytic) = -0.0099996666866652382063401162092795 y[1] (numeric) = -0.0099996666866640886974691754766427 absolute error = 1.1495088709407326368e-15 relative error = 1.1495471868813651834650475727798e-11 % Correct digits = 12 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.183 x[1] = -0.009 y[1] (analytic) = -0.0089997570118091167617581540861993 y[1] (numeric) = -0.00899975701180796691005231052294 absolute error = 1.1498517058435632593e-15 relative error = 1.2776475012989510794338262535652e-11 % Correct digits = 12 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.183 x[1] = -0.008 y[1] (analytic) = -0.0079998293398866337551027762185069 y[1] (numeric) = -0.0079998293398854835954771436309938 absolute error = 1.1501596256325875131e-15 relative error = 1.4377302024406517158559812535875e-11 % Correct digits = 12 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.182 x[1] = -0.007 y[1] (analytic) = -0.0069998856700279490221502210282538 y[1] (numeric) = -0.006999885670026798589537149020801 absolute error = 1.1504326130720074528e-15 relative error = 1.6435020046083324463882663749283e-11 % Correct digits = 12 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.182 x[1] = -0.006 y[1] (analytic) = -0.0059999280015551600102625681623112 y[1] (numeric) = -0.0059999280015540093396096882388659 absolute error = 1.1506706528799234453e-15 relative error = 1.9178074346586720746039935839375e-11 % Correct digits = 12 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.182 x[1] = -0.005 y[1] (analytic) = -0.00499995833395832217283605706911 y[1] (numeric) = -0.0049999583339571712991043273601763 absolute error = 1.1508737317297089337e-15 relative error = 2.3017666445604068446590614123816e-11 % Correct digits = 12 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.182 x[1] = -0.004 y[1] (analytic) = -0.003999978666871464326124364825054 y[1] (numeric) = -0.0039999786668703132842861136156275 absolute error = 1.1510418382512094265e-15 relative error = 2.8776199427870526399245170146278e-11 % Correct digits = 12 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.182 x[1] = -0.003 y[1] (analytic) = -0.0029999910000485996875736155553244 y[1] (numeric) = -0.0029999910000474485126105837897686 absolute error = 1.1511749630317655558e-15 relative error = 3.8372613884945541014559265168390e-11 % Correct digits = 12 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.182 x[1] = -0.002 y[1] (analytic) = -0.0019999973333397333150476759363218 y[1] (numeric) = -0.0019999973333385820419490588762555 absolute error = 1.1512730986170600663e-15 relative error = 5.7563731682311042981302584417358e-11 % Correct digits = 12 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 2.182 x[1] = -0.001 y[1] (analytic) = -0.00099999966666686666652380963492054 y[1] (numeric) = -0.00099999966666571533028429784629483 absolute error = 1.15133623951178862571e-15 relative error = 1.1513366232904327886940813440133e-10 % Correct digits = 11 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 2.182 x[1] = 0 y[1] (analytic) = 0 y[1] (numeric) = 1.151364382180154368170e-15 absolute error = 1.151364382180154368170e-15 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.001 y[1] (analytic) = 0.00099999966666686666652380963492054 y[1] (numeric) = 0.00099999966666801802404885582102384 absolute error = 1.15135752504618610330e-15 relative error = 1.1513579088319254425245273630871e-10 % Correct digits = 11 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 2.182 x[1] = 0.002 y[1] (analytic) = 0.0019999973333397333150476759363218 y[1] (numeric) = 0.0019999973333408846307161698164729 absolute error = 1.1513156684938801511e-15 relative error = 5.7565860178990035982123339881284e-11 % Correct digits = 12 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 2.182 x[1] = 0.003 y[1] (analytic) = 0.0029999910000485996875736155553244 y[1] (numeric) = 0.0029999910000497509263884827211073 absolute error = 1.1512388148671657829e-15 relative error = 3.8374742285844050133547055816491e-11 % Correct digits = 12 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.182 x[1] = 0.004 y[1] (analytic) = 0.003999978666871464326124364825054 y[1] (numeric) = 0.0039999786668726154530928345193267 absolute error = 1.1511269684696942727e-15 relative error = 2.8778327694683294922995141023929e-11 % Correct digits = 12 h = 0.001 TOP MAIN SOLVE Loop memory used=297.5MB, alloc=4.5MB, time=41.96 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.182 x[1] = 0.005 y[1] (analytic) = 0.00499995833395832217283605706911 y[1] (numeric) = 0.0049999583339594731529716215206978 absolute error = 1.1509801355644515878e-15 relative error = 2.3019794540032775760764762242490e-11 % Correct digits = 12 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.182 x[1] = 0.006 y[1] (analytic) = 0.0059999280015551600102625681623112 y[1] (numeric) = 0.00599992800155631080858694135708 absolute error = 1.1507983243731947688e-15 relative error = 1.9180202230341963000659884595964e-11 % Correct digits = 12 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.182 x[1] = 0.007 y[1] (analytic) = 0.0069998856700279490221502210282538 y[1] (numeric) = 0.0069998856700290996036952967403272 absolute error = 1.1505815450757120734e-15 relative error = 1.6437147680886594414245689582388e-11 % Correct digits = 12 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.182 x[1] = 0.008 y[1] (analytic) = 0.0079998293398866337551027762185069 y[1] (numeric) = 0.0079998293398877840849125851254898 absolute error = 1.1503298098089069829e-15 relative error = 1.4379429371992183048453330953984e-11 % Correct digits = 12 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.182 x[1] = 0.009 y[1] (analytic) = 0.0089997570118091167617581540861993 y[1] (numeric) = 0.00899975701181026680489081979239 absolute error = 1.1500431326657061907e-15 relative error = 1.2778602035106794059593331075167e-11 % Correct digits = 12 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.183 x[1] = 0.01 y[1] (analytic) = 0.0099996666866652382063401162092795 y[1] (numeric) = 0.0099996666866663879278698100009971 absolute error = 1.1497215296937917176e-15 relative error = 1.1497598527228603461326179052865e-11 % Correct digits = 12 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.183 x[1] = 0.011 y[1] (analytic) = 0.010999556365540749713730157881507 y[1] (numeric) = 0.010999556365541899078749052038829 absolute error = 1.149365018894157322e-15 relative error = 1.0449194319280651585000373394726e-11 % Correct digits = 12 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.183 x[1] = 0.012 y[1] (analytic) = 0.011999424049761281743527104299417 y[1] (numeric) = 0.011999424049762430717147323788807 absolute error = 1.148973620219489390e-15 relative error = 9.5752397402969289626958108468021e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.183 x[1] = 0.013 y[1] (analytic) = 0.012999267740916303770924331543123 y[1] (numeric) = 0.012999267740917452318279903915659 absolute error = 1.148547355572372536e-15 relative error = 8.8354773396752325370397443207884e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.183 x[1] = 0.014 y[1] (analytic) = 0.013999085440883076556637116978684 y[1] (numeric) = 0.013999085440884224642885920298805 absolute error = 1.148086248803320121e-15 relative error = 8.2011518084634082496551909557411e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.183 x[1] = 0.015 y[1] (analytic) = 0.014998875151850595788555326093507 y[1] (numeric) = 0.014998875151851743378881034723483 absolute error = 1.147590325708629976e-15 relative error = 7.6511759321300680099670157352751e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.183 x[1] = 0.016 y[1] (analytic) = 0.015998634876343526378279424205559 y[1] (numeric) = 0.015998634876344673437893452271161 absolute error = 1.147059614028065602e-15 relative error = 7.1697343110453249235651146077972e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.183 x[1] = 0.017 y[1] (analytic) = 0.016998362617246126696220618556432 y[1] (numeric) = 0.016998362617247273190364060919583 absolute error = 1.146494143442363151e-15 relative error = 6.7447328266733054770248254571519e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.184 x[1] = 0.018 y[1] (analytic) = 0.017998056377826162029508742010976 y[1] (numeric) = 0.017998056377827307923454312575493 absolute error = 1.145893945570564517e-15 relative error = 6.3667649523663047388813012895484e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.184 x[1] = 0.019 y[1] (analytic) = 0.018997714161758806547554233360419 y[1] (numeric) = 0.018997714161759951806608200537308 absolute error = 1.145259053967176889e-15 relative error = 6.0284044923284018716695678841771e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.184 x[1] = 0.02 y[1] (analytic) = 0.019997333973150533060753196901596 y[1] (numeric) = 0.019997333973151677650257316060743 absolute error = 1.144589504119159147e-15 relative error = 5.7237104988892264593743401760329e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.184 x[1] = 0.021 y[1] (analytic) = 0.020996913816562989858506977810672 y[1] (numeric) = 0.020996913816564133743840420546154 absolute error = 1.143885333442735482e-15 relative error = 5.4478736419844935648296731608542e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.184 x[1] = 0.022 y[1] (analytic) = 0.021996451697036863913449908550467 y[1] (numeric) = 0.021996451697038007060031188587147 absolute error = 1.143146581280036680e-15 relative error = 5.1969590233229737149983341072253e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.184 x[1] = 0.023 y[1] (analytic) = 0.022995945620115729739540800295694 y[1] (numeric) = 0.02299594562011687211282969586518 absolute error = 1.142373288895569486e-15 relative error = 4.9677160825092452150118869632218e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.185 x[1] = 0.024 y[1] (analytic) = 0.023995393591869883192475303732253 y[1] (numeric) = 0.0239953935918710247579747762468 absolute error = 1.141565499472514547e-15 relative error = 4.7574360266351273896532273500371e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.185 x[1] = 0.025 y[1] (analytic) = 0.024994793618920159501717373649672 y[1] (numeric) = 0.024994793618921300224975482503052 absolute error = 1.140723258108853380e-15 relative error = 4.5638434767685655735387376927253e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.185 x[1] = 0.026 y[1] (analytic) = 0.025994143708461734824328666035373 y[1] (numeric) = 0.025994143708462874670940479360287 absolute error = 1.139846611813324914e-15 relative error = 4.3850131190983480323295836860767e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.185 x[1] = 0.027 y[1] (analytic) = 0.026993441868287910611694695912914 y[1] (numeric) = 0.026993441868289049547304197125018 absolute error = 1.138935609501212104e-15 relative error = 4.2193048780461073342822119173372e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.185 x[1] = 0.028 y[1] (analytic) = 0.027992686106813880081205906452323 y[1] (numeric) = 0.027992686106815018071507896411518 absolute error = 1.137990301989959195e-15 relative error = 4.0653129808537868166889698185439e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.186 x[1] = 0.029 y[1] (analytic) = 0.028991874433100476085950358930649 y[1] (numeric) = 0.028991874433101613096692353550846 absolute error = 1.137010741994620197e-15 relative error = 3.9218255605318063367557939793801e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.186 x[1] = 0.03 y[1] (analytic) = 0.029991004856877899676512459459942 y[1] (numeric) = 0.029991004856879035673496582599117 absolute error = 1.135996984123139175e-15 relative error = 3.7877923382170991780650604352628e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.186 x[1] = 0.031 y[1] (analytic) = 0.030990075388569428650048899079053 y[1] (numeric) = 0.030990075388570563599133770542018 absolute error = 1.134949084871462965e-15 relative error = 3.6622985605581476417215531981476e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop memory used=301.3MB, alloc=4.5MB, time=42.50 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.186 x[1] = 0.032 y[1] (analytic) = 0.031989084039315105382928702413424 y[1] (numeric) = 0.031989084039316239250031320900398 absolute error = 1.133867102618486974e-15 relative error = 3.5445438238398631055308339466649e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.186 x[1] = 0.033 y[1] (analytic) = 0.03298802882099540324437885678266 y[1] (numeric) = 0.032988028820996535995476477617366 absolute error = 1.132751097620834706e-15 relative error = 3.4338247482671330558436951365949e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.187 x[1] = 0.034 y[1] (analytic) = 0.033986907746254870889770325081708 y[1] (numeric) = 0.033986907746256002490902332553416 absolute error = 1.131601132007471708e-15 relative error = 3.3295207097273112683548658818514e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.187 x[1] = 0.035 y[1] (analytic) = 0.034985718828525753733411225257751 y[1] (numeric) = 0.034985718828526884150680999412395 absolute error = 1.130417269774154644e-15 relative error = 3.2310820175358642188400155798019e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.187 x[1] = 0.036 y[1] (analytic) = 0.035984460082051591901984476622269 y[1] (numeric) = 0.035984460082052721101561254338488 absolute error = 1.129199576777716219e-15 relative error = 3.1380200625573394833993724764524e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.187 x[1] = 0.037 y[1] (analytic) = 0.036983129521910793971076155052496 y[1] (numeric) = 0.036983129521911921919196885239192 absolute error = 1.127948120730186696e-15 relative error = 3.0498990629279482581269250476812e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.187 x[1] = 0.038 y[1] (analytic) = 0.03798172516404018578858804844537 y[1] (numeric) = 0.037981725164041312451559241198156 absolute error = 1.126662971192752786e-15 relative error = 2.9663291130847295582147297486177e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.188 x[1] = 0.039 y[1] (analytic) = 0.0389802450252585336902133403224 y[1] (numeric) = 0.03898024502525965903441290987709 absolute error = 1.125344199569554690e-15 relative error = 2.8869603021744754283924466634894e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 2.188 x[1] = 0.04 y[1] (analytic) = 0.039978687123290041413577849629375 y[1] (numeric) = 0.039978687123291165405456950951481 absolute error = 1.123991879101322106e-15 relative error = 2.8114777147009607074181136593130e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.188 x[1] = 0.041 y[1] (analytic) = 0.040977049476787820019110691581682 y[1] (numeric) = 0.040977049476788942625195550431714 absolute error = 1.122606084858850032e-15 relative error = 2.7395971627844270636831923626678e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.188 x[1] = 0.042 y[1] (analytic) = 0.041975330105357330127207467609551 y[1] (numeric) = 0.04197533010535845131410120392477 absolute error = 1.121186893736315219e-15 relative error = 2.6710615280979473108156938857453e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.188 x[1] = 0.043 y[1] (analytic) = 0.042973527029579795782786008494176 y[1] (numeric) = 0.042973527029580915517170452928311 absolute error = 1.119734384444434135e-15 relative error = 2.6056376142309469964404559477581e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.189 x[1] = 0.044 y[1] (analytic) = 0.043971638271035589259909146810246 y[1] (numeric) = 0.043971638271036707508546650273584 absolute error = 1.118248637503463338e-15 relative error = 2.5431134282755645175770953833062e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.189 x[1] = 0.045 y[1] (analytic) = 0.044969661852327586120760842694242 y[1] (numeric) = 0.044969661852328702850496078737419 absolute error = 1.116729735236043177e-15 relative error = 2.4832958248678543889094027911664e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.189 x[1] = 0.046 y[1] (analytic) = 0.045967595797104489844911087386725 y[1] (numeric) = 0.045967595797105605022672847272452 absolute error = 1.115177761759885727e-15 relative error = 2.4260084575276635378242457204816e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.189 x[1] = 0.047 y[1] (analytic) = 0.046965438130084125346491215369746 y[1] (numeric) = 0.046965438130085238939294195677685 absolute error = 1.113592802980307939e-15 relative error = 2.3710899915292949303292434791124e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.189 x[1] = 0.048 y[1] (analytic) = 0.04796318687707670069862441844896 y[1] (numeric) = 0.047963186877077812673571001059908 absolute error = 1.111974946582610948e-15 relative error = 2.3183925401630536960052187166449e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.189 x[1] = 0.049 y[1] (analytic) = 0.048960840065008036386216220836982 y[1] (numeric) = 0.048960840065009146710498245143523 absolute error = 1.110324282024306541e-15 relative error = 2.2677802924746942726240197551370e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.19 x[1] = 0.05 y[1] (analytic) = 0.049958395721942761410006287034845 y[1] (numeric) = 0.049958395721943870050906814226643 absolute error = 1.108640900527191798e-15 relative error = 2.2191283056758641440994674005008e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.19 x[1] = 0.051 y[1] (analytic) = 0.050955851877107475566616034788795 y[1] (numeric) = 0.050955851877108582491511104061708 absolute error = 1.106924895069272913e-15 relative error = 2.1723214396236443440512493586839e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.19 x[1] = 0.052 y[1] (analytic) = 0.051953206560913877231195951199129 y[1] (numeric) = 0.05195320656091498240755632773839 absolute error = 1.105176360376539261e-15 relative error = 2.1272534142445023635849686881314e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.19 x[1] = 0.053 y[1] (analytic) = 0.052950457804981855971182095649323 y[1] (numeric) = 0.052950457804982959366575010238089 absolute error = 1.103395392914588766e-15 relative error = 2.0838259736647178852190033531257e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.19 x[1] = 0.054 y[1] (analytic) = 0.053947603642162549321612849995005 y[1] (numeric) = 0.053947603642163650903703730100649 absolute error = 1.101582090880105644e-15 relative error = 2.0419481432149624733196372285965e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.19 x[1] = 0.055 y[1] (analytic) = 0.054944642106561363054434372728006 y[1] (numeric) = 0.054944642106562462790988564919647 absolute error = 1.099736554192191641e-15 relative error = 2.0015355674886880840260016176880e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.19 x[1] = 0.056 y[1] (analytic) = 0.055941571233560954276236254894526 y[1] (numeric) = 0.055941571233562052135120738446388 absolute error = 1.097858884483551862e-15 relative error = 1.9625099193225999439027933812349e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.19 x[1] = 0.057 y[1] (analytic) = 0.056938389059844176690907383663444 y[1] (numeric) = 0.056938389059845272640092475199787 absolute error = 1.095949185091536343e-15 relative error = 1.9247983709894858544756949093737e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.191 x[1] = 0.058 y[1] (analytic) = 0.05793509362341698736578581388078 y[1] (numeric) = 0.057935093623418081373346862919295 absolute error = 1.094007561049038515e-15 relative error = 1.8883331200950157554304893723051e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop memory used=305.1MB, alloc=4.5MB, time=43.04 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 2.191 x[1] = 0.059 y[1] (analytic) = 0.058931682963631314341995345006739 y[1] (numeric) = 0.058931682963632406376114420258462 absolute error = 1.092034119075251723e-15 relative error = 1.8530509636882116586868759216448e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = 0.06 y[1] (analytic) = 0.059928155121207884431815313861521 y[1] (numeric) = 0.05992815512120897446078288014652 absolute error = 1.090028967566284999e-15 relative error = 1.8188929149606614398457698002160e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = 0.061 y[1] (analytic) = 0.060924508138259010548118653029661 y[1] (numeric) = 0.060924508138260098540335238668949 absolute error = 1.087992216585639288e-15 relative error = 1.7858038576472452499522612063706e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = 0.062 y[1] (analytic) = 0.061920740058311337913136338114124 y[1] (numeric) = 0.061920740058312423837114192659473 absolute error = 1.085923977854545349e-15 relative error = 1.7537322338717538259643653774615e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = 0.063 y[1] (analytic) = 0.062916848926328548496063758939631 y[1] (numeric) = 0.062916848926329632320428501104195 absolute error = 1.083824364742164564e-15 relative error = 1.7226297617213012582668926755248e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = 0.064 y[1] (analytic) = 0.063912832788734023031316102077865 y[1] (numeric) = 0.063912832788735104724808357731789 absolute error = 1.081693492255653924e-15 relative error = 1.6924511792979470064514582622162e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = 0.065 y[1] (analytic) = 0.064908689693433459971565323678831 y[1] (numeric) = 0.064908689693434539503042353775271 absolute error = 1.079531477030096440e-15 relative error = 1.6631540123961370213247576250295e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = 0.066 y[1] (analytic) = 0.065904417689837450732050518716517 y[1] (numeric) = 0.065904417689838528070487837014803 absolute error = 1.077338437318298286e-15 relative error = 1.6346983633001969647214504083977e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = 0.067 y[1] (analytic) = 0.066900014828884010585046248794124 y[1] (numeric) = 0.066900014828885085699539229248088 absolute error = 1.075114492980453964e-15 relative error = 1.6070467184953065506992642151695e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = 0.068 y[1] (analytic) = 0.067895479163061064565799466258348 y[1] (numeric) = 0.067895479163062137425564939939155 absolute error = 1.072859765473680807e-15 relative error = 1.5801637733449806522472106902109e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = 0.069 y[1] (analytic) = 0.068890808746428887753704855477416 y[1] (numeric) = 0.068890808746429958328082696901571 absolute error = 1.070574377841424155e-15 relative error = 1.5540162720138189993295800218113e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = 0.07 y[1] (analytic) = 0.069886001634642499294980487984493 y[1] (numeric) = 0.069886001634643567553435190719054 absolute error = 1.068258454702734561e-15 relative error = 1.5285728611109992567758505283806e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = 0.071 y[1] (analytic) = 0.070881055884974009535630439351791 y[1] (numeric) = 0.070881055884975075447752680770153 absolute error = 1.065912122241418362e-15 relative error = 1.5038039557017657252289318249264e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = 0.072 y[1] (analytic) = 0.071875969556334919636038222077939 y[1] (numeric) = 0.071875969556335983171546417140962 absolute error = 1.063535508195063023e-15 relative error = 1.4796816164844713134398024253343e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = 0.073 y[1] (analytic) = 0.072870740709298373041124327768794 y[1] (numeric) = 0.072870740709299434169866171707412 absolute error = 1.061128741843938618e-15 relative error = 1.4561794370625048714425707069981e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 2.191 x[1] = 0.074 y[1] (analytic) = 0.07386536740612135818262261821458 y[1] (numeric) = 0.073865367406122416874576617991447 absolute error = 1.058691953999776867e-15 relative error = 1.4332724403561839282112361765485e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.19 x[1] = 0.075 y[1] (analytic) = 0.074859847710766861792683530805484 y[1] (numeric) = 0.074859847710767918017960525234627 absolute error = 1.056225276994429143e-15 relative error = 1.4109369833015509969118781638174e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.19 x[1] = 0.076 y[1] (analytic) = 0.075854179688925972210696838750518 y[1] (numeric) = 0.075854179688927025939541507155398 absolute error = 1.053728844668404880e-15 relative error = 1.3891506690728076136962212911634e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.19 x[1] = 0.077 y[1] (analytic) = 0.07684836140803993206794279794194 y[1] (numeric) = 0.076848361408040983270735157233758 absolute error = 1.051202792359291818e-15 relative error = 1.3678922661444206265656892475787e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.19 x[1] = 0.078 y[1] (analytic) = 0.077842390937322139737427684745209 y[1] (numeric) = 0.077842390937323188384684574804775 absolute error = 1.048647256890059566e-15 relative error = 1.3471416335790856124057561984108e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.19 x[1] = 0.079 y[1] (analytic) = 0.078836266347780098939037744761377 y[1] (numeric) = 0.078836266347781145001414302009298 absolute error = 1.046062376557247921e-15 relative error = 1.3268796519898907369707214255008e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.19 x[1] = 0.08 y[1] (analytic) = 0.079829985712237315892954191567332 y[1] (numeric) = 0.079829985712238359341245310608789 absolute error = 1.043448291119041457e-15 relative error = 1.3070881596801901342449239989391e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.19 x[1] = 0.081 y[1] (analytic) = 0.080823547105355143417110874075862 y[1] (numeric) = 0.08082354710535618422225265730771 absolute error = 1.040805141783231848e-15 relative error = 1.2877498935137319583795488879824e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.19 x[1] = 0.082 y[1] (analytic) = 0.081816948603654571367345326612277 y[1] (numeric) = 0.081816948603655609500416521681743 absolute error = 1.038133071195069466e-15 relative error = 1.2688484341112404849964803906099e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.189 x[1] = 0.083 y[1] (analytic) = 0.082810188285537962821792879902799 y[1] (numeric) = 0.082810188285538998254016304908535 absolute error = 1.035432223425005736e-15 relative error = 1.2503681550085721075963332050841e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.189 x[1] = 0.084 y[1] (analytic) = 0.083803264231310735414002094452995 y[1] (numeric) = 0.083803264231311768116746050780805 absolute error = 1.032702743956327810e-15 relative error = 1.2322941754463156593891307403932e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.189 x[1] = 0.085 y[1] (analytic) = 0.084796174523202987222207728550445 y[1] (numeric) = 0.084796174523204017166987401237522 absolute error = 1.029944779672687077e-15 relative error = 1.2146123164917784544691356919296e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop memory used=309.0MB, alloc=4.5MB, time=43.59 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.189 x[1] = 0.086 y[1] (analytic) = 0.08578891724539106662518451742101 y[1] (numeric) = 0.085788917245392093783663362944088 absolute error = 1.027158478845523078e-15 relative error = 1.1973090602221189064794576873081e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 2.189 x[1] = 0.087 y[1] (analytic) = 0.086781490484019085538120961779159 y[1] (numeric) = 0.086781490484020109882112083163532 absolute error = 1.024343991121384373e-15 relative error = 1.1803715117223280863339559212235e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 2.189 x[1] = 0.088 y[1] (analytic) = 0.087773892327220375444996844858354 y[1] (numeric) = 0.087773892327221396946464354006309 absolute error = 1.021501467509147955e-15 relative error = 1.1637873636741533281946807738640e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 2.188 x[1] = 0.089 y[1] (analytic) = 0.088766120865138885647021056580154 y[1] (numeric) = 0.088766120865139904278081423718916 absolute error = 1.018631060367138762e-15 relative error = 1.1475448633321834040603754591209e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 2.188 x[1] = 0.09 y[1] (analytic) = 0.089758174189950523149787239319397 y[1] (numeric) = 0.089758174189951538882710629470309 absolute error = 1.015732923390150912e-15 relative error = 1.1316327817014286888497156861882e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 2.188 x[1] = 0.091 y[1] (analytic) = 0.090750050395884433614933517185563 y[1] (numeric) = 0.090750050395885446422145113557809 absolute error = 1.012807211596372246e-15 relative error = 1.1160403847470520290955301944890e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 2.188 x[1] = 0.092 y[1] (analytic) = 0.09174174757924422280524886327667 y[1] (numeric) = 0.091741747579245232659330177490461 absolute error = 1.009854081314213791e-15 relative error = 1.1007574064816316467728249077466e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 2.188 x[1] = 0.093 y[1] (analytic) = 0.092733263838429117955352228385887 y[1] (numeric) = 0.092733263838430124829042397431659 absolute error = 1.006873690169045772e-15 relative error = 1.0857740237886379576232387013846e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 2.187 x[1] = 0.094 y[1] (analytic) = 0.093724597273955068503281129604286 y[1] (numeric) = 0.09372459727395607236947819944608 absolute error = 1.003866197069841794e-15 relative error = 1.0710808328528332478532893786251e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 2.187 x[1] = 0.095 y[1] (analytic) = 0.094715745988475785621563705688444 y[1] (numeric) = 0.094715745988476786453325901421283 absolute error = 1.000831762195732839e-15 relative error = 1.0566688270791908453138449174293e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 2.187 x[1] = 0.096 y[1] (analytic) = 0.095706708086803719989612013576212 y[1] (numeric) = 0.095706708086804717760158996048927 absolute error = 9.97770546982472715e-16 relative error = 1.0425293763917973589765682125752e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 2.187 x[1] = 0.097 y[1] (analytic) = 0.096697481675930977252564290803152 y[1] (numeric) = 0.09669748167593197193527839961978 absolute error = 9.94682714108816628e-16 relative error = 1.0286542078131530526414964542819e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 2.187 x[1] = 0.098 y[1] (analytic) = 0.097688064865050170615019763733247 y[1] (numeric) = 0.097688064865051162183447246547765 absolute error = 9.91568427482814518e-16 relative error = 1.0150353872324147696725461766515e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 2.186 x[1] = 0.099 y[1] (analytic) = 0.098678455765575210021451061613666 y[1] (numeric) = 0.098678455765576198449303289634508 absolute error = 9.88427852228020842e-16 relative error = 1.0016653022785162175160189138685e-12 % Correct digits = 13 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 2.186 x[1] = 0.1 y[1] (analytic) = 0.099668652491162027378446119878021 y[1] (numeric) = 0.099668652491163012639600789500501 absolute error = 9.85261154669622480e-16 relative error = 9.8853664622082562834590696228712e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 2.186 x[1] = 0.101 y[1] (analytic) = 0.10065865315772923727732333951344 y[1] (numeric) = 0.10065865315773021934582565999988 absolute error = 9.8206850232048644e-16 relative error = 9.7564240282612675083998962912867e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 2.186 x[1] = 0.102 y[1] (analytic) = 0.10164845588347873267908042764051 y[1] (numeric) = 0.10164845588347971152914429476957 absolute error = 9.7885006386712906e-16 relative error = 9.6297583210629456443925241280351e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 2.186 x[1] = 0.103 y[1] (analytic) = 0.10263805878891621502707849104183 y[1] (numeric) = 0.10263805878891719063308764665023 absolute error = 9.7560600915560840e-16 relative error = 9.5053045689613446970656845013585e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 2.185 x[1] = 0.104 y[1] (analytic) = 0.10362745999687165825632830090303 y[1] (numeric) = 0.10362745999687263059283747824454 absolute error = 9.7233650917734151e-16 relative error = 9.3830005020550995088702500094446e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 2.185 x[1] = 0.105 y[1] (analytic) = 0.10461665763251970617173490360063 y[1] (numeric) = 0.10461665763252067521347095844895 absolute error = 9.6904173605484832e-16 relative error = 9.2627862329414090684269209636993e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 2.185 x[1] = 0.106 y[1] (analytic) = 0.10560564982340000267116962753435 y[1] (numeric) = 0.1056056498234009683930326549582 absolute error = 9.6572186302742385e-16 relative error = 9.1446041442135048403311386176272e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 2.185 x[1] = 0.107 y[1] (analytic) = 0.10659443469943745429277473678898 y[1] (numeric) = 0.10659443469943841666983917352936 absolute error = 9.6237706443674038e-16 relative error = 9.0283987822660620290158691279807e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 2.185 x[1] = 0.108 y[1] (analytic) = 0.10758301039296242456946521437456 y[1] (numeric) = 0.10758301039296338357698092675606 absolute error = 9.5900751571238150e-16 relative error = 8.9141167569997211109271920811787e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 2.184 x[1] = 0.109 y[1] (analytic) = 0.10857137503873085967717412503826 y[1] (numeric) = 0.10857137503873181529056748234777 absolute error = 9.5561339335730951e-16 relative error = 8.8017066470458888904521556745274e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 2.184 x[1] = 0.11 y[1] (analytic) = 0.10955952677394434486699241285981 y[1] (numeric) = 0.10955952677394529706186734612794 absolute error = 9.5219487493326813e-16 relative error = 8.6911189101605441311846181530181e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 2.184 x[1] = 0.111 y[1] (analytic) = 0.11054746373827009117498053335496 y[1] (numeric) = 0.11054746373827103992711957947708 absolute error = 9.4875213904612212e-16 relative error = 8.5823057984610866707865510904528e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 2.184 x[1] = 0.112 y[1] (analytic) = 0.11153518407386085190707770359557 y[1] (numeric) = 0.11153518407386179719244303473116 absolute error = 9.4528536533113559e-16 relative error = 8.4752212782035534750262619785821e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop memory used=312.8MB, alloc=4.5MB, time=44.14 Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 2.184 x[1] = 0.113 y[1] (analytic) = 0.11252268592537476840020447558666 y[1] (numeric) = 0.11252268592537571019493891377745 absolute error = 9.4179473443819079e-16 relative error = 8.3698209538189536030766355244086e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 2.184 x[1] = 0.114 y[1] (analytic) = 0.11350996743999514456434549522631 y[1] (numeric) = 0.11350996743999608284477351217529 absolute error = 9.3828042801694898e-16 relative error = 8.2660619959472090861885764714401e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 2.183 x[1] = 0.115 y[1] (analytic) = 0.11449702676745014971411139778798 y[1] (numeric) = 0.11449702676745108445674009974335 absolute error = 9.3474262870195537e-16 relative error = 8.1639030732253843361982576348823e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 2.183 x[1] = 0.116 y[1] (analytic) = 0.1154838620600324492020115059854 y[1] (numeric) = 0.11548386206003338038353160367503 absolute error = 9.3118152009768963e-16 relative error = 8.0633042876036629685459560425008e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 2.183 x[1] = 0.117 y[1] (analytic) = 0.11647047147261876236942203212415 y[1] (numeric) = 0.11647047147261968996670879568804 absolute error = 9.2759728676356389e-16 relative error = 7.9642271129780245212138873655251e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 2.183 x[1] = 0.118 y[1] (analytic) = 0.11745685316268934733500753430537 y[1] (numeric) = 0.11745685316269027132512173317534 absolute error = 9.2399011419886997e-16 relative error = 7.8666343369428803272943388901467e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 2.183 x[1] = 0.119 y[1] (analytic) = 0.11844300529034741214414612973054 y[1] (numeric) = 0.118443005290348332504334957408 absolute error = 9.2036018882767746e-16 relative error = 7.7704900054801530560364090932692e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 2.183 x[1] = 0.12 y[1] (analytic) = 0.11942892601833845180672111641376 y[1] (numeric) = 0.11942892601833936851441910009843 absolute error = 9.1670769798368467e-16 relative error = 7.6757593704135221538011955798859e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 2.183 x[1] = 0.121 y[1] (analytic) = 0.12041461351206951075447288757797 y[1] (numeric) = 0.12041461351207042378730278260183 absolute error = 9.1303282989502386e-16 relative error = 7.5824088394678765046007657362858e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 2.182 x[1] = 0.122 y[1] (analytic) = 0.12140006593962837025295502924847 y[1] (numeric) = 0.12140006593962927958872869827142 absolute error = 9.0933577366902295e-16 relative error = 7.4904059287845112323715623931620e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 2.182 x[1] = 0.123 y[1] (analytic) = 0.12238528147180266030700695867723 y[1] (numeric) = 0.12238528147180356592372623560224 absolute error = 9.0561671927692501e-16 relative error = 7.3997192177523193948426788041288e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 2.182 x[1] = 0.124 y[1] (analytic) = 0.12337025828209889560254207593813 y[1] (numeric) = 0.12337025828209979747839961450581 absolute error = 9.0187585753856768e-16 relative error = 7.3103183060242522907548123770357e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 2.182 x[1] = 0.125 y[1] (analytic) = 0.12435499454676143503135484916387 y[1] (numeric) = 0.12435499454676233314473495618786 absolute error = 8.9811338010702399e-16 relative error = 7.2221737725966831219438094358373e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 2.182 x[1] = 0.126 y[1] (analytic) = 0.1253394884447913643495722204484 y[1] (numeric) = 0.12533948844479225867905167365503 absolute error = 8.9432947945320663e-16 relative error = 7.1352571368370826049745129129479e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 2.182 x[1] = 0.127 y[1] (analytic) = 0.12632373815796530152431388861787 y[1] (numeric) = 0.12632373815796619204866273905501 absolute error = 8.9052434885043714e-16 relative error = 7.0495408213526288981970481901129e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 2.182 x[1] = 0.128 y[1] (analytic) = 0.12730774187085412432708208031648 y[1] (numeric) = 0.12730774187085501102526443929849 absolute error = 8.8669818235898201e-16 relative error = 6.9649981165990894004577778784800e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 2.182 x[1] = 0.129 y[1] (analytic) = 0.12829149777084161973637404487675 y[1] (numeric) = 0.12829149777084250258754885543408 absolute error = 8.8285117481055733e-16 relative error = 6.8816031471355518883617206931802e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 2.182 x[1] = 0.13 y[1] (analytic) = 0.12927500404814305471599938326971 y[1] (numeric) = 0.1292750040481439336995211760735 absolute error = 8.7898352179280379e-16 relative error = 6.7993308394363943192361583762979e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 2.182 x[1] = 0.131 y[1] (analytic) = 0.13025825889582366793958912843124 y[1] (numeric) = 0.13025825889582454303500876216504 absolute error = 8.7509541963373380e-16 relative error = 6.7181568911772937417290625451364e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 2.182 x[1] = 0.132 y[1] (analytic) = 0.13124126050981708203580391418966 y[1] (numeric) = 0.13124126050981795322286930034215 absolute error = 8.7118706538615249e-16 relative error = 6.6380577419171170836872324508666e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 2.182 x[1] = 0.133 y[1] (analytic) = 0.13222400708894363593278428305017 y[1] (numeric) = 0.13222400708894450319144109510443 absolute error = 8.6725865681205426e-16 relative error = 6.5590105451022370997812344083772e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 2.182 x[1] = 0.134 y[1] (analytic) = 0.13320649683492863688443686885172 y[1] (numeric) = 0.13320649683492950019482923584852 absolute error = 8.6331039236699680e-16 relative error = 6.4809931413242041203215625390528e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 2.182 x[1] = 0.135 y[1] (analytic) = 0.13418872795242053176521552792173 y[1] (numeric) = 0.13418872795242139110768671237594 absolute error = 8.5934247118445421e-16 relative error = 6.4039840327657950887130184977129e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 2.182 x[1] = 0.136 y[1] (analytic) = 0.13517069864900899722413616046052 y[1] (numeric) = 0.13517069864900985257922922061142 absolute error = 8.5535509306015090e-16 relative error = 6.3279623587742840172344348917040e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 2.182 x[1] = 0.137 y[1] (analytic) = 0.13615240713524294829285764070112 y[1] (numeric) = 0.1361524071352437996413160770794 absolute error = 8.5134845843637828e-16 relative error = 6.2529078725043515677169886837950e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 2.182 x[1] = 0.138 y[1] (analytic) = 0.13713385162464846504676863772256 y[1] (numeric) = 0.13713385162464931236953702401824 absolute error = 8.4732276838629568e-16 relative error = 6.1788009185763854205603601117996e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 2.182 x[1] = 0.139 y[1] (analytic) = 0.13811503033374663692214083609013 y[1] (numeric) = 0.13811503033374748020036543430755 absolute error = 8.4327822459821742e-16 relative error = 6.1056224116990487840388672279356e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 2.182 memory used=316.6MB, alloc=4.5MB, time=44.65 x[1] = 0.14 y[1] (analytic) = 0.13909594148207132429654283387275 y[1] (numeric) = 0.13909594148207216351157219376048 absolute error = 8.3921502935988773e-16 relative error = 6.0333538162079141178609255284396e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 2.182 x[1] = 0.141 y[1] (analytic) = 0.14007658329218683694385548186933 y[1] (numeric) = 0.14007658329218767207724102461454 absolute error = 8.3513338554274521e-16 relative error = 5.9619771264746939999510305907693e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 2.183 x[1] = 0.142 y[1] (analytic) = 0.14105695398970552897938830862945 y[1] (numeric) = 0.14105695398970636001288489480805 absolute error = 8.3103349658617860e-16 relative error = 5.8914748481441632228417661238036e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 2.183 x[1] = 0.143 y[1] (analytic) = 0.142037051803305309914767627425 y[1] (numeric) = 0.1420370518033061368303341092006 absolute error = 8.2691556648177560e-16 relative error = 5.8218299801582663351541873008442e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 2.183 x[1] = 0.144 y[1] (analytic) = 0.14301687496474707144644961987734 y[1] (numeric) = 0.14301687496474789422624937744369 absolute error = 8.2277979975756635e-16 relative error = 5.7530259975291542655900793596109e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 2.183 x[1] = 0.145 y[1] (analytic) = 0.14399642170889202960590581247847 y[1] (numeric) = 0.14399642170889284823230727474193 absolute error = 8.1862640146226346e-16 relative error = 5.6850468348250063163463659352659e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 2.183 x[1] = 0.146 y[1] (analytic) = 0.14497569027371898190373358265784 y[1] (numeric) = 0.14497569027371979635931073215794 absolute error = 8.1445557714950010e-16 relative error = 5.6178768703344716799865914873226e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 2.183 x[1] = 0.147 y[1] (analytic) = 0.14595467890034147910416032615277 y[1] (numeric) = 0.14595467890034228937169318822079 absolute error = 8.1026753286206802e-16 relative error = 5.5515009108774264751728239509716e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 2.183 x[1] = 0.148 y[1] (analytic) = 0.14693338583302491127063636300874 y[1] (numeric) = 0.14693338583302571733311147916582 absolute error = 8.0606247511615708e-16 relative error = 5.4859041772314864965680031155503e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 2.183 x[1] = 0.149 y[1] (analytic) = 0.14791180931920350772744823132506 y[1] (numeric) = 0.1479118093192043095680591169231 absolute error = 8.0184061088559804e-16 relative error = 5.4210722901453578283362810610586e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 2.184 x[1] = 0.15 y[1] (analytic) = 0.14888994760949725058653039165587 y[1] (numeric) = 0.14888994760949804818867797776617 absolute error = 7.9760214758611030e-16 relative error = 5.3569912569116493640518794706312e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 2.184 x[1] = 0.151 y[1] (analytic) = 0.14986779895772870149290921662043 y[1] (numeric) = 0.14986779895772949484020227617667 absolute error = 7.9334729305955624e-16 relative error = 5.2936474584732214016729771519668e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 2.184 x[1] = 0.152 y[1] (analytic) = 0.15084536162093974124647814570863 y[1] (numeric) = 0.15084536162094053032273370391241 absolute error = 7.8907625555820378e-16 relative error = 5.2310276370385088117103736408738e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 2.184 x[1] = 0.153 y[1] (analytic) = 0.15182263385940822196207672055546 y[1] (numeric) = 0.15182263385940900675132044955442 absolute error = 7.8478924372899896e-16 relative error = 5.1691188841825427348113964323331e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 2.184 x[1] = 0.154 y[1] (analytic) = 0.15279961393666453143412855733377 y[1] (numeric) = 0.15279961393666531192059515518387 absolute error = 7.8048646659785010e-16 relative error = 5.1079086294116023515310845268009e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 2.184 x[1] = 0.155 y[1] (analytic) = 0.15377630011950806937638383680651 y[1] (numeric) = 0.15377630011950884554451739073167 absolute error = 7.7616813355392516e-16 relative error = 5.0473846291705676854482153082943e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 2.185 x[1] = 0.156 y[1] (analytic) = 0.15475269067802363521161027564922 y[1] (numeric) = 0.15475269067802440704606460961331 absolute error = 7.7183445433396409e-16 relative error = 4.9875349562731187949154247010346e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 2.185 x[1] = 0.157 y[1] (analytic) = 0.15572878388559772709038246182826 y[1] (numeric) = 0.15572878388559849457602146843585 absolute error = 7.6748563900660759e-16 relative error = 4.9283479897359360470915609892081e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 2.185 x[1] = 0.158 y[1] (analytic) = 0.15670457801893475182243256932571 y[1] (numeric) = 0.15670457801893551494433052606979 absolute error = 7.6312189795674408e-16 relative error = 4.8698124049990127964834582501809e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 2.185 x[1] = 0.159 y[1] (analytic) = 0.15768007135807314540834549089928 y[1] (numeric) = 0.15768007135807390415178736077576 absolute error = 7.5874344186987648e-16 relative error = 4.8119171645150905941542506933592e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 2.185 x[1] = 0.16 y[1] (analytic) = 0.15865526218640140386370801978126 y[1] (numeric) = 0.15865526218640215821418973629154 absolute error = 7.5435048171651028e-16 relative error = 4.7546515086920758033042719752927e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 2.186 x[1] = 0.161 y[1] (analytic) = 0.15963014879067402403215455058094 y[1] (numeric) = 0.15963014879067477397538328714558 absolute error = 7.4994322873656464e-16 relative error = 4.6980049471731001808986308633277e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 2.186 x[1] = 0.162 y[1] (analytic) = 0.16060472946102735408809053492158 y[1] (numeric) = 0.16060472946102809960998495872968 absolute error = 7.4552189442380810e-16 relative error = 4.6419672504396444065245552288775e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 2.186 x[1] = 0.163 y[1] (analytic) = 0.16157900249099535343421929774144 y[1] (numeric) = 0.16157900249099609452090980806179 absolute error = 7.4108669051032035e-16 relative error = 4.5865284417238583805567450334918e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 2.186 x[1] = 0.164 y[1] (analytic) = 0.16255296617752526170334747544429 y[1] (numeric) = 0.16255296617752599834117642642612 absolute error = 7.3663782895098183e-16 relative error = 4.5316787892168904933347244715436e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 2.186 x[1] = 0.165 y[1] (analytic) = 0.16352661882099317657829895745621 y[1] (numeric) = 0.16352661882099390875382086544874 absolute error = 7.3217552190799253e-16 relative error = 4.4774087985606750433134153558614e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 2.187 x[1] = 0.166 y[1] (analytic) = 0.16449995872521954014812647905254 y[1] (numeric) = 0.1644999587252202678481082144743 absolute error = 7.2769998173542176e-16 relative error = 4.4237092056112342846773662048871e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 2.187 memory used=320.4MB, alloc=4.5MB, time=45.20 x[1] = 0.167 y[1] (analytic) = 0.16547298419748453352317360698024 y[1] (numeric) = 0.16547298419748525673459457077038 absolute error = 7.2321142096379014e-16 relative error = 4.3705709694621206013052165252845e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 2.187 x[1] = 0.168 y[1] (analytic) = 0.1664456935485433794359074624614 y[1] (numeric) = 0.16644569354854409814595974714712 absolute error = 7.1871005228468572e-16 relative error = 4.3179852657171699239405897482729e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 2.187 x[1] = 0.169 y[1] (analytic) = 0.16741808509264155255881382133079 y[1] (numeric) = 0.16741808509264226675490235674615 absolute error = 7.1419608853541536e-16 relative error = 4.2659434800022454735666271550209e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 2.187 x[1] = 0.17 y[1] (analytic) = 0.16839015714752989727502090172968 y[1] (numeric) = 0.16839015714753060694476358542291 absolute error = 7.0966974268369323e-16 relative error = 4.2144372017061409507461085256463e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 2.188 x[1] = 0.171 y[1] (analytic) = 0.1693619080344796526416958800731 y[1] (numeric) = 0.1693619080344803577729236924408 absolute error = 7.0513122781236770e-16 relative error = 4.1634582179412687465541006533236e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 2.188 x[1] = 0.172 y[1] (analytic) = 0.17033333607829738429063865080129 y[1] (numeric) = 0.17033333607829808487139575498949 absolute error = 7.0058075710418820e-16 relative error = 4.1129985077151966028223621001778e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 2.188 x[1] = 0.173 y[1] (analytic) = 0.17130443960733982301488025038005 y[1] (numeric) = 0.1713044396073405190334240769936 absolute error = 6.9601854382661355e-16 relative error = 4.0630502363045089484356687121939e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 2.188 x[1] = 0.174 y[1] (analytic) = 0.1722752169535286097944783876051 y[1] (numeric) = 0.17227521695352930123927970426828 absolute error = 6.9144480131666318e-16 relative error = 4.0136057498228605855196415768053e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 2.188 x[1] = 0.175 y[1] (analytic) = 0.17324566645236494701908934781572 y[1] (numeric) = 0.17324566645236563387883231362846 absolute error = 6.8685974296581274e-16 relative error = 3.9646575699754626381777326831181e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 2.189 x[1] = 0.176 y[1] (analytic) = 0.17421578644294415566928385633262 y[1] (numeric) = 0.17421578644294483793286606126813 absolute error = 6.8226358220493551e-16 relative error = 3.9161983889925929051817742532626e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 2.189 x[1] = 0.177 y[1] (analytic) = 0.17518557526797013822296398541092 y[1] (numeric) = 0.17518557526797081587949647470204 absolute error = 6.7765653248929112e-16 relative error = 3.8682210647350581610727113011189e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 2.189 x[1] = 0.178 y[1] (analytic) = 0.17615503127376974705762855928587 y[1] (numeric) = 0.17615503127377042009643584284876 absolute error = 6.7303880728356289e-16 relative error = 3.8207186159648526923362728609895e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 2.189 x[1] = 0.179 y[1] (analytic) = 0.17712415281030705812362544449479 y[1] (numeric) = 0.17712415281030772653424549144007 absolute error = 6.6841062004694528e-16 relative error = 3.7736842177745603163567514722897e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 2.189 x[1] = 0.18 y[1] (analytic) = 0.17809293823119754966792029959123 y[1] (numeric) = 0.17809293823119821344010451787413 absolute error = 6.6377218421828290e-16 relative error = 3.7271111971693337097655218699125e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 2.189 x[1] = 0.181 y[1] (analytic) = 0.17906138589372218579230249265557 y[1] (numeric) = 0.17906138589372284491601569391785 absolute error = 6.5912371320126228e-16 relative error = 3.6809930287955560291159805069421e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 2.19 x[1] = 0.182 y[1] (analytic) = 0.18002949415884140463433967073478 y[1] (numeric) = 0.18002949415884205909976002039277 absolute error = 6.5446542034965799e-16 relative error = 3.6353233308105511079982583259995e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 2.19 x[1] = 0.183 y[1] (analytic) = 0.18099726139120901096378257767923 y[1] (numeric) = 0.18099726139120966076130153031362 absolute error = 6.4979751895263439e-16 relative error = 3.5900958608879531000021834800008e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 2.19 x[1] = 0.184 y[1] (analytic) = 0.18196468595918597299151086206316 y[1] (numeric) = 0.18196468595918661811173308216739 absolute error = 6.4512022222010423e-16 relative error = 3.5453045123535804310981387031052e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 2.19 x[1] = 0.185 y[1] (analytic) = 0.18293176623485412319249849239243 y[1] (numeric) = 0.1829317662348547636262417605382 absolute error = 6.4043374326814577e-16 relative error = 3.5009433104468843234058864053806e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 2.19 x[1] = 0.186 y[1] (analytic) = 0.18389850059402976294866370120209 y[1] (numeric) = 0.18389850059403039868695880568133 absolute error = 6.3573829510447924e-16 relative error = 3.4570064087032495780335208268386e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 2.19 x[1] = 0.187 y[1] (analytic) = 0.18486488741627717082185281270067 y[1] (numeric) = 0.18486488741627780185594342670522 absolute error = 6.3103409061400455e-16 relative error = 3.4134880854526332366928874006889e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 2.19 x[1] = 0.188 y[1] (analytic) = 0.18583092508492201427158957132817 y[1] (numeric) = 0.18583092508492264059293211572915 absolute error = 6.2632134254440098e-16 relative error = 3.3703827404302125107350475893885e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 2.19 x[1] = 0.189 y[1] (analytic) = 0.18679661198706466463660138320294 y[1] (numeric) = 0.1867966119870652862368648749935 absolute error = 6.2160026349179056e-16 relative error = 3.3276848914949018457315558425245e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.022 Order of pole = 2.19 x[1] = 0.19 y[1] (analytic) = 0.18776194651359341520351091246245 y[1] (numeric) = 0.18776194651359403207457679892862 absolute error = 6.1687106588646617e-16 relative error = 3.2853891714517697061014298433689e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.022 Order of pole = 2.191 x[1] = 0.191 y[1] (analytic) = 0.18872692705919760219045544477445 y[1] (numeric) = 0.18872692705919821432441742346015 absolute error = 6.1213396197868570e-16 relative error = 3.2434903249745535783220023747759e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.022 Order of pole = 2.191 x[1] = 0.192 y[1] (analytic) = 0.18969155202238062847776704695925 y[1] (numeric) = 0.18969155202238123586693087149273 absolute error = 6.0738916382453348e-16 relative error = 3.2019832056246294167220773269971e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.022 Order of pole = 2.191 x[1] = 0.193 y[1] (analytic) = 0.19065581980547288992221352222369 y[1] (numeric) = 0.19065581980547349255909679407398 absolute error = 6.0263688327185029e-16 relative error = 3.1608627729629433320049704504785e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.022 Order of pole = 2.191 x[1] = 0.194 y[1] (analytic) = 0.19161972881464460409566319384601 y[1] (numeric) = 0.19161972881464520197299514007906 absolute error = 5.9787733194623305e-16 relative error = 3.1201240897515562498606717823283e-13 % memory used=324.2MB, alloc=4.5MB, time=45.76 Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 2.191 x[1] = 0.195 y[1] (analytic) = 0.19258327745991854129339535655458 y[1] (numeric) = 0.19258327745991913440411659366002 absolute error = 5.9311072123710544e-16 relative error = 3.0797623192415904658432181661995e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 2.191 x[1] = 0.196 y[1] (analytic) = 0.19354646415518265766163252603031 y[1] (numeric) = 0.19354646415518324599889480989099 absolute error = 5.8833726228386068e-16 relative error = 3.0397727225444979983111884436997e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 2.191 x[1] = 0.197 y[1] (analytic) = 0.1945092873182026302982201061027 y[1] (numeric) = 0.19450928731820321385538606818028 absolute error = 5.8355716596207758e-16 relative error = 3.0001506560836951191088241766063e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 2.191 x[1] = 0.198 y[1] (analytic) = 0.1954717453706342941847234949532 y[1] (numeric) = 0.19547174537063487295536636476426 absolute error = 5.7877064286981106e-16 relative error = 2.9608915691237273352234558587225e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 2.191 x[1] = 0.199 y[1] (analytic) = 0.19643383673803598081255168214006 y[1] (numeric) = 0.19643383673803655479045499609825 absolute error = 5.7397790331395819e-16 relative error = 2.9219910013742423447623911440646e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 2.191 x[1] = 0.2 y[1] (analytic) = 0.19739555984988075837004976519479 y[1] (numeric) = 0.19739555984988132754920706189584 absolute error = 5.6917915729670105e-16 relative error = 2.8834445806661586700916353163069e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.024 Order of pole = 2.191 x[1] = 0.201 y[1] (analytic) = 0.19835691313956857336183025714339 y[1] (numeric) = 0.19835691313956913773644475917074 absolute error = 5.6437461450202735e-16 relative error = 2.8452480206975198433879431661323e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.024 Order of pole = 2.191 x[1] = 0.202 y[1] (analytic) = 0.19931789504443829353593428537757 y[1] (numeric) = 0.19931789504443885310041856770757 absolute error = 5.5956448428233000e-16 relative error = 2.8073971188466246985036516712498e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.024 Order of pole = 2.191 x[1] = 0.203 y[1] (analytic) = 0.20027850400577965199872852024381 y[1] (numeric) = 0.2002785040057802067477041653305 absolute error = 5.5474897564508669e-16 relative error = 2.7698877540501186423184516092395e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.024 Order of pole = 2.191 x[1] = 0.204 y[1] (analytic) = 0.20123873846884509240175164255016 y[1] (numeric) = 0.20123873846884564233004888217074 absolute error = 5.4992829723962058e-16 relative error = 2.7327158847438217810208508926692e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.024 Order of pole = 2.191 x[1] = 0.205 y[1] (analytic) = 0.20219859688286151508902508857327 y[1] (numeric) = 0.20219859688286206019168243251634 absolute error = 5.4510265734394307e-16 relative error = 2.6958775468641559434024311782027e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 2.19 x[1] = 0.206 y[1] (analytic) = 0.20315807770104192409763642640581 y[1] (numeric) = 0.20315807770104246436990027808556 absolute error = 5.4027226385167975e-16 relative error = 2.6593688519081163244767855795256e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 2.19 x[1] = 0.207 y[1] (analytic) = 0.20411717938059697490868974762712 y[1] (numeric) = 0.20411717938059751034601400670773 absolute error = 5.3543732425908061e-16 relative error = 2.6231859850498127816432824858222e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 2.19 x[1] = 0.208 y[1] (analytic) = 0.20507590038274642284999563402438 y[1] (numeric) = 0.20507590038274695344804128613969 absolute error = 5.3059804565211531e-16 relative error = 2.5873252033116804250661176661048e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 2.19 x[1] = 0.209 y[1] (analytic) = 0.20603423917273047205614331288115 y[1] (numeric) = 0.20603423917273099781077800653597 absolute error = 5.2575463469365482e-16 relative error = 2.5517828337885343733326933464873e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 2.19 x[1] = 0.21 y[1] (analytic) = 0.20699219421982102489585928037958 y[1] (numeric) = 0.20699219421982154580315689111963 absolute error = 5.2090729761074005e-16 relative error = 2.5165552719227097564793776596996e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.026 Order of pole = 2.19 x[1] = 0.211 y[1] (analytic) = 0.2079497639973328317808096868911 y[1] (numeric) = 0.20794976399733334783704986882982 absolute error = 5.1605624018193872e-16 relative error = 2.4816389798285977791179542117356e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.026 Order of pole = 2.19 x[1] = 0.212 y[1] (analytic) = 0.20890694698263454127424787811166 y[1] (numeric) = 0.20890694698263505247591560290289 absolute error = 5.1120166772479123e-16 relative error = 2.4470304846649500692866207128638e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.026 Order of pole = 2.19 x[1] = 0.213 y[1] (analytic) = 0.20986374165715965042214341168905 y[1] (numeric) = 0.20986374165716015676592849503562 absolute error = 5.0634378508334657e-16 relative error = 2.4127263770533860229400574040484e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.026 Order of pole = 2.19 x[1] = 0.214 y[1] (analytic) = 0.21082014650641735523365436158161 y[1] (numeric) = 0.21082014650641785671645097737073 absolute error = 5.0148279661578912e-16 relative error = 2.3787233095415954827642509879883e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.026 Order of pole = 2.189 x[1] = 0.215 y[1] (analytic) = 0.21177616002000330124202052511406 y[1] (numeric) = 0.21177616002000379786092670727132 absolute error = 4.9661890618215726e-16 relative error = 2.3450179951097855331112810117878e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.027 Order of pole = 2.189 x[1] = 0.216 y[1] (analytic) = 0.21273178069161023408116100566043 y[1] (numeric) = 0.21273178069161072583347813781508 absolute error = 4.9175231713215465e-16 relative error = 2.3116072057189736735573881527390e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.027 Order of pole = 2.189 x[1] = 0.217 y[1] (analytic) = 0.2136870070190385500174553040726 y[1] (numeric) = 0.21368700701903903690068759712768 absolute error = 4.8688323229305508e-16 relative error = 2.2784877708997813639158897042686e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.027 Order of pole = 2.189 x[1] = 0.218 y[1] (analytic) = 0.21464183750420674638037226327621 y[1] (numeric) = 0.21464183750420722839222622097793 absolute error = 4.8201185395770172e-16 relative error = 2.2456565763804310160443555317870e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.027 Order of pole = 2.189 x[1] = 0.219 y[1] (analytic) = 0.21559627065316177183978572368475 y[1] (numeric) = 0.21559627065316224897816959628631 absolute error = 4.7713838387260156e-16 relative error = 2.2131105627526967120307940624782e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.028 Order of pole = 2.189 x[1] = 0.22 y[1] (analytic) = 0.21655030497608927648197931498645 y[1] (numeric) = 0.21655030497608974874500254110243 absolute error = 4.7226302322611598e-16 relative error = 2.1808467241746050787456526539585e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop memory used=328.0MB, alloc=4.5MB, time=46.30 Complex estimate of poles used Radius of convergence = 1.028 Order of pole = 2.189 x[1] = 0.221 y[1] (analytic) = 0.2175039389873237616404951871435 y[1] (numeric) = 0.21750393898732422902646782389157 absolute error = 4.6738597263674807e-16 relative error = 2.1488621071087248597894034363661e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.028 Order of pole = 2.188 x[1] = 0.222 y[1] (analytic) = 0.21845717120535862944212242678504 y[1] (numeric) = 0.21845717120535909194955456831273 absolute error = 4.6250743214152769e-16 relative error = 2.1171538090949272864386622568138e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.028 Order of pole = 2.188 x[1] = 0.223 y[1] (analytic) = 0.21941000015285613203245017324312 y[1] (numeric) = 0.21941000015285658966005135773792 absolute error = 4.5762760118449480e-16 relative error = 2.0857189775565373710588894945003e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.028 Order of pole = 2.188 x[1] = 0.224 y[1] (analytic) = 0.22036242435665722044952780194386 y[1] (numeric) = 0.22036242435665767319620640722594 absolute error = 4.5274667860528208e-16 relative error = 2.0545548086388370491407413766689e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.029 Order of pole = 2.188 x[1] = 0.225 y[1] (analytic) = 0.22131444234779129311827974442012 y[1] (numeric) = 0.22131444234779174098314237221746 absolute error = 4.4786486262779734e-16 relative error = 2.0236585460789157059590174009643e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.029 Order of pole = 2.188 x[1] = 0.226 y[1] (analytic) = 0.22226605266148584394241532858389 y[1] (numeric) = 0.22226605266148628692476617759045 absolute error = 4.4298235084900656e-16 relative error = 1.9930274801059007217248043091836e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.029 Order of pole = 2.187 x[1] = 0.227 y[1] (analytic) = 0.22321725383717600997465421687039 y[1] (numeric) = 0.22321725383717644807399444468871 absolute error = 4.3809934022781832e-16 relative error = 1.9626589463706344165805741994795e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.029 Order of pole = 2.187 x[1] = 0.228 y[1] (analytic) = 0.22416804441851401865015536228796 y[1] (numeric) = 0.22416804441851445186618243635802 absolute error = 4.3321602707407006e-16 relative error = 1.9325503249038951211119432901205e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.029 Order of pole = 2.187 x[1] = 0.229 y[1] (analytic) = 0.22511842295337853457209166420795 y[1] (numeric) = 0.22511842295337896290469870182515 absolute error = 4.2833260703761720e-16 relative error = 1.9026990391022942510183718823357e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.03 Order of pole = 2.187 x[1] = 0.23 y[1] (analytic) = 0.2260683879938839058423534599328 y[1] (numeric) = 0.22606838799388432929162855745822 absolute error = 4.2344927509752542e-16 relative error = 1.8731025547410082456629198817094e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.03 Order of pole = 2.187 x[1] = 0.231 y[1] (analytic) = 0.22701793809638930993439140982068 y[1] (numeric) = 0.22701793809638972850061696118768 absolute error = 4.1856622555136700e-16 relative error = 1.8437583790125360144942800074727e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.03 Order of pole = 2.186 x[1] = 0.232 y[1] (analytic) = 0.22796707182150779910922300027972 y[1] (numeric) = 0.22796707182150821279287500490145 absolute error = 4.1368365200462173e-16 relative error = 1.8146640595906987473775858535354e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.03 Order of pole = 2.186 x[1] = 0.233 y[1] (analytic) = 0.22891578773411524537962657966637 y[1] (numeric) = 0.22891578773411565418137393984932 absolute error = 4.0880174736018295e-16 relative error = 1.7858171837191260643412072262432e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.031 Order of pole = 2.186 x[1] = 0.234 y[1] (analytic) = 0.22986408440335918503153233857194 y[1] (numeric) = 0.22986408440335958895223614654138 absolute error = 4.0392070380796944e-16 relative error = 1.7572153773234990355340455773731e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.031 Order of pole = 2.186 x[1] = 0.235 y[1] (analytic) = 0.23081196040266756271559073186302 y[1] (numeric) = 0.23081196040266796175630354650661 absolute error = 3.9904071281464359e-16 relative error = 1.7288563041468441917988401091697e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.031 Order of pole = 2.185 x[1] = 0.236 y[1] (analytic) = 0.23175941430975737512585530103053 y[1] (numeric) = 0.23175941430975776928782041446706 absolute error = 3.9416196511343653e-16 relative error = 1.7007376649071976646466235110608e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.031 Order of pole = 2.185 x[1] = 0.237 y[1] (analytic) = 0.23270644470664321428645847996177 y[1] (numeric) = 0.23270644470664360357110917404241 absolute error = 3.8928465069408064e-16 relative error = 1.6728571964769804726132676932720e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.031 Order of pole = 2.185 x[1] = 0.238 y[1] (analytic) = 0.23365305017964571047108554543775 y[1] (numeric) = 0.23365305017964609488004433828791 absolute error = 3.8440895879285016e-16 relative error = 1.6452126710834494171044690052055e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.032 Order of pole = 2.185 x[1] = 0.239 y[1] (analytic) = 0.23459922931939987478396319794222 y[1] (numeric) = 0.23459922931940025431904108065232 absolute error = 3.7953507788271010e-16 relative error = 1.6178018955296071205015988129522e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.032 Order of pole = 2.185 x[1] = 0.24 y[1] (analytic) = 0.23554498072086334143497512343376 y[1] (numeric) = 0.23554498072086371609817078700798 absolute error = 3.7466319566357422e-16 relative error = 1.5906227104349777184531170598810e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.032 Order of pole = 2.184 x[1] = 0.241 y[1] (analytic) = 0.23649030298332450974539708949449 y[1] (numeric) = 0.23649030298332487953889614216695 absolute error = 3.6979349905267246e-16 relative error = 1.5636729894956727832418604104231e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.032 Order of pole = 2.184 x[1] = 0.242 y[1] (analytic) = 0.23743519471041058592460846888223 y[1] (numeric) = 0.23743519471041095085078264391047 absolute error = 3.6492617417502824e-16 relative error = 1.5369506387631912570595580946228e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.033 Order of pole = 2.184 x[1] = 0.243 y[1] (analytic) = 0.23837965451009552466198536138191 y[1] (numeric) = 0.238379654510095884723391715428 absolute error = 3.6006140635404609e-16 relative error = 1.5104535959414156650327260458371e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.033 Order of pole = 2.184 x[1] = 0.244 y[1] (analytic) = 0.23932368099470787058201250463952 y[1] (numeric) = 0.23932368099470822578139260684961 absolute error = 3.5519938010221009e-16 relative error = 1.4841798297012846035004193307089e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.033 Order of pole = 2.184 x[1] = 0.245 y[1] (analytic) = 0.24026727278093849961446673229958 y[1] (numeric) = 0.24026727278093884995474584419306 absolute error = 3.5034027911189348e-16 relative error = 1.4581273390126379910145881374427e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.033 Order of pole = 2.184 x[1] = 0.246 y[1] (analytic) = 0.24121042848984826033532366146249 y[1] (numeric) = 0.24121042848984860581960990774228 absolute error = 3.4548428624627979e-16 relative error = 1.4322941524927479135063375139200e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.033 Order of pole = 2.183 memory used=331.8MB, alloc=4.5MB, time=46.84 x[1] = 0.247 y[1] (analytic) = 0.24215314674687551533782138172501 y[1] (numeric) = 0.24215314674687585596940491212102 absolute error = 3.4063158353039601e-16 relative error = 1.4066783277710643867969465392889e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.034 Order of pole = 2.183 x[1] = 0.248 y[1] (analytic) = 0.24309542618184358269687998765299 y[1] (numeric) = 0.24309542618184391847923212991103 absolute error = 3.3578235214225804e-16 relative error = 1.3812779508697194027568632538580e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.034 Order of pole = 2.183 x[1] = 0.249 y[1] (analytic) = 0.24403726542896807759382366054851 y[1] (numeric) = 0.24403726542896840853059606467726 absolute error = 3.3093677240412875e-16 relative error = 1.3560911355993476755278444175131e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.034 Order of pole = 2.183 x[1] = 0.25 y[1] (analytic) = 0.24497866312686415417208248121128 y[1] (numeric) = 0.24497866312686448026710625510041 absolute error = 3.2609502377388913e-16 relative error = 1.3311160229697972579800974556796e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.034 Order of pole = 2.183 x[1] = 0.251 y[1] (analytic) = 0.24591961791855364769826406277119 y[1] (numeric) = 0.24591961791855396895554889929386 absolute error = 3.2125728483652267e-16 relative error = 1.3063507806153154316775277943787e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.035 Order of pole = 2.183 x[1] = 0.252 y[1] (analytic) = 0.24686012845147211710668025362079 y[1] (numeric) = 0.24686012845147243353041354933415 absolute error = 3.1642373329571336e-16 relative error = 1.2817936022338094579036435097766e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.035 Order of pole = 2.183 x[1] = 0.253 y[1] (analytic) = 0.24780019337747578800909139937062 y[1] (numeric) = 0.24780019337747609960363736492823 absolute error = 3.1159454596555761e-16 relative error = 1.2574427070397940863745358989799e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.035 Order of pole = 2.182 x[1] = 0.254 y[1] (analytic) = 0.24873981135284839625508979628847 y[1] (numeric) = 0.2487398113528487030249885586788 absolute error = 3.0676989876239033e-16 relative error = 1.2332963392306497112968863009764e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.035 Order of pole = 2.182 x[1] = 0.255 y[1] (analytic) = 0.24967898103830793213218484590961 y[1] (numeric) = 0.24967898103830823408215154263492 absolute error = 3.0194996669672531e-16 relative error = 1.2093527674658264736351563286232e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.036 Order of pole = 2.182 x[1] = 0.256 y[1] (analytic) = 0.25061770109901328529827486280961 y[1] (numeric) = 0.25061770109901358243319872812004 absolute error = 2.9713492386531043e-16 relative error = 1.1856102843586425711495491532615e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.036 Order of pole = 2.182 x[1] = 0.257 y[1] (analytic) = 0.25155597020457079054279432865903 y[1] (numeric) = 0.25155597020457108286773777195661 absolute error = 2.9232494344329758e-16 relative error = 1.1620672059803334145031301781664e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.036 Order of pole = 2.182 x[1] = 0.258 y[1] (analytic) = 0.25249378702904067447641046172953 y[1] (numeric) = 0.25249378702904096199660813825722 absolute error = 2.8752019767652769e-16 relative error = 1.1387218713760209823071806147527e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.036 Order of pole = 2.182 x[1] = 0.259 y[1] (analytic) = 0.25343115025094340325270912045762 y[1] (numeric) = 0.25343115025094368597356699438868 absolute error = 2.8272085787393106e-16 relative error = 1.1155726420922821232423334809781e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.037 Order of pole = 2.182 x[1] = 0.26 y[1] (analytic) = 0.25436805855326593142885712332461 y[1] (numeric) = 0.25436805855326620935595152336771 absolute error = 2.7792709440004310e-16 relative error = 1.0926179017160041333147714063959e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.037 Order of pole = 2.182 x[1] = 0.261 y[1] (analytic) = 0.25530451062346785207575588837784 y[1] (numeric) = 0.25530451062346812521483255601346 absolute error = 2.7313907666763562e-16 relative error = 1.0698560554242256162823649701213e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.037 Order of pole = 2.182 x[1] = 0.262 y[1] (analytic) = 0.25624050515348744825170971977317 y[1] (numeric) = 0.2562405051534877166086828502371 absolute error = 2.6835697313046393e-16 relative error = 1.0472855295446703341427148734621e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.037 Order of pole = 2.182 x[1] = 0.263 y[1] (analytic) = 0.25717604083974764595712094371203 y[1] (numeric) = 0.25717604083974790953807221984179 absolute error = 2.6358095127612976e-16 relative error = 1.0249047711266896835184977568820e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.038 Order of pole = 2.182 x[1] = 0.264 y[1] (analytic) = 0.25811111638316186869119327240872 y[1] (numeric) = 0.25811111638316212750237089146888 absolute error = 2.5881117761906016e-16 relative error = 1.0027122475223386406953290421375e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.038 Order of pole = 2.182 x[1] = 0.265 y[1] (analytic) = 0.25904573048913979373507410496906 y[1] (numeric) = 0.25904573048914004778289179857159 absolute error = 2.5404781769360253e-16 relative error = 9.8070644597731829549939670200372e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.038 Order of pole = 2.182 x[1] = 0.266 y[1] (analytic) = 0.25997988186759301028929581338912 y[1] (numeric) = 0.25997988186759325958033186062481 absolute error = 2.4929103604723569e-16 relative error = 9.5888587323152520682621956533212e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.038 Order of pole = 2.182 x[1] = 0.267 y[1] (analytic) = 0.26091356923294057959678526777799 y[1] (numeric) = 0.26091356923294082413778150167534 absolute error = 2.4454099623389735e-16 relative error = 9.3724905512895732866894834378567e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.039 Order of pole = 2.182 x[1] = 0.268 y[1] (analytic) = 0.26184679130411449718609978724919 y[1] (numeric) = 0.26184679130411473698396059467691 absolute error = 2.3979786080742772e-16 relative error = 9.1579453623673136817853535842888e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.039 Order of pole = 2.182 x[1] = 0.269 y[1] (analytic) = 0.26277954680456505737291622397537 y[1] (numeric) = 0.26277954680456529243470753910489 absolute error = 2.3506179131512952e-16 relative error = 8.9452087947297571358751725827875e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.039 Order of pole = 2.182 x[1] = 0.27 y[1] (analytic) = 0.26371183446226612016114786232071 y[1] (numeric) = 0.26371183446226635049409615376503 absolute error = 2.3033294829144432e-16 relative error = 8.7342666574336881666647216640323e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.039 Order of pole = 2.182 x[1] = 0.271 y[1] (analytic) = 0.26464365300972028068839110980497 y[1] (numeric) = 0.26464365300972050629988236155024 absolute error = 2.2561149125174527e-16 relative error = 8.5251049358610020665239327346786e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.04 Order of pole = 2.182 x[1] = 0.272 y[1] (analytic) = 0.26557500118396394136371044135735 y[1] (numeric) = 0.26557500118396416226128912760348 absolute error = 2.2089757868624613e-16 relative error = 8.3177097882503730998157766049321e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.04 Order of pole = 2.182 memory used=335.7MB, alloc=4.5MB, time=47.38 x[1] = 0.273 y[1] (analytic) = 0.26650587772657228684905560472492 y[1] (numeric) = 0.26650587772657250304042365875161 absolute error = 2.1619136805402669e-16 relative error = 8.1120675423088828720675335832507e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.04 Order of pole = 2.182 x[1] = 0.274 y[1] (analytic) = 0.2674362813836641620388695772418 y[1] (numeric) = 0.26743628138366437353188535441629 absolute error = 2.1149301577717449e-16 relative error = 7.9081646919015655928008161017513e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.04 Order of pole = 2.182 x[1] = 0.275 y[1] (analytic) = 0.2683662109059068531956890590657 y[1] (numeric) = 0.26836621090590705999836629410849 absolute error = 2.0680267723504279e-16 relative error = 7.7059878938168879619690845133085e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.041 Order of pole = 2.182 x[1] = 0.276 y[1] (analytic) = 0.26929566504852077240276127446637 y[1] (numeric) = 0.26929566504852097452326803309111 absolute error = 2.0212050675862474e-16 relative error = 7.5055239646062389453980635478485e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.041 Order of pole = 2.182 x[1] = 0.277 y[1] (analytic) = 0.27022464257128404549790141221517 y[1] (numeric) = 0.27022464257128424294455903725887 absolute error = 1.9744665762504370e-16 relative error = 7.3067598774955603704808895270469e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.041 Order of pole = 2.182 x[1] = 0.278 y[1] (analytic) = 0.27115314223853700365599405237651 y[1] (numeric) = 0.27115314223853719643727610453609 absolute error = 1.9278128205215958e-16 relative error = 7.1096827593673001865338681300404e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.042 Order of pole = 2.182 x[1] = 0.279 y[1] (analytic) = 0.27208116281918657879069928603027 y[1] (numeric) = 0.27208116281918676691523047932139 absolute error = 1.8812453119329112e-16 relative error = 6.9142798878109242781858924096709e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.042 Order of pole = 2.182 x[1] = 0.28 y[1] (analytic) = 0.27300870308671060294905982523562 y[1] (numeric) = 0.27300870308671078642561495728967 absolute error = 1.8347655513205405e-16 relative error = 6.7205386882402739307552486847599e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.042 Order of pole = 2.182 x[1] = 0.281 y[1] (analytic) = 0.27393576181916201187581911384407 y[1] (numeric) = 0.2739357618191621907133219911589 absolute error = 1.7883750287731483e-16 relative error = 6.5284467310760961265936741721025e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.042 Order of pole = 2.183 x[1] = 0.282 y[1] (analytic) = 0.27486233779917295292735217892747 y[1] (numeric) = 0.27486233779917312713487453718753 absolute error = 1.7420752235826006e-16 relative error = 6.3379917289921355587987327663066e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.043 Order of pole = 2.183 x[1] = 0.283 y[1] (analytic) = 0.27578842981395879751818060333197 y[1] (numeric) = 0.2757884298139589671049410229132 absolute error = 1.6958676041958123e-16 relative error = 6.1491615342232076453745176586079e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.043 Order of pole = 2.183 x[1] = 0.284 y[1] (analytic) = 0.27671403665532205828609045030453 y[1] (numeric) = 0.27671403665532222326145326707927 absolute error = 1.6497536281677474e-16 relative error = 5.9619441359337258101834189861014e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.043 Order of pole = 2.183 x[1] = 0.285 y[1] (analytic) = 0.27763915711965621116489713174288 y[1] (numeric) = 0.2776391571196563715383713432998 absolute error = 1.6037347421155692e-16 relative error = 5.7763276576451920218125834373921e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.043 Order of pole = 2.183 x[1] = 0.286 y[1] (analytic) = 0.27856379000794942255690398524164 y[1] (numeric) = 0.27856379000794957833814215263558 absolute error = 1.5578123816739394e-16 relative error = 5.5923003547212070937690683999157e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.044 Order of pole = 2.183 x[1] = 0.287 y[1] (analytic) = 0.27948793412578818180008161696429 y[1] (numeric) = 0.27948793412578833299887876211068 absolute error = 1.5119879714514639e-16 relative error = 5.4098506119085936200664714389872e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.044 Order of pole = 2.183 x[1] = 0.288 y[1] (analytic) = 0.28041158828336083912795278504169 y[1] (numeric) = 0.28041158828336098575424528386994 absolute error = 1.4662629249882825e-16 relative error = 5.2289669409332614308536589970156e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.044 Order of pole = 2.184 x[1] = 0.289 y[1] (analytic) = 0.28133475129546104932310265162365 y[1] (numeric) = 0.28133475129546119138696712310372 absolute error = 1.4206386447148007e-16 relative error = 5.0496379781494869941401660451819e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.045 Order of pole = 2.184 x[1] = 0.29 y[1] (analytic) = 0.28225742198149112126814653318423 y[1] (numeric) = 0.28225742198149125877979872434037 absolute error = 1.3751165219115614e-16 relative error = 4.8718524822413134872084382845310e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.045 Order of pole = 2.184 x[1] = 0.291 y[1] (analytic) = 0.28317959916546527360087674284891 y[1] (numeric) = 0.28317959916546540657067040987423 absolute error = 1.3296979366702532e-16 relative error = 4.6955993319748099926318986104839e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.045 Order of pole = 2.184 x[1] = 0.292 y[1] (analytic) = 0.28410128167601279668317666236213 y[1] (numeric) = 0.28410128167601292512160244794741 absolute error = 1.2843842578558528e-16 relative error = 4.5208675239999657082385168535791e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.045 Order of pole = 2.184 x[1] = 0.293 y[1] (analytic) = 0.28502246834638112109613372417645 y[1] (numeric) = 0.28502246834638124501381803116644 absolute error = 1.2391768430698999e-16 relative error = 4.3476461707010316999404547508413e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.046 Order of pole = 2.184 x[1] = 0.294 y[1] (analytic) = 0.28594315801443879287660344768433 y[1] (numeric) = 0.28594315801443891228430730917426 absolute error = 1.1940770386148993e-16 relative error = 4.1759244980941421620015977882067e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.046 Order of pole = 2.185 x[1] = 0.295 y[1] (analytic) = 0.28686334952267835571327398182198 y[1] (numeric) = 0.28686334952267847062189192780693 absolute error = 1.1490861794598495e-16 relative error = 4.0056918437710949041581862993145e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.046 Order of pole = 2.185 x[1] = 0.296 y[1] (analytic) = 0.28778304171821914032305468546916 y[1] (numeric) = 0.2877830417182192507436136061585 absolute error = 1.1042055892068934e-16 relative error = 3.8369376548881882724738040957775e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.047 Order of pole = 2.185 x[1] = 0.297 y[1] (analytic) = 0.28870223345280996123136305587949 y[1] (numeric) = 0.28870223345281006717502106178827 absolute error = 1.0594365800590878e-16 relative error = 3.6696514861990452730637400016475e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.047 Order of pole = 2.185 x[1] = 0.298 y[1] (analytic) = 0.28962092358283172118261172474643 y[1] (numeric) = 0.28962092358283182266065700367532 absolute error = 1.0147804527892889e-16 relative error = 3.5038229981303861505905362250432e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.047 Order of pole = 2.185 x[1] = 0.299 memory used=339.5MB, alloc=4.5MB, time=47.93 y[1] (analytic) = 0.29053911096929992340990121468515 y[1] (numeric) = 0.29053911096930002043375088570013 absolute error = 9.702384967101498e-17 relative error = 3.3394419548997343899204367682055e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.048 Order of pole = 2.186 x[1] = 0.3 y[1] (analytic) = 0.29145679447786709199560462143289 y[1] (numeric) = 0.29145679447786718457680358595558 absolute error = 9.258119896452269e-17 relative error = 3.1764982226740713122698213389783e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.048 Order of pole = 2.186 x[1] = 0.301 y[1] (analytic) = 0.29237397297882510055718729677063 y[1] (numeric) = 0.29237397297882518870740708688967 absolute error = 8.815021979011904e-17 relative error = 3.0149817677684748490058351982123e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.048 Order of pole = 2.186 x[1] = 0.302 y[1] (analytic) = 0.29329064534710740949523789416054 y[1] (numeric) = 0.29329064534710749322627551827421 absolute error = 8.373103762411367e-17 relative error = 2.8548826548838125309124420326231e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.048 Order of pole = 2.186 x[1] = 0.303 y[1] (analytic) = 0.29420681046229121204329674576447 y[1] (numeric) = 0.29420681046229129136707353166416 absolute error = 7.932377678589969e-17 relative error = 2.6961910453825711027212725056311e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.049 Order of pole = 2.186 x[1] = 0.304 y[1] (analytic) = 0.29512246720859948936165341051156 y[1] (numeric) = 0.2951224672085995642902138460155 absolute error = 7.492856043550394e-17 relative error = 2.5388971956019422318521787543218e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.049 Order of pole = 2.187 x[1] = 0.305 y[1] (analytic) = 0.29603761447490297491984731513142 y[1] (numeric) = 0.29603761447490304546535788637743 absolute error = 7.054551057124601e-17 relative error = 2.3829914552032917300683983041123e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.049 Order of pole = 2.187 x[1] = 0.306 y[1] (analytic) = 0.29695225115472202841514365272399 y[1] (numeric) = 0.29695225115472209458989168022982 absolute error = 6.617474802750583e-17 relative error = 2.2284642655571780413354403847211e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.05 Order of pole = 2.187 x[1] = 0.307 y[1] (analytic) = 0.29786637614622841947677105790348 y[1] (numeric) = 0.29786637614622848129316353050267 absolute error = 6.181639247259919e-17 relative error = 2.0753061581630924349829976666468e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.05 Order of pole = 2.187 x[1] = 0.308 y[1] (analytic) = 0.29877998835224702140819799746658 y[1] (numeric) = 0.29877998835224707887876040422749 absolute error = 5.747056240676091e-17 relative error = 1.9235077531031269179709854745415e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.05 Order of pole = 2.187 x[1] = 0.309 y[1] (analytic) = 0.29969308668025741522219125675657 y[1] (numeric) = 0.29969308668025746835956641699165 absolute error = 5.313737516023508e-17 relative error = 1.7730597575287864742698219908097e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.051 Order of pole = 2.188 x[1] = 0.31 y[1] (analytic) = 0.3006056700423954042258423224989 y[1] (numeric) = 0.30060567004239545304278921397088 absolute error = 4.881694689147198e-17 relative error = 1.6239529641801888089463716954807e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.051 Order of pole = 2.188 x[1] = 0.311 y[1] (analytic) = 0.30151773735545443941516582315162 y[1] (numeric) = 0.30151773735545448392455840858275 absolute error = 4.450939258543113e-17 relative error = 1.4761782499369089775697523085692e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.051 Order of pole = 2.188 x[1] = 0.312 y[1] (analytic) = 0.30242928754088695594126845022163 y[1] (numeric) = 0.30242928754088699615609450221173 absolute error = 4.021482605199010e-17 relative error = 1.3297265743997513076129690130314e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.051 Order of pole = 2.188 x[1] = 0.313 y[1] (analytic) = 0.30334031952480562091245691320838 y[1] (numeric) = 0.30334031952480565684581683766687 absolute error = 3.593335992445849e-17 relative error = 1.1845889785027421482035671376300e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.052 Order of pole = 2.188 x[1] = 0.314 y[1] (analytic) = 0.30425083223798449279899944368794 y[1] (numeric) = 0.30425083223798452446410510188448 absolute error = 3.166510565819654e-17 relative error = 1.0407565831546566565534300566862e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.052 Order of pole = 2.188 x[1] = 0.315 y[1] (analytic) = 0.30516082461586009270957712954771 y[1] (numeric) = 0.30516082461586012011975065888574 absolute error = 2.741017352933803e-17 relative error = 8.9822058790941685704864809344678e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.052 Order of pole = 2.189 x[1] = 0.316 y[1] (analytic) = 0.30607029559853238781075889968589 y[1] (numeric) = 0.30607029559853241097943153330262 absolute error = 2.316867263361673e-17 relative error = 7.5697226966470195982611197828138e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.053 Order of pole = 2.189 x[1] = 0.317 y[1] (analytic) = 0.30697924413076568716310726590472 y[1] (numeric) = 0.30697924413076570610381815120079 absolute error = 1.894071088529607e-17 relative error = 6.1700298138814193300017944251776e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.053 Order of pole = 2.189 x[1] = 0.318 y[1] (analytic) = 0.30788766916198945024977093769348 y[1] (numeric) = 0.30788766916198946497616595389481 absolute error = 1.472639501620133e-17 relative error = 4.7830415087046916954738191128227e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.053 Order of pole = 2.189 x[1] = 0.319 y[1] (analytic) = 0.30879556964629900847564513467882 y[1] (numeric) = 0.30879556964629901900147570953265 absolute error = 1.052583057485383e-17 relative error = 3.4086727950502461786979849891369e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.054 Order of pole = 2.189 x[1] = 0.32 y[1] (analytic) = 0.30970294454245619991738081039242 y[1] (numeric) = 0.30970294454245620625650273609916 absolute error = 6.33912192570674e-18 relative error = 2.0468394109303438565491822391940e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.054 Order of pole = 2.189 x[1] = 0.321 y[1] (analytic) = 0.31060979281388991760670005144684 y[1] (numeric) = 0.31060979281388991977307229992854 absolute error = 2.16637224848170e-18 relative error = 6.9745780674073573037141362451790e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.054 Order of pole = 2.19 x[1] = 0.322 y[1] (analytic) = 0.31151611342869657163162661208564 y[1] (numeric) = 0.31151611342869656963931014969139 absolute error = 1.99231646239425e-18 relative error = 6.3955486618841453473934099728964e-16 % Correct digits = 17 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.055 Order of pole = 2.19 x[1] = 0.323 y[1] (analytic) = 0.31242190535964046534236787132933 y[1] (numeric) = 0.31242190535964045920552447307745 absolute error = 6.13684339825188e-18 relative error = 1.9642807668007566593792861222271e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.055 Order of pole = 2.19 x[1] = 0.324 y[1] (analytic) = 0.31332716758415408595068744658613 y[1] (numeric) = 0.31332716758415407568357851004222 absolute error = 1.026710893654391e-17 relative error = 3.2768013752865358393181977467096e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.055 Order of pole = 2.19 x[1] = 0.325 y[1] (analytic) = 0.31423189908433830981368625370098 y[1] (numeric) = 0.31423189908433829543067161259053 absolute error = 1.438301464111045e-17 relative error = 4.5771975038250712377357009533521e-15 % Correct digits = 16 h = 0.001 memory used=343.3MB, alloc=4.5MB, time=48.49 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.055 Order of pole = 2.19 x[1] = 0.326 y[1] (analytic) = 0.31513609884696252269496396108787 y[1] (numeric) = 0.31513609884696250421050069874126 absolute error = 1.848446326234661e-17 relative error = 5.8655493071021034279135632020474e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.056 Order of pole = 2.19 x[1] = 0.327 y[1] (analytic) = 0.31603976586346465529816253896612 y[1] (numeric) = 0.31603976586346463272680380169343 absolute error = 2.257135873727269e-17 relative error = 7.1419362926069111617733817291813e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.056 Order of pole = 2.19 x[1] = 0.328 y[1] (analytic) = 0.31694289912995113436989894995901 y[1] (numeric) = 0.31694289912995110772629276045142 absolute error = 2.664360618950759e-17 relative error = 8.4064373307140505863305167630389e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.056 Order of pole = 2.19 x[1] = 0.329 y[1] (analytic) = 0.31784549764719674967107496257369 y[1] (numeric) = 0.31784549764719671896996303342749 absolute error = 3.070111192914620e-17 relative error = 9.6591306645544895960949355555688e-15 % Correct digits = 16 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.057 Order of pole = 2.19 x[1] = 0.33 y[1] (analytic) = 0.31874756042064443711750859451907 y[1] (numeric) = 0.31874756042064440237372514197785 absolute error = 3.474378345254122e-17 relative error = 1.0900093919680696939697155013221e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.057 Order of pole = 2.19 x[1] = 0.331 y[1] (analytic) = 0.31964908646040497839276381056737 y[1] (numeric) = 0.31964908646040493962123436857713 absolute error = 3.877152944199024e-17 relative error = 1.2129404113530254114954681498223e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.057 Order of pole = 2.19 x[1] = 0.332 y[1] (analytic) = 0.32055007478125661733796281382548 y[1] (numeric) = 0.32055007478125657455370304849694 absolute error = 4.278425976532854e-17 relative error = 1.3347137664692332521309453033810e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.058 Order of pole = 2.191 x[1] = 0.333 y[1] (analytic) = 0.32145052440264459342524858590824 y[1] (numeric) = 0.32145052440264454664336311047987 absolute error = 4.678188547542837e-17 relative error = 1.4553370401981367096876052589833e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.058 Order of pole = 2.191 x[1] = 0.334 y[1] (analytic) = 0.32235043434868059262342425859152 y[1] (numeric) = 0.32235043434868054185910544898605 absolute error = 5.076431880960547e-17 relative error = 1.5748177573322153836452139120665e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.058 Order of pole = 2.191 x[1] = 0.335 y[1] (analytic) = 0.32324980364814211596613044698888 y[1] (numeric) = 0.32324980364814206123465725805569 absolute error = 5.473147318893319e-17 relative error = 1.6931633854450373808310613489496e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.059 Order of pole = 2.191 x[1] = 0.336 y[1] (analytic) = 0.32414863133447176613473185397701 y[1] (numeric) = 0.32414863133447170745146863651181 absolute error = 5.868326321746520e-17 relative error = 1.8103813357432645065115063346725e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.059 Order of pole = 2.191 x[1] = 0.337 y[1] (analytic) = 0.32504691644577645236987028122436 y[1] (numeric) = 0.32504691644577638975026559985703 absolute error = 6.261960468136733e-17 relative error = 1.9264789639009968084331255347843e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.059 Order of pole = 2.191 x[1] = 0.338 y[1] (analytic) = 0.32594465802482651402740266937482 y[1] (numeric) = 0.3259446580248264474869881214156 absolute error = 6.654041454795922e-17 relative error = 2.0414635708768381656409740383949e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.06 Order of pole = 2.191 x[1] = 0.339 y[1] (analytic) = 0.32684185511905476309617995619504 y[1] (numeric) = 0.32684185511905469265056899152862 absolute error = 7.044561096466642e-17 relative error = 2.1553424037140543726710650290429e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.06 Order of pole = 2.191 x[1] = 0.34 y[1] (analytic) = 0.32773850678055544599683540615889 y[1] (numeric) = 0.32773850678055537166172214827501 absolute error = 7.433511325788388e-17 relative error = 2.2681226563241955719946453032882e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.06 Order of pole = 2.191 x[1] = 0.341 y[1] (analytic) = 0.32863461206608312498243964920775 y[1] (numeric) = 0.32863461206608304677359771745664 absolute error = 7.820884193175111e-17 relative error = 2.3798114702545260849655321611363e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.061 Order of pole = 2.191 x[1] = 0.342 y[1] (analytic) = 0.32953017003705147946354399331424 y[1] (numeric) = 0.32953017003705139739682532647402 absolute error = 8.206671866684022e-17 relative error = 2.4904159354396248607900637321780e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.061 Order of pole = 2.191 x[1] = 0.343 y[1] (analytic) = 0.33042517975953202758177366982368 y[1] (numeric) = 0.33042517975953194167310735106661 absolute error = 8.590866631875707e-17 relative error = 2.5999430909374816516117580661993e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.061 Order of pole = 2.19 x[1] = 0.344 y[1] (analytic) = 0.33131964030425276835774855899215 y[1] (numeric) = 0.33131964030425267862313964233557 absolute error = 8.973460891665658e-17 relative error = 2.7083999256504311812029493396456e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.062 Order of pole = 2.19 x[1] = 0.345 y[1] (analytic) = 0.33221355074659674474070065410268 y[1] (numeric) = 0.33221355074659665119622899242983 absolute error = 9.354447166167285e-17 relative error = 2.8157933790312476097162583003060e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.062 Order of pole = 2.19 x[1] = 0.346 y[1] (analytic) = 0.3331069101666005278887250862171 y[1] (numeric) = 0.33310691016660043055054416095248 absolute error = 9.733818092526462e-17 relative error = 2.9221303417747105351272135712946e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.062 Order of pole = 2.19 x[1] = 0.347 y[1] (analytic) = 0.33399971764895262301014497996033 y[1] (numeric) = 0.33399971764895252189448073248316 absolute error = 1.0111566424747717e-16 relative error = 3.0274176564949636495361679060559e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.062 Order of pole = 2.19 x[1] = 0.348 y[1] (analytic) = 0.33489197228299179709798977742652 y[1] (numeric) = 0.33489197228299169222113944230554 absolute error = 1.0487685033512098e-16 relative error = 3.1316621183889565116640406592169e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.063 Order of pole = 2.19 x[1] = 0.349 y[1] (analytic) = 0.33578367316270532889108198776164 y[1] (numeric) = 0.33578367316270522026941292789339 absolute error = 1.0862166905986825e-16 relative error = 3.2348704758862764459094843672326e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.063 Order of pole = 2.19 x[1] = 0.35 y[1] (analytic) = 0.33667481938672718139669863134177 y[1] (numeric) = 0.33667481938672706904664717507398 absolute error = 1.1235005145626779e-16 relative error = 3.3370494312856530540154333507363e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.063 Order of pole = 2.19 x[1] = 0.351 y[1] (analytic) = 0.33756541005833609731122098855611 y[1] (numeric) = 0.33756541005833598124929126887704 absolute error = 1.1606192971967907e-16 relative error = 3.4382056413784196702160909728357e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=347.1MB, alloc=4.5MB, time=49.02 Complex estimate of poles used Radius of convergence = 1.064 Order of pole = 2.19 x[1] = 0.352 y[1] (analytic) = 0.33845544428545361767660967452334 y[1] (numeric) = 0.33845544428545349791937247039698 absolute error = 1.1975723720412636e-16 relative error = 3.5383457180592137681480350632470e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.064 Order of pole = 2.19 x[1] = 0.353 y[1] (analytic) = 0.33934492118064202411194158478934 y[1] (numeric) = 0.33934492118064190067603316471594 absolute error = 1.2343590842007340e-16 relative error = 3.6374762289241775077224874061705e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.064 Order of pole = 2.19 x[1] = 0.354 y[1] (analytic) = 0.34023383986110220496062093699477 y[1] (numeric) = 0.34023383986110207786274190487508 absolute error = 1.2709787903211969e-16 relative error = 3.7356036978569327988458724875907e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.065 Order of pole = 2.189 x[1] = 0.355 y[1] (analytic) = 0.34112219944867144569522851511548 y[1] (numeric) = 0.34112219944867131495214265849661 absolute error = 1.3074308585661887e-16 relative error = 3.8327346056025809200947327798120e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.065 Order of pole = 2.189 x[1] = 0.356 y[1] (analytic) = 0.34200999906982114392330135324171 y[1] (numeric) = 0.34200999906982100955183449402149 absolute error = 1.3437146685922022e-16 relative error = 3.9288753903299874747669385032405e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.065 Order of pole = 2.189 x[1] = 0.357 y[1] (analytic) = 0.34289723785565444933863952364844 y[1] (numeric) = 0.34289723785565431135567837131463 absolute error = 1.3798296115233381e-16 relative error = 4.0240324481825930590088302557660e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.066 Order of pole = 2.189 x[1] = 0.358 y[1] (analytic) = 0.34378391494190382896401746938312 y[1] (numeric) = 0.34378391494190368738650847686284 absolute error = 1.4157750899252028e-16 relative error = 4.1182121338179977282786746235396e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.066 Order of pole = 2.189 x[1] = 0.359 y[1] (analytic) = 0.34467002946892855803243449659233 y[1] (numeric) = 0.34467002946892841287738271878646 absolute error = 1.4515505177780587e-16 relative error = 4.2114207609365513916098719280290e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.066 Order of pole = 2.189 x[1] = 0.36 y[1] (analytic) = 0.34555558058171213685527266971645 y[1] (numeric) = 0.3455555805817119881397406247929 absolute error = 1.4871553204492355e-16 relative error = 4.3036646027991837596640416621519e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.067 Order of pole = 2.188 x[1] = 0.361 y[1] (analytic) = 0.34644056742985963402694048843014 y[1] (numeric) = 0.34644056742985948176804702194906 absolute error = 1.5225889346648108e-16 relative error = 4.3949498927347017289182526911514e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.067 Order of pole = 2.188 x[1] = 0.362 y[1] (analytic) = 0.34732498916759495631676742525021 y[1] (numeric) = 0.34732498916759480053168657719358 absolute error = 1.5578508084805663e-16 relative error = 4.4852828246367713004855320272792e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.067 Order of pole = 2.188 x[1] = 0.363 y[1] (analytic) = 0.34820884495375804560007772503169 y[1] (numeric) = 0.34820884495375788630603759980876 absolute error = 1.5929404012522293e-16 relative error = 4.5746695534508061128814374964516e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.068 Order of pole = 2.188 x[1] = 0.364 y[1] (analytic) = 0.34909213395180200318151187157945 y[1] (numeric) = 0.34909213395180184039579351107884 absolute error = 1.6278571836050061e-16 relative error = 4.6631161956509709255214153913027e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.068 Order of pole = 2.188 x[1] = 0.365 y[1] (analytic) = 0.34997485532979014186478087324435 y[1] (numeric) = 0.34997485532978997560471713300283 absolute error = 1.6626006374024152e-16 relative error = 4.7506288297075075416599376868466e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.068 Order of pole = 2.188 x[1] = 0.366 y[1] (analytic) = 0.35085700826039296612413207103548 y[1] (numeric) = 0.35085700826039279640710649959245 absolute error = 1.6971702557144303e-16 relative error = 4.8372134965445921201581630577119e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.069 Order of pole = 2.187 x[1] = 0.367 y[1] (analytic) = 0.35173859192088508073387559329219 y[1] (numeric) = 0.3517385919208849075773213147985 absolute error = 1.7315655427849369e-16 relative error = 4.9228761999889106655639537450084e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.069 Order of pole = 2.187 x[1] = 0.368 y[1] (analytic) = 0.35261960549314202821336793557796 y[1] (numeric) = 0.35261960549314185163476653572642 absolute error = 1.7657860139985154e-16 relative error = 5.0076229072091612234979171172322e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.069 Order of pole = 2.187 x[1] = 0.369 y[1] (analytic) = 0.35350004816363705544587349984586 y[1] (numeric) = 0.35350004816363687546275391519038 absolute error = 1.7998311958465548e-16 relative error = 5.0914595491466619304557084250183e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.07 Order of pole = 2.187 x[1] = 0.37 y[1] (analytic) = 0.35437991912343780983072635114399 y[1] (numeric) = 0.35437991912343762646066376187331 absolute error = 1.8337006258927068e-16 relative error = 5.1743920209372562719331711241214e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.07 Order of pole = 2.187 x[1] = 0.371 y[1] (analytic) = 0.35525921756820296532919301261312 y[1] (numeric) = 0.35525921756820277858980773884429 absolute error = 1.8673938527376883e-16 relative error = 5.2564261823246977323859197302447e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.07 Order of pole = 2.186 x[1] = 0.372 y[1] (analytic) = 0.3561379426981787787653928910759 y[1] (numeric) = 0.35613794269817858867434929273191 absolute error = 1.9009104359834399e-16 relative error = 5.3375678580656909936270758933771e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.071 Order of pole = 2.186 x[1] = 0.373 y[1] (analytic) = 0.3570160937181955767445659782684 y[1] (numeric) = 0.35701609371819538331957135860359 absolute error = 1.9342499461966481e-16 relative error = 5.4178228383267633314446381868108e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.071 Order of pole = 2.186 x[1] = 0.374 y[1] (analytic) = 0.35789366983766417355188788019004 y[1] (numeric) = 0.35789366983766397681069139302598 absolute error = 1.9674119648716406e-16 relative error = 5.4971968790731409094559313956156e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.072 Order of pole = 2.186 x[1] = 0.375 y[1] (analytic) = 0.35877067027057222039592006392646 y[1] (numeric) = 0.35877067027057202035631162466037 absolute error = 2.0003960843926609e-16 relative error = 5.5756957024497920455319564688877e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.072 Order of pole = 2.186 x[1] = 0.376 y[1] (analytic) = 0.35964709423548048636164855370809 y[1] (numeric) = 0.35964709423548028304145775415487 absolute error = 2.0332019079955322e-16 relative error = 5.6533249971548066508484584161810e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.072 Order of pole = 2.185 x[1] = 0.377 y[1] (analytic) = 0.3605229409555190714389072332569 y[1] (numeric) = 0.36052294095551886485600226038522 absolute error = 2.0658290497287168e-16 relative error = 5.7300904188052669374165546137592e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=350.9MB, alloc=4.5MB, time=49.56 Complex estimate of poles used Radius of convergence = 1.073 Order of pole = 2.185 x[1] = 0.378 y[1] (analytic) = 0.36139820965838355199280249826068 y[1] (numeric) = 0.36139820965838334216508905688257 absolute error = 2.0982771344137811e-16 relative error = 5.8059975902957720071031607495761e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.073 Order of pole = 2.185 x[1] = 0.379 y[1] (analytic) = 0.36227289957633105904355433095675 y[1] (numeric) = 0.36227289957633084598897457042955 absolute error = 2.1305457976052720e-16 relative error = 5.8810521021497636611169891650046e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.073 Order of pole = 2.185 x[1] = 0.38 y[1] (analytic) = 0.36314700994617628972394501939422 y[1] (numeric) = 0.36314700994617607346047646439273 absolute error = 2.1626346855500149e-16 relative error = 5.9552595128638097905283648541855e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.074 Order of pole = 2.185 x[1] = 0.381 y[1] (analytic) = 0.36402054000928745228332079927382 y[1] (numeric) = 0.36402054000928723282897528468978 absolute error = 2.1945434551458404e-16 relative error = 6.0286253492449899385756335816503e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.074 Order of pole = 2.184 x[1] = 0.382 y[1] (analytic) = 0.364893489011582145007823739832 y[1] (numeric) = 0.36489348901158192238064634985724 absolute error = 2.2262717738997476e-16 relative error = 6.1011551067415268043834438185890e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.074 Order of pole = 2.184 x[1] = 0.383 y[1] (analytic) = 0.36576585620352316942724131171394 y[1] (numeric) = 0.36576585620352294364530932316271 absolute error = 2.2578193198855123e-16 relative error = 6.1728542497668055672070273100227e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.075 Order of pole = 2.184 x[1] = 0.384 y[1] (analytic) = 0.36663764084011427817954935000224 y[1] (numeric) = 0.36663764084011404926097117992733 absolute error = 2.2891857817007491e-16 relative error = 6.2437282120169218850855449666070e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.075 Order of pole = 2.184 x[1] = 0.385 y[1] (analytic) = 0.36750884218089585790489064651353 y[1] (numeric) = 0.36750884218089562586780480417014 absolute error = 2.3203708584234339e-16 relative error = 6.3137823967818897176611151643380e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.075 Order of pole = 2.184 x[1] = 0.386 y[1] (analytic) = 0.36837945948994054754137626025184 y[1] (numeric) = 0.36837945948994031240395030346228 absolute error = 2.3513742595678956e-16 relative error = 6.3830221772506436617278164058721e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.076 Order of pole = 2.183 x[1] = 0.387 y[1] (analytic) = 0.36924949203584879239571991273415 y[1] (numeric) = 0.36924949203584855417614940870551 absolute error = 2.3821957050402864e-16 relative error = 6.4514528968099693538684504615992e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.076 Order of pole = 2.183 x[1] = 0.388 y[1] (analytic) = 0.37011893909174433436231762609371 y[1] (numeric) = 0.37011893909174409307882511674012 absolute error = 2.4128349250935359e-16 relative error = 6.5190798693374814217027899865315e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.076 Order of pole = 2.183 x[1] = 0.389 y[1] (analytic) = 0.37098779993526963866496515781415 y[1] (numeric) = 0.3709877999352693943357991296341 absolute error = 2.4432916602818005e-16 relative error = 6.5859083794887829980493770778632e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.077 Order of pole = 2.183 x[1] = 0.39 y[1] (analytic) = 0.37185607384858125749596487910426 y[1] (numeric) = 0.37185607384858101013939873766299 absolute error = 2.4735656614144127e-16 relative error = 6.6519436829789195474707454928897e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.077 Order of pole = 2.183 x[1] = 0.391 y[1] (analytic) = 0.37272376011834513092791162779101 y[1] (numeric) = 0.37272376011834488056224267685686 absolute error = 2.5036566895093415e-16 relative error = 6.7171910068582551614782198483529e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.077 Order of pole = 2.183 x[1] = 0.392 y[1] (analytic) = 0.37359085803573182547396383571233 y[1] (numeric) = 0.37359085803573157211751226109533 absolute error = 2.5335645157461700e-16 relative error = 6.7816555497828832510420256344266e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.078 Order of pole = 2.182 x[1] = 0.393 y[1] (analytic) = 0.37445736689641171067290198047233 y[1] (numeric) = 0.37445736689641145434400983861247 absolute error = 2.5632889214185986e-16 relative error = 6.8453424822796874432903428780653e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.078 Order of pole = 2.182 x[1] = 0.394 y[1] (analytic) = 0.3753232860005500740757512386144 y[1] (numeric) = 0.37532328600054981479278144996614 absolute error = 2.5928296978864826e-16 relative error = 6.9082569470061672297754088968650e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.079 Order of pole = 2.182 x[1] = 0.395 y[1] (analytic) = 0.3761886146528021750111992192848 y[1] (numeric) = 0.37618861465280191279253456654369 absolute error = 2.6221866465274111e-16 relative error = 6.9704040590051355716325749271825e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.079 Order of pole = 2.182 x[1] = 0.396 y[1] (analytic) = 0.37705335216230823750747293277759 y[1] (numeric) = 0.37705335216230797237151506399396 absolute error = 2.6513595786878363e-16 relative error = 7.0317889059543993555318932675397e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.079 Order of pole = 2.182 x[1] = 0.397 y[1] (analytic) = 0.37791749784268838274875179639149 y[1] (numeric) = 0.37791749784268811471392023301543 absolute error = 2.6803483156337606e-16 relative error = 7.0924165484115268921740506280515e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.08 Order of pole = 2.182 x[1] = 0.398 y[1] (analytic) = 0.37878105101203750144458560114141 y[1] (numeric) = 0.37878105101203723052931675104254 absolute error = 2.7091526885009887e-16 relative error = 7.1522920200538040496553357586622e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.08 Order of pole = 2.182 x[1] = 0.399 y[1] (analytic) = 0.37964401099292006649115805831544 y[1] (numeric) = 0.37964401099291979271390423381995 absolute error = 2.7377725382449549e-16 relative error = 7.2114203279134865015055871280057e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.08 Order of pole = 2.182 x[1] = 0.4 y[1] (analytic) = 0.38050637711236488630358791681043 y[1] (numeric) = 0.38050637711236460968281635779728 absolute error = 2.7662077155901315e-16 relative error = 7.2698064526084421562889144375853e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.081 Order of pole = 2.181 x[1] = 0.401 y[1] (analytic) = 0.38136814870185979919879079365685 y[1] (numeric) = 0.38136814870185951975298269575418 absolute error = 2.7944580809790267e-16 relative error = 7.3274553485682825310722059062453e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.081 Order of pole = 2.181 x[1] = 0.402 y[1] (analytic) = 0.38222932509734630920873589505817 y[1] (numeric) = 0.38222932509734602695638544298011 absolute error = 2.8225235045207806e-16 relative error = 7.3843719442560804182204840857052e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.082 Order of pole = 2.181 x[1] = 0.403 y[1] (analytic) = 0.38308990563921416370422282837193 y[1] (numeric) = 0.38308990563921387866383623443532 absolute error = 2.8504038659393661e-16 relative error = 7.4405611423857645945531941104333e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=354.7MB, alloc=4.5MB, time=50.10 Complex estimate of poles used Radius of convergence = 1.082 Order of pole = 2.181 x[1] = 0.404 y[1] (analytic) = 0.38394988967229587320957482233077 y[1] (numeric) = 0.38394988967229558539966937019032 absolute error = 2.8780990545214045e-16 relative error = 7.4960278201352883606612545078015e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.082 Order of pole = 2.181 x[1] = 0.405 y[1] (analytic) = 0.38480927654586117378889598983605 y[1] (numeric) = 0.38480927654586088322799908347601 absolute error = 2.9056089690636004e-16 relative error = 7.5507768293556533104724967413169e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.083 Order of pole = 2.181 x[1] = 0.406 y[1] (analytic) = 0.38566806561361143238477189205102 y[1] (numeric) = 0.38566806561361113909142011007024 absolute error = 2.9329335178198078e-16 relative error = 7.6048129967758870676264529911228e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.083 Order of pole = 2.181 x[1] = 0.407 y[1] (analytic) = 0.38652625623367399549050470224825 y[1] (numeric) = 0.38652625623367369948324285747513 absolute error = 2.9600726184477312e-16 relative error = 7.6581411242040508768881511751986e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.083 Order of pole = 2.181 x[1] = 0.408 y[1] (analytic) = 0.38738384776859648153716683167276 y[1] (numeric) = 0.38738384776859618283454703614548 absolute error = 2.9870261979552728e-16 relative error = 7.7107659887243703042424367510740e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.084 Order of pole = 2.181 x[1] = 0.409 y[1] (analytic) = 0.38824083958534101737693007705868 y[1] (numeric) = 0.38824083958534071599751081240555 absolute error = 3.0137941926465313e-16 relative error = 7.7626923428905660963408620144507e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.084 Order of pole = 2.181 x[1] = 0.41 y[1] (analytic) = 0.38909723105527841924428129061132 y[1] (numeric) = 0.38909723105527811520662648386516 absolute error = 3.0403765480674616e-16 relative error = 7.8139249149154705308349203016016e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.085 Order of pole = 2.181 x[1] = 0.411 y[1] (analytic) = 0.3899530215541823185768703691828 y[1] (numeric) = 0.38995302155418201189954847406266 absolute error = 3.0667732189512014e-16 relative error = 7.8644684088570045026143667694805e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.085 Order of pole = 2.181 x[1] = 0.412 y[1] (analytic) = 0.39080821046222323307785212167521 y[1] (numeric) = 0.39080821046222292377943520536778 absolute error = 3.0929841691630743e-16 relative error = 7.9143275048005983627982053307726e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.085 Order of pole = 2.181 x[1] = 0.413 y[1] (analytic) = 0.39166279716396258340168041473383 y[1] (numeric) = 0.39166279716396227150074325020627 absolute error = 3.1190093716452756e-16 relative error = 7.9635068590381292774537038561429e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.086 Order of pole = 2.181 x[1] = 0.414 y[1] (analytic) = 0.39251678104834665584539102954872 y[1] (numeric) = 0.39251678104834634136051019342378 absolute error = 3.1448488083612494e-16 relative error = 8.0120111042434526041669806844904e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.086 Order of pole = 2.181 x[1] = 0.415 y[1] (analytic) = 0.39337016150870051142746900072409 y[1] (numeric) = 0.39337016150870019437722197674776 absolute error = 3.1705024702397633e-16 relative error = 8.0598448496445974786576180351127e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.086 Order of pole = 2.181 x[1] = 0.416 y[1] (analytic) = 0.39422293794272184173643696599993 y[1] (numeric) = 0.39422293794272152213940125413092 absolute error = 3.1959703571186901e-16 relative error = 8.1070126811927033413719527131281e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.087 Order of pole = 2.181 x[1] = 0.417 y[1] (analytic) = 0.3950751097524747719313233480394 y[1] (numeric) = 0.39507510975247444980607557918915 absolute error = 3.2212524776885025e-16 relative error = 8.1535191617277640954627338568195e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.087 Order of pole = 2.181 x[1] = 0.418 y[1] (analytic) = 0.39592667634438361127617313205893 y[1] (numeric) = 0.39592667634438328664128818851004 absolute error = 3.2463488494354889e-16 relative error = 8.1993688311412506384042723180583e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.088 Order of pole = 2.181 x[1] = 0.419 y[1] (analytic) = 0.396777637129226551590749711896 y[1] (numeric) = 0.39677763712922622446479985342621 absolute error = 3.2712594985846979e-16 relative error = 8.2445662065356799324044699441491e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.088 Order of pole = 2.181 x[1] = 0.42 y[1] (analytic) = 0.39762799152212931399954386888093 y[1] (numeric) = 0.39762799152212898440109786461908 absolute error = 3.2959844600426185e-16 relative error = 8.2891157823811960030814675923292e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.088 Order of pole = 2.181 x[1] = 0.421 y[1] (analytic) = 0.39847773894255874436115553986372 y[1] (numeric) = 0.39847773894255841230877780590334 absolute error = 3.3205237773396038e-16 relative error = 8.3330220306692290499766009940137e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.089 Order of pole = 2.181 x[1] = 0.422 y[1] (analytic) = 0.39932687881431635776004574075014 y[1] (numeric) = 0.39932687881431602327229548354556 absolute error = 3.3448775025720458e-16 relative error = 8.3762894010632971301823086197886e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.089 Order of pole = 2.181 x[1] = 0.423 y[1] (analytic) = 0.40017541056553183244256995826032 y[1] (numeric) = 0.40017541056553149553800032382958 absolute error = 3.3690456963443074e-16 relative error = 8.4189223210470099414320090519232e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.09 Order of pole = 2.181 x[1] = 0.424 y[1] (analytic) = 0.40102333362865645357910062419067 y[1] (numeric) = 0.40102333362865611427625785314863 absolute error = 3.3930284277104204e-16 relative error = 8.4609251960693398661693138823126e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.09 Order of pole = 2.181 x[1] = 0.425 y[1] (analytic) = 0.40187064744045650723392506258874 y[1] (numeric) = 0.40187064744045616555134765103307 absolute error = 3.4168257741155567e-16 relative error = 8.5023024096872202691195368005803e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.09 Order of pole = 2.182 x[1] = 0.426 y[1] (analytic) = 0.40271735144200662492446667077956 y[1] (numeric) = 0.40271735144200628088068453705179 absolute error = 3.4404378213372777e-16 relative error = 8.5430583237055244828675118753121e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.091 Order of pole = 2.182 x[1] = 0.427 y[1] (analytic) = 0.4035634450786830791512211804215 y[1] (numeric) = 0.40356344507868273276475483776425 absolute error = 3.4638646634265725e-16 relative error = 8.5831972783144918122597417852695e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.091 Order of pole = 2.182 x[1] = 0.428 y[1] (analytic) = 0.40440892780015703027962676548326 y[1] (numeric) = 0.40440892780015668156898650061432 absolute error = 3.4871064026486894e-16 relative error = 8.6227235922246506134209252127302e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.092 Order of pole = 2.182 x[1] = 0.429 y[1] (analytic) = 0.40525379906038772515489664142896 y[1] (numeric) = 0.4052537990603873741385816990521 absolute error = 3.5101631494237686e-16 relative error = 8.6616415627992959787539134134121e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=358.6MB, alloc=4.5MB, time=50.64 Complex estimate of poles used Radius of convergence = 1.092 Order of pole = 2.182 x[1] = 0.43 y[1] (analytic) = 0.40609805831761564783063575560739 y[1] (numeric) = 0.40609805831761529452713352887896 absolute error = 3.5330350222672843e-16 relative error = 8.6999554661845792636371192726862e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.092 Order of pole = 2.182 x[1] = 0.431 y[1] (analytic) = 0.40694170503435562279183932490758 y[1] (numeric) = 0.40694170503435526721962455187752 absolute error = 3.5557221477303006e-16 relative error = 8.7376695574372563279178966659471e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.093 Order of pole = 2.182 x[1] = 0.432 y[1] (analytic) = 0.40778473867738987105263045560879 y[1] (numeric) = 0.40778473867738951323016442165361 absolute error = 3.5782246603395518e-16 relative error = 8.7747880706501557209042262784682e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.093 Order of pole = 2.182 x[1] = 0.433 y[1] (analytic) = 0.40862715871776101950883700483963 y[1] (numeric) = 0.40862715871776065945456675110464 absolute error = 3.6005427025373499e-16 relative error = 8.8113152190754078688590339985061e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.094 Order of pole = 2.183 x[1] = 0.434 y[1] (analytic) = 0.40946896463076506392523433636331 y[1] (numeric) = 0.40946896463076470165759187423024 absolute error = 3.6226764246213307e-16 relative error = 8.8472551952454965822711602596763e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.094 Order of pole = 2.183 x[1] = 0.435 y[1] (analytic) = 0.41031015589594428593699080906606 y[1] (numeric) = 0.41031015589594392147439234066193 absolute error = 3.6446259846840413e-16 relative error = 8.8826121710921721669686683088715e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.094 Order of pole = 2.183 x[1] = 0.436 y[1] (analytic) = 0.41115073199708012444454683843121 y[1] (numeric) = 0.4111507319970797578053919831934 absolute error = 3.6663915485523781e-16 relative error = 8.9173902980632800380123126080269e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.095 Order of pole = 2.183 x[1] = 0.437 y[1] (analytic) = 0.41199069242218600178083631364152 y[1] (numeric) = 0.41199069242218563298350734095332 absolute error = 3.6879732897268820e-16 relative error = 8.9515937072375519667684233665754e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.095 Order of pole = 2.183 x[1] = 0.438 y[1] (analytic) = 0.41283003666350010502942116028857 y[1] (numeric) = 0.41283003666349973409228222819886 absolute error = 3.7093713893208971e-16 relative error = 8.9852265094374052940158218214764e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.096 Order of pole = 2.183 x[1] = 0.439 y[1] (analytic) = 0.41366876421747812287175603580052 y[1] (numeric) = 0.41366876421747774981315243584068 absolute error = 3.7305860359995984e-16 relative error = 9.0182927953397927124166918053318e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.096 Order of pole = 2.184 x[1] = 0.44 y[1] (analytic) = 0.41450687458478593834143065673049 y[1] (numeric) = 0.41450687458478556317968806484064 absolute error = 3.7516174259188985e-16 relative error = 9.0507966355851553301909085400033e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.096 Order of pole = 2.184 x[1] = 0.441 y[1] (analytic) = 0.41534436727029227786285220934857 y[1] (numeric) = 0.41534436727029190061627594292503 absolute error = 3.7724657626642354e-16 relative error = 9.0827420808845118001009101444800e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.097 Order of pole = 2.184 x[1] = 0.442 y[1] (analytic) = 0.41618124178306131695142981318172 y[1] (numeric) = 0.41618124178306093763830409425646 absolute error = 3.7931312571892526e-16 relative error = 9.1141331621247375808461862461366e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.097 Order of pole = 2.184 x[1] = 0.443 y[1] (analytic) = 0.41701749763634524295190721711507 y[1] (numeric) = 0.41701749763634486159049444167766 absolute error = 3.8136141277543741e-16 relative error = 9.1449738904720668540166900403973e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.098 Order of pole = 2.184 x[1] = 0.444 y[1] (analytic) = 0.417853134347576775191058935508 y[1] (numeric) = 0.41785313434757639179959894897965 absolute error = 3.8339145998652835e-16 relative error = 9.1752682574738648425557756495498e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.098 Order of pole = 2.184 x[1] = 0.445 y[1] (analytic) = 0.41868815143836164292051900380119 y[1] (numeric) = 0.41868815143836125751722838267006 absolute error = 3.8540329062113113e-16 relative error = 9.2050202351587052832531861275457e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.098 Order of pole = 2.185 x[1] = 0.446 y[1] (analytic) = 0.41952254843447102142505057581581 y[1] (numeric) = 0.41952254843447063402812191544179 absolute error = 3.8739692866037402e-16 relative error = 9.2342337761348007907432219425076e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.099 Order of pole = 2.185 x[1] = 0.447 y[1] (analytic) = 0.42035632486583392667108882507671 y[1] (numeric) = 0.42035632486583353729869003367371 absolute error = 3.8937239879140300e-16 relative error = 9.2629128136868135380154347886653e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.099 Order of pole = 2.185 x[1] = 0.448 y[1] (analytic) = 0.42118948026652956886989917691197 y[1] (numeric) = 0.42118948026652917754017277571468 absolute error = 3.9132972640119729e-16 relative error = 9.2910612618710950414280898530060e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.1 Order of pole = 2.185 x[1] = 0.449 y[1] (analytic) = 0.42202201417477966532918791383329 y[1] (numeric) = 0.42202201417477927206025034345503 absolute error = 3.9326893757037826e-16 relative error = 9.3186830156093854886513195301122e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.1 Order of pole = 2.185 x[1] = 0.45 y[1] (analytic) = 0.42285392613294071296648279098114 y[1] (numeric) = 0.42285392613294031777642372396866 absolute error = 3.9519005906701248e-16 relative error = 9.3457819507810124582688297519198e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.101 Order of pole = 2.186 x[1] = 0.451 y[1] (analytic) = 0.42368521568749622085706759855491 y[1] (numeric) = 0.42368521568749582376394925814552 absolute error = 3.9709311834040939e-16 relative error = 9.3723619243136216035523243967541e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.101 Order of pole = 2.186 x[1] = 0.452 y[1] (analytic) = 0.42451588238904890318870674159748 y[1] (numeric) = 0.4245158823890485042105632266831 absolute error = 3.9897814351491438e-16 relative error = 9.3984267742724786248866822730119e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.101 Order of pole = 2.186 x[1] = 0.453 y[1] (analytic) = 0.42534592579231283299483400183079 y[1] (numeric) = 0.42534592579231243214967061813305 absolute error = 4.0084516338369774e-16 relative error = 9.4239803199483734436015628649495e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.102 Order of pole = 2.186 x[1] = 0.454 y[1] (analytic) = 0.42617534545610555703730382911058 y[1] (numeric) = 0.42617534545610515434309642657049 absolute error = 4.0269420740254009e-16 relative error = 9.4490263619441604903852197549535e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.102 Order of pole = 2.186 x[1] = 0.455 y[1] (analytic) = 0.42700414094334017220921390923532 y[1] (numeric) = 0.42700414094333976768390822562031 absolute error = 4.0452530568361501e-16 relative error = 9.4735686822599710341006605639738e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.103 memory used=362.4MB, alloc=4.5MB, time=51.18 Order of pole = 2.187 x[1] = 0.456 y[1] (analytic) = 0.42783231182101736382770449813268 y[1] (numeric) = 0.4278323118210169574892155088634 absolute error = 4.0633848898926928e-16 relative error = 9.4976110443771256390324407905141e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.103 Order of pole = 2.187 x[1] = 0.457 y[1] (analytic) = 0.42865985766021740618602322774456 y[1] (numeric) = 0.42865985766021699805223450194313 absolute error = 4.0813378872580143e-16 relative error = 9.5211571933407811357599380050329e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.104 Order of pole = 2.187 x[1] = 0.458 y[1] (analytic) = 0.42948677803609212573351390417567 y[1] (numeric) = 0.42948677803609171582227696693645 absolute error = 4.0991123693723922e-16 relative error = 9.5442108558413440652270926549590e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.104 Order of pole = 2.187 x[1] = 0.459 y[1] (analytic) = 0.43031307252785682725154436183623 y[1] (numeric) = 0.4303130725278564155806780627198 absolute error = 4.1167086629911643e-16 relative error = 9.5667757402946764552414237207321e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.104 Order of pole = 2.187 x[1] = 0.46 y[1] (analytic) = 0.43113874071878218339273183639798 y[1] (numeric) = 0.43113874071878176998002172414821 absolute error = 4.1341271011224977e-16 relative error = 9.5888555369211293351517071133166e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.105 Order of pole = 2.187 x[1] = 0.461 y[1] (analytic) = 0.4319637821961860879501547024079 y[1] (numeric) = 0.43196378219618567281335240589164 absolute error = 4.1513680229651626e-16 relative error = 9.6104539178234281744412175908685e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.105 Order of pole = 2.188 x[1] = 0.462 y[1] (analytic) = 0.43278819655142547322255691638437 y[1] (numeric) = 0.43278819655142505637937953175251 absolute error = 4.1684317738463186e-16 relative error = 9.6315745370634439693023902373792e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.106 Order of pole = 2.188 x[1] = 0.463 y[1] (analytic) = 0.43361198337988809184085624116206 y[1] (numeric) = 0.43361198337988767330898572523041 absolute error = 4.1853187051593165e-16 relative error = 9.6522210307378720910644371079379e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.106 Order of pole = 2.188 x[1] = 0.464 y[1] (analytic) = 0.43443514228098426342055943014255 y[1] (numeric) = 0.43443514228098384321764199999021 absolute error = 4.2020291743015234e-16 relative error = 9.6723970170528516973707165157503e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.106 Order of pole = 2.188 x[1] = 0.465 y[1] (analytic) = 0.43525767285813858640396714890097 y[1] (numeric) = 0.43525767285813816454761268768347 absolute error = 4.2185635446121750e-16 relative error = 9.6921060963975490250752779818865e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.107 Order of pole = 2.188 x[1] = 0.466 y[1] (analytic) = 0.43607957471878161545531863420582 y[1] (numeric) = 0.43607957471878119196310010317974 absolute error = 4.2349221853102608e-16 relative error = 9.7113518514167316352764601992002e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.107 Order of pole = 2.188 x[1] = 0.467 y[1] (analytic) = 0.43690084747434150477128106478589 y[1] (numeric) = 0.43690084747434107966073392154103 absolute error = 4.2511054714324486e-16 relative error = 9.7301378470823618521915096858306e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.108 Order of pole = 2.189 x[1] = 0.468 y[1] (analytic) = 0.43772149074023561766843147191357 y[1] (numeric) = 0.43772149074023519095705309480839 absolute error = 4.2671137837710518e-16 relative error = 9.7484676307642305659256735102684e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.108 Order of pole = 2.189 x[1] = 0.469 y[1] (analytic) = 0.43854150413586210280860987878256 y[1] (numeric) = 0.43854150413586167451385899757795 absolute error = 4.2829475088120461e-16 relative error = 9.7663447322996592995585160476501e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.109 Order of pole = 2.189 x[1] = 0.47 y[1] (analytic) = 0.43936088728459143742224135336384 y[1] (numeric) = 0.43936088728459100756153748604982 absolute error = 4.2986070386731402e-16 relative error = 9.7837726640622934515381207304265e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.109 Order of pole = 2.189 x[1] = 0.471 y[1] (analytic) = 0.44017963981375793788893191745446 y[1] (numeric) = 0.4401796398137575064796548132639 absolute error = 4.3140927710419056e-16 relative error = 9.8007549210300103992493322890064e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.11 Order of pole = 2.189 x[1] = 0.472 y[1] (analytic) = 0.44099776135465123803383890240663 y[1] (numeric) = 0.44099776135465080509332799100957 absolute error = 4.3294051091139706e-16 relative error = 9.8172949808519657787955471163092e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.11 Order of pole = 2.189 x[1] = 0.473 y[1] (analytic) = 0.44181525154250773549750050683741 y[1] (numeric) = 0.44181525154250730104305435370903 absolute error = 4.3445444615312838e-16 relative error = 9.8333963039148013451298670632534e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.11 Order of pole = 2.189 x[1] = 0.474 y[1] (analytic) = 0.44263211001650200653598212064039 y[1] (numeric) = 0.44263211001650157058485788859521 absolute error = 4.3595112423204518e-16 relative error = 9.8490623334080360979704009094226e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.111 Order of pole = 2.19 x[1] = 0.475 y[1] (analytic) = 0.44344833641973818960735855987661 y[1] (numeric) = 0.44344833641973775217677147676103 absolute error = 4.3743058708311558e-16 relative error = 9.8642964953886620227961600419295e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.111 Order of pole = 2.19 x[1] = 0.476 y[1] (analytic) = 0.44426393039924133809970183549022 y[1] (numeric) = 0.44426393039924089920682466802496 absolute error = 4.3889287716746526e-16 relative error = 9.8791021988449672673390986105962e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.112 Order of pole = 2.19 x[1] = 0.477 y[1] (analytic) = 0.44507889160594874255488358198993 y[1] (numeric) = 0.44507889160594830221684611575357 absolute error = 4.4033803746623636e-16 relative error = 9.8934828357596049554800017881498e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.112 Order of pole = 2.19 x[1] = 0.478 y[1] (analytic) = 0.44589321969470122274162992680622 y[1] (numeric) = 0.44589321969470078097551845235043 absolute error = 4.4176611147445579e-16 relative error = 9.9074417811719311667270443585001e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.113 Order of pole = 2.19 x[1] = 0.479 y[1] (analytic) = 0.44670691432423438993038451334011 y[1] (numeric) = 0.44670691432423394675324131842674 absolute error = 4.4317714319491337e-16 relative error = 9.9209823932396309993488530077925e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.113 Order of pole = 2.19 x[1] = 0.48 y[1] (analytic) = 0.44751997515716987972164272693692 y[1] (numeric) = 0.44751997515716943515046559488672 absolute error = 4.4457117713205020e-16 relative error = 9.9341080132996509002930800593990e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.113 Order of pole = 2.19 x[1] = 0.481 y[1] (analytic) = 0.44833240186000655577851703912131 y[1] (numeric) = 0.4483324018600061098302587532635 absolute error = 4.4594825828585781e-16 relative error = 9.9468219659284585147344026797238e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.114 Order of pole = 2.19 memory used=366.2MB, alloc=4.5MB, time=51.72 x[1] = 0.482 y[1] (analytic) = 0.44914419410311168481337990718263 y[1] (numeric) = 0.44914419410311123750494776139415 absolute error = 4.4730843214578848e-16 relative error = 9.9591275590016474266613285565525e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.114 Order of pole = 2.19 x[1] = 0.483 y[1] (analytic) = 0.4499553515607120831775069691474 y[1] (numeric) = 0.44995535156071163452576228447019 absolute error = 4.4865174468467721e-16 relative error = 9.9710280837529059005178553833602e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.115 Order of pole = 2.19 x[1] = 0.484 y[1] (analytic) = 0.4507658739108852354017094836356 y[1] (numeric) = 0.45076587391088478542346713095984 absolute error = 4.4997824235267576e-16 relative error = 9.9825268148323671174803912017154e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.115 Order of pole = 2.19 x[1] = 0.485 y[1] (analytic) = 0.45157576083555038503500120514868 y[1] (numeric) = 0.45157576083554993374702913394948 absolute error = 4.5128797207119920e-16 relative error = 9.9936270103643585820325524278263e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.116 Order of pole = 2.19 x[1] = 0.486 y[1] (analytic) = 0.45238501202045959812739128281232 y[1] (numeric) = 0.45238501202045914554641005592687 absolute error = 4.5258098122688545e-16 relative error = 1.0004331912004568996524028228012e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.116 Order of pole = 2.19 x[1] = 0.487 y[1] (analytic) = 0.45319362715518879970193144907309 y[1] (numeric) = 0.45319362715518834584461378350495 absolute error = 4.5385731766556814e-16 relative error = 1.0014644744996647321747785622113e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.116 Order of pole = 2.19 x[1] = 0.488 y[1] (analytic) = 0.45400160593312878356017284863738 y[1] (numeric) = 0.45400160593312832844314316237413 absolute error = 4.5511702968626325e-16 relative error = 1.0024568718228251387446770483031e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.117 Order of pole = 2.19 x[1] = 0.489 y[1] (analytic) = 0.45480894805147619576420547108282 y[1] (numeric) = 0.45480894805147573940403943591276 absolute error = 4.5636016603517006e-16 relative error = 1.0034107024286564701666413946954e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.117 Order of pole = 2.19 x[1] = 0.49 y[1] (analytic) = 0.4556156532112244921374614168227 y[1] (numeric) = 0.45561565321122403455068551713611 absolute error = 4.5758677589968659e-16 relative error = 1.0043262839513292154869767386806e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.118 Order of pole = 2.19 x[1] = 0.491 y[1] (analytic) = 0.45642172111715487012546226893092 y[1] (numeric) = 0.45642172111715441132855336649081 absolute error = 4.5879690890244011e-16 relative error = 1.0052039324059153921146996176982e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.118 Order of pole = 2.19 x[1] = 0.492 y[1] (analytic) = 0.45722715147782717535668078590424 y[1] (numeric) = 0.45722715147782671536606569057114 absolute error = 4.5999061509533310e-16 relative error = 1.0060439621937892206674715672200e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.119 Order of pole = 2.19 x[1] = 0.493 y[1] (analytic) = 0.45803194400557078324266809561153 y[1] (numeric) = 0.45803194400557032207472314200656 absolute error = 4.6116794495360497e-16 relative error = 1.0068466861079803756069331244474e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.119 Order of pole = 2.19 x[1] = 0.494 y[1] (analytic) = 0.45883609841647545595556968100047 y[1] (numeric) = 0.45883609841647499362662031109049 absolute error = 4.6232894936990998e-16 relative error = 1.0076124153384813674695078571979e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.12 Order of pole = 2.19 x[1] = 0.495 y[1] (analytic) = 0.45963961443038217512011682582162 y[1] (numeric) = 0.4596396144303817116464371774098 absolute error = 4.6347367964841182e-16 relative error = 1.0083414594775106338120713728942e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.12 Order of pole = 2.19 x[1] = 0.496 y[1] (analytic) = 0.46044249177087395055613495557731 y[1] (numeric) = 0.46044249177087348595394745668231 absolute error = 4.6460218749889500e-16 relative error = 1.0090341265247322203369817827819e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.12 Order of pole = 2.19 x[1] = 0.497 y[1] (analytic) = 0.46124473016526660540655658665868 y[1] (numeric) = 0.46124473016526613969203155576499 absolute error = 4.6571452503089369e-16 relative error = 1.0096907228924339834019897452193e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.121 Order of pole = 2.19 x[1] = 0.498 y[1] (analytic) = 0.46204632934459953798486450640014 y[1] (numeric) = 0.46204632934459907117411975856188 absolute error = 4.6681074474783826e-16 relative error = 1.0103115534106653739346427139778e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.121 Order of pole = 2.19 x[1] = 0.499 y[1] (analytic) = 0.46284728904362646067482046940466 y[1] (numeric) = 0.46284728904362599278392092818494 absolute error = 4.6789089954121972e-16 relative error = 1.0108969213323357398236759968725e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.122 Order of pole = 2.19 x[1] = 0.5 y[1] (analytic) = 0.46364760900080611621425623146121 y[1] (numeric) = 0.46364760900080564725921354668842 absolute error = 4.6895504268477279e-16 relative error = 1.0114471283382752138164991872043e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.122 Order of pole = 2.19 x[1] = 0.501 y[1] (analytic) = 0.46444728895829297169361727180093 y[1] (numeric) = 0.46444728895829250169038944312336 absolute error = 4.7000322782867757e-16 relative error = 1.0119624745422585889412546230570e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.123 Order of pole = 2.19 x[1] = 0.502 y[1] (analytic) = 0.4652463286619278905988551970611 y[1] (numeric) = 0.46524632866192741956334620328077 absolute error = 4.7103550899378033e-16 relative error = 1.0124432584959937600038734102758e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.123 Order of pole = 2.19 x[1] = 0.503 y[1] (analytic) = 0.46604472786122878322716269549778 y[1] (numeric) = 0.46604472786122831117522212966393 absolute error = 4.7205194056583385e-16 relative error = 1.0128897771940760948549771232346e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.124 Order of pole = 2.19 x[1] = 0.504 y[1] (analytic) = 0.4668424863093812358029351366709 y[1] (numeric) = 0.46684248630938076275035784691348 absolute error = 4.7305257728975742e-16 relative error = 1.0133023260789093949682168864393e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.124 Order of pole = 2.19 x[1] = 0.505 y[1] (analytic) = 0.46763960376322911862022560858391 y[1] (numeric) = 0.46763960376322864458275134466691 absolute error = 4.7403747426391700e-16 relative error = 1.0136811990455949298428796701434e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.124 Order of pole = 2.189 x[1] = 0.506 y[1] (analytic) = 0.46843607998326517353683546925015 y[1] (numeric) = 0.46843607998326469853014853482432 absolute error = 4.7500668693442583e-16 relative error = 1.0140266884467895612570543859229e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.125 Order of pole = 2.189 x[1] = 0.507 y[1] (analytic) = 0.46923191473362158114405048062601 y[1] (numeric) = 0.46923191473362110518377939116029 absolute error = 4.7596027108946572e-16 relative error = 1.0143390850975338317984433991184e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.125 Order of pole = 2.189 memory used=370.0MB, alloc=4.5MB, time=52.26 x[1] = 0.508 y[1] (analytic) = 0.47002710778206050793489340712344 y[1] (numeric) = 0.47002710778206003103661055349397 absolute error = 4.7689828285362947e-16 relative error = 1.0146186782800513484088755787632e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.126 Order of pole = 2.189 x[1] = 0.509 y[1] (analytic) = 0.47082165889996463379261771539125 y[1] (numeric) = 0.4708216588999641559718390331066 absolute error = 4.7782077868228465e-16 relative error = 1.0148657557485203065554701081052e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.126 Order of pole = 2.189 x[1] = 0.51 y[1] (analytic) = 0.47161556786232766012001382320594 y[1] (numeric) = 0.47161556786232718139219846724693 absolute error = 4.7872781535595901e-16 relative error = 1.0150806037338180742218920290098e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.127 Order of pole = 2.189 x[1] = 0.511 y[1] (analytic) = 0.47240883444774479892893932916842 y[1] (numeric) = 0.4724088344477443193094893544205 absolute error = 4.7961944997474792e-16 relative error = 1.0152635069482400179281373803513e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.127 Order of pole = 2.189 x[1] = 0.512 y[1] (analytic) = 0.4732014584384032432083179270488 y[1] (numeric) = 0.47320145843840276271257797430479 absolute error = 4.8049573995274401e-16 relative error = 1.0154147485901932512991126606222e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.128 Order of pole = 2.189 x[1] = 0.513 y[1] (analytic) = 0.47399343962007261888767838419311 y[1] (numeric) = 0.47399343962007213753093537170369 absolute error = 4.8135674301248942e-16 relative error = 1.0155346103488664841833398116157e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.128 Order of pole = 2.188 x[1] = 0.514 y[1] (analytic) = 0.47478477778209541871212515708092 y[1] (numeric) = 0.47478477778209493650960797763008 absolute error = 4.8220251717945084e-16 relative error = 1.0156233724088766504450478528043e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.129 Order of pole = 2.188 x[1] = 0.515 y[1] (analytic) = 0.47557547271737741834344604311808 y[1] (numeric) = 0.47557547271737693531032526660039 absolute error = 4.8303312077651769e-16 relative error = 1.0156813134548933412908398000482e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.129 Order of pole = 2.188 x[1] = 0.516 y[1] (analytic) = 0.47636552422237807500086983981014 y[1] (numeric) = 0.47636552422237759115225742128649 absolute error = 4.8384861241852365e-16 relative error = 1.0157087106762417637893583257336e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.129 Order of pole = 2.188 x[1] = 0.517 y[1] (analytic) = 0.47715493209710090895378841386356 y[1] (numeric) = 0.4771549320971004243047374070717 absolute error = 4.8464905100679186e-16 relative error = 1.0157058397714851655950562741843e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.13 Order of pole = 2.188 x[1] = 0.518 y[1] (analytic) = 0.47794369614508386817755298629518 y[1] (numeric) = 0.47794369614508338274305726259117 absolute error = 4.8543449572370401e-16 relative error = 1.0156729749529874455973945797897e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.13 Order of pole = 2.188 x[1] = 0.519 y[1] (analytic) = 0.47873181617338967648224392760468 y[1] (numeric) = 0.47873181617338919027723790031104 absolute error = 4.8620500602729364e-16 relative error = 1.0156103889514568700144654072796e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.131 Order of pole = 2.187 x[1] = 0.52 y[1] (analytic) = 0.47951929199259616542309704129544 y[1] (numeric) = 0.47951929199259567846245539543161 absolute error = 4.8696064164586383e-16 relative error = 1.0155183530204715098210741271630e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.131 Order of pole = 2.187 x[1] = 0.521 y[1] (analytic) = 0.48030612341678659030004730583775 y[1] (numeric) = 0.48030612341678610259858473320827 absolute error = 4.8770146257262948e-16 relative error = 1.0153971369409870494071044793842e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.132 Order of pole = 2.187 x[1] = 0.522 y[1] (analytic) = 0.48109231026353993055262345537446 y[1] (numeric) = 0.48109231026353944212509439498976 absolute error = 4.8842752906038470e-16 relative error = 1.0152470090258282734712066763880e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.132 Order of pole = 2.187 x[1] = 0.523 y[1] (analytic) = 0.48187785235392117485519371838436 y[1] (numeric) = 0.48187785235392068571629210218927 absolute error = 4.8913890161619509e-16 relative error = 1.0150682361241639869199605644376e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.133 Order of pole = 2.187 x[1] = 0.524 y[1] (analytic) = 0.48266274951247159121632461094724 y[1] (numeric) = 0.48266274951247110138068361483164 absolute error = 4.8983564099611560e-16 relative error = 1.0148610836259670116176237324706e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.133 Order of pole = 2.186 x[1] = 0.525 y[1] (analytic) = 0.48344700156719898238477100647878 y[1] (numeric) = 0.48344700156719849186696280654491 absolute error = 4.9051780819993387e-16 relative error = 1.0146258154664592488931498463612e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.134 Order of pole = 2.186 x[1] = 0.526 y[1] (analytic) = 0.48423060834956792686336688559064 y[1] (numeric) = 0.48423060834956743567790241965115 absolute error = 4.9118546446593949e-16 relative error = 1.0143626941305429125728594601915e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.134 Order of pole = 2.186 x[1] = 0.527 y[1] (analytic) = 0.48501356969449000583083231631739 y[1] (numeric) = 0.48501356969448951399216105059821 absolute error = 4.9183867126571918e-16 relative error = 1.0140719806572181163873477413207e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.134 Order of pole = 2.186 x[1] = 0.528 y[1] (analytic) = 0.48579588544031401627025343404732 y[1] (numeric) = 0.48579588544031352379276313506895 absolute error = 4.9247749029897837e-16 relative error = 1.0137539346439879858742188348661e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.135 Order of pole = 2.186 x[1] = 0.529 y[1] (analytic) = 0.4865775554288161706017285892706 y[1] (numeric) = 0.48657755542881567749974510088147 absolute error = 4.9310198348838913e-16 relative error = 1.0134088142512513611910025677880e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.135 Order of pole = 2.185 x[1] = 0.53 y[1] (analytic) = 0.48735857950519028311540551635107 y[1] (numeric) = 0.48735857950518978940319254188628 absolute error = 4.9371221297446479e-16 relative error = 1.0130368762066839572404435325819e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.136 Order of pole = 2.185 x[1] = 0.531 y[1] (analytic) = 0.48813895751803794349986145402698 y[1] (numeric) = 0.48813895751803744919162034356549 absolute error = 4.9430824111046149e-16 relative error = 1.0126383758096086321718233474632e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.136 Order of pole = 2.185 x[1] = 0.532 y[1] (analytic) = 0.48891868931935867775950072379414 y[1] (numeric) = 0.48891868931935818286937026648744 absolute error = 4.9489013045730670e-16 relative error = 1.0122135669353549985758411996557e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.137 Order of pole = 2.185 x[1] = 0.533 y[1] (analytic) = 0.48969777476454009681336245071409 y[1] (numeric) = 0.48969777476453960135541867215904 absolute error = 4.9545794377855505e-16 relative error = 1.0117627020396092219738944101419e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.137 Order of pole = 2.185 x[1] = 0.534 memory used=373.8MB, alloc=4.5MB, time=52.79 y[1] (analytic) = 0.49047621371234803306644499695386 y[1] (numeric) = 0.49047621371234753705470096158233 absolute error = 4.9601174403537153e-16 relative error = 1.0112860321627542702489679400605e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.138 Order of pole = 2.184 x[1] = 0.535 y[1] (analytic) = 0.49125400602491666524336337537996 y[1] (numeric) = 0.49125400602491616869176899383761 absolute error = 4.9655159438154235e-16 relative error = 1.0107838069342013431829562913619e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.138 Order of pole = 2.184 x[1] = 0.536 y[1] (analytic) = 0.49203115156773863177286152210769 y[1] (numeric) = 0.49203115156773813469530336359407 absolute error = 4.9707755815851362e-16 relative error = 1.0102562745767129385104088454796e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.139 Order of pole = 2.184 x[1] = 0.537 y[1] (analytic) = 0.49280765020965513301040293579342 y[1] (numeric) = 0.49280765020965463542070404533557 absolute error = 4.9758969889045785e-16 relative error = 1.0097036819107176811640706223956e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.139 Order of pole = 2.184 x[1] = 0.538 y[1] (analytic) = 0.49358350182284602258476093982638 y[1] (numeric) = 0.49358350182284552449668066045768 absolute error = 4.9808808027936870e-16 relative error = 1.0091262743586179126725571415362e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.14 Order of pole = 2.184 x[1] = 0.539 y[1] (analytic) = 0.49435870628281988815322379302575 y[1] (numeric) = 0.49435870628281938958045759284176 absolute error = 4.9857276620018399e-16 relative error = 1.0085242959490901762734801410790e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.14 Order of pole = 2.184 x[1] = 0.54 y[1] (analytic) = 0.49513326346840412184872016600183 y[1] (numeric) = 0.49513326346840362280489947006471 absolute error = 4.9904382069593712e-16 relative error = 1.0078979893213790150851342159201e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.14 Order of pole = 2.183 x[1] = 0.541 y[1] (analytic) = 0.49590717326173498070085721443614 y[1] (numeric) = 0.49590717326173448119954924149909 absolute error = 4.9950130797293705e-16 relative error = 1.0072475957295844961910489895063e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.141 Order of pole = 2.183 x[1] = 0.542 y[1] (analytic) = 0.49668043554824763731154671703126 y[1] (numeric) = 0.49668043554824713736625432105415 absolute error = 4.9994529239597711e-16 relative error = 1.0065733550469441106830717884648e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.141 Order of pole = 2.183 x[1] = 0.543 y[1] (analytic) = 0.49745305021666622106457460404516 y[1] (numeric) = 0.49745305021666572068873612047251 absolute error = 5.0037583848357265e-16 relative error = 1.0058755057701091697063124629318e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.142 Order of pole = 2.183 x[1] = 0.544 y[1] (analytic) = 0.49822501715899385014714578083503 y[1] (numeric) = 0.49822501715899334935413487760737 absolute error = 5.0079301090322766e-16 relative error = 1.0051542850234160566694817913346e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.142 Order of pole = 2.183 x[1] = 0.545 y[1] (analytic) = 0.49899633627050265466010954777656 y[1] (numeric) = 0.49899633627050215346323508104594 absolute error = 5.0119687446673062e-16 relative error = 1.0044099285631529526034358215943e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.143 Order of pole = 2.182 x[1] = 0.546 y[1] (analytic) = 0.49976700744972379109224123078388 y[1] (numeric) = 0.49976700744972328950474710530424 absolute error = 5.0158749412547964e-16 relative error = 1.0036426707818222446085896403449e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.143 Order of pole = 2.182 x[1] = 0.547 y[1] (analytic) = 0.50053703059843744843262296232195 y[1] (numeric) = 0.50053703059843694646768799648499 absolute error = 5.0196493496583696e-16 relative error = 1.0028527447123988454973239757152e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.144 Order of pole = 2.182 x[1] = 0.548 y[1] (analytic) = 0.5013064056216628461938309875637 y[1] (numeric) = 0.50130640562166234386456878305072 absolute error = 5.0232926220451298e-16 relative error = 1.0020403820325848501865232710691e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.144 Order of pole = 2.182 x[1] = 0.549 y[1] (analytic) = 0.50207513242764822461729850988092 y[1] (numeric) = 0.50207513242764772193675732590084 absolute error = 5.0268054118398008e-16 relative error = 1.0012058130690611292106320897287e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.145 Order of pole = 2.182 x[1] = 0.55 y[1] (analytic) = 0.50284321092786082733088202924528 y[1] (numeric) = 0.5028432109278603243120446613293 absolute error = 5.0301883736791598e-16 relative error = 1.0003492668017354389363247347815e-13 % Correct digits = 14 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.145 Order of pole = 2.182 x[1] = 0.551 y[1] (analytic) = 0.50361064103697687672731546082092 y[1] (numeric) = 0.50361064103697637338309912414373 absolute error = 5.0334421633667719e-16 relative error = 9.9947097086798822250795947215277e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.146 Order of pole = 2.181 x[1] = 0.552 y[1] (analytic) = 0.50437742267287154233089014290409 y[1] (numeric) = 0.50437742267287103867414636010178 absolute error = 5.0365674378280231e-16 relative error = 9.9857115156691569575855512535028e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.146 Order of pole = 2.181 x[1] = 0.553 y[1] (analytic) = 0.50514355575660890241835024665051 y[1] (numeric) = 0.50514355575660839846186474010503 absolute error = 5.0395648550654548e-16 relative error = 9.9765003386357088705378746366338e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.147 Order of pole = 2.181 x[1] = 0.554 y[1] (analytic) = 0.50590904021243189915864217734826 y[1] (numeric) = 0.50590904021243139491513476590828 absolute error = 5.0424350741143998e-16 relative error = 9.9670784139320269973142057842142e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.147 Order of pole = 2.181 x[1] = 0.555 y[1] (analytic) = 0.50667387596775228753480340034943 y[1] (numeric) = 0.50667387596775178301692790045731 absolute error = 5.0451787549989212e-16 relative error = 9.9574479646549334208250148793716e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.148 Order of pole = 2.181 x[1] = 0.556 y[1] (analytic) = 0.50743806295314057830992082555081 y[1] (numeric) = 0.50743806295314007353026495674536 absolute error = 5.0477965586880545e-16 relative error = 9.9476112006879424968599391650216e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.148 Order of pole = 2.181 x[1] = 0.557 y[1] (analytic) = 0.50820160110231597529773153327486 y[1] (numeric) = 0.50820160110231547026881682803935 absolute error = 5.0502891470523551e-16 relative error = 9.9375703187436099807720966266127e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.149 Order of pole = 2.181 x[1] = 0.558 y[1] (analytic) = 0.50896449035213630719707931168446 y[1] (numeric) = 0.50896449035213580193136102960944 absolute error = 5.0526571828207502e-16 relative error = 9.9273275024058706983011569356054e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.149 Order of pole = 2.181 x[1] = 0.559 y[1] (analytic) = 0.50972673064258795424807929098041 y[1] (numeric) = 0.50972673064258744875794633721074 absolute error = 5.0549013295376967e-16 relative error = 9.9168849221723685264605108957517e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.15 Order of pole = 2.18 x[1] = 0.56 y[1] (analytic) = 0.51048832191677576996647999146307 y[1] (numeric) = 0.51048832191677526426425483939835 absolute error = 5.0570222515206472e-16 relative error = 9.9062447354967833928928365837389e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=377.6MB, alloc=4.5MB, time=53.33 Complex estimate of poles used Radius of convergence = 1.15 Order of pole = 2.18 x[1] = 0.561 y[1] (analytic) = 0.51124926412091299821134743934316 y[1] (numeric) = 0.51124926412091249230928605756097 absolute error = 5.0590206138178219e-16 relative error = 9.8954090868311515432977401320088e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.151 Order of pole = 2.18 x[1] = 0.562 y[1] (analytic) = 0.51200955720431118583982973358653 y[1] (numeric) = 0.51200955720431067975012151695757 absolute error = 5.0608970821662896e-16 relative error = 9.8843801076681859258941313749526e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.151 Order of pole = 2.18 x[1] = 0.563 y[1] (analytic) = 0.51276920111937009120139265606366 y[1] (numeric) = 0.51276920111936958493616036102795 absolute error = 5.0626523229503571e-16 relative error = 9.8731599165835958628714165954749e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.152 Order of pole = 2.18 x[1] = 0.564 y[1] (analytic) = 0.5135281958215675887225476922058 y[1] (numeric) = 0.51352819582156708229384737617897 absolute error = 5.0642870031602683e-16 relative error = 9.8617506192784090913184347965539e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.152 Order of pole = 2.18 x[1] = 0.565 y[1] (analytic) = 0.51428654126944956983172325596836 y[1] (numeric) = 0.51428654126944906325154422084706 absolute error = 5.0658017903512130e-16 relative error = 9.8501543086212966999770196331325e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.152 Order of pole = 2.18 x[1] = 0.566 y[1] (analytic) = 0.51504423742461984047255807625541 y[1] (numeric) = 0.51504423742461933375282281599081 absolute error = 5.0671973526026460e-16 relative error = 9.8383730646909026549527950863471e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.153 Order of pole = 2.18 x[1] = 0.567 y[1] (analytic) = 0.51580128425173001545252268651617 y[1] (numeric) = 0.51580128425172950860508683872445 absolute error = 5.0684743584779172e-16 relative error = 9.8264089548181797894881011972793e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.153 Order of pole = 2.18 x[1] = 0.568 y[1] (analytic) = 0.51655768171846940987240084879645 y[1] (numeric) = 0.51655768171846890290905315037511 absolute error = 5.0696334769842134e-16 relative error = 9.8142640336287341189043997565152e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.154 Order of pole = 2.18 x[1] = 0.569 y[1] (analytic) = 0.51731342979555492788078762128681 y[1] (numeric) = 0.51731342979555442081324986800567 absolute error = 5.0706753775328114e-16 relative error = 9.8019403430851772016633443663560e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.154 Order of pole = 2.18 x[1] = 0.57 y[1] (analytic) = 0.51806852845672094899638472688591 y[1] (numeric) = 0.51806852845672044183631173692162 absolute error = 5.0716007298996429e-16 relative error = 9.7894399125294880159299055931036e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.155 Order of pole = 2.18 x[1] = 0.571 y[1] (analytic) = 0.51882297767870921223949698138323 y[1] (numeric) = 0.51882297767870870499847656276592 absolute error = 5.0724102041861731e-16 relative error = 9.7767647587253885102213115600413e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.155 Order of pole = 2.18 x[1] = 0.572 y[1] (analytic) = 0.51957677744125869831275587480688 y[1] (numeric) = 0.51957677744125819100230879674782 absolute error = 5.0731044707805906e-16 relative error = 9.7639168859007286703530006740028e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.156 Order of pole = 2.18 x[1] = 0.573 y[1] (analytic) = 0.52032992772709551006971804888762 y[1] (numeric) = 0.52032992772709500270129801695651 absolute error = 5.0736842003193111e-16 relative error = 9.7508982857898864180757820962702e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.156 Order of pole = 2.18 x[1] = 0.574 y[1] (analytic) = 0.52108242852192275150860745741986 y[1] (numeric) = 0.52108242852192224409360109254042 absolute error = 5.0741500636487944e-16 relative error = 9.7377109376761818458644804325068e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.157 Order of pole = 2.18 x[1] = 0.575 y[1] (analytic) = 0.52183427981441040552709051387444 y[1] (numeric) = 0.52183427981440989807681733510702 absolute error = 5.0745027317876742e-16 relative error = 9.7243568084343053058668339660747e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.157 Order of pole = 2.18 x[1] = 0.576 y[1] (analytic) = 0.52258548159618521067259360061084 y[1] (numeric) = 0.5225854815961847031983060116906 absolute error = 5.0747428758892024e-16 relative error = 9.7108378525727630941520757600664e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.158 Order of pole = 2.18 x[1] = 0.577 y[1] (analytic) = 0.52333603386182053712129201447699 y[1] (numeric) = 0.52333603386182002963417529407635 absolute error = 5.0748711672040064e-16 relative error = 9.6971560122763383215216903054826e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.158 Order of pole = 2.18 x[1] = 0.578 y[1] (analytic) = 0.52408593660882626211751883185905 y[1] (numeric) = 0.52408593660882575462869112754302 absolute error = 5.0748882770431603e-16 relative error = 9.6833132174485691768451172346917e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.159 Order of pole = 2.18 x[1] = 0.579 y[1] (analytic) = 0.52483518983763864510396136909014 y[1] (numeric) = 0.52483518983763813762447369493306 absolute error = 5.0747948767415708e-16 relative error = 9.6693113857542465807270894355027e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.159 Order of pole = 2.18 x[1] = 0.58 y[1] (analytic) = 0.52558379355161020277163196763958 y[1] (numeric) = 0.52558379355160969531246820547199 absolute error = 5.0745916376216759e-16 relative error = 9.6551524226619280749862091259133e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.16 Order of pole = 2.18 x[1] = 0.581 y[1] (analytic) = 0.52633174775699958425721882313211 y[1] (numeric) = 0.52633174775699907682929572738628 absolute error = 5.0742792309574583e-16 relative error = 9.6408382214864720566506806783023e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.16 Order of pole = 2.18 x[1] = 0.582 y[1] (analytic) = 0.52707905246296144671404157779054 y[1] (numeric) = 0.52707905246296093932820878391331 absolute error = 5.0738583279387723e-16 relative error = 9.6263706634315905445092563126960e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.161 Order of pole = 2.18 x[1] = 0.583 y[1] (analytic) = 0.52782570768153633148145548151349 y[1] (numeric) = 0.52782570768153582414849551791495 absolute error = 5.0733295996359854e-16 relative error = 9.6117516176324232411966491323251e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.161 Order of pole = 2.18 x[1] = 0.584 y[1] (analytic) = 0.52857171342764054107616717100159 y[1] (numeric) = 0.52857171342764003380679547450837 absolute error = 5.0726937169649322e-16 relative error = 9.5969829411981288191396007656086e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.162 Order of pole = 2.18 x[1] = 0.585 y[1] (analytic) = 0.52931706971905601722754459199737 y[1] (numeric) = 0.52931706971905551003240952677903 absolute error = 5.0719513506521834e-16 relative error = 9.5820664792544992359158159749033e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.163 Order of pole = 2.18 x[1] = 0.586 y[1] (analytic) = 0.53006177657642022017762336902401 y[1] (numeric) = 0.53006177657641971306730624896126 absolute error = 5.0711031712006275e-16 relative error = 9.5670040649865930163208189209112e-14 % Correct digits = 15 h = 0.001 memory used=381.4MB, alloc=4.5MB, time=53.89 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.163 Order of pole = 2.18 x[1] = 0.587 y[1] (analytic) = 0.53080583402321600946513208157198 y[1] (numeric) = 0.53080583402321550245014719603537 absolute error = 5.0701498488553661e-16 relative error = 9.5517975196813897082639293604994e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.164 Order of pole = 2.18 x[1] = 0.588 y[1] (analytic) = 0.53154924208576152641147950641846 y[1] (numeric) = 0.53154924208576101950227414942624 absolute error = 5.0690920535699222e-16 relative error = 9.5364486527704648800791773484046e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.164 Order of pole = 2.18 x[1] = 0.589 y[1] (analytic) = 0.53229200079320007852526800295814 y[1] (numeric) = 0.53229200079319957173222250568196 absolute error = 5.0679304549727618e-16 relative error = 9.5209592618726867318064280517684e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.165 Order of pole = 2.18 x[1] = 0.59 y[1] (analytic) = 0.53303411017749002604051892171453 y[1] (numeric) = 0.53303411017748951937394668830181 absolute error = 5.0666657223341272e-16 relative error = 9.5053311328369318235732001256574e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.165 Order of pole = 2.181 x[1] = 0.591 y[1] (analytic) = 0.53377557027339467080241827458693 y[1] (numeric) = 0.53377557027339416427256582126852 absolute error = 5.0652985245331841e-16 relative error = 9.4895660397848243906989221265298e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.166 Order of pole = 2.181 x[1] = 0.592 y[1] (analytic) = 0.53451638111847214771301398722078 y[1] (numeric) = 0.53451638111847164133006098467286 absolute error = 5.0638295300254792e-16 relative error = 9.4736657451534935698377681444375e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.166 Order of pole = 2.181 x[1] = 0.593 y[1] (analytic) = 0.53525654275306531894791992688144 y[1] (numeric) = 0.5352565427530648127219792458104 absolute error = 5.0622594068107104e-16 relative error = 9.4576319997383530188127685386197e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.167 Order of pole = 2.181 x[1] = 0.594 y[1] (analytic) = 0.53599605522029167115370663043049 y[1] (numeric) = 0.53599605522029116509482439034965 absolute error = 5.0605888224008084e-16 relative error = 9.4414665427359012132260924969706e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.167 Order of pole = 2.181 x[1] = 0.595 y[1] (analytic) = 0.53673491856603321583428431287756 y[1] (numeric) = 0.53673491856603270995243993404469 absolute error = 5.0588184437883287e-16 relative error = 9.4251711017865411012208441790607e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.168 Order of pole = 2.181 x[1] = 0.596 y[1] (analytic) = 0.53747313283892639313321038329677 y[1] (numeric) = 0.53747313283892588743831664178135 absolute error = 5.0569489374151542e-16 relative error = 9.4087473930174200515652930599108e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.168 Order of pole = 2.181 x[1] = 0.597 y[1] (analytic) = 0.53821069809035197921748139680147 y[1] (numeric) = 0.53821069809035147371938448265063 absolute error = 5.0549809691415084e-16 relative error = 9.3921971210852906549048439996092e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.169 Order of pole = 2.181 x[1] = 0.598 y[1] (analytic) = 0.5389476143744249974669981932726 y[1] (numeric) = 0.53894761437442449217547777174487 absolute error = 5.0529152042152773e-16 relative error = 9.3755219792193894130107313758487e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.169 Order of pole = 2.181 x[1] = 0.599 y[1] (analytic) = 0.53968388174798463367252297950538 y[1] (numeric) = 0.53968388174798412859729225534128 absolute error = 5.0507523072416410e-16 relative error = 9.3587236492643357631847418122439e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.17 Order of pole = 2.182 x[1] = 0.6 y[1] (analytic) = 0.5404195002705841554435783646086 y[1] (numeric) = 0.5404195002705836505942841493072 absolute error = 5.0484929421530140e-16 relative error = 9.3418038017230501637915709454325e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.17 Order of pole = 2.182 x[1] = 0.601 y[1] (analytic) = 0.54115447000448083602637092145812 y[1] (numeric) = 0.54115447000448033141259370352884 absolute error = 5.0461377721792928e-16 relative error = 9.3247640957996892478817197648639e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.171 Order of pole = 2.182 x[1] = 0.602 y[1] (analytic) = 0.5418887910146258827304557817339 y[1] (numeric) = 0.54188879101462537836170979989275 absolute error = 5.0436874598184115e-16 relative error = 9.3076061794425999550121843347167e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.171 Order of pole = 2.182 x[1] = 0.603 y[1] (analytic) = 0.54262246336865437016149413988553 y[1] (numeric) = 0.54262246336865386604722745916513 absolute error = 5.0411426668072040e-16 relative error = 9.2903316893872906666924302170563e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.172 Order of pole = 2.182 x[1] = 0.604 y[1] (analytic) = 0.54335548713687517845609240297155 y[1] (numeric) = 0.54335548713687467460568699371428 absolute error = 5.0385040540925727e-16 relative error = 9.2729422511994197908119039362345e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.172 Order of pole = 2.182 x[1] = 0.605 y[1] (analytic) = 0.54408786239226093671335013876632 y[1] (numeric) = 0.5440878623922604331361219584701 absolute error = 5.0357722818029622e-16 relative error = 9.2554394793177996684459728375272e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.173 Order of pole = 2.183 x[1] = 0.606 y[1] (analytic) = 0.54481958921043797181638400325995 y[1] (numeric) = 0.54481958921043746852158308124608 absolute error = 5.0329480092201387e-16 relative error = 9.2378249770974177432245106087015e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.173 Order of pole = 2.183 x[1] = 0.607 y[1] (analytic) = 0.54555066766967626283573652949589 y[1] (numeric) = 0.54555066766967575983254705436862 absolute error = 5.0300318947512727e-16 relative error = 9.2201003368524712360879975975341e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.174 Order of pole = 2.183 x[1] = 0.608 y[1] (analytic) = 0.54628109785087940120522209077634 y[1] (numeric) = 0.54628109785087889850276250064371 absolute error = 5.0270245959013263e-16 relative error = 9.2022671398994183872920852321565e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.174 Order of pole = 2.183 x[1] = 0.609 y[1] (analytic) = 0.54701087983757455685940757016806 y[1] (numeric) = 0.54701087983757405446673064559385 absolute error = 5.0239267692457421e-16 relative error = 9.1843269566000414395301430710728e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.175 Order of pole = 2.183 x[1] = 0.61 y[1] (analytic) = 0.54774001371590245052057233188898 y[1] (numeric) = 0.54774001371590194844666529154545 absolute error = 5.0207390704034353e-16 relative error = 9.1662813464045249912169360036388e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.176 Order of pole = 2.183 x[1] = 0.611 y[1] (analytic) = 0.5484684995746073323216410548511 y[1] (numeric) = 0.5484684995746068305754256538425 absolute error = 5.0174621540100860e-16 relative error = 9.1481318578945449288393819321159e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.176 Order of pole = 2.184 x[1] = 0.612 y[1] (analytic) = 0.5491963375050269669502339100622 y[1] (numeric) = 0.54919633750502646554056654088893 absolute error = 5.0140966736917327e-16 relative error = 9.1298800288263704869216998692537e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=385.3MB, alloc=4.5MB, time=54.43 Complex estimate of poles used Radius of convergence = 1.177 Order of pole = 2.184 x[1] = 0.613 y[1] (analytic) = 0.54992352760108262549763149680776 y[1] (numeric) = 0.54992352760108212443330329294124 absolute error = 5.0106432820386652e-16 relative error = 9.1115273861739768708331227014473e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.177 Order of pole = 2.184 x[1] = 0.614 y[1] (analytic) = 0.55065006995926908419510695199093 y[1] (numeric) = 0.55065006995926858348484389402931 absolute error = 5.0071026305796162e-16 relative error = 9.0930754461721679076615369504241e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.178 Order of pole = 2.184 x[1] = 0.615 y[1] (analytic) = 0.55137596467864463021873476652808 y[1] (numeric) = 0.55137596467864412987119779090298 absolute error = 5.0034753697562510e-16 relative error = 9.0745257143597083825147585765216e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.178 Order of pole = 2.184 x[1] = 0.616 y[1] (analytic) = 0.5521012118608210747424451354934 y[1] (numeric) = 0.55210121186082057476623024569796 absolute error = 4.9997621488979544e-16 relative error = 9.0558796856224651828995777053727e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.179 Order of pole = 2.184 x[1] = 0.617 y[1] (analytic) = 0.55282581160995377341775418737637 y[1] (numeric) = 0.55282581160995327382139256768502 absolute error = 4.9959636161969135e-16 relative error = 9.0371388442365556644708670700073e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.179 Order of pole = 2.185 x[1] = 0.618 y[1] (analytic) = 0.55354976403273165445726423434827 y[1] (numeric) = 0.55354976403273115524922236599868 absolute error = 4.9920804186834959e-16 relative error = 9.0183046639115031181740585405671e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.18 Order of pole = 2.185 x[1] = 0.619 y[1] (analytic) = 0.5542730692383672544976943112058 y[1] (numeric) = 0.55427306923836675568637409101357 absolute error = 4.9881132022019223e-16 relative error = 8.9993786078333983227777397476359e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.18 Order of pole = 2.185 x[1] = 0.62 y[1] (analytic) = 0.55499572733858676241686977644094 y[1] (numeric) = 0.55499572733858626401060863781765 absolute error = 4.9840626113862329e-16 relative error = 8.9803621287080669028460228688081e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.181 Order of pole = 2.185 x[1] = 0.621 y[1] (analytic) = 0.55571773844762007127777068484036 y[1] (numeric) = 0.55571773844761957328484172118586 absolute error = 4.9799292896365450e-16 relative error = 8.9612566688042386208148152030482e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.181 Order of pole = 2.185 x[1] = 0.622 y[1] (analytic) = 0.55643910268219083857141205670568 y[1] (numeric) = 0.5564391026821903410000241471453 absolute error = 4.9757138790956038e-16 relative error = 8.9420636599967230434281835258191e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.182 Order of pole = 2.186 x[1] = 0.623 y[1] (analytic) = 0.55715982016150655492900511316377 y[1] (numeric) = 0.55715982016150605778730305060156 absolute error = 4.9714170206256221e-16 relative error = 8.9227845238095846739014141056857e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.182 Order of pole = 2.186 x[1] = 0.624 y[1] (analytic) = 0.5578798910072486214725270684647 y[1] (numeric) = 0.55787989100724812476859168992367 absolute error = 4.9670393537854103e-16 relative error = 8.9034206714593209342652549497208e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.183 Order of pole = 2.186 x[1] = 0.625 y[1] (analytic) = 0.55859931534356243597150821640166 y[1] (numeric) = 0.55859931534356193971335653562219 absolute error = 4.9625815168077947e-16 relative error = 8.8839735038980402650412380858054e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.184 Order of pole = 2.186 x[1] = 0.626 y[1] (analytic) = 0.55931809329704748797252886619788 y[1] (numeric) = 0.55931809329704699216811420846561 absolute error = 4.9580441465773227e-16 relative error = 8.8644444118566387145031340730343e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.184 Order of pole = 2.186 x[1] = 0.627 y[1] (analytic) = 0.56003622499674746306660521996036 y[1] (numeric) = 0.56003622499674696772381735913485 absolute error = 4.9534278786082551e-16 relative error = 8.8448347758879762675679598849241e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.185 Order of pole = 2.186 x[1] = 0.628 y[1] (analytic) = 0.56075371057414035645833258507828 y[1] (numeric) = 0.560753710574139861584997882794 absolute error = 4.9487333470228428e-16 relative error = 8.8251459664100489839800051788911e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.185 Order of pole = 2.187 x[1] = 0.629 y[1] (analytic) = 0.56147055016312859599934642613475 y[1] (numeric) = 0.56147055016312810160322797314596 absolute error = 4.9439611845298879e-16 relative error = 8.8053793437491578684092219379213e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.186 Order of pole = 2.187 x[1] = 0.63 y[1] (analytic) = 0.56218674390002917484735672680714 y[1] (numeric) = 0.56218674390002868093615448644833 absolute error = 4.9391120224035881e-16 relative error = 8.7855362581830734328716720210026e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.186 Order of pole = 2.187 x[1] = 0.631 y[1] (analytic) = 0.56290229192356379391070899707045 y[1] (numeric) = 0.5629022919235633004920599508042 absolute error = 4.9341864904626625e-16 relative error = 8.7656180499841935050578918916126e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.187 Order of pole = 2.187 x[1] = 0.632 y[1] (analytic) = 0.56361719437484901423712606842608 y[1] (numeric) = 0.56361719437484852131860436345021 absolute error = 4.9291852170497587e-16 relative error = 8.7456260494626950583632791134403e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.187 Order of pole = 2.187 x[1] = 0.633 y[1] (analytic) = 0.56433145139738641950398861290861 y[1] (numeric) = 0.56433145139738592709310571179478 absolute error = 4.9241088290111383e-16 relative error = 8.7255615770096758735329612175386e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.188 Order of pole = 2.187 x[1] = 0.634 y[1] (analytic) = 0.56504506313705278876621914275387 y[1] (numeric) = 0.56504506313705229687042397508959 absolute error = 4.9189579516766428e-16 relative error = 8.7054259431402905596129944422056e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.188 Order of pole = 2.188 x[1] = 0.635 y[1] (analytic) = 0.56575802974209027961654413874205 y[1] (numeric) = 0.56575802974208978824322325474862 absolute error = 4.9137332088399343e-16 relative error = 8.6852204485368719863345426152948e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.189 Order of pole = 2.188 x[1] = 0.636 y[1] (analytic) = 0.56647035136309662191162195769052 y[1] (numeric) = 0.56647035136309613106809968378906 absolute error = 4.9084352227390146e-16 relative error = 8.6649463840920455144718681574346e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.19 Order of pole = 2.188 x[1] = 0.637 y[1] (analytic) = 0.56718202815301532221624032411637 y[1] (numeric) = 0.56718202815301483190977892041466 absolute error = 4.9030646140370171e-16 relative error = 8.6446050309518271191709445580682e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.19 Order of pole = 2.188 x[1] = 0.638 y[1] (analytic) = 0.56789306026712587911650655791082 y[1] (numeric) = 0.56789306026712538935430637758343 absolute error = 4.8976220018032739e-16 relative error = 8.6241976605587106809312570117960e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=389.1MB, alloc=4.5MB, time=54.98 Complex estimate of poles used Radius of convergence = 1.191 Order of pole = 2.188 x[1] = 0.639 y[1] (analytic) = 0.56860344786303400955167626858668 y[1] (numeric) = 0.5686034478630335203408759191213 absolute error = 4.8921080034946538e-16 relative error = 8.6037255346947378859457750915880e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.191 Order of pole = 2.188 x[1] = 0.64 y[1] (analytic) = 0.56931319110066188631299209633831 y[1] (numeric) = 0.56931319110066139766066860262102 absolute error = 4.8865232349371729e-16 relative error = 8.5831899055245547850432046185054e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.192 Order of pole = 2.188 x[1] = 0.641 y[1] (analytic) = 0.57002229014223838685663323928788 y[1] (numeric) = 0.57002229014223789876980220850049 absolute error = 4.8808683103078739e-16 relative error = 8.5625920156384491988622046540565e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.192 Order of pole = 2.189 x[1] = 0.642 y[1] (analytic) = 0.57073074515228935357660901282491 y[1] (numeric) = 0.57073074515228886606222480112747 absolute error = 4.8751438421169744e-16 relative error = 8.5419330980953705765341498665806e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.193 Order of pole = 2.189 x[1] = 0.643 y[1] (analytic) = 0.57143855629762786568216557826183 y[1] (numeric) = 0.57143855629762737874712145923357 absolute error = 4.8693504411902826e-16 relative error = 8.5212143764659305769914827107272e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.193 Order of pole = 2.189 x[1] = 0.644 y[1] (analytic) = 0.57214572374734452282301429095948 y[1] (numeric) = 0.57214572374734403647414262577156 absolute error = 4.8634887166518792e-16 relative error = 8.5004370648753833609687622339107e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.194 Order of pole = 2.189 x[1] = 0.645 y[1] (analytic) = 0.57285224767279774060443288890464 y[1] (numeric) = 0.57285224767279725484850529819833 absolute error = 4.8575592759070631e-16 relative error = 8.4796023680465824995782211245812e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.194 Order of pole = 2.189 x[1] = 0.646 y[1] (analytic) = 0.57355812824760405813303700718107 y[1] (numeric) = 0.57355812824760357297676454462487 absolute error = 4.8515627246255620e-16 relative error = 8.4587114813429175405966536443240e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.195 Order of pole = 2.189 x[1] = 0.647 y[1] (analytic) = 0.57426336564762845773276929705423 y[1] (numeric) = 0.57426336564762797318280262455389 absolute error = 4.8454996667250034e-16 relative error = 8.4377655908112234944889761325709e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.196 Order of pole = 2.189 x[1] = 0.648 y[1] (analytic) = 0.57496796005097469696940678513601 y[1] (numeric) = 0.57496796005097421303233634967125 absolute error = 4.8393707043546476e-16 relative error = 8.4167658732246671799763035568005e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.196 Order of pole = 2.189 x[1] = 0.649 y[1] (analytic) = 0.57567191163797565312064406241416 y[1] (numeric) = 0.5756719116379751698030002744762 absolute error = 4.8331764378793796e-16 relative error = 8.3957134961256061682249778064434e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.197 Order of pole = 2.189 x[1] = 0.65 y[1] (analytic) = 0.57637522059118368022757047839377 y[1] (numeric) = 0.57637522059118319753582389199786 absolute error = 4.8269174658639591e-16 relative error = 8.3746096178684200990447502808351e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.197 Order of pole = 2.189 x[1] = 0.651 y[1] (analytic) = 0.57707788709536097886212376523933 y[1] (numeric) = 0.57707788709536049680268525948662 absolute error = 4.8205943850575271e-16 relative error = 8.3534553876623129337677087136830e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.198 Order of pole = 2.19 x[1] = 0.652 y[1] (analytic) = 0.57777991133746997874387046313095 y[1] (numeric) = 0.57777991133746949732309142529413 absolute error = 4.8142077903783682e-16 relative error = 8.3322519456140857639216901867180e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.198 Order of pole = 2.19 x[1] = 0.653 y[1] (analytic) = 0.5784812935066637343382351930325 y[1] (numeric) = 0.57848129350666325356240770313989 absolute error = 4.8077582748989261e-16 relative error = 8.3110004227708770345876266441547e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.199 Order of pole = 2.19 x[1] = 0.654 y[1] (analytic) = 0.57918203379427633356707625816345 y[1] (numeric) = 0.57918203379427585344243327505621 absolute error = 4.8012464298310724e-16 relative error = 8.2897019411628715627117519050084e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.199 Order of pole = 2.19 x[1] = 0.655 y[1] (analytic) = 0.57988213239381331976128428159638 y[1] (numeric) = 0.57988213239381284029399983043375 absolute error = 4.7946728445116263e-16 relative error = 8.2683576138459754078399942556041e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.2 Order of pole = 2.19 x[1] = 0.656 y[1] (analytic) = 0.58058158950094212698386363497623 y[1] (numeric) = 0.58058158950094164818005299616386 absolute error = 4.7880381063881237e-16 relative error = 8.2469685449444552330206695436481e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.2 Order of pole = 2.19 x[1] = 0.657 y[1] (analytic) = 0.58128040531348252885074331226501 y[1] (numeric) = 0.58128040531348205071646321178148 absolute error = 4.7813428010048353e-16 relative error = 8.2255358296935427007130425667738e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.201 Order of pole = 2.19 x[1] = 0.658 y[1] (analytic) = 0.58197858003139710097535468203206 y[1] (numeric) = 0.58197858003139662351660348312896 absolute error = 4.7745875119890310e-16 relative error = 8.2040605544820004928068045199168e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.202 Order of pole = 2.19 x[1] = 0.659 y[1] (analytic) = 0.58267611385678169716180824099949 y[1] (numeric) = 0.5826761138567812203845261372505 absolute error = 4.7677728210374899e-16 relative error = 8.1825437968946500104694963102633e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.202 Order of pole = 2.19 x[1] = 0.66 y[1] (analytic) = 0.58337300699385593947030011867094 y[1] (numeric) = 0.58337300699385546338036932834544 absolute error = 4.7608993079032550e-16 relative error = 8.1609866257548604675339547467176e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.203 Order of pole = 2.19 x[1] = 0.661 y[1] (analytic) = 0.584069259648953722277181675768 y[1] (numeric) = 0.58406925964895324688042663750503 absolute error = 4.7539675503826297e-16 relative error = 8.1393901011669956709391408456496e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.203 Order of pole = 2.19 x[1] = 0.662 y[1] (analytic) = 0.58476487203051373045093212522176 y[1] (numeric) = 0.5847648720305132557531196949802 absolute error = 4.7469781243024156e-16 relative error = 8.1177552745588189224975875300065e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.204 Order of pole = 2.19 x[1] = 0.663 y[1] (analytic) = 0.585459844349069971764084710463 y[1] (numeric) = 0.58545984434906949777092435972392 absolute error = 4.7399316035073908e-16 relative error = 8.0960831887238559608410695603584e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.204 Order of pole = 2.19 x[1] = 0.664 y[1] (analytic) = 0.58615417681724232365997162807491 y[1] (numeric) = 0.58615417681724185037711564327238 absolute error = 4.7328285598480253e-16 relative error = 8.0743748778637114285661267060326e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=392.9MB, alloc=4.5MB, time=55.53 Complex estimate of poles used Radius of convergence = 1.205 Order of pole = 2.19 x[1] = 0.665 y[1] (analytic) = 0.58684786964972709449197160637497 y[1] (numeric) = 0.58684786964972662192501528953155 absolute error = 4.7256695631684342e-16 relative error = 8.0526313676303413798280771120561e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.205 Order of pole = 2.19 x[1] = 0.666 y[1] (analytic) = 0.58754092306328759935176687354266 y[1] (numeric) = 0.58754092306328712750624874408609 absolute error = 4.7184551812945657e-16 relative error = 8.0308536751682780233391257305593e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.206 Order of pole = 2.19 x[1] = 0.667 y[1] (analytic) = 0.58823333727674475060194319338716 y[1] (numeric) = 0.58823333727674427948334519112488 absolute error = 4.7111859800226228e-16 relative error = 8.0090428091568061624831255751267e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.207 Order of pole = 2.19 x[1] = 0.668 y[1] (analytic) = 0.58892511251096766322709773814752 y[1] (numeric) = 0.5889251125109671928408454273757 absolute error = 4.7038625231077182e-16 relative error = 7.9871997698520918188842043906213e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.207 Order of pole = 2.19 x[1] = 0.669 y[1] (analytic) = 0.58961624898886427511645482974902 y[1] (numeric) = 0.58961624898886380546791760447312 absolute error = 4.6964853722527590e-16 relative error = 7.9653255491292586034598527194637e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.208 Order of pole = 2.19 x[1] = 0.67 y[1] (analytic) = 0.59030674693537198238982903713835 y[1] (numeric) = 0.59030674693537151348432032738217 absolute error = 4.6890550870975618e-16 relative error = 7.9434211305244142173230758966403e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.208 Order of pole = 2.19 x[1] = 0.671 y[1] (analytic) = 0.59099660657744828987761879064397 y[1] (numeric) = 0.59099660657744782172039626982447 absolute error = 4.6815722252081950e-16 relative error = 7.9214874892766230133481712800290e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.209 Order of pole = 2.19 x[1] = 0.672 y[1] (analytic) = 0.59168582814406147686436158724269 y[1] (numeric) = 0.59168582814406100946062738058794 absolute error = 4.6740373420665475e-16 relative error = 7.8995255923698246438908829914629e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.209 Order of pole = 2.19 x[1] = 0.673 y[1] (analytic) = 0.59237441186618127820423403517565 y[1] (numeric) = 0.59237441186618081155913492916331 absolute error = 4.6664509910601234e-16 relative error = 7.8775363985746994955563473293735e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.21 Order of pole = 2.19 x[1] = 0.674 y[1] (analytic) = 0.59306235797676958091573644409534 y[1] (numeric) = 0.59306235797676911503436409688951 absolute error = 4.6588137234720583e-16 relative error = 7.8555208584904748611071140676781e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.21 Order of pole = 2.19 x[1] = 0.675 y[1] (analytic) = 0.59374966671077113636166242892846 y[1] (numeric) = 0.59374966671077067124905358179253 absolute error = 4.6511260884713593e-16 relative error = 7.8334799145866768023461412538460e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.211 Order of pole = 2.19 x[1] = 0.676 y[1] (analytic) = 0.59443633830510428811931908253125 y[1] (numeric) = 0.59443633830510382378045577219485 absolute error = 4.6433886331033640e-16 relative error = 7.8114145012448211727473042047469e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.212 Order of pole = 2.189 x[1] = 0.677 y[1] (analytic) = 0.59512237299865171564483270416632 y[1] (numeric) = 0.59512237299865125208464247612442 absolute error = 4.6356019022804190e-16 relative error = 7.7893255448000460667765197182831e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.212 Order of pole = 2.189 x[1] = 0.678 y[1] (analytic) = 0.59580777103225119383424886755647 y[1] (numeric) = 0.59580777103225073105760499027887 absolute error = 4.6277664387727760e-16 relative error = 7.7672139635826839138498085088735e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.213 Order of pole = 2.189 x[1] = 0.679 y[1] (analytic) = 0.59649253264868636858301379303678 y[1] (numeric) = 0.59649253264868590659473547306649 absolute error = 4.6198827831997029e-16 relative error = 7.7450806679597702777587729980218e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.213 Order of pole = 2.189 x[1] = 0.68 y[1] (analytic) = 0.59717665809267754844430657194869 y[1] (numeric) = 0.59717665809267708724915916986769 absolute error = 4.6119514740208100e-16 relative error = 7.7229265603764909705645022624973e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.214 Order of pole = 2.189 x[1] = 0.681 y[1] (analytic) = 0.59786014761087251248557879626971 y[1] (numeric) = 0.59786014761087205208827404351085 absolute error = 4.6039730475275886e-16 relative error = 7.7007525353975643917138346651541e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.214 Order of pole = 2.189 x[1] = 0.682 y[1] (analytic) = 0.59854300145183733444154959048228 y[1] (numeric) = 0.5985430014518368748467458069662 absolute error = 4.5959480378351608e-16 relative error = 7.6785594797485585372662632244226e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.215 Order of pole = 2.189 x[1] = 0.683 y[1] (analytic) = 0.59922521986604722326079994334617 y[1] (numeric) = 0.59922521986604676447310225592225 absolute error = 4.5878769768742392e-16 relative error = 7.6563482723571419620232544717109e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.215 Order of pole = 2.189 x[1] = 0.684 y[1] (analytic) = 0.59990680310587738014201061160889 y[1] (numeric) = 0.59990680310587692216597117327945 absolute error = 4.5797603943832944e-16 relative error = 7.6341197843942666500117088027055e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.216 Order of pole = 2.189 x[1] = 0.685 y[1] (analytic) = 0.60058775142559387215479273239255 y[1] (numeric) = 0.60058775142559341499491094229954 absolute error = 4.5715988179009301e-16 relative error = 7.6118748793152839305149476683772e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.217 Order of pole = 2.189 x[1] = 0.686 y[1] (analytic) = 0.60126806508134452253896965223023 y[1] (numeric) = 0.60126806508134406619969237638406 absolute error = 4.5633927727584617e-16 relative error = 7.5896144129009880797971311691706e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.217 Order of pole = 2.188 x[1] = 0.687 y[1] (analytic) = 0.60194774433114981777508237426087 y[1] (numeric) = 0.60194774433114936226080416699084 absolute error = 4.5551427820727003e-16 relative error = 7.5673392332985922642662809041911e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.218 Order of pole = 2.188 x[1] = 0.688 y[1] (analytic) = 0.60262678943489383151780945627653 y[1] (numeric) = 0.60262678943489337683287278238282 absolute error = 4.5468493667389371e-16 relative error = 7.5450501810626299883318510448823e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.218 Order of pole = 2.188 x[1] = 0.689 y[1] (analytic) = 0.60330520065431516548291517607949 y[1] (numeric) = 0.60330520065431471163161063366653 absolute error = 4.5385130454241296e-16 relative error = 7.5227480891957858794049436784514e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.219 Order of pole = 2.188 x[1] = 0.69 y[1] (analytic) = 0.60398297825299790737726733146002 y[1] (numeric) = 0.60398297825299745436383387543146 absolute error = 4.5301343345602856e-16 relative error = 7.5004337831896506666637515057525e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=396.7MB, alloc=4.5MB, time=56.07 Complex estimate of poles used Radius of convergence = 1.219 Order of pole = 2.188 x[1] = 0.691 y[1] (analytic) = 0.60466012249636260596039817414992 y[1] (numeric) = 0.60466012249636215378902334034533 absolute error = 4.5217137483380459e-16 relative error = 7.4781080810654033593253299843686e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.22 Order of pole = 2.188 x[1] = 0.692 y[1] (analytic) = 0.60533663365165726332501870402994 y[1] (numeric) = 0.60533663365165681199983883398377 absolute error = 4.5132517987004617e-16 relative error = 7.4557717934144155077554926031261e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.221 Order of pole = 2.188 x[1] = 0.693 y[1] (analytic) = 0.60601251198794834448283788495535 y[1] (numeric) = 0.60601251198794789400793835125869 absolute error = 4.5047489953369666e-16 relative error = 7.4334257234387789111048844915909e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.221 Order of pole = 2.187 x[1] = 0.694 y[1] (analytic) = 0.60668775777611180434098429969133 y[1] (numeric) = 0.60668775777611135472039973193713 absolute error = 4.4962058456775420e-16 relative error = 7.4110706669917563089088115826561e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.222 Order of pole = 2.187 x[1] = 0.695 y[1] (analytic) = 0.60736237128882413215327835109793 y[1] (numeric) = 0.60736237128882368339099286239062 absolute error = 4.4876228548870731e-16 relative error = 7.3887074126181519628848846200986e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.222 Order of pole = 2.187 x[1] = 0.696 y[1] (analytic) = 0.60803635280055341352955835195498 y[1] (numeric) = 0.60803635280055296562950576596549 absolute error = 4.4790005258598949e-16 relative error = 7.3663367415946026797888502190932e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.223 Order of pole = 2.187 x[1] = 0.697 y[1] (analytic) = 0.6087097025875504100852237383574 y[1] (numeric) = 0.60870970258754996305128781690478 absolute error = 4.4703393592145262e-16 relative error = 7.3439594279697875202375305627622e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.223 Order of pole = 2.187 x[1] = 0.698 y[1] (analytic) = 0.60938242092783965681212320273872 y[1] (numeric) = 0.60938242092783921064813787387967 absolute error = 4.4616398532885905e-16 relative error = 7.3215762386045559296727873478667e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.224 Order of pole = 2.187 x[1] = 0.699 y[1] (analytic) = 0.61005450810121057725088478320319 y[1] (numeric) = 0.61005450810121013196063436981103 absolute error = 4.4529025041339216e-16 relative error = 7.2991879332119722256308999286219e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.225 Order of pole = 2.186 x[1] = 0.7 y[1] (analytic) = 0.61072596438920861654375887649024 y[1] (numeric) = 0.61072596438920817213097832530496 absolute error = 4.4441278055118528e-16 relative error = 7.2767952643972761935363862164632e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.225 Order of pole = 2.186 x[1] = 0.701 y[1] (analytic) = 0.61139679007512639244602377270172 y[1] (numeric) = 0.61139679007512594891439888383287 absolute error = 4.4353162488886885e-16 relative error = 7.2543989776977593805185736590819e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.226 Order of pole = 2.186 x[1] = 0.702 y[1] (analytic) = 0.61206698544399486437298665065737 y[1] (numeric) = 0.61206698544399442172615430752175 absolute error = 4.4264683234313562e-16 relative error = 7.2319998116225553719307021943282e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.226 Order of pole = 2.186 x[1] = 0.703 y[1] (analytic) = 0.6127365507825745205586010327978 y[1] (numeric) = 0.61273655078257407880014943247414 absolute error = 4.4175845160032366e-16 relative error = 7.2095984976923418592352705171001e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.227 Order of pole = 2.186 x[1] = 0.704 y[1] (analytic) = 0.61340548637934658340071448694449 y[1] (numeric) = 0.61340548637934614253418337092725 absolute error = 4.4086653111601724e-16 relative error = 7.1871957604789570532634716878140e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.227 Order of pole = 2.185 x[1] = 0.705 y[1] (analytic) = 0.61407379252450423306695788760219 y[1] (numeric) = 0.61407379252450379309583877293701 absolute error = 4.3997111911466518e-16 relative error = 7.1647923176449254820984391318428e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.228 Order of pole = 2.185 x[1] = 0.706 y[1] (analytic) = 0.61474146950994384943428982013514 y[1] (numeric) = 0.61474146950994341036202623091839 absolute error = 4.3907226358921675e-16 relative error = 7.1423888799828960625801805891477e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.229 Order of pole = 2.185 x[1] = 0.707 y[1] (analytic) = 0.6154085176292562724342167349853 y[1] (numeric) = 0.6154085176292558342642044342106 absolute error = 4.3817001230077470e-16 relative error = 7.1199861514549871830132475231635e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.229 Order of pole = 2.185 x[1] = 0.708 y[1] (analytic) = 0.61607493717771808087472124369114 y[1] (numeric) = 0.61607493717771764361030846542557 absolute error = 4.3726441277826557e-16 relative error = 7.0975848292320428306976319093816e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.23 Order of pole = 2.185 x[1] = 0.709 y[1] (analytic) = 0.61674072845228288980894750101495 y[1] (numeric) = 0.61674072845228245345343518288806 absolute error = 4.3635551231812689e-16 relative error = 7.0751856037327950055684802730916e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.23 Order of pole = 2.185 x[1] = 0.71 y[1] (analytic) = 0.61740589175157266651971394484851 y[1] (numeric) = 0.61740589175157223107635596083728 absolute error = 4.3544335798401123e-16 relative error = 7.0527891586629333694232102756673e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.231 Order of pole = 2.184 x[1] = 0.711 y[1] (analytic) = 0.61807042737586906518794977424468 y[1] (numeric) = 0.61807042737586863065995316773779 absolute error = 4.3452799660650689e-16 relative error = 7.0303961710540803196930200198720e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.231 Order of pole = 2.184 x[1] = 0.712 y[1] (analytic) = 0.61873433562710478031218244207203 y[1] (numeric) = 0.61873433562710434670270765919685 absolute error = 4.3360947478287518e-16 relative error = 7.0080073113026722763322474293227e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.232 Order of pole = 2.184 x[1] = 0.713 y[1] (analytic) = 0.61939761680885491894523912822447 y[1] (numeric) = 0.61939761680885448625740025142049 absolute error = 4.3268783887680398e-16 relative error = 6.9856232432087437640903239790618e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.233 Order of pole = 2.184 x[1] = 0.714 y[1] (analytic) = 0.62006027122632839181336564751054 y[1] (numeric) = 0.62006027122632796005023062933297 absolute error = 4.3176313501817757e-16 relative error = 6.9632446240146157379654276981682e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.233 Order of pole = 2.184 x[1] = 0.715 y[1] (analytic) = 0.62072229918635932338201153843224 y[1] (numeric) = 0.62072229918635889254660243556969 absolute error = 4.3083540910286255e-16 relative error = 6.9408721044434868464985390654497e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.234 Order of pole = 2.183 x[1] = 0.716 y[1] (analytic) = 0.62138370099739848093158017984252 y[1] (numeric) = 0.62138370099739805102687338733291 absolute error = 4.2990470679250961e-16 relative error = 6.9185063287379253710730898582808e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.234 memory used=400.5MB, alloc=4.5MB, time=56.60 Order of pole = 2.183 x[1] = 0.717 y[1] (analytic) = 0.62204447696950472270549769641355 y[1] (numeric) = 0.62204447696950429373442418204246 absolute error = 4.2897107351437109e-16 relative error = 6.8961479346982624902118259281632e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.235 Order of pole = 2.183 x[1] = 0.718 y[1] (analytic) = 0.62270462741433646519201414509621 y[1] (numeric) = 0.62270462741433603715745968396202 absolute error = 4.2803455446113419e-16 relative error = 6.8737975537208862254780933943921e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.235 Order of pole = 2.183 x[1] = 0.719 y[1] (analytic) = 0.62336415264514316960021502712216 y[1] (numeric) = 0.62336415264514274250502043635255 absolute error = 4.2709519459076961e-16 relative error = 6.8514558108364341455123835856651e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.236 Order of pole = 2.183 x[1] = 0.72 y[1] (analytic) = 0.62402305297675684758979054708821 y[1] (numeric) = 0.6240230529767564214367519206927 absolute error = 4.2615303862639551e-16 relative error = 6.8291233247478846815379293178828e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.237 Order of pole = 2.182 x[1] = 0.721 y[1] (analytic) = 0.62468132872558358631318424544497 y[1] (numeric) = 0.62468132872558316110505318928834 absolute error = 4.2520813105615663e-16 relative error = 6.8068007078685461062246111445340e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.237 Order of pole = 2.182 x[1] = 0.722 y[1] (analytic) = 0.62533898020959509282782166614858 y[1] (numeric) = 0.62533898020959466856730553303009 absolute error = 4.2426051613311849e-16 relative error = 6.7844885663599435127880448222695e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.238 Order of pole = 2.182 x[1] = 0.723 y[1] (analytic) = 0.6259960077483202579352035898733 y[1] (numeric) = 0.62599600774831983462496571469694 absolute error = 4.2331023787517636e-16 relative error = 6.7621875001696004518873472953341e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.238 Order of pole = 2.182 x[1] = 0.724 y[1] (analytic) = 0.62665241166283673950273706726331 y[1] (numeric) = 0.62665241166283631714539700228427 absolute error = 4.2235734006497904e-16 relative error = 6.7398981030687174947791731975926e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.239 Order of pole = 2.182 x[1] = 0.725 y[1] (analytic) = 0.62730819227576256532327102815488 y[1] (numeric) = 0.62730819227576214392140477828774 absolute error = 4.2140186624986714e-16 relative error = 6.7176209626897443903606706802839e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.239 Order of pole = 2.182 x[1] = 0.726 y[1] (analytic) = 0.62796334991124775556640162315481 y[1] (numeric) = 0.6279633499112473351225418813289 absolute error = 4.2044385974182591e-16 relative error = 6.6953566605638482419531070040456e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.24 Order of pole = 2.181 x[1] = 0.727 y[1] (analytic) = 0.62861788489496596487471567474472 y[1] (numeric) = 0.62861788489496554539135205729257 absolute error = 4.1948336361745215e-16 relative error = 6.6731057721582718348327132045588e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.241 Order of pole = 2.181 x[1] = 0.728 y[1] (analytic) = 0.62927179755410614415724867722518 y[1] (numeric) = 0.62927179755410572563682795928966 absolute error = 4.1852042071793552e-16 relative error = 6.6508688669135888460277233298696e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.241 Order of pole = 2.181 x[1] = 0.729 y[1] (analytic) = 0.6299250882173642221315466890534 y[1] (numeric) = 0.62992508821736380457647303999981 absolute error = 4.1755507364905359e-16 relative error = 6.6286465082808470519950788528879e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.242 Order of pole = 2.181 x[1] = 0.73 y[1] (analytic) = 0.63057775721493480666483920791007 y[1] (numeric) = 0.6305777572149343900774744267292 absolute error = 4.1658736478118087e-16 relative error = 6.6064392537586049935002538066317e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.242 Order of pole = 2.181 x[1] = 0.731 y[1] (analytic) = 0.63122980487850290596395270830971 y[1] (numeric) = 0.63122980487850249034661645899814 absolute error = 4.1561733624931157e-16 relative error = 6.5842476549298597465429203375638e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.243 Order of pole = 2.181 x[1] = 0.732 y[1] (analytic) = 0.63188123154123566966272195361638 y[1] (numeric) = 0.63188123154123525501769200052061 absolute error = 4.1464502995309577e-16 relative error = 6.5620722574988623571530543199911e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.244 Order of pole = 2.18 x[1] = 0.733 y[1] (analytic) = 0.63253203753777414985478846853174 y[1] (numeric) = 0.63253203753777373618430091164257 absolute error = 4.1367048755688917e-16 relative error = 6.5399136013278252701723007963682e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.244 Order of pole = 2.18 x[1] = 0.734 y[1] (analytic) = 0.63318222320422508211881267379345 y[1] (numeric) = 0.63318222320422466942506218397746 absolute error = 4.1269375048981599e-16 relative error = 6.5177722204735165678239201851639e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.245 Order of pole = 2.18 x[1] = 0.735 y[1] (analytic) = 0.63383178887815268658226814099248 y[1] (numeric) = 0.63383178887815227486740819514746 absolute error = 4.1171485994584502e-16 relative error = 6.4956486432237426578210770111003e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.245 Order of pole = 2.18 x[1] = 0.736 y[1] (analytic) = 0.6344807348985704890691332208467 y[1] (numeric) = 0.63448073489857007833527633696795 absolute error = 4.1073385688387875e-16 relative error = 6.4735433921337199312345828029704e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.246 Order of pole = 2.18 x[1] = 0.737 y[1] (analytic) = 0.63512906160593316237594693144324 y[1] (numeric) = 0.63512906160593275262516490358807 absolute error = 4.0975078202785517e-16 relative error = 6.4514569840623305500340236962207e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.246 Order of pole = 2.18 x[1] = 0.738 y[1] (analytic) = 0.63577676934212838771985246210598 y[1] (numeric) = 0.63577676934212797895417659524356 absolute error = 4.0876567586686242e-16 relative error = 6.4293899302082668408344925238687e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.247 Order of pole = 2.18 x[1] = 0.739 y[1] (analytic) = 0.63642385845046873640141295161108 y[1] (numeric) = 0.63642385845046832862283429634516 absolute error = 4.0777857865526592e-16 relative error = 6.4073427361460600899683940512986e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.248 Order of pole = 2.179 x[1] = 0.74 y[1] (analytic) = 0.63707032927568357172415033415913 y[1] (numeric) = 0.63707032927568316493461992131118 absolute error = 4.0678953041284795e-16 relative error = 6.3853159018619949032152634624628e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.248 Order of pole = 2.179 x[1] = 0.741 y[1] (analytic) = 0.63771618216391097121192901025105 y[1] (numeric) = 0.63771618216391056541335808529154 absolute error = 4.0579857092495951e-16 relative error = 6.3633099217899080857837039079758e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.249 Order of pole = 2.179 x[1] = 0.742 y[1] (analytic) = 0.63836141746268966916448188958658 y[1] (numeric) = 0.63836141746268926435874214690229 absolute error = 4.0480573974268429e-16 relative error = 6.3413252848468710036243267727326e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.249 Order of pole = 2.179 memory used=404.3MB, alloc=4.5MB, time=57.15 x[1] = 0.743 y[1] (analytic) = 0.63900603552095101959055696623484 y[1] (numeric) = 0.63900603552095061577948078322015 absolute error = 4.0381107618301469e-16 relative error = 6.3193624744687561139593877032943e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.25 Order of pole = 2.179 x[1] = 0.744 y[1] (analytic) = 0.63965003668901097955734801929148 y[1] (numeric) = 0.63965003668901057674272869025182 absolute error = 4.0281461932903966e-16 relative error = 6.2974219686456856866298576117981e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.251 Order of pole = 2.179 x[1] = 0.745 y[1] (analytic) = 0.64029342131856211299406328146577 y[1] (numeric) = 0.64029342131856171117765525132148 absolute error = 4.0181640803014429e-16 relative error = 6.2755042399573632495842546469596e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.251 Order of pole = 2.179 x[1] = 0.746 y[1] (analytic) = 0.64093618976266561498668097971591 y[1] (numeric) = 0.64093618976266521417020007749489 absolute error = 4.0081648090222102e-16 relative error = 6.2536097556082873483249325239408e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.252 Order of pole = 2.179 x[1] = 0.747 y[1] (analytic) = 0.64157834237574335660014052211505 y[1] (numeric) = 0.64157834237574295678526419422286 absolute error = 3.9981487632789219e-16 relative error = 6.2317389774628448713316809860754e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.252 Order of pole = 2.179 x[1] = 0.748 y[1] (analytic) = 0.64221987951356995026342277928661 y[1] (numeric) = 0.64221987951356955145179032254254 absolute error = 3.9881163245674407e-16 relative error = 6.2098923620802877521410663435060e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.253 Order of pole = 2.179 x[1] = 0.749 y[1] (analytic) = 0.64286080153326483575218238246156 y[1] (numeric) = 0.64286080153326443794539517688964 absolute error = 3.9780678720557192e-16 relative error = 6.1880703607495876474383498148340e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.254 Order of pole = 2.178 x[1] = 0.75 y[1] (analytic) = 0.64350110879328438680280922871732 y[1] (numeric) = 0.6435011087932839900024309700811 absolute error = 3.9680037825863622e-16 relative error = 6.1662734195241723989918992933875e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.254 Order of pole = 2.178 x[1] = 0.751 y[1] (analytic) = 0.64414080165341403839101544225916 y[1] (numeric) = 0.64414080165341364259857237432943 absolute error = 3.9579244306792973e-16 relative error = 6.1445019792565406019551250387014e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.255 Order of pole = 2.178 x[1] = 0.752 y[1] (analytic) = 0.64477988047476043470726788347657 y[1] (numeric) = 0.6447798804747600399242490300212 absolute error = 3.9478301885345537e-16 relative error = 6.1227564756327557460723703782684e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.255 Order of pole = 2.178 x[1] = 0.753 y[1] (analytic) = 0.64541834561974359786061491949861 y[1] (numeric) = 0.64541834561974320408847231598391 absolute error = 3.9377214260351470e-16 relative error = 6.1010373392068181277339020291620e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.256 Order of pole = 2.178 x[1] = 0.754 y[1] (analytic) = 0.64605619745208911734168956541143 y[1] (numeric) = 0.64605619745208872458183849040438 absolute error = 3.9275985107500705e-16 relative error = 6.0793449954349169210092889624217e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.257 Order of pole = 2.178 x[1] = 0.755 y[1] (analytic) = 0.6466934363368203602749092682959 y[1] (numeric) = 0.64669343633681996852872847455705 absolute error = 3.9174618079373885e-16 relative error = 6.0576798647095570420146700893528e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.257 Order of pole = 2.178 x[1] = 0.756 y[1] (analytic) = 0.64733006264025070248913553068554 y[1] (numeric) = 0.64733006264025031175796747594223 absolute error = 3.9073116805474331e-16 relative error = 6.0360423623935647487716073120466e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.258 Order of pole = 2.178 x[1] = 0.757 y[1] (analytic) = 0.6479660767299757804353042496109 y[1] (numeric) = 0.64796607672997539072045532700062 absolute error = 3.8971484892261028e-16 relative error = 6.0144328988539709458235638448059e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.258 Order of pole = 2.178 x[1] = 0.758 y[1] (analytic) = 0.6486014789748657639787900755522 y[1] (numeric) = 0.64860147897486537528153084372623 absolute error = 3.8869725923182597e-16 relative error = 5.9928518794957688549757348780165e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.259 Order of pole = 2.178 x[1] = 0.759 y[1] (analytic) = 0.64923626974505765009352526562472 y[1] (numeric) = 0.64923626974505726241509067850205 absolute error = 3.8767843458712267e-16 relative error = 5.9712997047955498215409566536231e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.26 Order of pole = 2.178 x[1] = 0.76 y[1] (analytic) = 0.64987044941194757748415541022072 y[1] (numeric) = 0.64987044941194719082574504638266 absolute error = 3.8665841036383806e-16 relative error = 5.9497767703350125293802819110704e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.26 Order of pole = 2.178 x[1] = 0.761 y[1] (analytic) = 0.65050401834818316216178104497632 y[1] (numeric) = 0.65050401834818277652455933669203 absolute error = 3.8563722170828429e-16 relative error = 5.9282834668343500013957023584734e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.261 Order of pole = 2.178 x[1] = 0.762 y[1] (analytic) = 0.65113697692765585399810551296651 y[1] (numeric) = 0.65113697692765546938320197484009 absolute error = 3.8461490353812642e-16 relative error = 5.9068201801855096635408515778764e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.261 Order of pole = 2.178 x[1] = 0.763 y[1] (analytic) = 0.6517693255254933142820855079063 y[1] (numeric) = 0.65176932552549293069059496513601 absolute error = 3.8359149054277029e-16 relative error = 5.8853872914853291482591758060362e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.262 Order of pole = 2.178 x[1] = 0.764 y[1] (analytic) = 0.65240106451805181430246150010213 y[1] (numeric) = 0.65240106451805143173544431634255 absolute error = 3.8256701718375958e-16 relative error = 5.8639851770685457373455462745741e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.263 Order of pole = 2.178 x[1] = 0.765 y[1] (analytic) = 0.65303219428290865497883071501561 y[1] (numeric) = 0.65303219428290827343731301983365 absolute error = 3.8154151769518196e-16 relative error = 5.8426142085406795008663092264916e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.263 Order of pole = 2.178 x[1] = 0.766 y[1] (analytic) = 0.65366271519885460756321549144051 y[1] (numeric) = 0.65366271519885422704818940735621 absolute error = 3.8051502608408430e-16 relative error = 5.8212747528107912557199408853696e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.264 Order of pole = 2.178 x[1] = 0.767 y[1] (analytic) = 0.65429262764588637543337468413477 y[1] (numeric) = 0.65429262764588599594579855323812 absolute error = 3.7948757613089665e-16 relative error = 5.7999671721241124815001117199206e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.264 Order of pole = 2.178 x[1] = 0.768 y[1] (analytic) = 0.65492193200519907699840528578902 y[1] (numeric) = 0.65492193200519869853920389592402 absolute error = 3.7845920138986500e-16 relative error = 5.7786918240945489305379947892822e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.265 Order of pole = 2.178 x[1] = 0.769 memory used=408.1MB, alloc=4.5MB, time=57.69 y[1] (analytic) = 0.65555062865917874973648561676434 y[1] (numeric) = 0.65555062865917837230655042727168 absolute error = 3.7742993518949266e-16 relative error = 5.7574490617370570588678690698641e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.266 Order of pole = 2.178 x[1] = 0.77 y[1] (analytic) = 0.65617871799139487538392025922877 y[1] (numeric) = 0.65617871799139449898410962623865 absolute error = 3.7639981063299012e-16 relative error = 5.7362392334998927128141213363108e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.266 Order of pole = 2.178 x[1] = 0.771 y[1] (analytic) = 0.65680620038659292629396038611918 y[1] (numeric) = 0.65680620038659255092509978738593 absolute error = 3.7536886059873325e-16 relative error = 5.7150626832967315066619395607501e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.267 Order of pole = 2.178 x[1] = 0.772 y[1] (analytic) = 0.65743307623068693298319124553388 y[1] (numeric) = 0.65743307623068655864607350480407 absolute error = 3.7433711774072981e-16 relative error = 5.6939197505386620007780360964885e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.268 Order of pole = 2.178 x[1] = 0.773 y[1] (analytic) = 0.65805934591075207288260129832832 y[1] (numeric) = 0.65805934591075169957798680923426 absolute error = 3.7330461448909406e-16 relative error = 5.6728107701660500421896204347659e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.268 Order of pole = 2.178 x[1] = 0.774 y[1] (analytic) = 0.65868500981501728030977486128001 y[1] (numeric) = 0.65868500981501690803839181075063 absolute error = 3.7227138305052938e-16 relative error = 5.6517360726802744603156356968105e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.269 Order of pole = 2.178 x[1] = 0.775 y[1] (analytic) = 0.65931006833285787767798207047818 y[1] (numeric) = 0.65931006833285750644052666165941 absolute error = 3.7123745540881877e-16 relative error = 5.6306959841753336987680611418741e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.269 Order of pole = 2.178 x[1] = 0.776 y[1] (analytic) = 0.65993452185478822795727653968384 y[1] (numeric) = 0.65993452185478785775441321436064 absolute error = 3.7020286332532320e-16 relative error = 5.6096908263693244789956591139571e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.27 Order of pole = 2.178 x[1] = 0.777 y[1] (analytic) = 0.66055837077245440840205223623725 y[1] (numeric) = 0.66055837077245403923441389674973 absolute error = 3.6916763833948752e-16 relative error = 5.5887209166357896435646194552473e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.271 Order of pole = 2.178 x[1] = 0.778 y[1] (analytic) = 0.66118161547862690555885682244484 y[1] (numeric) = 0.66118161547862653742704505309085 absolute error = 3.6813181176935399e-16 relative error = 5.5677865680349376383208573590471e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.271 Order of pole = 2.178 x[1] = 0.779 y[1] (analytic) = 0.66180425636719333156760900287767 y[1] (numeric) = 0.66180425636719296447219429079446 absolute error = 3.6709541471208321e-16 relative error = 5.5468880893447318396224074615808e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.272 Order of pole = 2.178 x[1] = 0.78 y[1] (analytic) = 0.66242629383315116176872226712701 y[1] (numeric) = 0.66242629383315079571024422264461 absolute error = 3.6605847804448240e-16 relative error = 5.5260257850918505089996619247575e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.272 Order of pole = 2.179 x[1] = 0.781 y[1] (analytic) = 0.66304772827260049362799681260274 y[1] (numeric) = 0.66304772827260012860696438906192 absolute error = 3.6502103242354082e-16 relative error = 5.5051999555825157349568356919608e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.273 Order of pole = 2.179 x[1] = 0.782 y[1] (analytic) = 0.66366856008273682699050536209043 y[1] (numeric) = 0.6636685600827364630073970751181 absolute error = 3.6398310828697233e-16 relative error = 5.4844108969331928944706919438013e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.274 Order of pole = 2.179 x[1] = 0.783 y[1] (analytic) = 0.66428878966184386567406704501692 y[1] (numeric) = 0.664288789661843502729331191252 absolute error = 3.6294473585376492e-16 relative error = 5.4636589011011595924595430269998e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.274 Order of pole = 2.179 x[1] = 0.784 y[1] (analytic) = 0.6649084174092863404122764785805 y[1] (numeric) = 0.66490841740928597850633135384341 absolute error = 3.6190594512473709e-16 relative error = 5.4429442559149437935729296272155e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.275 Order of pole = 2.179 x[1] = 0.785 y[1] (analytic) = 0.66552744372550285315643265380409 y[1] (numeric) = 0.66552744372550249228966677070307 absolute error = 3.6086676588310102e-16 relative error = 5.4222672451046317606168491527875e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.276 Order of pole = 2.179 x[1] = 0.786 y[1] (analytic) = 0.66614586901199874274509419075016 y[1] (numeric) = 0.66614586901199838291786649571784 absolute error = 3.5982722769503232e-16 relative error = 5.4016281483320441538961255916008e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.276 Order of pole = 2.179 x[1] = 0.787 y[1] (analytic) = 0.6667636936713389719493739650383 y[1] (numeric) = 0.66676369367133861316201405479189 absolute error = 3.5878735991024641e-16 relative error = 5.3810272412207825536884232966404e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.277 Order of pole = 2.179 x[1] = 0.788 y[1] (analytic) = 0.6673809181071410359014770127346 y[1] (numeric) = 0.66738091810714067815428535015337 absolute error = 3.5774719166258123e-16 relative error = 5.3604647953861434032025014843304e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.277 Order of pole = 2.179 x[1] = 0.789 y[1] (analytic) = 0.66799754272406789191338098080874 y[1] (numeric) = 0.66799754272406753520662911022238 absolute error = 3.5670675187058636e-16 relative error = 5.3399410784649020765023297289862e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.278 Order of pole = 2.179 x[1] = 0.79 y[1] (analytic) = 0.66861356792782091069195819371662 y[1] (numeric) = 0.66861356792782055502588895559836 absolute error = 3.5566606923811826e-16 relative error = 5.3194563541449642183391346240131e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.279 Order of pole = 2.18 x[1] = 0.791 y[1] (analytic) = 0.66922899412513284895624264117225 y[1] (numeric) = 0.66922899412513249433107038623053 absolute error = 3.5462517225494172e-16 relative error = 5.2990108821948871982985559532521e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.279 Order of pole = 2.18 x[1] = 0.792 y[1] (analytic) = 0.66984382172376084346195384560104 y[1] (numeric) = 0.66984382172376048987786464826383 absolute error = 3.5358408919733721e-16 relative error = 5.2786049184932685254834855611278e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.28 Order of pole = 2.18 x[1] = 0.793 y[1] (analytic) = 0.67045805113247942643780262777169 y[1] (numeric) = 0.67045805113247907389495449905748 absolute error = 3.5254284812871421e-16 relative error = 5.2582387150580039062817777377795e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.281 Order of pole = 2.18 x[1] = 0.794 y[1] (analytic) = 0.67107168276107356243752124321432 y[1] (numeric) = 0.67107168276107321093604434298405 absolute error = 3.5150147690023027e-16 relative error = 5.2379125200754126868522983810932e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.281 Order of pole = 2.18 x[1] = 0.795 y[1] (analytic) = 0.67168471702033170661098219765699 y[1] (numeric) = 0.67168471702033135615097904624117 memory used=412.0MB, alloc=4.5MB, time=58.23 absolute error = 3.5046000315141582e-16 relative error = 5.2176265779292324544759290746126e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.282 Order of pole = 2.18 x[1] = 0.796 y[1] (analytic) = 0.6722971543220388843971962541381 y[1] (numeric) = 0.67229715432203853497874194333361 absolute error = 3.4941845431080449e-16 relative error = 5.1973811292294806878743650661347e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.283 Order of pole = 2.18 x[1] = 0.797 y[1] (analytic) = 0.67290899507896979264141070485116 y[1] (numeric) = 0.67290899507896944426455310828216 absolute error = 3.4837685759656900e-16 relative error = 5.1771764108411858164681966247512e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.283 Order of pole = 2.181 x[1] = 0.798 y[1] (analytic) = 0.67352023970488192213796388420386 y[1] (numeric) = 0.67352023970488157480272386704151 absolute error = 3.4733524001716235e-16 relative error = 5.1570126559129851279944222749981e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.284 Order of pole = 2.181 x[1] = 0.799 y[1] (analytic) = 0.67413088861450870159999113297004 y[1] (numeric) = 0.67413088861450835530636276100568 absolute error = 3.4629362837196436e-16 relative error = 5.1368900939055917255822556296977e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.284 Order of pole = 2.181 x[1] = 0.8 y[1] (analytic) = 0.67474094222355266305652097360981 y[1] (numeric) = 0.67474094222355231780447172167644 absolute error = 3.4525204925193337e-16 relative error = 5.1168089506201291587511634968977e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.285 Order of pole = 2.181 x[1] = 0.801 y[1] (analytic) = 0.67535040094867862867694811055325 y[1] (numeric) = 0.67535040094867828446641907029024 absolute error = 3.4421052904026301e-16 relative error = 5.0967694482263338396987343630540e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.286 Order of pole = 2.181 x[1] = 0.802 y[1] (analytic) = 0.67595926520750691902232201310071 y[1] (numeric) = 0.67595926520750657585322810005674 absolute error = 3.4316909391304397e-16 relative error = 5.0767718052906256475451233079090e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.286 Order of pole = 2.181 x[1] = 0.803 y[1] (analytic) = 0.67656753541860658272234625909796 y[1] (numeric) = 0.67656753541860624059457641916731 absolute error = 3.4212776983993065e-16 relative error = 5.0568162368040463775084674297008e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.287 Order of pole = 2.181 x[1] = 0.804 y[1] (analytic) = 0.67717521200148864757644450110429 y[1] (numeric) = 0.67717521200148830648986191629166 absolute error = 3.4108658258481263e-16 relative error = 5.0369029542100665767199243501997e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.288 Order of pole = 2.182 x[1] = 0.805 y[1] (analytic) = 0.67778229537659939307671384969174 y[1] (numeric) = 0.67778229537659905303115614320094 absolute error = 3.4004555770649080e-16 relative error = 5.0170321654322598253350060076783e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.288 Order of pole = 2.182 x[1] = 0.806 y[1] (analytic) = 0.67838878596531364435005563700132 y[1] (numeric) = 0.67838878596531330534533507764321 absolute error = 3.3900472055935811e-16 relative error = 4.9972040749018452934706922104707e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.289 Order of pole = 2.182 x[1] = 0.807 y[1] (analytic) = 0.67899468418992808751624691384673 y[1] (numeric) = 0.67899468418992774955215061976188 absolute error = 3.3796409629408485e-16 relative error = 4.9774188835850986584063291024667e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.29 Order of pole = 2.182 x[1] = 0.808 y[1] (analytic) = 0.6795999904736546064581936315132 y[1] (numeric) = 0.67959999047365426953448377320494 absolute error = 3.3692370985830826e-16 relative error = 4.9576767890106298435264089097870e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.29 Order of pole = 2.182 x[1] = 0.809 y[1] (analytic) = 0.68020470524061364100008825087016 y[1] (numeric) = 0.68020470524061330511650225354356 absolute error = 3.3588358599732660e-16 relative error = 4.9379779852965308991497220749635e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.291 Order of pole = 2.182 x[1] = 0.81 y[1] (analytic) = 0.68080882891582756648868049233182 y[1] (numeric) = 0.68080882891582723164493123753454 absolute error = 3.3484374925479728e-16 relative error = 4.9183226631773895331688107562493e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.291 Order of pole = 2.183 x[1] = 0.811 y[1] (analytic) = 0.68141236192521409477236007630161 y[1] (numeric) = 0.68141236192521376096813610286232 absolute error = 3.3380422397343929e-16 relative error = 4.8987110100311732197981280063691e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.292 Order of pole = 2.183 x[1] = 0.812 y[1] (analytic) = 0.68201530469557969657224459067786 y[1] (numeric) = 0.68201530469557936380721029493833 absolute error = 3.3276503429573953e-16 relative error = 4.8791432099059793921003733911069e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.293 Order of pole = 2.183 x[1] = 0.813 y[1] (analytic) = 0.68261765765461304523896404534848 y[1] (numeric) = 0.68261765765461271351275988068526 absolute error = 3.3172620416466322e-16 relative error = 4.8596194435466557486916043247006e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.293 Order of pole = 2.183 x[1] = 0.814 y[1] (analytic) = 0.68321942123087848188833621884604 y[1] (numeric) = 0.68321942123087815120057889447794 absolute error = 3.3068775732436810e-16 relative error = 4.8401398884212877936239344972868e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.294 Order of pole = 2.183 x[1] = 0.815 y[1] (analytic) = 0.68382059585380950190863355487523 y[1] (numeric) = 0.6838205958538091722589162339528 absolute error = 3.2964971732092243e-16 relative error = 4.8207047187475551321140752452481e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.295 Order of pole = 2.183 x[1] = 0.816 y[1] (analytic) = 0.68442118195370226283165311158532 y[1] (numeric) = 0.68442118195370193421954560855867 absolute error = 3.2861210750302665e-16 relative error = 4.8013141055189558386870515586991e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.295 Order of pole = 2.184 x[1] = 0.817 y[1] (analytic) = 0.68502117996170911355931588948628 y[1] (numeric) = 0.68502117996170878598436486674753 absolute error = 3.2757495102273875e-16 relative error = 4.7819682165309009889915308242784e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.296 Order of pole = 2.184 x[1] = 0.818 y[1] (analytic) = 0.68562059030983214493704074996715 y[1] (numeric) = 0.68562059030983181839876991376415 absolute error = 3.2653827083620300e-16 relative error = 4.7626672164066755940328374100939e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.297 Order of pole = 2.184 x[1] = 0.819 y[1] (analytic) = 0.68621941343091676166466107056475 y[1] (numeric) = 0.68621941343091643616257136618251 absolute error = 3.2550208970438224e-16 relative error = 4.7434112666232702130550657883528e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.297 Order of pole = 2.184 x[1] = 0.82 y[1] (analytic) = 0.6868176497586452755351792504699 y[1] (numeric) = 0.68681764975864495106874905667649 absolute error = 3.2446643019379341e-16 relative error = 4.7242005255370799165652823631414e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.298 Order of pole = 2.184 x[1] = 0.821 y[1] (analytic) = 0.68741529972753051999118516519992 y[1] (numeric) = 0.68741529972753019655987048795341 absolute error = 3.2343131467724651e-16 relative error = 4.7050351484094747095537828569528e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=415.8MB, alloc=4.5MB, time=58.79 Complex estimate of poles used Radius of convergence = 1.298 Order of pole = 2.184 x[1] = 0.822 y[1] (analytic) = 0.68801236377290948598829965778962 y[1] (numeric) = 0.68801236377290916359153432320312 absolute error = 3.2239676533458650e-16 relative error = 4.6859152874322356091238368168001e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.299 Order of pole = 2.185 x[1] = 0.823 y[1] (analytic) = 0.68860884233093697915454313007522 y[1] (numeric) = 0.68860884233093665779173897663669 absolute error = 3.2136280415343853e-16 relative error = 4.6668410917528633867019345451884e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.3 Order of pole = 2.185 x[1] = 0.824 y[1] (analytic) = 0.68920473583857929823407224641217 y[1] (numeric) = 0.68920473583857897790461931645617 absolute error = 3.2032945292995600e-16 relative error = 4.6478127074997540192776722260824e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.3 Order of pole = 2.185 x[1] = 0.825 y[1] (analytic) = 0.68980004473360793480327466816595 y[1] (numeric) = 0.68980004473360761550654139859427 absolute error = 3.1929673326957168e-16 relative error = 4.6288302778072455143870046818345e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.301 Order of pole = 2.185 x[1] = 0.826 y[1] (analytic) = 0.69039476945459329424676258516441 y[1] (numeric) = 0.69039476945459297598209599741279 absolute error = 3.1826466658775162e-16 relative error = 4.6098939428405334954035910647783e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.302 Order of pole = 2.185 x[1] = 0.827 y[1] (analytic) = 0.69098891044089843798036058456422 y[1] (numeric) = 0.69098891044089812074708647381235 absolute error = 3.1723327411075187e-16 relative error = 4.5910038398204571449074672935660e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.302 Order of pole = 2.185 x[1] = 0.828 y[1] (analytic) = 0.69158246813267284690774208276376 y[1] (numeric) = 0.69158246813267253070516520638595 absolute error = 3.1620257687637781e-16 relative error = 4.5721601030481539081042841174156e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.303 Order of pole = 2.186 x[1] = 0.829 y[1] (analytic) = 0.69217544297084620609693112653644 y[1] (numeric) = 0.69217544297084589092433539179019 absolute error = 3.1517259573474625e-16 relative error = 4.5533628639295865665388689689995e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.304 Order of pole = 2.186 x[1] = 0.83 y[1] (analytic) = 0.69276783539712221066245282985001 y[1] (numeric) = 0.69276783539712189651910148080014 absolute error = 3.1414335134904987e-16 relative error = 4.5346122509999377473780423046797e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.304 Order of pole = 2.186 x[1] = 0.831 y[1] (analytic) = 0.69335964585397239283848603721595 y[1] (numeric) = 0.69335964585397207972362184089162 absolute error = 3.1311486419632433e-16 relative error = 4.5159083899478779247338742983425e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.305 Order of pole = 2.186 x[1] = 0.832 y[1] (analytic) = 0.69395087478462997022794597715901 y[1] (numeric) = 0.69395087478462965814079140894144 absolute error = 3.1208715456821757e-16 relative error = 4.4972514036397012521877635821734e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.306 Order of pole = 2.186 x[1] = 0.833 y[1] (analytic) = 0.69454152263308371521200267474446 y[1] (numeric) = 0.69454152263308340415176010298292 absolute error = 3.1106024257176154e-16 relative error = 4.4786414121433339671490051835892e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.306 Order of pole = 2.186 x[1] = 0.834 y[1] (analytic) = 0.69513158984407184550412271423008 y[1] (numeric) = 0.69513158984407153546997458408389 absolute error = 3.1003414813014619e-16 relative error = 4.4600785327522141736052204628547e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.307 Order of pole = 2.186 x[1] = 0.835 y[1] (analytic) = 0.69572107686307593583230756595716 y[1] (numeric) = 0.69572107686307562682341658246171 absolute error = 3.0900889098349545e-16 relative error = 4.4415628800090403769486469869518e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.308 Order of pole = 2.187 x[1] = 0.836 y[1] (analytic) = 0.69630998413631485073279109964804 y[1] (numeric) = 0.69630998413631454274830041000252 absolute error = 3.0798449068964552e-16 relative error = 4.4230945657293946319396421285383e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.308 Order of pole = 2.187 x[1] = 0.837 y[1] (analytic) = 0.69689831211073869843805208337957 y[1] (numeric) = 0.6968983121107383914770854584546 absolute error = 3.0696096662492497e-16 relative error = 4.4046736990252343551746545023887e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.309 Order of pole = 2.187 x[1] = 0.838 y[1] (analytic) = 0.6974860612340228058415943976546 y[1] (numeric) = 0.69748606123402249990325641271764 absolute error = 3.0593833798493696e-16 relative error = 4.3863003863282585031149338807674e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.309 Order of pole = 2.187 x[1] = 0.839 y[1] (analytic) = 0.69807323195456171452154836115342 y[1] (numeric) = 0.69807323195456140960492457581023 absolute error = 3.0491662378534319e-16 relative error = 4.3679747314131437470855687344435e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.31 Order of pole = 2.187 x[1] = 0.84 y[1] (analytic) = 0.69865982472146319780475095283515 y[1] (numeric) = 0.69865982472146289390890809018544 absolute error = 3.0389584286264971e-16 relative error = 4.3496968354206537452713319841012e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.311 Order of pole = 2.187 x[1] = 0.841 y[1] (analytic) = 0.69924583998454229885257080795234 y[1] (numeric) = 0.69924583998454199597655693295787 absolute error = 3.0287601387499447e-16 relative error = 4.3314667968806210120266042949124e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.311 Order of pole = 2.187 x[1] = 0.842 y[1] (analytic) = 0.69983127819431538974935564708506 y[1] (numeric) = 0.69983127819431508789220034414851 absolute error = 3.0185715530293655e-16 relative error = 4.3132847117348017419411695377992e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.312 Order of pole = 2.188 x[1] = 0.843 y[1] (analytic) = 0.70041613980199425157399525129839 y[1] (numeric) = 0.70041613980199395073470980105153 absolute error = 3.0083928545024686e-16 relative error = 4.2951506733596017985551078396697e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.313 Order of pole = 2.188 x[1] = 0.844 y[1] (analytic) = 0.70100042525948017543471220675283 y[1] (numeric) = 0.70100042525947987561228976205229 absolute error = 2.9982242244470054e-16 relative error = 4.2770647725886783627314666317113e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.313 Order of pole = 2.188 x[1] = 0.845 y[1] (analytic) = 0.70158413501935808444681539228811 y[1] (numeric) = 0.70158413501935778564023115341741 absolute error = 2.9880658423887070e-16 relative error = 4.2590270977354132926349065693541e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.314 Order of pole = 2.188 x[1] = 0.846 y[1] (analytic) = 0.70216726953489067663277755736639 y[1] (numeric) = 0.70216726953489037884098894644283 absolute error = 2.9779178861092356e-16 relative error = 4.2410377346152602514807641165641e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.315 Order of pole = 2.188 x[1] = 0.847 y[1] (analytic) = 0.70274982926001258872362831897636 y[1] (numeric) = 0.70274982926001229194557515356141 absolute error = 2.9677805316541495e-16 relative error = 4.2230967665679662190202807028074e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=419.6MB, alloc=4.5MB, time=59.33 Complex estimate of poles used Radius of convergence = 1.315 Order of pole = 2.188 x[1] = 0.848 y[1] (analytic) = 0.70333181464932458084028747831459 y[1] (numeric) = 0.70333181464932428507489214422649 absolute error = 2.9576539533408810e-16 relative error = 4.2052042744796675685790955019881e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.316 Order of pole = 2.188 x[1] = 0.849 y[1] (analytic) = 0.70391322615808774203310070489447 y[1] (numeric) = 0.70391322615808744727926832822198 absolute error = 2.9475383237667249e-16 relative error = 4.1873603368048586137456036780424e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.317 Order of pole = 2.188 x[1] = 0.85 y[1] (analytic) = 0.704494064242217716657480340782 y[1] (numeric) = 0.70449406424221742291409895909798 absolute error = 2.9374338138168402e-16 relative error = 4.1695650295882374944727109255769e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.317 Order of pole = 2.188 x[1] = 0.851 y[1] (analytic) = 0.7050743293582789515631983244893 y[1] (numeric) = 0.70507432935827865882913905726323 absolute error = 2.9273405926722607e-16 relative error = 4.1518184264864244505456616202188e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.318 Order of pole = 2.188 x[1] = 0.852 y[1] (analytic) = 0.70565402196347896407452600621932 y[1] (numeric) = 0.7056540219634786723486432244276 absolute error = 2.9172588278179172e-16 relative error = 4.1341205987895574793572642425481e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.319 Order of pole = 2.189 x[1] = 0.853 y[1] (analytic) = 0.70623314251566263073806690717074 y[1] (numeric) = 0.70623314251566234001919840210398 absolute error = 2.9071886850506676e-16 relative error = 4.1164716154427612764485720383516e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.319 Order of pole = 2.189 x[1] = 0.854 y[1] (analytic) = 0.70681169147330649681478324898522 y[1] (numeric) = 0.70681169147330620710175040025149 absolute error = 2.8971303284873373e-16 relative error = 4.0988715430674940110136342454932e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.32 Order of pole = 2.189 x[1] = 0.855 y[1] (analytic) = 0.70738966929551310649237532863155 y[1] (numeric) = 0.70738966929551281778398327135488 absolute error = 2.8870839205727667e-16 relative error = 4.0813204459827685388727176205866e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.321 Order of pole = 2.189 x[1] = 0.856 y[1] (analytic) = 0.70796707644200535379383452253935 y[1] (numeric) = 0.70796707644200506608887231375264 absolute error = 2.8770496220878671e-16 relative error = 4.0638183862262510304111603166133e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.321 Order of pole = 2.189 x[1] = 0.857 y[1] (analytic) = 0.7085439133731208541576558550652 y[1] (numeric) = 0.70854391337312056745489663929689 absolute error = 2.8670275921576831e-16 relative error = 4.0463654235752354518097500249214e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.322 Order of pole = 2.189 x[1] = 0.858 y[1] (analytic) = 0.70912018054980633666486464382927 y[1] (numeric) = 0.70912018054980605096306581788311 absolute error = 2.8570179882594616e-16 relative error = 4.0289616155674951650388525018089e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.323 Order of pole = 2.189 x[1] = 0.859 y[1] (analytic) = 0.70969587843361205688768372151701 y[1] (numeric) = 0.7096958784336117721855870984443 absolute error = 2.8470209662307271e-16 relative error = 4.0116070175220123368212855236505e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.323 Order of pole = 2.189 x[1] = 0.86 y[1] (analytic) = 0.71027100748668623033434311380219 y[1] (numeric) = 0.71027100748668594663067508606607 absolute error = 2.8370366802773612e-16 relative error = 3.9943016825595833046539549784477e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.324 Order of pole = 2.189 x[1] = 0.861 y[1] (analytic) = 0.71084556817176948646421280950628 y[1] (numeric) = 0.71084556817176920375768451133744 absolute error = 2.8270652829816884e-16 relative error = 3.9770456616233039650297708716785e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.325 Order of pole = 2.189 x[1] = 0.862 y[1] (analytic) = 0.71141956095218934324712137534374 y[1] (numeric) = 0.71141956095218906153642884428732 absolute error = 2.8171069253105642e-16 relative error = 3.9598390034989306449404029140093e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.325 Order of pole = 2.189 x[1] = 0.863 y[1] (analytic) = 0.71199298629185470224040862698539 y[1] (numeric) = 0.71199298629185442152423296463852 absolute error = 2.8071617566234687e-16 relative error = 3.9426817548351220561236030011343e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.326 Order of pole = 2.189 x[1] = 0.864 y[1] (analytic) = 0.7125658446552503641569493540621 y[1] (numeric) = 0.71256584465525008443395688600192 absolute error = 2.7972299246806018e-16 relative error = 3.9255739601635579280976466094946e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.327 Order of pole = 2.189 x[1] = 0.865 y[1] (analytic) = 0.71313813650743156489707719248401 y[1] (numeric) = 0.71313813650743128616591962738586 absolute error = 2.7873115756509815e-16 relative error = 3.9085156619189375131773040387454e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.327 Order of pole = 2.189 x[1] = 0.866 y[1] (analytic) = 0.7137098623140185320170331264127 y[1] (numeric) = 0.71370986231401825427634771435822 absolute error = 2.7774068541205448e-16 relative error = 3.8915069004588583305631198517321e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.328 Order of pole = 2.189 x[1] = 0.867 y[1] (analytic) = 0.71428102254119106160626176773712 y[1] (numeric) = 0.71428102254119078485467145771229 absolute error = 2.7675159031002483e-16 relative error = 3.8745477140835721509215693520842e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.328 Order of pole = 2.189 x[1] = 0.868 y[1] (analytic) = 0.71485161765568311554558048630709 y[1] (numeric) = 0.7148516176556828397816940828899 absolute error = 2.7576388640341719e-16 relative error = 3.8576381390556240517485647256749e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.329 Order of pole = 2.189 x[1] = 0.869 y[1] (analytic) = 0.7154216481247774391179516328036 y[1] (numeric) = 0.71542164812477716434036395204147 absolute error = 2.7477758768076213e-16 relative error = 3.8407782096193695704098456902560e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.33 Order of pole = 2.189 x[1] = 0.87 y[1] (analytic) = 0.71599111441630019894329649130695 y[1] (numeric) = 0.71599111441629992515058851578383 absolute error = 2.7379270797552312e-16 relative error = 3.8239679580203736695024502715844e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.33 Order of pole = 2.189 x[1] = 0.871 y[1] (analytic) = 0.71656001699861564120850120369166 y[1] (numeric) = 0.7165600169986153683992402367849 absolute error = 2.7280926096690676e-16 relative error = 3.8072074145246903178179374430983e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.331 Order of pole = 2.189 x[1] = 0.872 y[1] (analytic) = 0.71712835634062077016347970626342 y[1] (numeric) = 0.71712835634062049833621952559053 absolute error = 2.7182726018067289e-16 relative error = 3.7904966074380233073260367657310e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.332 Order of pole = 2.189 x[1] = 0.873 y[1] (analytic) = 0.71769613291174004685387669388919 y[1] (numeric) = 0.71769613291173977600715770394463 absolute error = 2.7084671898994456e-16 relative error = 3.7738355631247690587495000192002e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=423.4MB, alloc=4.5MB, time=59.87 Complex estimate of poles used Radius of convergence = 1.332 Order of pole = 2.189 x[1] = 0.874 y[1] (analytic) = 0.71826334718192010806071476159228 y[1] (numeric) = 0.71826334718191983819306414557441 absolute error = 2.6986765061601787e-16 relative error = 3.7572243060269425779834963196504e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.333 Order of pole = 2.189 x[1] = 0.875 y[1] (analytic) = 0.7188299996216245054170141515259 y[1] (numeric) = 0.71882999962162423652694602235459 absolute error = 2.6889006812917131e-16 relative error = 3.7406628586829824286999418170882e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.334 Order of pole = 2.189 x[1] = 0.876 y[1] (analytic) = 0.71939609070182846467114093774452 y[1] (numeric) = 0.71939609070182819675715648826937 absolute error = 2.6791398444947515e-16 relative error = 3.7241512417464433978254880367129e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.334 Order of pole = 2.189 x[1] = 0.877 y[1] (analytic) = 0.71996162089401366506636999560608 y[1] (numeric) = 0.71996162089401339812695764800595 absolute error = 2.6693941234760013e-16 relative error = 3.7076894740045674162702938572506e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.335 Order of pole = 2.189 x[1] = 0.878 y[1] (analytic) = 0.72052659067016303880588271031575 y[1] (numeric) = 0.72052659067016277283951826468974 absolute error = 2.6596636444562601e-16 relative error = 3.6912775723967415345582152316250e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.336 Order of pole = 2.189 x[1] = 0.879 y[1] (analytic) = 0.72109100050275559057215606341951 y[1] (numeric) = 0.72109100050275532557730284556996 absolute error = 2.6499485321784955e-16 relative error = 3.6749155520328379654369970415136e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.336 Order of pole = 2.189 x[1] = 0.88 y[1] (analytic) = 0.7216548508647612370694394803436 y[1] (numeric) = 0.72165485086476097304454848875159 absolute error = 2.6402489099159201e-16 relative error = 3.6586034262114384393078031014070e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.337 Order of pole = 2.189 x[1] = 0.881 y[1] (analytic) = 0.72221814222963566655775860972884 y[1] (numeric) = 0.72221814222963540350126866172266 absolute error = 2.6305648994800618e-16 relative error = 3.6423412064379439934213561696143e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.338 Order of pole = 2.189 x[1] = 0.882 y[1] (analytic) = 0.72278087507131521834663101971347 y[1] (numeric) = 0.72278087507131495625696889683071 absolute error = 2.6208966212288276e-16 relative error = 3.6261289024425686769441412284983e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.338 Order of pole = 2.189 x[1] = 0.883 y[1] (analytic) = 0.72334304986421178221642762087224 y[1] (numeric) = 0.72334304986421152109200821341605 absolute error = 2.6112441940745619e-16 relative error = 3.6099665221982195312551315825792e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.339 Order of pole = 2.189 x[1] = 0.884 y[1] (analytic) = 0.72390466708320771773506544363048 y[1] (numeric) = 0.72390466708320745757429189442076 absolute error = 2.6016077354920972e-16 relative error = 3.5938540719382609047347744305041e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.34 Order of pole = 2.189 x[1] = 0.885 y[1] (analytic) = 0.72446572720365079343747219306286 y[1] (numeric) = 0.72446572720365053423873604038294 absolute error = 2.5919873615267992e-16 relative error = 3.5777915561741668296079968468056e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.34 Order of pole = 2.189 x[1] = 0.886 y[1] (analytic) = 0.72502623070134914583502075949023 y[1] (numeric) = 0.72502623070134888759670207922996 absolute error = 2.5823831868026027e-16 relative error = 3.5617789777130574383878687025495e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.341 Order of pole = 2.189 x[1] = 0.887 y[1] (analytic) = 0.72558617805256625822189256265554 y[1] (numeric) = 0.72558617805256600094236010965146 absolute error = 2.5727953245300408e-16 relative error = 3.5458163376751238262787911691632e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.342 Order of pole = 2.189 x[1] = 0.888 y[1] (analytic) = 0.7261455697340159592450922339541 y[1] (numeric) = 0.7261455697340157029227035825275 absolute error = 2.5632238865142660e-16 relative error = 3.5299036355109403648205676587339e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.342 Order of pole = 2.189 x[1] = 0.889 y[1] (analytic) = 0.72670440622285744120460267869537 y[1] (numeric) = 0.72670440622285718583770436238924 absolute error = 2.5536689831630613e-16 relative error = 3.5140408690186627871389326008436e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.343 Order of pole = 2.188 x[1] = 0.89 y[1] (analytic) = 0.72726268799669029804993899218082 y[1] (numeric) = 0.72726268799669004363686664269648 absolute error = 2.5441307234948434e-16 relative error = 3.4982280343611158725457438447205e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.344 Order of pole = 2.188 x[1] = 0.891 y[1] (analytic) = 0.72782041553354958303913201300904 y[1] (numeric) = 0.72782041553354932957821049834341 absolute error = 2.5346092151466563e-16 relative error = 3.4824651260827693106550468774600e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.344 Order of pole = 2.188 x[1] = 0.892 y[1] (analytic) = 0.72837758931190088602594746799975 y[1] (numeric) = 0.72837758931190063351549102978433 absolute error = 2.5251045643821542e-16 relative error = 3.4667521371266011546627448000063e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.345 Order of pole = 2.188 x[1] = 0.893 y[1] (analytic) = 0.72893420981063543034092467901531 y[1] (numeric) = 0.72893420981063517877923706905782 absolute error = 2.5156168760995749e-16 relative error = 3.4510890588508514293552428351686e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.346 Order of pole = 2.188 x[1] = 0.894 y[1] (analytic) = 0.72949027750906518923159964632426 y[1] (numeric) = 0.72949027750906493861697426235398 absolute error = 2.5061462538397028e-16 relative error = 3.4354758810456655620577815377991e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.346 Order of pole = 2.188 x[1] = 0.895 y[1] (analytic) = 0.73004579288691802182706097959097 y[1] (numeric) = 0.73004579288691777215778100020899 absolute error = 2.4966927997938198e-16 relative error = 3.4199125919496262080044709489862e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.347 Order of pole = 2.188 x[1] = 0.896 y[1] (analytic) = 0.73060075642433282859177359970418 y[1] (numeric) = 0.73060075642433257986611211853957 absolute error = 2.4872566148116461e-16 relative error = 3.4043991782661771116902640775464e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.348 Order of pole = 2.188 x[1] = 0.897 y[1] (analytic) = 0.73115516860185472623339436611259 y[1] (numeric) = 0.73115516860185447844961452518575 absolute error = 2.4778377984092684e-16 relative error = 3.3889356251799364660781993617473e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.348 Order of pole = 2.188 x[1] = 0.898 y[1] (analytic) = 0.73170902990043024202909577878 y[1] (numeric) = 0.73170902990042999518545090107434 absolute error = 2.4684364487770566e-16 relative error = 3.3735219163729021640238481939211e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.349 Order of pole = 2.187 x[1] = 0.899 y[1] (analytic) = 0.73226234080140252753470864499028 y[1] (numeric) = 0.73226234080140228162944236623355 absolute error = 2.4590526627875673e-16 relative error = 3.3581580340405474951216487316567e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop memory used=427.2MB, alloc=4.5MB, time=60.41 Complex estimate of poles used Radius of convergence = 1.35 Order of pole = 2.187 x[1] = 0.9 y[1] (analytic) = 0.73281510178650659164079207273428 y[1] (numeric) = 0.73281510178650634667213847239069 absolute error = 2.4496865360034359e-16 relative error = 3.3428439589078106231498167151676e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.35 Order of pole = 2.187 x[1] = 0.901 y[1] (analytic) = 0.73336731333786455293953933803141 y[1] (numeric) = 0.73336731333786430890572306950601 absolute error = 2.4403381626852540e-16 relative error = 3.3275796702449742020912541821047e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.351 Order of pole = 2.187 x[1] = 0.902 y[1] (analytic) = 0.73391897593798091136623105704051 y[1] (numeric) = 0.73391897593798066826546747709707 absolute error = 2.4310076357994344e-16 relative error = 3.3123651458834391380690393905947e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.352 Order of pole = 2.187 x[1] = 0.903 y[1] (analytic) = 0.73447009006973783907875265898499 y[1] (numeric) = 0.73447009006973759690924795637879 absolute error = 2.4216950470260620e-16 relative error = 3.2972003622313910314963299264746e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.352 Order of pole = 2.187 x[1] = 0.904 y[1] (analytic) = 0.73502065621639049053850138657306 y[1] (numeric) = 0.7350206562163902492984527099 absolute error = 2.4124004867667306e-16 relative error = 3.2820852942893601525934853087557e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.353 Order of pole = 2.187 x[1] = 0.905 y[1] (analytic) = 0.73557067486156233175581893057822 y[1] (numeric) = 0.73557067486156209144341451534166 absolute error = 2.4031240441523656e-16 relative error = 3.2670199156656757955067434432504e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.354 Order of pole = 2.187 x[1] = 0.906 y[1] (analytic) = 0.73612014648924048866289931843169 y[1] (numeric) = 0.73612014648924024927631861332857 absolute error = 2.3938658070510312e-16 relative error = 3.2520041985918139465607570332627e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.354 Order of pole = 2.186 x[1] = 0.907 y[1] (analytic) = 0.73666907158377111457693780696961 y[1] (numeric) = 0.73666907158377087611435159939726 absolute error = 2.3846258620757235e-16 relative error = 3.2370381139376410066476032526212e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.355 Order of pole = 2.186 x[1] = 0.908 y[1] (analytic) = 0.73721745062985477671610526080511 y[1] (numeric) = 0.73721745062985453917567580159036 absolute error = 2.3754042945921475e-16 relative error = 3.2221216312265516767293929861887e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.356 Order of pole = 2.186 x[1] = 0.909 y[1] (analytic) = 0.73776528411254186173075381412421 y[1] (numeric) = 0.7377652841125416251106349414763 absolute error = 2.3662011887264791e-16 relative error = 3.2072547186505033258224269178319e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.356 Order of pole = 2.186 x[1] = 0.91 y[1] (analytic) = 0.73831257251722800021208349902745 y[1] (numeric) = 0.7383125725172277645104207617164 absolute error = 2.3570166273731105e-16 relative error = 3.1924373430849454873345926626447e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.357 Order of pole = 2.186 x[1] = 0.911 y[1] (analytic) = 0.73885931632964951014032596188535 y[1] (numeric) = 0.73885931632964927535525674164738 absolute error = 2.3478506922023797e-16 relative error = 3.1776694701036462478500627584114e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.358 Order of pole = 2.186 x[1] = 0.912 y[1] (analytic) = 0.73940551603587885923433036460311 y[1] (numeric) = 0.73940551603587862536398399777473 absolute error = 2.3387034636682838e-16 relative error = 3.1629510639934159268699650557978e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.358 Order of pole = 2.185 x[1] = 0.913 y[1] (analytic) = 0.73995117212232014616426806429228 y[1] (numeric) = 0.73995117212231991320676596267478 absolute error = 2.3295750210161750e-16 relative error = 3.1482820877687273598342003176218e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.359 Order of pole = 2.185 x[1] = 0.914 y[1] (analytic) = 0.74049628507570460058900666675088 y[1] (numeric) = 0.74049628507570436854246243770695 absolute error = 2.3204654422904393e-16 relative error = 3.1336625031862335836236360798505e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.36 Order of pole = 2.185 x[1] = 0.915 y[1] (analytic) = 0.74104085538308610197954054051997 y[1] (numeric) = 0.74104085538308587084206010630407 absolute error = 2.3113748043421590e-16 relative error = 3.1190922707591852007678444431648e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.36 Order of pole = 2.185 x[1] = 0.916 y[1] (analytic) = 0.74158488353183671718970384330967 y[1] (numeric) = 0.74158488353183648695938555963405 absolute error = 2.3023031828367562e-16 relative error = 3.1045713497717444235661255105799e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.361 Order of pole = 2.185 x[1] = 0.917 y[1] (analytic) = 0.74212837000964225673523353550388 y[1] (numeric) = 0.74212837000964202741016830934196 absolute error = 2.2932506522616192e-16 relative error = 3.0900996982931991474353544583208e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.362 Order of pole = 2.185 x[1] = 0.918 y[1] (analytic) = 0.74267131530449784974209372052736 y[1] (numeric) = 0.74267131530449762132036512715628 absolute error = 2.2842172859337108e-16 relative error = 3.0756772731920764757319145394643e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.362 Order of pole = 2.184 x[1] = 0.919 y[1] (analytic) = 0.74321371990470353752481894339661 y[1] (numeric) = 0.74321371990470331000450334268084 absolute error = 2.2752031560071577e-16 relative error = 3.0613040301501553881894494908889e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.363 Order of pole = 2.184 x[1] = 0.92 y[1] (analytic) = 0.74375558429885988575548278111912 y[1] (numeric) = 0.74375558429885965913464943303694 absolute error = 2.2662083334808218e-16 relative error = 3.0469799236763803955666534007650e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.364 Order of pole = 2.184 x[1] = 0.921 y[1] (analytic) = 0.74429690897586361518374915613281 y[1] (numeric) = 0.74429690897586338946046033554761 absolute error = 2.2572328882058520e-16 relative error = 3.0327049071206750539822500956800e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.364 Order of pole = 2.184 x[1] = 0.922 y[1] (analytic) = 0.7448376944249032508683172811079 y[1] (numeric) = 0.74483769442490302604062839178614 absolute error = 2.2482768888932176e-16 relative error = 3.0184789326876575728503418658830e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.365 Order of pole = 2.184 x[1] = 0.923 y[1] (analytic) = 0.74537794113545478987992698462241 y[1] (numeric) = 0.74537794113545456594588667250026 absolute error = 2.2393404031212215e-16 relative error = 3.0043019514502568441724932374165e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.366 Order of pole = 2.184 x[1] = 0.924 y[1] (analytic) = 0.7459176495972773874359493569671 y[1] (numeric) = 0.74591764959727716439359962266761 absolute error = 2.2304234973429949e-16 relative error = 2.9901739133632319203205769193503e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.366 Order of pole = 2.183 x[1] = 0.925 y[1] (analytic) = 0.74645682030040906142644817817025 y[1] (numeric) = 0.74645682030040883927382448877318 absolute error = 2.2215262368939707e-16 relative error = 2.9760947672765919189354788168260e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.367 Order of pole = 2.183 memory used=431.0MB, alloc=4.5MB, time=60.96 x[1] = 0.926 y[1] (analytic) = 0.7469954537351624152914604308347 y[1] (numeric) = 0.74699545373516219402659183090091 absolute error = 2.2126486859993379e-16 relative error = 2.9620644609489201758766181779048e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.368 Order of pole = 2.183 x[1] = 0.927 y[1] (analytic) = 0.74753355039212037920910934316415 y[1] (numeric) = 0.7475335503921201588300185650166 absolute error = 2.2037909077814755e-16 relative error = 2.9480829410606013592452280511640e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.368 Order of pole = 2.183 x[1] = 0.928 y[1] (analytic) = 0.7480711107621319695540308372817 y[1] (numeric) = 0.74807111076213175005873441054508 absolute error = 2.1949529642673662e-16 relative error = 2.9341501532269526686492159718212e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.369 Order of pole = 2.183 x[1] = 0.929 y[1] (analytic) = 0.74860813533630806658546395930997 y[1] (numeric) = 0.74860813533630784797197231971116 absolute error = 2.1861349163959881e-16 relative error = 2.9202660420112574297579717649950e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.37 Order of pole = 2.183 x[1] = 0.93 y[1] (analytic) = 0.74914462460601721032422782543075 y[1] (numeric) = 0.74914462460601699259054542286204 absolute error = 2.1773368240256871e-16 relative error = 2.9064305509377054082945981700956e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.37 Order of pole = 2.182 x[1] = 0.931 y[1] (analytic) = 0.7496805790628814145776818170566 y[1] (numeric) = 0.7496805790628811977218072229039 absolute error = 2.1685587459415270e-16 relative error = 2.8926436225042365371823561159720e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.371 Order of pole = 2.182 x[1] = 0.932 y[1] (analytic) = 0.75021599919877199907164218315471 y[1] (numeric) = 0.7502159991987717830915681968928 absolute error = 2.1598007398626191e-16 relative error = 2.8789051981952911652274423558468e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.372 Order of pole = 2.182 x[1] = 0.933 y[1] (analytic) = 0.75075088550580543964810684353473 y[1] (numeric) = 0.75075088550580522454182059859177 absolute error = 2.1510628624494296e-16 relative error = 2.8652152184944652535747067311673e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.372 Order of pole = 2.182 x[1] = 0.934 y[1] (analytic) = 0.75128523847633923648752101846173 y[1] (numeric) = 0.75128523847633902225300408735516 absolute error = 2.1423451693110657e-16 relative error = 2.8515736228970724135022260920057e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.373 Order of pole = 2.182 x[1] = 0.935 y[1] (analytic) = 0.75181905860296780031419932224089 y[1] (numeric) = 0.75181905860296758694942782098693 absolute error = 2.1336477150125396e-16 relative error = 2.8379803499226124047951983754438e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.374 Order of pole = 2.181 x[1] = 0.936 y[1] (analytic) = 0.75235234637851835654340513644584 y[1] (numeric) = 0.75235234637851814404634982824482 absolute error = 2.1249705530820102e-16 relative error = 2.8244353371271465112538029752286e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.374 Order of pole = 2.181 x[1] = 0.937 y[1] (analytic) = 0.75288510229604686732847540727496 y[1] (numeric) = 0.75288510229604665569710180547466 absolute error = 2.1163137360180030e-16 relative error = 2.8109385211155811349429446999039e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.375 Order of pole = 2.181 x[1] = 0.938 y[1] (analytic) = 0.75341732684883397146626847621346 y[1] (numeric) = 0.75341732684883376069853694655272 absolute error = 2.1076773152966074e-16 relative error = 2.7974898375538592154073072538180e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.376 Order of pole = 2.181 x[1] = 0.939 y[1] (analytic) = 0.75394902053038094211910413889271 y[1] (numeric) = 0.75394902053038073221297000102763 absolute error = 2.0990613413786508e-16 relative error = 2.7840892211810593452675975924869e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.376 Order of pole = 2.181 x[1] = 0.94 y[1] (analytic) = 0.75448018383440566231125881895763 y[1] (numeric) = 0.75448018383440545326467244727254 absolute error = 2.0904658637168509e-16 relative error = 2.7707366058214051028687405800292e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.377 Order of pole = 2.181 x[1] = 0.941 y[1] (analytic) = 0.75501081725483861815797452710932 y[1] (numeric) = 0.75501081725483840996888145081492 absolute error = 2.0818909307629440e-16 relative error = 2.7574319243961823380368766348496e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.378 Order of pole = 2.18 x[1] = 0.942 y[1] (analytic) = 0.75554092128581890978483813556302 y[1] (numeric) = 0.75554092128581870245117913808394 absolute error = 2.0733365899747908e-16 relative error = 2.7441751089355670546206547520628e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.378 Order of pole = 2.18 x[1] = 0.943 y[1] (analytic) = 0.75607049642169027989528742027612 y[1] (numeric) = 0.75607049642169007341499863793024 absolute error = 2.0648028878234588e-16 relative error = 2.7309660905903633420902735787436e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.379 Order of pole = 2.18 x[1] = 0.944 y[1] (analytic) = 0.75659954315699715994390229283119 y[1] (numeric) = 0.75659954315699695431491531280307 absolute error = 2.0562898698002812e-16 relative error = 2.7178047996436518666705568743602e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.38 Order of pole = 2.18 x[1] = 0.945 y[1] (analytic) = 0.75712806198648073387304364622577 y[1] (numeric) = 0.75712806198648052909328560383659 absolute error = 2.0477975804238918e-16 relative error = 2.7046911655223488990927460725551e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.381 Order of pole = 2.18 x[1] = 0.946 y[1] (analytic) = 0.75765605340507501937030825949417 y[1] (numeric) = 0.75765605340507481543770193477048 absolute error = 2.0393260632472369e-16 relative error = 2.6916251168086778337546213663138e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.381 Order of pole = 2.18 x[1] = 0.947 y[1] (analytic) = 0.75818351790790296660417623058367 y[1] (numeric) = 0.75818351790790276351664014412739 absolute error = 2.0308753608645628e-16 relative error = 2.6786065812515519755308074599507e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.382 Order of pole = 2.179 x[1] = 0.948 y[1] (analytic) = 0.75871045599027257439513742079615 y[1] (numeric) = 0.75871045599027237215058592895824 absolute error = 2.0224455149183791e-16 relative error = 2.6656354857778694839518409737190e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.383 Order of pole = 2.179 x[1] = 0.949 y[1] (analytic) = 0.75923686814767302377949538300192 y[1] (numeric) = 0.75923686814767282237583877236206 absolute error = 2.0140365661063986e-16 relative error = 2.6527117565037221476205748126015e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.383 Order of pole = 2.179 x[1] = 0.95 y[1] (analytic) = 0.75976275487577082892296119539998 y[1] (numeric) = 0.75976275487577062835810577655481 absolute error = 2.0056485541884517e-16 relative error = 2.6398353187455158333309533569320e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.384 Order of pole = 2.179 x[1] = 0.951 y[1] (analytic) = 0.76028811667040600534106551855479 y[1] (numeric) = 0.76028811667040580561291371921707 absolute error = 1.9972815179933772e-16 relative error = 2.6270060970310057253121919030901e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.385 Order of pole = 2.179 memory used=434.8MB, alloc=4.5MB, time=61.50 x[1] = 0.952 y[1] (analytic) = 0.76081295402758825538333502154699 y[1] (numeric) = 0.76081295402758805648978547895813 absolute error = 1.9889354954258886e-16 relative error = 2.6142240151102457703971889356299e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.385 Order of pole = 2.179 x[1] = 0.953 y[1] (analytic) = 0.7613372674434931709380990691512 y[1] (numeric) = 0.76133726744349297287704672180973 absolute error = 1.9806105234734147e-16 relative error = 2.6014889959664513519975462737050e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.386 Order of pole = 2.178 x[1] = 0.954 y[1] (analytic) = 0.7618610574144584533147142118633 y[1] (numeric) = 0.76186105741445825608405039057163 absolute error = 1.9723066382129167e-16 relative error = 2.5888009618267786818005435854629e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.387 Order of pole = 2.178 x[1] = 0.955 y[1] (analytic) = 0.76238432443698015025991756025857 y[1] (numeric) = 0.76238432443697995385753007849064 absolute error = 1.9640238748176793e-16 relative error = 2.5761598341730182119661607796226e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.387 Order of pole = 2.178 x[1] = 0.956 y[1] (analytic) = 0.76290706900770891006494554053962 y[1] (numeric) = 0.76290706900770871448871878413188 absolute error = 1.9557622675640774e-16 relative error = 2.5635655337522047575295309551318e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.388 Order of pole = 2.178 x[1] = 0.957 y[1] (analytic) = 0.76342929162344625271998180524668 y[1] (numeric) = 0.76342929162344605796779682141502 absolute error = 1.9475218498383166e-16 relative error = 2.5510179805871425483223313840323e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.389 Order of pole = 2.178 x[1] = 0.958 y[1] (analytic) = 0.76395099278114085807242719802459 y[1] (numeric) = 0.7639509927811406641421617837096 absolute error = 1.9393026541431499e-16 relative error = 2.5385170939868489351625693049898e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.389 Order of pole = 2.178 x[1] = 0.959 y[1] (analytic) = 0.76447217297788487094541563019121 y[1] (numeric) = 0.7644721729778846778349444197344 absolute error = 1.9311047121045681e-16 relative error = 2.5260627925569140430404913371947e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.39 Order of pole = 2.178 x[1] = 0.96 y[1] (analytic) = 0.76499283271091022317293250580695 y[1] (numeric) = 0.76499283271091003088012705796053 absolute error = 1.9229280544784642e-16 relative error = 2.5136549942097773369549308766885e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.391 Order of pole = 2.177 x[1] = 0.961 y[1] (analytic) = 0.76551297247758497250782691723027 y[1] (numeric) = 0.76551297247758478103055580150294 absolute error = 1.9147727111572733e-16 relative error = 2.5012936161749236263563880229251e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.391 Order of pole = 2.177 x[1] = 0.962 y[1] (analytic) = 0.76603259277540965835894521103788 y[1] (numeric) = 0.76603259277540946769507409337927 absolute error = 1.9066387111765861e-16 relative error = 2.4889785750089965799908676406692e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.392 Order of pole = 2.177 x[1] = 0.963 y[1] (analytic) = 0.76655169410201367431355168102381 y[1] (numeric) = 0.76655169410201348446094340885012 absolute error = 1.8985260827217369e-16 relative error = 2.4767097866058314841582055436404e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.393 Order of pole = 2.177 x[1] = 0.964 y[1] (analytic) = 0.76707027695515165740114206715144 y[1] (numeric) = 0.76707027695515146835765675371492 absolute error = 1.8904348531343652e-16 relative error = 2.4644871662064066194556948744171e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.394 Order of pole = 2.177 x[1] = 0.965 y[1] (analytic) = 0.76758834183269989405469721325594 y[1] (numeric) = 0.76758834183269970581819232136075 absolute error = 1.8823650489189519e-16 relative error = 2.4523106284087151077961135728742e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.394 Order of pole = 2.177 x[1] = 0.966 y[1] (analytic) = 0.76810588923265274272536764847069 y[1] (numeric) = 0.76810588923265255529369807353774 absolute error = 1.8743166957493295e-16 relative error = 2.4401800871775569865137626025223e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.395 Order of pole = 2.177 x[1] = 0.967 y[1] (analytic) = 0.76862291965311907310652499432522 y[1] (numeric) = 0.76862291965311888647754314680872 absolute error = 1.8662898184751650e-16 relative error = 2.4280954558542503550538892144866e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.396 Order of pole = 2.177 x[1] = 0.968 y[1] (analytic) = 0.7691394335923187219230629478318 y[1] (numeric) = 0.76913943359231853609461883498998 absolute error = 1.8582844411284182e-16 relative error = 2.4160566471662656446542598319104e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.396 Order of pole = 2.176 x[1] = 0.969 y[1] (analytic) = 0.76965543154857896524177913729363 y[1] (numeric) = 0.76965543154857878021172044431639 absolute error = 1.8503005869297724e-16 relative error = 2.4040635732367796318692037045859e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.397 Order of pole = 2.176 x[1] = 0.97 y[1] (analytic) = 0.77017091402033100725861937873632 y[1] (numeric) = 0.77017091402033082302479154923241 absolute error = 1.8423382782950391e-16 relative error = 2.3921161455941518057386216600745e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.398 Order of pole = 2.176 x[1] = 0.971 y[1] (analytic) = 0.77068588150610648551851776354492 y[1] (numeric) = 0.77068588150610630207876407939125 absolute error = 1.8343975368415367e-16 relative error = 2.3802142751813236064810874472886e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.398 Order of pole = 2.176 x[1] = 0.972 y[1] (analytic) = 0.77120033450453399252351956889503 y[1] (numeric) = 0.77120033450453380987568122945085 absolute error = 1.8264783833944418e-16 relative error = 2.3683578723651392336288953532684e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.399 Order of pole = 2.176 x[1] = 0.973 y[1] (analytic) = 0.77171427351433561368482918876728 y[1] (numeric) = 0.77171427351433543182674538945582 absolute error = 1.8185808379931146e-16 relative error = 2.3565468469455904844968319965536e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.4 Order of pole = 2.176 x[1] = 0.974 y[1] (analytic) = 0.77222769903432348157438212165215 y[1] (numeric) = 0.77222769903432330050389013191243 absolute error = 1.8107049198973972e-16 relative error = 2.3447811081649845725592651390258e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.4 Order of pole = 2.176 x[1] = 0.975 y[1] (analytic) = 0.7727406115633963464314985084645 y[1] (numeric) = 0.77274061156339616614643374907595 absolute error = 1.8028506475938855e-16 relative error = 2.3330605647170363378701899872866e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.401 Order of pole = 2.176 x[1] = 0.976 y[1] (analytic) = 0.77325301160053616288013577772672 y[1] (numeric) = 0.77325301160053598337833189750934 absolute error = 1.7950180388021738e-16 relative error = 2.3213851247558841831811192566254e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.402 Order of pole = 2.176 x[1] = 0.977 y[1] (analytic) = 0.77376489964480469281221961183374 y[1] (numeric) = 0.77376489964480451409150856372644 absolute error = 1.7872071104810730e-16 relative error = 2.3097546959050313974443734827281e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.403 Order of pole = 2.176 memory used=438.7MB, alloc=4.5MB, time=62.04 x[1] = 0.978 y[1] (analytic) = 0.77427627619534012439249568532425 y[1] (numeric) = 0.77427627619533994645070780184405 absolute error = 1.7794178788348020e-16 relative error = 2.2981691852662128388331215273988e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.403 Order of pole = 2.176 x[1] = 0.979 y[1] (analytic) = 0.77478714175135370714030943074885 y[1] (numeric) = 0.77478714175135352997527349883369 absolute error = 1.7716503593191516e-16 relative error = 2.2866284994281865606000669341474e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.404 Order of pole = 2.175 x[1] = 0.98 y[1] (analytic) = 0.77529749681212640304368744720001 y[1] (numeric) = 0.77529749681212622665323078243787 absolute error = 1.7639045666476214e-16 relative error = 2.2751325444754515113351008544838e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.405 Order of pole = 2.175 x[1] = 0.981 y[1] (analytic) = 0.77580734187700555366106206815972 y[1] (numeric) = 0.77580734187700537804301058840666 absolute error = 1.7561805147975306e-16 relative error = 2.2636812259968929490736065747077e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.405 Order of pole = 2.175 x[1] = 0.982 y[1] (analytic) = 0.77631667744540156316595003639188 y[1] (numeric) = 0.77631667744540138831812833478186 absolute error = 1.7484782170161002e-16 relative error = 2.2522744490943528187204540670672e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.406 Order of pole = 2.175 x[1] = 0.983 y[1] (analytic) = 0.77682550401678459728986718157898 y[1] (numeric) = 0.77682550401678442321009859892802 absolute error = 1.7407976858265096e-16 relative error = 2.2409121183911294350742914384711e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.407 Order of pole = 2.175 x[1] = 0.984 y[1] (analytic) = 0.77733382209068129811873344875008 y[1] (numeric) = 0.77733382209068112480484014535762 absolute error = 1.7331389330339246e-16 relative error = 2.2295941380404030705929809288460e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.407 Order of pole = 2.175 x[1] = 0.985 y[1] (analytic) = 0.77784163216667151469799656980282 y[1] (numeric) = 0.7778416321666713421477995966529 absolute error = 1.7255019697314992e-16 relative error = 2.2183204117335910054385967661257e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.408 Order of pole = 2.175 x[1] = 0.986 y[1] (analytic) = 0.77834893474438504940167809417195 y[1] (numeric) = 0.77834893474438487761299746353701 absolute error = 1.7178868063063494e-16 relative error = 2.2070908427086301810446688253531e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.409 Order of pole = 2.175 x[1] = 0.987 y[1] (analytic) = 0.7788557303234984200205223855848 y[1] (numeric) = 0.77885573032349824899117714103476 absolute error = 1.7102934524455004e-16 relative error = 2.1959053337581897150767418108939e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.41 Order of pole = 2.175 x[1] = 0.988 y[1] (analytic) = 0.77936201940373163752440753756922 y[1] (numeric) = 0.77936201940373146725221582338863 absolute error = 1.7027219171418059e-16 relative error = 2.1847637872378120578832721276563e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.41 Order of pole = 2.175 x[1] = 0.989 y[1] (analytic) = 0.77986780248484499945415694869755 y[1] (numeric) = 0.77986780248484482993693607871352 absolute error = 1.6951722086998403e-16 relative error = 2.1736661050739842680053159020986e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.411 Order of pole = 2.175 x[1] = 0.99 y[1] (analytic) = 0.78037308006663589889787151727255 y[1] (numeric) = 0.78037308006663573013343804309622 absolute error = 1.6876443347417633e-16 relative error = 2.1626121887721392091506732897709e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.412 Order of pole = 2.175 x[1] = 0.991 y[1] (analytic) = 0.7808778526489356490068850521564 y[1] (numeric) = 0.78087785264893548099305483084065 absolute error = 1.6801383022131575e-16 relative error = 2.1516019394245878791232927509524e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.412 Order of pole = 2.175 x[1] = 0.992 y[1] (analytic) = 0.78138212073160632300642953963571 y[1] (numeric) = 0.78138212073160615574101780075192 absolute error = 1.6726541173888379e-16 relative error = 2.1406352577183818977106027855758e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.413 Order of pole = 2.175 x[1] = 0.993 y[1] (analytic) = 0.78188588481453760965608234358511 y[1] (numeric) = 0.78188588481453744313690375572162 absolute error = 1.6651917858786349e-16 relative error = 2.1297120439431086371560723683714e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.414 Order of pole = 2.175 x[1] = 0.994 y[1] (analytic) = 0.78238914539764368411505423577632 y[1] (numeric) = 0.78238914539764351833992297246148 absolute error = 1.6577513126331484e-16 relative error = 2.1188321979986163519257825945919e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.415 Order of pole = 2.175 x[1] = 0.995 y[1] (analytic) = 0.78289190298086009416736534307272 y[1] (numeric) = 0.7828919029808599291340951481251 absolute error = 1.6503327019494762e-16 relative error = 2.1079956194026738294813780226410e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.415 Order of pole = 2.175 x[1] = 0.996 y[1] (analytic) = 0.78339415806414066176194564660061 y[1] (numeric) = 0.78339415806414049746834989890927 absolute error = 1.6429359574769134e-16 relative error = 2.0972022072985607617656719830930e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.416 Order of pole = 2.175 x[1] = 0.997 y[1] (analytic) = 0.78389591114745439982268756300563 y[1] (numeric) = 0.78389591114745423626657934074316 absolute error = 1.6355610822226247e-16 relative error = 2.0864518604625916886005528406978e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.417 Order of pole = 2.175 x[1] = 0.998 y[1] (analytic) = 0.78439716273078244428347036784842 y[1] (numeric) = 0.78439716273078228146266251211945 absolute error = 1.6282080785572897e-16 relative error = 2.0757444773115740533012450053952e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.417 Order of pole = 2.175 x[1] = 0.999 y[1] (analytic) = 0.78489791331411500130316977438783 y[1] (numeric) = 0.78489791331411483921547495231585 absolute error = 1.6208769482207198e-16 relative error = 2.0650799559101989954687496567493e-14 % Correct digits = 15 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.418 Order of pole = 2.175 x[1] = 1 y[1] (analytic) = 0.78539816339744830961566084581988 y[1] (numeric) = 0.78539816339744814825889161307504 absolute error = 1.6135676923274484e-16 relative error = 2.0544581939783674584775600011700e-14 % Correct digits = 15 h = 0.001 Finished! diff ( y , x , 1 ) = 1.0/ (x * x + 1.0) ; Iterations = 3000 Total Elapsed Time = 1 Minutes 2 Seconds Elapsed Time(since restart) = 1 Minutes 2 Seconds Time to Timeout = 1 Minutes 57 Seconds Percent Done = 100 % > quit memory used=442.0MB, alloc=4.5MB, time=62.48