|\^/| Maple 12 (IBM INTEL LINUX) ._|\| |/|_. Copyright (c) Maplesoft, a division of Waterloo Maple Inc. 2008 \ MAPLE / All rights reserved. Maple is a trademark of <____ ____> Waterloo Maple Inc. | Type ? for help. > #BEGIN OUTFILE1 > # Begin Function number 3 > check_sign := proc( x0 ,xf) > local ret; > if (xf > x0) then # if number 1 > ret := 1.0; > else > ret := -1.0; > fi;# end if 1; > ret;; > end; check_sign := proc(x0, xf) local ret; if x0 < xf then ret := 1.0 else ret := -1.0 end if; ret end proc > # End Function number 3 > # Begin Function number 4 > est_size_answer := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_0D000001, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_tmp5, > array_tmp6, > array_tmp7, > array_tmp8, > array_tmp9, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local min_size; > min_size := glob_large_float; > if (omniabs(array_y[1]) < min_size) then # if number 1 > min_size := omniabs(array_y[1]); > omniout_float(ALWAYS,"min_size",32,min_size,32,""); > fi;# end if 1; > if (min_size < 1.0) then # if number 1 > min_size := 1.0; > omniout_float(ALWAYS,"min_size",32,min_size,32,""); > fi;# end if 1; > min_size; > end; est_size_answer := proc() local min_size; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_0D000001, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5, array_tmp6, array_tmp7, array_tmp8, array_tmp9, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; min_size := glob_large_float; if omniabs(array_y[1]) < min_size then min_size := omniabs(array_y[1]); omniout_float(ALWAYS, "min_size", 32, min_size, 32, "") end if; if min_size < 1.0 then min_size := 1.0; omniout_float(ALWAYS, "min_size", 32, min_size, 32, "") end if; min_size end proc > # End Function number 4 > # Begin Function number 5 > test_suggested_h := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_0D000001, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_tmp5, > array_tmp6, > array_tmp7, > array_tmp8, > array_tmp9, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local max_value3,hn_div_ho,hn_div_ho_2,hn_div_ho_3,value3,no_terms; > max_value3 := 0.0; > no_terms := glob_max_terms; > hn_div_ho := 0.5; > hn_div_ho_2 := 0.25; > hn_div_ho_3 := 0.125; > omniout_float(ALWAYS,"hn_div_ho",32,hn_div_ho,32,""); > omniout_float(ALWAYS,"hn_div_ho_2",32,hn_div_ho_2,32,""); > omniout_float(ALWAYS,"hn_div_ho_3",32,hn_div_ho_3,32,""); > value3 := omniabs(array_y[no_terms-3] + array_y[no_terms - 2] * hn_div_ho + array_y[no_terms - 1] * hn_div_ho_2 + array_y[no_terms] * hn_div_ho_3); > if (value3 > max_value3) then # if number 1 > max_value3 := value3; > omniout_float(ALWAYS,"value3",32,value3,32,""); > fi;# end if 1; > omniout_float(ALWAYS,"max_value3",32,max_value3,32,""); > max_value3; > end; test_suggested_h := proc() local max_value3, hn_div_ho, hn_div_ho_2, hn_div_ho_3, value3, no_terms; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_0D000001, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5, array_tmp6, array_tmp7, array_tmp8, array_tmp9, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; max_value3 := 0.; no_terms := glob_max_terms; hn_div_ho := 0.5; hn_div_ho_2 := 0.25; hn_div_ho_3 := 0.125; omniout_float(ALWAYS, "hn_div_ho", 32, hn_div_ho, 32, ""); omniout_float(ALWAYS, "hn_div_ho_2", 32, hn_div_ho_2, 32, ""); omniout_float(ALWAYS, "hn_div_ho_3", 32, hn_div_ho_3, 32, ""); value3 := omniabs(array_y[no_terms - 3] + array_y[no_terms - 2]*hn_div_ho + array_y[no_terms - 1]*hn_div_ho_2 + array_y[no_terms]*hn_div_ho_3); if max_value3 < value3 then max_value3 := value3; omniout_float(ALWAYS, "value3", 32, value3, 32, "") end if; omniout_float(ALWAYS, "max_value3", 32, max_value3, 32, ""); max_value3 end proc > # End Function number 5 > # Begin Function number 6 > reached_interval := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_0D000001, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_tmp5, > array_tmp6, > array_tmp7, > array_tmp8, > array_tmp9, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local ret; > if (glob_check_sign * (array_x[1]) >= glob_check_sign * glob_next_display) then # if number 1 > ret := true; > else > ret := false; > fi;# end if 1; > return(ret); > end; reached_interval := proc() local ret; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_0D000001, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5, array_tmp6, array_tmp7, array_tmp8, array_tmp9, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; if glob_check_sign*glob_next_display <= glob_check_sign*array_x[1] then ret := true else ret := false end if; return ret end proc > # End Function number 6 > # Begin Function number 7 > display_alot := proc(iter) > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_0D000001, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_tmp5, > array_tmp6, > array_tmp7, > array_tmp8, > array_tmp9, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local abserr, analytic_val_y, ind_var, numeric_val, relerr, term_no; > #TOP DISPLAY ALOT > if (reached_interval()) then # if number 1 > if (iter >= 0) then # if number 2 > ind_var := array_x[1]; > omniout_float(ALWAYS,"x[1] ",33,ind_var,20," "); > analytic_val_y := exact_soln_y(ind_var); > omniout_float(ALWAYS,"y[1] (analytic) ",33,analytic_val_y,20," "); > term_no := 1; > numeric_val := array_y[term_no]; > abserr := omniabs(numeric_val - analytic_val_y); > omniout_float(ALWAYS,"y[1] (numeric) ",33,numeric_val,20," "); > if (omniabs(analytic_val_y) <> 0.0) then # if number 3 > relerr := abserr*100.0/omniabs(analytic_val_y); > if (relerr > 0.0000000000000000000000000000000001) then # if number 4 > glob_good_digits := -trunc(log10(relerr)) + 2; > else > glob_good_digits := Digits; > fi;# end if 4; > else > relerr := -1.0 ; > glob_good_digits := -1; > fi;# end if 3; > if (glob_iter = 1) then # if number 3 > array_1st_rel_error[1] := relerr; > else > array_last_rel_error[1] := relerr; > fi;# end if 3; > omniout_float(ALWAYS,"absolute error ",4,abserr,20," "); > omniout_float(ALWAYS,"relative error ",4,relerr,20,"%"); > omniout_int(INFO,"Correct digits ",32,glob_good_digits,4," ") > ; > omniout_float(ALWAYS,"h ",4,glob_h,20," "); > fi;# end if 2; > #BOTTOM DISPLAY ALOT > fi;# end if 1; > end; display_alot := proc(iter) local abserr, analytic_val_y, ind_var, numeric_val, relerr, term_no; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_0D000001, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5, array_tmp6, array_tmp7, array_tmp8, array_tmp9, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; if reached_interval() then if 0 <= iter then ind_var := array_x[1]; omniout_float(ALWAYS, "x[1] ", 33, ind_var, 20, " "); analytic_val_y := exact_soln_y(ind_var); omniout_float(ALWAYS, "y[1] (analytic) ", 33, analytic_val_y, 20, " "); term_no := 1; numeric_val := array_y[term_no]; abserr := omniabs(numeric_val - analytic_val_y); omniout_float(ALWAYS, "y[1] (numeric) ", 33, numeric_val, 20, " "); if omniabs(analytic_val_y) <> 0. then relerr := abserr*100.0/omniabs(analytic_val_y); if 0.1*10^(-33) < relerr then glob_good_digits := -trunc(log10(relerr)) + 2 else glob_good_digits := Digits end if else relerr := -1.0; glob_good_digits := -1 end if; if glob_iter = 1 then array_1st_rel_error[1] := relerr else array_last_rel_error[1] := relerr end if; omniout_float(ALWAYS, "absolute error ", 4, abserr, 20, " "); omniout_float(ALWAYS, "relative error ", 4, relerr, 20, "%"); omniout_int(INFO, "Correct digits ", 32, glob_good_digits, 4, " "); omniout_float(ALWAYS, "h ", 4, glob_h, 20, " ") end if end if end proc > # End Function number 7 > # Begin Function number 8 > adjust_for_pole := proc(h_param) > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_0D000001, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_tmp5, > array_tmp6, > array_tmp7, > array_tmp8, > array_tmp9, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local hnew, sz2, tmp; > #TOP ADJUST FOR POLE > hnew := h_param; > glob_normmax := glob_small_float; > if (omniabs(array_y_higher[1,1]) > glob_small_float) then # if number 1 > tmp := omniabs(array_y_higher[1,1]); > if (tmp < glob_normmax) then # if number 2 > glob_normmax := tmp; > fi;# end if 2 > fi;# end if 1; > if (glob_look_poles and (omniabs(array_pole[1]) > glob_small_float) and (array_pole[1] <> glob_large_float)) then # if number 1 > sz2 := array_pole[1]/10.0; > if (sz2 < hnew) then # if number 2 > omniout_float(INFO,"glob_h adjusted to ",20,h_param,12,"due to singularity."); > omniout_str(INFO,"Reached Optimal"); > return(hnew); > fi;# end if 2 > fi;# end if 1; > if ( not glob_reached_optimal_h) then # if number 1 > glob_reached_optimal_h := true; > glob_curr_iter_when_opt := glob_current_iter; > glob_optimal_clock_start_sec := elapsed_time_seconds(); > glob_optimal_start := array_x[1]; > fi;# end if 1; > hnew := sz2; > ;#END block > return(hnew); > #BOTTOM ADJUST FOR POLE > end; adjust_for_pole := proc(h_param) local hnew, sz2, tmp; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_0D000001, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5, array_tmp6, array_tmp7, array_tmp8, array_tmp9, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; hnew := h_param; glob_normmax := glob_small_float; if glob_small_float < omniabs(array_y_higher[1, 1]) then tmp := omniabs(array_y_higher[1, 1]); if tmp < glob_normmax then glob_normmax := tmp end if end if; if glob_look_poles and glob_small_float < omniabs(array_pole[1]) and array_pole[1] <> glob_large_float then sz2 := array_pole[1]/10.0; if sz2 < hnew then omniout_float(INFO, "glob_h adjusted to ", 20, h_param, 12, "due to singularity."); omniout_str(INFO, "Reached Optimal"); return hnew end if end if; if not glob_reached_optimal_h then glob_reached_optimal_h := true; glob_curr_iter_when_opt := glob_current_iter; glob_optimal_clock_start_sec := elapsed_time_seconds(); glob_optimal_start := array_x[1] end if; hnew := sz2; return hnew end proc > # End Function number 8 > # Begin Function number 9 > prog_report := proc(x_start,x_end) > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_0D000001, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_tmp5, > array_tmp6, > array_tmp7, > array_tmp8, > array_tmp9, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local clock_sec, opt_clock_sec, clock_sec1, expect_sec, left_sec, percent_done, total_clock_sec; > #TOP PROGRESS REPORT > clock_sec1 := elapsed_time_seconds(); > total_clock_sec := convfloat(clock_sec1) - convfloat(glob_orig_start_sec); > glob_clock_sec := convfloat(clock_sec1) - convfloat(glob_clock_start_sec); > left_sec := convfloat(glob_max_sec) + convfloat(glob_orig_start_sec) - convfloat(clock_sec1); > expect_sec := comp_expect_sec(convfloat(x_end),convfloat(x_start),convfloat(array_x[1]) + convfloat(glob_h) ,convfloat( clock_sec1) - convfloat(glob_orig_start_sec)); > opt_clock_sec := convfloat( clock_sec1) - convfloat(glob_optimal_clock_start_sec); > glob_optimal_expect_sec := comp_expect_sec(convfloat(x_end),convfloat(x_start),convfloat(array_x[1]) +convfloat( glob_h) ,convfloat( opt_clock_sec)); > glob_total_exp_sec := glob_optimal_expect_sec + total_clock_sec; > percent_done := comp_percent(convfloat(x_end),convfloat(x_start),convfloat(array_x[1]) + convfloat(glob_h)); > glob_percent_done := percent_done; > omniout_str_noeol(INFO,"Total Elapsed Time "); > omniout_timestr(convfloat(total_clock_sec)); > omniout_str_noeol(INFO,"Elapsed Time(since restart) "); > omniout_timestr(convfloat(glob_clock_sec)); > if (convfloat(percent_done) < convfloat(100.0)) then # if number 1 > omniout_str_noeol(INFO,"Expected Time Remaining "); > omniout_timestr(convfloat(expect_sec)); > omniout_str_noeol(INFO,"Optimized Time Remaining "); > omniout_timestr(convfloat(glob_optimal_expect_sec)); > omniout_str_noeol(INFO,"Expected Total Time "); > omniout_timestr(convfloat(glob_total_exp_sec)); > fi;# end if 1; > omniout_str_noeol(INFO,"Time to Timeout "); > omniout_timestr(convfloat(left_sec)); > omniout_float(INFO, "Percent Done ",33,percent_done,4,"%"); > #BOTTOM PROGRESS REPORT > end; prog_report := proc(x_start, x_end) local clock_sec, opt_clock_sec, clock_sec1, expect_sec, left_sec, percent_done, total_clock_sec; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_0D000001, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5, array_tmp6, array_tmp7, array_tmp8, array_tmp9, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; clock_sec1 := elapsed_time_seconds(); total_clock_sec := convfloat(clock_sec1) - convfloat(glob_orig_start_sec); glob_clock_sec := convfloat(clock_sec1) - convfloat(glob_clock_start_sec); left_sec := convfloat(glob_max_sec) + convfloat(glob_orig_start_sec) - convfloat(clock_sec1); expect_sec := comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(array_x[1]) + convfloat(glob_h), convfloat(clock_sec1) - convfloat(glob_orig_start_sec)); opt_clock_sec := convfloat(clock_sec1) - convfloat(glob_optimal_clock_start_sec); glob_optimal_expect_sec := comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(array_x[1]) + convfloat(glob_h), convfloat(opt_clock_sec)); glob_total_exp_sec := glob_optimal_expect_sec + total_clock_sec; percent_done := comp_percent(convfloat(x_end), convfloat(x_start), convfloat(array_x[1]) + convfloat(glob_h)); glob_percent_done := percent_done; omniout_str_noeol(INFO, "Total Elapsed Time "); omniout_timestr(convfloat(total_clock_sec)); omniout_str_noeol(INFO, "Elapsed Time(since restart) "); omniout_timestr(convfloat(glob_clock_sec)); if convfloat(percent_done) < convfloat(100.0) then omniout_str_noeol(INFO, "Expected Time Remaining "); omniout_timestr(convfloat(expect_sec)); omniout_str_noeol(INFO, "Optimized Time Remaining "); omniout_timestr(convfloat(glob_optimal_expect_sec)); omniout_str_noeol(INFO, "Expected Total Time "); omniout_timestr(convfloat(glob_total_exp_sec)) end if; omniout_str_noeol(INFO, "Time to Timeout "); omniout_timestr(convfloat(left_sec)); omniout_float(INFO, "Percent Done ", 33, percent_done, 4, "%") end proc > # End Function number 9 > # Begin Function number 10 > check_for_pole := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_0D000001, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_tmp5, > array_tmp6, > array_tmp7, > array_tmp8, > array_tmp9, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local cnt, dr1, dr2, ds1, ds2, hdrc, m, n, nr1, nr2, ord_no, rad_c, rcs, rm0, rm1, rm2, rm3, rm4, found, h_new, ratio, term; > #TOP CHECK FOR POLE > #IN RADII REAL EQ = 1 > #Computes radius of convergence and r_order of pole from 3 adjacent Taylor series terms. EQUATUON NUMBER 1 > #Applies to pole of arbitrary r_order on the real axis, > #Due to Prof. George Corliss. > n := glob_max_terms; > m := n - 1 - 1; > while ((m >= 10) and ((omniabs(array_y_higher[1,m]) < glob_small_float) or (omniabs(array_y_higher[1,m-1]) < glob_small_float) or (omniabs(array_y_higher[1,m-2]) < glob_small_float ))) do # do number 2 > m := m - 1; > od;# end do number 2; > if (m > 10) then # if number 1 > rm0 := array_y_higher[1,m]/array_y_higher[1,m-1]; > rm1 := array_y_higher[1,m-1]/array_y_higher[1,m-2]; > hdrc := convfloat(m-1)*rm0-convfloat(m-2)*rm1; > if (omniabs(hdrc) > glob_small_float) then # if number 2 > rcs := glob_h/hdrc; > ord_no := convfloat(m-1)*rm0/hdrc - convfloat(m) + 2.0; > array_real_pole[1,1] := rcs; > array_real_pole[1,2] := ord_no; > else > array_real_pole[1,1] := glob_large_float; > array_real_pole[1,2] := glob_large_float; > fi;# end if 2 > else > array_real_pole[1,1] := glob_large_float; > array_real_pole[1,2] := glob_large_float; > fi;# end if 1; > #BOTTOM RADII REAL EQ = 1 > #TOP RADII COMPLEX EQ = 1 > #Computes radius of convergence for complex conjugate pair of poles. > #from 6 adjacent Taylor series terms > #Also computes r_order of poles. > #Due to Manuel Prieto. > #With a correction by Dennis J. Darland > n := glob_max_terms - 1 - 1; > cnt := 0; > while ((cnt < 5) and (n >= 10)) do # do number 2 > if (omniabs(array_y_higher[1,n]) > glob_small_float) then # if number 1 > cnt := cnt + 1; > else > cnt := 0; > fi;# end if 1; > n := n - 1; > od;# end do number 2; > m := n + cnt; > if (m <= 10) then # if number 1 > rad_c := glob_large_float; > ord_no := glob_large_float; > elif > (((omniabs(array_y_higher[1,m]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-1]) >=(glob_large_float)) or (omniabs(array_y_higher[1,m-2]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-3]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-4]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-5]) >= (glob_large_float))) or ((omniabs(array_y_higher[1,m]) <= (glob_small_float)) or (omniabs(array_y_higher[1,m-1]) <=(glob_small_float)) or (omniabs(array_y_higher[1,m-2]) <= (glob_small_float)) or (omniabs(array_y_higher[1,m-3]) <= (glob_small_float)) or (omniabs(array_y_higher[1,m-4]) <= (glob_small_float)) or (omniabs(array_y_higher[1,m-5]) <= (glob_small_float)))) then # if number 2 > rad_c := glob_large_float; > ord_no := glob_large_float; > else > rm0 := (array_y_higher[1,m])/(array_y_higher[1,m-1]); > rm1 := (array_y_higher[1,m-1])/(array_y_higher[1,m-2]); > rm2 := (array_y_higher[1,m-2])/(array_y_higher[1,m-3]); > rm3 := (array_y_higher[1,m-3])/(array_y_higher[1,m-4]); > rm4 := (array_y_higher[1,m-4])/(array_y_higher[1,m-5]); > nr1 := convfloat(m-1)*rm0 - 2.0*convfloat(m-2)*rm1 + convfloat(m-3)*rm2; > nr2 := convfloat(m-2)*rm1 - 2.0*convfloat(m-3)*rm2 + convfloat(m-4)*rm3; > dr1 := (-1.0)/rm1 + 2.0/rm2 - 1.0/rm3; > dr2 := (-1.0)/rm2 + 2.0/rm3 - 1.0/rm4; > ds1 := 3.0/rm1 - 8.0/rm2 + 5.0/rm3; > ds2 := 3.0/rm2 - 8.0/rm3 + 5.0/rm4; > if ((omniabs(nr1 * dr2 - nr2 * dr1) <= glob_small_float) or (omniabs(dr1) <= glob_small_float)) then # if number 3 > rad_c := glob_large_float; > ord_no := glob_large_float; > else > if (omniabs(nr1*dr2 - nr2 * dr1) > glob_small_float) then # if number 4 > rcs := ((ds1*dr2 - ds2*dr1 +dr1*dr2)/(nr1*dr2 - nr2 * dr1)); > #(Manuels) rcs := (ds1*dr2 - ds2*dr1)/(nr1*dr2 - nr2 * dr1) > ord_no := (rcs*nr1 - ds1)/(2.0*dr1) -convfloat(m)/2.0; > if (omniabs(rcs) > glob_small_float) then # if number 5 > if (rcs > 0.0) then # if number 6 > rad_c := sqrt(rcs) * omniabs(glob_h); > else > rad_c := glob_large_float; > fi;# end if 6 > else > rad_c := glob_large_float; > ord_no := glob_large_float; > fi;# end if 5 > else > rad_c := glob_large_float; > ord_no := glob_large_float; > fi;# end if 4 > fi;# end if 3; > array_complex_pole[1,1] := rad_c; > array_complex_pole[1,2] := ord_no; > fi;# end if 2; > #BOTTOM RADII COMPLEX EQ = 1 > found := false; > #TOP WHICH RADII EQ = 1 > if ( not found and ((array_real_pole[1,1] = glob_large_float) or (array_real_pole[1,2] = glob_large_float)) and ((array_complex_pole[1,1] <> glob_large_float) and (array_complex_pole[1,2] <> glob_large_float)) and ((array_complex_pole[1,1] > 0.0) and (array_complex_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_complex_pole[1,1]; > array_poles[1,2] := array_complex_pole[1,2]; > found := true; > array_type_pole[1] := 2; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Complex estimate of poles used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found and ((array_real_pole[1,1] <> glob_large_float) and (array_real_pole[1,2] <> glob_large_float) and (array_real_pole[1,1] > 0.0) and (array_real_pole[1,2] > 0.0) and ((array_complex_pole[1,1] = glob_large_float) or (array_complex_pole[1,2] = glob_large_float) or (array_complex_pole[1,1] <= 0.0 ) or (array_complex_pole[1,2] <= 0.0)))) then # if number 2 > array_poles[1,1] := array_real_pole[1,1]; > array_poles[1,2] := array_real_pole[1,2]; > found := true; > array_type_pole[1] := 1; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Real estimate of pole used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found and (((array_real_pole[1,1] = glob_large_float) or (array_real_pole[1,2] = glob_large_float)) and ((array_complex_pole[1,1] = glob_large_float) or (array_complex_pole[1,2] = glob_large_float)))) then # if number 2 > array_poles[1,1] := glob_large_float; > array_poles[1,2] := glob_large_float; > found := true; > array_type_pole[1] := 3; > if (reached_interval()) then # if number 3 > omniout_str(ALWAYS,"NO POLE"); > fi;# end if 3; > fi;# end if 2; > if ( not found and ((array_real_pole[1,1] < array_complex_pole[1,1]) and (array_real_pole[1,1] > 0.0) and (array_real_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_real_pole[1,1]; > array_poles[1,2] := array_real_pole[1,2]; > found := true; > array_type_pole[1] := 1; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Real estimate of pole used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found and ((array_complex_pole[1,1] <> glob_large_float) and (array_complex_pole[1,2] <> glob_large_float) and (array_complex_pole[1,1] > 0.0) and (array_complex_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_complex_pole[1,1]; > array_poles[1,2] := array_complex_pole[1,2]; > array_type_pole[1] := 2; > found := true; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Complex estimate of poles used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found ) then # if number 2 > array_poles[1,1] := glob_large_float; > array_poles[1,2] := glob_large_float; > array_type_pole[1] := 3; > if (reached_interval()) then # if number 3 > omniout_str(ALWAYS,"NO POLE"); > fi;# end if 3; > fi;# end if 2; > #BOTTOM WHICH RADII EQ = 1 > array_pole[1] := glob_large_float; > array_pole[2] := glob_large_float; > #TOP WHICH RADIUS EQ = 1 > if (array_pole[1] > array_poles[1,1]) then # if number 2 > array_pole[1] := array_poles[1,1]; > array_pole[2] := array_poles[1,2]; > fi;# end if 2; > #BOTTOM WHICH RADIUS EQ = 1 > #START ADJUST ALL SERIES > if (array_pole[1] * glob_ratio_of_radius < omniabs(glob_h)) then # if number 2 > h_new := array_pole[1] * glob_ratio_of_radius; > term := 1; > ratio := 1.0; > while (term <= glob_max_terms) do # do number 2 > array_y[term] := array_y[term]* ratio; > array_y_higher[1,term] := array_y_higher[1,term]* ratio; > array_x[term] := array_x[term]* ratio; > ratio := ratio * h_new / omniabs(glob_h); > term := term + 1; > od;# end do number 2; > glob_h := h_new; > fi;# end if 2; > #BOTTOM ADJUST ALL SERIES > if (reached_interval()) then # if number 2 > display_pole(); > fi;# end if 2 > end; check_for_pole := proc() local cnt, dr1, dr2, ds1, ds2, hdrc, m, n, nr1, nr2, ord_no, rad_c, rcs, rm0, rm1, rm2, rm3, rm4, found, h_new, ratio, term; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_0D000001, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5, array_tmp6, array_tmp7, array_tmp8, array_tmp9, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; n := glob_max_terms; m := n - 2; while 10 <= m and (omniabs(array_y_higher[1, m]) < glob_small_float or omniabs(array_y_higher[1, m - 1]) < glob_small_float or omniabs(array_y_higher[1, m - 2]) < glob_small_float) do m := m - 1 end do; if 10 < m then rm0 := array_y_higher[1, m]/array_y_higher[1, m - 1]; rm1 := array_y_higher[1, m - 1]/array_y_higher[1, m - 2]; hdrc := convfloat(m - 1)*rm0 - convfloat(m - 2)*rm1; if glob_small_float < omniabs(hdrc) then rcs := glob_h/hdrc; ord_no := convfloat(m - 1)*rm0/hdrc - convfloat(m) + 2.0; array_real_pole[1, 1] := rcs; array_real_pole[1, 2] := ord_no else array_real_pole[1, 1] := glob_large_float; array_real_pole[1, 2] := glob_large_float end if else array_real_pole[1, 1] := glob_large_float; array_real_pole[1, 2] := glob_large_float end if; n := glob_max_terms - 2; cnt := 0; while cnt < 5 and 10 <= n do if glob_small_float < omniabs(array_y_higher[1, n]) then cnt := cnt + 1 else cnt := 0 end if; n := n - 1 end do; m := n + cnt; if m <= 10 then rad_c := glob_large_float; ord_no := glob_large_float elif glob_large_float <= omniabs(array_y_higher[1, m]) or glob_large_float <= omniabs(array_y_higher[1, m - 1]) or glob_large_float <= omniabs(array_y_higher[1, m - 2]) or glob_large_float <= omniabs(array_y_higher[1, m - 3]) or glob_large_float <= omniabs(array_y_higher[1, m - 4]) or glob_large_float <= omniabs(array_y_higher[1, m - 5]) or omniabs(array_y_higher[1, m]) <= glob_small_float or omniabs(array_y_higher[1, m - 1]) <= glob_small_float or omniabs(array_y_higher[1, m - 2]) <= glob_small_float or omniabs(array_y_higher[1, m - 3]) <= glob_small_float or omniabs(array_y_higher[1, m - 4]) <= glob_small_float or omniabs(array_y_higher[1, m - 5]) <= glob_small_float then rad_c := glob_large_float; ord_no := glob_large_float else rm0 := array_y_higher[1, m]/array_y_higher[1, m - 1]; rm1 := array_y_higher[1, m - 1]/array_y_higher[1, m - 2]; rm2 := array_y_higher[1, m - 2]/array_y_higher[1, m - 3]; rm3 := array_y_higher[1, m - 3]/array_y_higher[1, m - 4]; rm4 := array_y_higher[1, m - 4]/array_y_higher[1, m - 5]; nr1 := convfloat(m - 1)*rm0 - 2.0*convfloat(m - 2)*rm1 + convfloat(m - 3)*rm2; nr2 := convfloat(m - 2)*rm1 - 2.0*convfloat(m - 3)*rm2 + convfloat(m - 4)*rm3; dr1 := (-1)*(1.0)/rm1 + 2.0/rm2 - 1.0/rm3; dr2 := (-1)*(1.0)/rm2 + 2.0/rm3 - 1.0/rm4; ds1 := 3.0/rm1 - 8.0/rm2 + 5.0/rm3; ds2 := 3.0/rm2 - 8.0/rm3 + 5.0/rm4; if omniabs(nr1*dr2 - nr2*dr1) <= glob_small_float or omniabs(dr1) <= glob_small_float then rad_c := glob_large_float; ord_no := glob_large_float else if glob_small_float < omniabs(nr1*dr2 - nr2*dr1) then rcs := (ds1*dr2 - ds2*dr1 + dr1*dr2)/(nr1*dr2 - nr2*dr1); ord_no := (rcs*nr1 - ds1)/(2.0*dr1) - convfloat(m)/2.0; if glob_small_float < omniabs(rcs) then if 0. < rcs then rad_c := sqrt(rcs)*omniabs(glob_h) else rad_c := glob_large_float end if else rad_c := glob_large_float; ord_no := glob_large_float end if else rad_c := glob_large_float; ord_no := glob_large_float end if end if; array_complex_pole[1, 1] := rad_c; array_complex_pole[1, 2] := ord_no end if; found := false; if not found and (array_real_pole[1, 1] = glob_large_float or array_real_pole[1, 2] = glob_large_float) and array_complex_pole[1, 1] <> glob_large_float and array_complex_pole[1, 2] <> glob_large_float and 0. < array_complex_pole[1, 1] and 0. < array_complex_pole[1, 2] then array_poles[1, 1] := array_complex_pole[1, 1]; array_poles[1, 2] := array_complex_pole[1, 2]; found := true; array_type_pole[1] := 2; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Complex estimate of poles used") end if end if end if; if not found and array_real_pole[1, 1] <> glob_large_float and array_real_pole[1, 2] <> glob_large_float and 0. < array_real_pole[1, 1] and 0. < array_real_pole[1, 2] and ( array_complex_pole[1, 1] = glob_large_float or array_complex_pole[1, 2] = glob_large_float or array_complex_pole[1, 1] <= 0. or array_complex_pole[1, 2] <= 0.) then array_poles[1, 1] := array_real_pole[1, 1]; array_poles[1, 2] := array_real_pole[1, 2]; found := true; array_type_pole[1] := 1; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Real estimate of pole used") end if end if end if; if not found and (array_real_pole[1, 1] = glob_large_float or array_real_pole[1, 2] = glob_large_float) and ( array_complex_pole[1, 1] = glob_large_float or array_complex_pole[1, 2] = glob_large_float) then array_poles[1, 1] := glob_large_float; array_poles[1, 2] := glob_large_float; found := true; array_type_pole[1] := 3; if reached_interval() then omniout_str(ALWAYS, "NO POLE") end if end if; if not found and array_real_pole[1, 1] < array_complex_pole[1, 1] and 0. < array_real_pole[1, 1] and 0. < array_real_pole[1, 2] then array_poles[1, 1] := array_real_pole[1, 1]; array_poles[1, 2] := array_real_pole[1, 2]; found := true; array_type_pole[1] := 1; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Real estimate of pole used") end if end if end if; if not found and array_complex_pole[1, 1] <> glob_large_float and array_complex_pole[1, 2] <> glob_large_float and 0. < array_complex_pole[1, 1] and 0. < array_complex_pole[1, 2] then array_poles[1, 1] := array_complex_pole[1, 1]; array_poles[1, 2] := array_complex_pole[1, 2]; array_type_pole[1] := 2; found := true; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Complex estimate of poles used") end if end if end if; if not found then array_poles[1, 1] := glob_large_float; array_poles[1, 2] := glob_large_float; array_type_pole[1] := 3; if reached_interval() then omniout_str(ALWAYS, "NO POLE") end if end if; array_pole[1] := glob_large_float; array_pole[2] := glob_large_float; if array_poles[1, 1] < array_pole[1] then array_pole[1] := array_poles[1, 1]; array_pole[2] := array_poles[1, 2] end if; if array_pole[1]*glob_ratio_of_radius < omniabs(glob_h) then h_new := array_pole[1]*glob_ratio_of_radius; term := 1; ratio := 1.0; while term <= glob_max_terms do array_y[term] := array_y[term]*ratio; array_y_higher[1, term] := array_y_higher[1, term]*ratio; array_x[term] := array_x[term]*ratio; ratio := ratio*h_new/omniabs(glob_h); term := term + 1 end do; glob_h := h_new end if; if reached_interval() then display_pole() end if end proc > # End Function number 10 > # Begin Function number 11 > get_norms := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_0D000001, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_tmp5, > array_tmp6, > array_tmp7, > array_tmp8, > array_tmp9, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local iii; > if ( not glob_initial_pass) then # if number 2 > iii := 1; > while (iii <= glob_max_terms) do # do number 2 > array_norms[iii] := 0.0; > iii := iii + 1; > od;# end do number 2; > #TOP GET NORMS > iii := 1; > while (iii <= glob_max_terms) do # do number 2 > if (omniabs(array_y[iii]) > array_norms[iii]) then # if number 3 > array_norms[iii] := omniabs(array_y[iii]); > fi;# end if 3; > iii := iii + 1; > od;# end do number 2 > #BOTTOM GET NORMS > ; > fi;# end if 2; > end; get_norms := proc() local iii; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_0D000001, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5, array_tmp6, array_tmp7, array_tmp8, array_tmp9, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; if not glob_initial_pass then iii := 1; while iii <= glob_max_terms do array_norms[iii] := 0.; iii := iii + 1 end do; iii := 1; while iii <= glob_max_terms do if array_norms[iii] < omniabs(array_y[iii]) then array_norms[iii] := omniabs(array_y[iii]) end if; iii := iii + 1 end do end if end proc > # End Function number 11 > # Begin Function number 12 > atomall := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_0D000001, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_tmp5, > array_tmp6, > array_tmp7, > array_tmp8, > array_tmp9, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local kkk, order_d, adj2, adj3 , temporary, term; > #TOP ATOMALL > #END OUTFILE1 > #BEGIN ATOMHDR1 > #emit pre mult FULL CONST $eq_no = 1 i = 1 > array_tmp1[1] := array_m1[1] * array_const_2D0[1]; > #emit pre mult FULL LINEAR $eq_no = 1 i = 1 > #emit pre mult LINEAR - FULL $eq_no = 1 i = 1 > array_tmp2[1] := array_x[1] * array_tmp1[1]; > #emit pre mult LINEAR - LINEAR $eq_no = 1 i = 1 > array_tmp3[1] := array_x[1] * array_x[1]; > #emit pre add FULL - CONST $eq_no = 1 i = 1 > array_tmp4[1] := array_tmp3[1] + array_const_0D000001[1]; > #emit pre div FULL - FULL $eq_no = 1 i = 1 > array_tmp5[1] := (array_tmp2[1] / (array_tmp4[1])); > #emit pre mult LINEAR - LINEAR $eq_no = 1 i = 1 > array_tmp6[1] := array_x[1] * array_x[1]; > #emit pre add FULL - CONST $eq_no = 1 i = 1 > array_tmp7[1] := array_tmp6[1] + array_const_0D000001[1]; > #emit pre div FULL - FULL $eq_no = 1 i = 1 > array_tmp8[1] := (array_tmp5[1] / (array_tmp7[1])); > #emit pre add CONST FULL $eq_no = 1 i = 1 > array_tmp9[1] := array_const_0D0[1] + array_tmp8[1]; > #emit pre assign xxx $eq_no = 1 i = 1 $min_hdrs = 5 > if ( not array_y_set_initial[1,2]) then # if number 1 > if (1 <= glob_max_terms) then # if number 2 > temporary := array_tmp9[1] * expt(glob_h , (1)) * factorial_3(0,1); > array_y[2] := temporary; > array_y_higher[1,2] := temporary; > temporary := temporary / glob_h * (1.0); > array_y_higher[2,1] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 2; > #END ATOMHDR1 > #BEGIN ATOMHDR2 > #emit pre mult FULL CONST $eq_no = 1 i = 2 > array_tmp1[2] := array_m1[2] * array_const_2D0[1]; > #emit pre mult LINEAR FULL $eq_no = 1 i = 2 > array_tmp2[2] := array_x[2] * array_tmp1[kkk - 1] + array_x[1] * array_tmp1[kkk]; > #emit pre mult LINEAR - LINEAR $eq_no = 1 i = 2 > array_tmp3[2] := array_x[1] * array_x[2] + array_x[2] * array_x[1]; > #emit pre add FULL CONST $eq_no = 1 i = 2 > array_tmp4[2] := array_tmp3[2]; > #emit pre div FULL - FULL $eq_no = 1 i = 2 > array_tmp5[2] := ((array_tmp2[2] - ats(2,array_tmp4,array_tmp5,2))/array_tmp4[1]); > #emit pre mult LINEAR - LINEAR $eq_no = 1 i = 2 > array_tmp6[2] := array_x[1] * array_x[2] + array_x[2] * array_x[1]; > #emit pre add FULL CONST $eq_no = 1 i = 2 > array_tmp7[2] := array_tmp6[2]; > #emit pre div FULL - FULL $eq_no = 1 i = 2 > array_tmp8[2] := ((array_tmp5[2] - ats(2,array_tmp7,array_tmp8,2))/array_tmp7[1]); > #emit pre add CONST FULL $eq_no = 1 i = 2 > array_tmp9[2] := array_tmp8[2]; > #emit pre assign xxx $eq_no = 1 i = 2 $min_hdrs = 5 > if ( not array_y_set_initial[1,3]) then # if number 1 > if (2 <= glob_max_terms) then # if number 2 > temporary := array_tmp9[2] * expt(glob_h , (1)) * factorial_3(1,2); > array_y[3] := temporary; > array_y_higher[1,3] := temporary; > temporary := temporary / glob_h * (2.0); > array_y_higher[2,2] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 3; > #END ATOMHDR2 > #BEGIN ATOMHDR3 > #emit pre mult FULL CONST $eq_no = 1 i = 3 > array_tmp1[3] := array_m1[3] * array_const_2D0[1]; > #emit pre mult LINEAR FULL $eq_no = 1 i = 3 > array_tmp2[3] := array_x[2] * array_tmp1[kkk - 1] + array_x[1] * array_tmp1[kkk]; > #emit pre mult LINEAR - LINEAR $eq_no = 1 i = 3 > array_tmp3[3] := array_x[2] * array_x[2]; > #emit pre add FULL CONST $eq_no = 1 i = 3 > array_tmp4[3] := array_tmp3[3]; > #emit pre div FULL - FULL $eq_no = 1 i = 3 > array_tmp5[3] := ((array_tmp2[3] - ats(3,array_tmp4,array_tmp5,2))/array_tmp4[1]); > #emit pre mult LINEAR - LINEAR $eq_no = 1 i = 3 > array_tmp6[3] := array_x[2] * array_x[2]; > #emit pre add FULL CONST $eq_no = 1 i = 3 > array_tmp7[3] := array_tmp6[3]; > #emit pre div FULL - FULL $eq_no = 1 i = 3 > array_tmp8[3] := ((array_tmp5[3] - ats(3,array_tmp7,array_tmp8,2))/array_tmp7[1]); > #emit pre add CONST FULL $eq_no = 1 i = 3 > array_tmp9[3] := array_tmp8[3]; > #emit pre assign xxx $eq_no = 1 i = 3 $min_hdrs = 5 > if ( not array_y_set_initial[1,4]) then # if number 1 > if (3 <= glob_max_terms) then # if number 2 > temporary := array_tmp9[3] * expt(glob_h , (1)) * factorial_3(2,3); > array_y[4] := temporary; > array_y_higher[1,4] := temporary; > temporary := temporary / glob_h * (3.0); > array_y_higher[2,3] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 4; > #END ATOMHDR3 > #BEGIN ATOMHDR4 > #emit pre mult FULL CONST $eq_no = 1 i = 4 > array_tmp1[4] := array_m1[4] * array_const_2D0[1]; > #emit pre mult LINEAR FULL $eq_no = 1 i = 4 > array_tmp2[4] := array_x[2] * array_tmp1[kkk - 1] + array_x[1] * array_tmp1[kkk]; > #emit pre add FULL CONST $eq_no = 1 i = 4 > array_tmp4[4] := array_tmp3[4]; > #emit pre div FULL - FULL $eq_no = 1 i = 4 > array_tmp5[4] := ((array_tmp2[4] - ats(4,array_tmp4,array_tmp5,2))/array_tmp4[1]); > #emit pre add FULL CONST $eq_no = 1 i = 4 > array_tmp7[4] := array_tmp6[4]; > #emit pre div FULL - FULL $eq_no = 1 i = 4 > array_tmp8[4] := ((array_tmp5[4] - ats(4,array_tmp7,array_tmp8,2))/array_tmp7[1]); > #emit pre add CONST FULL $eq_no = 1 i = 4 > array_tmp9[4] := array_tmp8[4]; > #emit pre assign xxx $eq_no = 1 i = 4 $min_hdrs = 5 > if ( not array_y_set_initial[1,5]) then # if number 1 > if (4 <= glob_max_terms) then # if number 2 > temporary := array_tmp9[4] * expt(glob_h , (1)) * factorial_3(3,4); > array_y[5] := temporary; > array_y_higher[1,5] := temporary; > temporary := temporary / glob_h * (4.0); > array_y_higher[2,4] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 5; > #END ATOMHDR4 > #BEGIN ATOMHDR5 > #emit pre mult FULL CONST $eq_no = 1 i = 5 > array_tmp1[5] := array_m1[5] * array_const_2D0[1]; > #emit pre mult LINEAR FULL $eq_no = 1 i = 5 > array_tmp2[5] := array_x[2] * array_tmp1[kkk - 1] + array_x[1] * array_tmp1[kkk]; > #emit pre add FULL CONST $eq_no = 1 i = 5 > array_tmp4[5] := array_tmp3[5]; > #emit pre div FULL - FULL $eq_no = 1 i = 5 > array_tmp5[5] := ((array_tmp2[5] - ats(5,array_tmp4,array_tmp5,2))/array_tmp4[1]); > #emit pre add FULL CONST $eq_no = 1 i = 5 > array_tmp7[5] := array_tmp6[5]; > #emit pre div FULL - FULL $eq_no = 1 i = 5 > array_tmp8[5] := ((array_tmp5[5] - ats(5,array_tmp7,array_tmp8,2))/array_tmp7[1]); > #emit pre add CONST FULL $eq_no = 1 i = 5 > array_tmp9[5] := array_tmp8[5]; > #emit pre assign xxx $eq_no = 1 i = 5 $min_hdrs = 5 > if ( not array_y_set_initial[1,6]) then # if number 1 > if (5 <= glob_max_terms) then # if number 2 > temporary := array_tmp9[5] * expt(glob_h , (1)) * factorial_3(4,5); > array_y[6] := temporary; > array_y_higher[1,6] := temporary; > temporary := temporary / glob_h * (5.0); > array_y_higher[2,5] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 6; > #END ATOMHDR5 > #BEGIN OUTFILE3 > #Top Atomall While Loop-- outfile3 > while (kkk <= glob_max_terms) do # do number 1 > #END OUTFILE3 > #BEGIN OUTFILE4 > #emit mult FULL CONST $eq_no = 1 i = 1 > array_tmp1[kkk] := array_m1[kkk] * array_const_2D0[1]; > #emit mult FULL LINEAR $eq_no = 1 i = 1 > array_tmp2[kkk] := array_tmp1[kkk-1] * array_x[2] + array_tmp1[kkk] * array_x[1]; > #emit mult LINEAR - LINEAR $eq_no = 1 i = 1 > #emit FULL - NOT FULL add $eq_no = 1 > array_tmp4[kkk] := array_tmp3[kkk]; > #emit div FULL FULL $eq_no = 1 > array_tmp5[kkk] := ((array_tmp2[kkk] - ats(kkk,array_tmp4,array_tmp5,2))/array_tmp4[1]); > #emit mult LINEAR - LINEAR $eq_no = 1 i = 1 > #emit FULL - NOT FULL add $eq_no = 1 > array_tmp7[kkk] := array_tmp6[kkk]; > #emit div FULL FULL $eq_no = 1 > array_tmp8[kkk] := ((array_tmp5[kkk] - ats(kkk,array_tmp7,array_tmp8,2))/array_tmp7[1]); > #emit NOT FULL - FULL add $eq_no = 1 > array_tmp9[kkk] := array_tmp8[kkk]; > #emit assign $eq_no = 1 > order_d := 1; > if (kkk + order_d + 1 <= glob_max_terms) then # if number 1 > if ( not array_y_set_initial[1,kkk + order_d]) then # if number 2 > temporary := array_tmp9[kkk] * expt(glob_h , (order_d)) * factorial_3((kkk - 1),(kkk + order_d - 1)); > array_y[kkk + order_d] := temporary; > array_y_higher[1,kkk + order_d] := temporary; > term := kkk + order_d - 1; > adj2 := kkk + order_d - 1; > adj3 := 2; > while (term >= 1) do # do number 2 > if (adj3 <= order_d + 1) then # if number 3 > if (adj2 > 0) then # if number 4 > temporary := temporary / glob_h * convfp(adj2); > else > temporary := temporary; > fi;# end if 4; > array_y_higher[adj3,term] := temporary; > fi;# end if 3; > term := term - 1; > adj2 := adj2 - 1; > adj3 := adj3 + 1; > od;# end do number 2 > fi;# end if 2 > fi;# end if 1; > kkk := kkk + 1; > od;# end do number 1; > #BOTTOM ATOMALL > #END OUTFILE4 > #BEGIN OUTFILE5 > #BOTTOM ATOMALL ??? > end; atomall := proc() local kkk, order_d, adj2, adj3, temporary, term; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_0D000001, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5, array_tmp6, array_tmp7, array_tmp8, array_tmp9, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; array_tmp1[1] := array_m1[1]*array_const_2D0[1]; array_tmp2[1] := array_x[1]*array_tmp1[1]; array_tmp3[1] := array_x[1]*array_x[1]; array_tmp4[1] := array_tmp3[1] + array_const_0D000001[1]; array_tmp5[1] := array_tmp2[1]/array_tmp4[1]; array_tmp6[1] := array_x[1]*array_x[1]; array_tmp7[1] := array_tmp6[1] + array_const_0D000001[1]; array_tmp8[1] := array_tmp5[1]/array_tmp7[1]; array_tmp9[1] := array_const_0D0[1] + array_tmp8[1]; if not array_y_set_initial[1, 2] then if 1 <= glob_max_terms then temporary := array_tmp9[1]*expt(glob_h, 1)*factorial_3(0, 1); array_y[2] := temporary; array_y_higher[1, 2] := temporary; temporary := temporary*1.0/glob_h; array_y_higher[2, 1] := temporary end if end if; kkk := 2; array_tmp1[2] := array_m1[2]*array_const_2D0[1]; array_tmp2[2] := array_x[2]*array_tmp1[kkk - 1] + array_x[1]*array_tmp1[kkk]; array_tmp3[2] := 2*array_x[1]*array_x[2]; array_tmp4[2] := array_tmp3[2]; array_tmp5[2] := (array_tmp2[2] - ats(2, array_tmp4, array_tmp5, 2))/array_tmp4[1]; array_tmp6[2] := 2*array_x[1]*array_x[2]; array_tmp7[2] := array_tmp6[2]; array_tmp8[2] := (array_tmp5[2] - ats(2, array_tmp7, array_tmp8, 2))/array_tmp7[1]; array_tmp9[2] := array_tmp8[2]; if not array_y_set_initial[1, 3] then if 2 <= glob_max_terms then temporary := array_tmp9[2]*expt(glob_h, 1)*factorial_3(1, 2); array_y[3] := temporary; array_y_higher[1, 3] := temporary; temporary := temporary*2.0/glob_h; array_y_higher[2, 2] := temporary end if end if; kkk := 3; array_tmp1[3] := array_m1[3]*array_const_2D0[1]; array_tmp2[3] := array_x[2]*array_tmp1[kkk - 1] + array_x[1]*array_tmp1[kkk]; array_tmp3[3] := array_x[2]*array_x[2]; array_tmp4[3] := array_tmp3[3]; array_tmp5[3] := (array_tmp2[3] - ats(3, array_tmp4, array_tmp5, 2))/array_tmp4[1]; array_tmp6[3] := array_x[2]*array_x[2]; array_tmp7[3] := array_tmp6[3]; array_tmp8[3] := (array_tmp5[3] - ats(3, array_tmp7, array_tmp8, 2))/array_tmp7[1]; array_tmp9[3] := array_tmp8[3]; if not array_y_set_initial[1, 4] then if 3 <= glob_max_terms then temporary := array_tmp9[3]*expt(glob_h, 1)*factorial_3(2, 3); array_y[4] := temporary; array_y_higher[1, 4] := temporary; temporary := temporary*3.0/glob_h; array_y_higher[2, 3] := temporary end if end if; kkk := 4; array_tmp1[4] := array_m1[4]*array_const_2D0[1]; array_tmp2[4] := array_x[2]*array_tmp1[kkk - 1] + array_x[1]*array_tmp1[kkk]; array_tmp4[4] := array_tmp3[4]; array_tmp5[4] := (array_tmp2[4] - ats(4, array_tmp4, array_tmp5, 2))/array_tmp4[1]; array_tmp7[4] := array_tmp6[4]; array_tmp8[4] := (array_tmp5[4] - ats(4, array_tmp7, array_tmp8, 2))/array_tmp7[1]; array_tmp9[4] := array_tmp8[4]; if not array_y_set_initial[1, 5] then if 4 <= glob_max_terms then temporary := array_tmp9[4]*expt(glob_h, 1)*factorial_3(3, 4); array_y[5] := temporary; array_y_higher[1, 5] := temporary; temporary := temporary*4.0/glob_h; array_y_higher[2, 4] := temporary end if end if; kkk := 5; array_tmp1[5] := array_m1[5]*array_const_2D0[1]; array_tmp2[5] := array_x[2]*array_tmp1[kkk - 1] + array_x[1]*array_tmp1[kkk]; array_tmp4[5] := array_tmp3[5]; array_tmp5[5] := (array_tmp2[5] - ats(5, array_tmp4, array_tmp5, 2))/array_tmp4[1]; array_tmp7[5] := array_tmp6[5]; array_tmp8[5] := (array_tmp5[5] - ats(5, array_tmp7, array_tmp8, 2))/array_tmp7[1]; array_tmp9[5] := array_tmp8[5]; if not array_y_set_initial[1, 6] then if 5 <= glob_max_terms then temporary := array_tmp9[5]*expt(glob_h, 1)*factorial_3(4, 5); array_y[6] := temporary; array_y_higher[1, 6] := temporary; temporary := temporary*5.0/glob_h; array_y_higher[2, 5] := temporary end if end if; kkk := 6; while kkk <= glob_max_terms do array_tmp1[kkk] := array_m1[kkk]*array_const_2D0[1]; array_tmp2[kkk] := array_x[2]*array_tmp1[kkk - 1] + array_x[1]*array_tmp1[kkk]; array_tmp4[kkk] := array_tmp3[kkk]; array_tmp5[kkk] := ( array_tmp2[kkk] - ats(kkk, array_tmp4, array_tmp5, 2))/ array_tmp4[1]; array_tmp7[kkk] := array_tmp6[kkk]; array_tmp8[kkk] := ( array_tmp5[kkk] - ats(kkk, array_tmp7, array_tmp8, 2))/ array_tmp7[1]; array_tmp9[kkk] := array_tmp8[kkk]; order_d := 1; if kkk + order_d + 1 <= glob_max_terms then if not array_y_set_initial[1, kkk + order_d] then temporary := array_tmp9[kkk]*expt(glob_h, order_d)* factorial_3(kkk - 1, kkk + order_d - 1); array_y[kkk + order_d] := temporary; array_y_higher[1, kkk + order_d] := temporary; term := kkk + order_d - 1; adj2 := kkk + order_d - 1; adj3 := 2; while 1 <= term do if adj3 <= order_d + 1 then if 0 < adj2 then temporary := temporary*convfp(adj2)/glob_h else temporary := temporary end if; array_y_higher[adj3, term] := temporary end if; term := term - 1; adj2 := adj2 - 1; adj3 := adj3 + 1 end do end if end if; kkk := kkk + 1 end do end proc > # End Function number 12 > #BEGIN ATS LIBRARY BLOCK > # Begin Function number 2 > omniout_str := proc(iolevel,str) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > printf("%s\n",str); > fi;# end if 1; > end; omniout_str := proc(iolevel, str) global glob_iolevel; if iolevel <= glob_iolevel then printf("%s\n", str) end if end proc > # End Function number 2 > # Begin Function number 3 > omniout_str_noeol := proc(iolevel,str) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > printf("%s",str); > fi;# end if 1; > end; omniout_str_noeol := proc(iolevel, str) global glob_iolevel; if iolevel <= glob_iolevel then printf("%s", str) end if end proc > # End Function number 3 > # Begin Function number 4 > omniout_labstr := proc(iolevel,label,str) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > print(label,str); > fi;# end if 1; > end; omniout_labstr := proc(iolevel, label, str) global glob_iolevel; if iolevel <= glob_iolevel then print(label, str) end if end proc > # End Function number 4 > # Begin Function number 5 > omniout_float := proc(iolevel,prelabel,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > if vallen = 4 then > printf("%-30s = %-42.4g %s \n",prelabel,value, postlabel); > else > printf("%-30s = %-42.32g %s \n",prelabel,value, postlabel); > fi;# end if 1; > fi;# end if 0; > end; omniout_float := proc(iolevel, prelabel, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then if vallen = 4 then printf("%-30s = %-42.4g %s \n", prelabel, value, postlabel) else printf("%-30s = %-42.32g %s \n", prelabel, value, postlabel) end if end if end proc > # End Function number 5 > # Begin Function number 6 > omniout_int := proc(iolevel,prelabel,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 0 > if vallen = 5 then # if number 1 > printf("%-30s = %-32d %s\n",prelabel,value, postlabel); > else > printf("%-30s = %-32d %s \n",prelabel,value, postlabel); > fi;# end if 1; > fi;# end if 0; > end; omniout_int := proc(iolevel, prelabel, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then if vallen = 5 then printf("%-30s = %-32d %s\n", prelabel, value, postlabel) else printf("%-30s = %-32d %s \n", prelabel, value, postlabel) end if end if end proc > # End Function number 6 > # Begin Function number 7 > omniout_float_arr := proc(iolevel,prelabel,elemnt,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 0 > print(prelabel,"[",elemnt,"]",value, postlabel); > fi;# end if 0; > end; omniout_float_arr := proc( iolevel, prelabel, elemnt, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then print(prelabel, "[", elemnt, "]", value, postlabel) end if end proc > # End Function number 7 > # Begin Function number 8 > dump_series := proc(iolevel,dump_label,series_name,arr_series,numb) > global glob_iolevel; > local i; > if (glob_iolevel >= iolevel) then # if number 0 > i := 1; > while (i <= numb) do # do number 1 > print(dump_label,series_name > ,i,arr_series[i]); > i := i + 1; > od;# end do number 1 > fi;# end if 0 > end; dump_series := proc(iolevel, dump_label, series_name, arr_series, numb) local i; global glob_iolevel; if iolevel <= glob_iolevel then i := 1; while i <= numb do print(dump_label, series_name, i, arr_series[i]); i := i + 1 end do end if end proc > # End Function number 8 > # Begin Function number 9 > dump_series_2 := proc(iolevel,dump_label,series_name2,arr_series2,numb,subnum,arr_x) > global glob_iolevel; > local i,sub,ts_term; > if (glob_iolevel >= iolevel) then # if number 0 > sub := 1; > while (sub <= subnum) do # do number 1 > i := 1; > while (i <= numb) do # do number 2 > print(dump_label,series_name2,sub,i,arr_series2[sub,i]); > od;# end do number 2; > sub := sub + 1; > od;# end do number 1; > fi;# end if 0; > end; dump_series_2 := proc( iolevel, dump_label, series_name2, arr_series2, numb, subnum, arr_x) local i, sub, ts_term; global glob_iolevel; if iolevel <= glob_iolevel then sub := 1; while sub <= subnum do i := 1; while i <= numb do print(dump_label, series_name2, sub, i, arr_series2[sub, i]) end do; sub := sub + 1 end do end if end proc > # End Function number 9 > # Begin Function number 10 > cs_info := proc(iolevel,str) > global glob_iolevel,glob_correct_start_flag,glob_h,glob_reached_optimal_h; > if (glob_iolevel >= iolevel) then # if number 0 > print("cs_info " , str , " glob_correct_start_flag = " , glob_correct_start_flag , "glob_h := " , glob_h , "glob_reached_optimal_h := " , glob_reached_optimal_h) > fi;# end if 0; > end; cs_info := proc(iolevel, str) global glob_iolevel, glob_correct_start_flag, glob_h, glob_reached_optimal_h; if iolevel <= glob_iolevel then print("cs_info ", str, " glob_correct_start_flag = ", glob_correct_start_flag, "glob_h := ", glob_h, "glob_reached_optimal_h := ", glob_reached_optimal_h) end if end proc > # End Function number 10 > # Begin Function number 11 > logitem_time := proc(fd,secs_in) > global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; > local days_int, hours_int,minutes_int, sec_int, sec_temp, years_int; > fprintf(fd,""); > if (secs_in >= 0) then # if number 0 > years_int := trunc(secs_in / glob_sec_in_year); > sec_temp := (trunc(secs_in) mod trunc(glob_sec_in_year)); > days_int := trunc(sec_temp / glob_sec_in_day) ; > sec_temp := (sec_temp mod trunc(glob_sec_in_day)) ; > hours_int := trunc(sec_temp / glob_sec_in_hour); > sec_temp := (sec_temp mod trunc(glob_sec_in_hour)); > minutes_int := trunc(sec_temp / glob_sec_in_minute); > sec_int := (sec_temp mod trunc(glob_sec_in_minute)); > if (years_int > 0) then # if number 1 > fprintf(fd,"%d Years %d Days %d Hours %d Minutes %d Seconds",years_int,days_int,hours_int,minutes_int,sec_int); > elif > (days_int > 0) then # if number 2 > fprintf(fd,"%d Days %d Hours %d Minutes %d Seconds",days_int,hours_int,minutes_int,sec_int); > elif > (hours_int > 0) then # if number 3 > fprintf(fd,"%d Hours %d Minutes %d Seconds",hours_int,minutes_int,sec_int); > elif > (minutes_int > 0) then # if number 4 > fprintf(fd,"%d Minutes %d Seconds",minutes_int,sec_int); > else > fprintf(fd,"%d Seconds",sec_int); > fi;# end if 4 > else > fprintf(fd," Unknown"); > fi;# end if 3 > fprintf(fd,"\n"); > end; logitem_time := proc(fd, secs_in) local days_int, hours_int, minutes_int, sec_int, sec_temp, years_int; global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; fprintf(fd, ""); if 0 <= secs_in then years_int := trunc(secs_in/glob_sec_in_year); sec_temp := trunc(secs_in) mod trunc(glob_sec_in_year); days_int := trunc(sec_temp/glob_sec_in_day); sec_temp := sec_temp mod trunc(glob_sec_in_day); hours_int := trunc(sec_temp/glob_sec_in_hour); sec_temp := sec_temp mod trunc(glob_sec_in_hour); minutes_int := trunc(sec_temp/glob_sec_in_minute); sec_int := sec_temp mod trunc(glob_sec_in_minute); if 0 < years_int then fprintf(fd, "%d Years %d Days %d Hours %d Minutes %d Seconds", years_int, days_int, hours_int, minutes_int, sec_int) elif 0 < days_int then fprintf(fd, "%d Days %d Hours %d Minutes %d Seconds", days_int, hours_int, minutes_int, sec_int) elif 0 < hours_int then fprintf(fd, "%d Hours %d Minutes %d Seconds", hours_int, minutes_int, sec_int) elif 0 < minutes_int then fprintf(fd, "%d Minutes %d Seconds", minutes_int, sec_int) else fprintf(fd, "%d Seconds", sec_int) end if else fprintf(fd, " Unknown") end if; fprintf(fd, "\n") end proc > # End Function number 11 > # Begin Function number 12 > omniout_timestr := proc(secs_in) > global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; > local days_int, hours_int,minutes_int, sec_int, sec_temp, years_int; > if (secs_in >= 0) then # if number 3 > years_int := trunc(secs_in / glob_sec_in_year); > sec_temp := (trunc(secs_in) mod trunc(glob_sec_in_year)); > days_int := trunc(sec_temp / glob_sec_in_day) ; > sec_temp := (sec_temp mod trunc(glob_sec_in_day)) ; > hours_int := trunc(sec_temp / glob_sec_in_hour); > sec_temp := (sec_temp mod trunc(glob_sec_in_hour)); > minutes_int := trunc(sec_temp / glob_sec_in_minute); > sec_int := (sec_temp mod trunc(glob_sec_in_minute)); > if (years_int > 0) then # if number 4 > printf(" = %d Years %d Days %d Hours %d Minutes %d Seconds\n",years_int,days_int,hours_int,minutes_int,sec_int); > elif > (days_int > 0) then # if number 5 > printf(" = %d Days %d Hours %d Minutes %d Seconds\n",days_int,hours_int,minutes_int,sec_int); > elif > (hours_int > 0) then # if number 6 > printf(" = %d Hours %d Minutes %d Seconds\n",hours_int,minutes_int,sec_int); > elif > (minutes_int > 0) then # if number 7 > printf(" = %d Minutes %d Seconds\n",minutes_int,sec_int); > else > printf(" = %d Seconds\n",sec_int); > fi;# end if 7 > else > printf(" Unknown\n"); > fi;# end if 6 > end; omniout_timestr := proc(secs_in) local days_int, hours_int, minutes_int, sec_int, sec_temp, years_int; global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; if 0 <= secs_in then years_int := trunc(secs_in/glob_sec_in_year); sec_temp := trunc(secs_in) mod trunc(glob_sec_in_year); days_int := trunc(sec_temp/glob_sec_in_day); sec_temp := sec_temp mod trunc(glob_sec_in_day); hours_int := trunc(sec_temp/glob_sec_in_hour); sec_temp := sec_temp mod trunc(glob_sec_in_hour); minutes_int := trunc(sec_temp/glob_sec_in_minute); sec_int := sec_temp mod trunc(glob_sec_in_minute); if 0 < years_int then printf( " = %d Years %d Days %d Hours %d Minutes %d Seconds\n", years_int, days_int, hours_int, minutes_int, sec_int) elif 0 < days_int then printf( " = %d Days %d Hours %d Minutes %d Seconds\n", days_int, hours_int, minutes_int, sec_int) elif 0 < hours_int then printf( " = %d Hours %d Minutes %d Seconds\n", hours_int, minutes_int, sec_int) elif 0 < minutes_int then printf(" = %d Minutes %d Seconds\n", minutes_int, sec_int) else printf(" = %d Seconds\n", sec_int) end if else printf(" Unknown\n") end if end proc > # End Function number 12 > # Begin Function number 13 > ats := proc(mmm_ats,arr_a,arr_b,jjj_ats) > local iii_ats, lll_ats,ma_ats, ret_ats; > ret_ats := 0.0; > if (jjj_ats <= mmm_ats) then # if number 6 > ma_ats := mmm_ats + 1; > iii_ats := jjj_ats; > while (iii_ats <= mmm_ats) do # do number 1 > lll_ats := ma_ats - iii_ats; > ret_ats := ret_ats + arr_a[iii_ats]*arr_b[lll_ats]; > iii_ats := iii_ats + 1; > od;# end do number 1 > fi;# end if 6; > ret_ats; > end; ats := proc(mmm_ats, arr_a, arr_b, jjj_ats) local iii_ats, lll_ats, ma_ats, ret_ats; ret_ats := 0.; if jjj_ats <= mmm_ats then ma_ats := mmm_ats + 1; iii_ats := jjj_ats; while iii_ats <= mmm_ats do lll_ats := ma_ats - iii_ats; ret_ats := ret_ats + arr_a[iii_ats]*arr_b[lll_ats]; iii_ats := iii_ats + 1 end do end if; ret_ats end proc > # End Function number 13 > # Begin Function number 14 > att := proc(mmm_att,arr_aa,arr_bb,jjj_att) > global glob_max_terms; > local al_att, iii_att,lll_att, ma_att, ret_att; > ret_att := 0.0; > if (jjj_att <= mmm_att) then # if number 6 > ma_att := mmm_att + 2; > iii_att := jjj_att; > while (iii_att <= mmm_att) do # do number 1 > lll_att := ma_att - iii_att; > al_att := (lll_att - 1); > if (lll_att <= glob_max_terms) then # if number 7 > ret_att := ret_att + arr_aa[iii_att]*arr_bb[lll_att]* convfp(al_att); > fi;# end if 7; > iii_att := iii_att + 1; > od;# end do number 1; > ret_att := ret_att / convfp(mmm_att) ; > fi;# end if 6; > ret_att; > end; att := proc(mmm_att, arr_aa, arr_bb, jjj_att) local al_att, iii_att, lll_att, ma_att, ret_att; global glob_max_terms; ret_att := 0.; if jjj_att <= mmm_att then ma_att := mmm_att + 2; iii_att := jjj_att; while iii_att <= mmm_att do lll_att := ma_att - iii_att; al_att := lll_att - 1; if lll_att <= glob_max_terms then ret_att := ret_att + arr_aa[iii_att]*arr_bb[lll_att]*convfp(al_att) end if; iii_att := iii_att + 1 end do; ret_att := ret_att/convfp(mmm_att) end if; ret_att end proc > # End Function number 14 > # Begin Function number 15 > display_pole := proc() > global ALWAYS,glob_display_flag, glob_large_float, array_pole; > if ((array_pole[1] <> glob_large_float) and (array_pole[1] > 0.0) and (array_pole[2] <> glob_large_float) and (array_pole[2]> 0.0) and glob_display_flag) then # if number 6 > omniout_float(ALWAYS,"Radius of convergence ",4, array_pole[1],4," "); > omniout_float(ALWAYS,"Order of pole ",4, array_pole[2],4," "); > fi;# end if 6 > end; display_pole := proc() global ALWAYS, glob_display_flag, glob_large_float, array_pole; if array_pole[1] <> glob_large_float and 0. < array_pole[1] and array_pole[2] <> glob_large_float and 0. < array_pole[2] and glob_display_flag then omniout_float(ALWAYS, "Radius of convergence ", 4, array_pole[1], 4, " "); omniout_float(ALWAYS, "Order of pole ", 4, array_pole[2], 4, " ") end if end proc > # End Function number 15 > # Begin Function number 16 > logditto := proc(file) > fprintf(file,""); > fprintf(file,"ditto"); > fprintf(file,""); > end; logditto := proc(file) fprintf(file, ""); fprintf(file, "ditto"); fprintf(file, "") end proc > # End Function number 16 > # Begin Function number 17 > logitem_integer := proc(file,n) > fprintf(file,""); > fprintf(file,"%d",n); > fprintf(file,""); > end; logitem_integer := proc(file, n) fprintf(file, ""); fprintf(file, "%d", n); fprintf(file, "") end proc > # End Function number 17 > # Begin Function number 18 > logitem_str := proc(file,str) > fprintf(file,""); > fprintf(file,str); > fprintf(file,""); > end; logitem_str := proc(file, str) fprintf(file, ""); fprintf(file, str); fprintf(file, "") end proc > # End Function number 18 > # Begin Function number 19 > logitem_good_digits := proc(file,rel_error) > global glob_small_float; > local good_digits; > fprintf(file,""); > if (rel_error <> -1.0) then # if number 6 > if (rel_error > + 0.0000000000000000000000000000000001) then # if number 7 > good_digits := 1-trunc(log10(rel_error)); > fprintf(file,"%d",good_digits); > else > good_digits := Digits; > fprintf(file,"%d",good_digits); > fi;# end if 7; > else > fprintf(file,"Unknown"); > fi;# end if 6; > fprintf(file,""); > end; logitem_good_digits := proc(file, rel_error) local good_digits; global glob_small_float; fprintf(file, ""); if rel_error <> -1.0 then if 0.1*10^(-33) < rel_error then good_digits := 1 - trunc(log10(rel_error)); fprintf(file, "%d", good_digits) else good_digits := Digits; fprintf(file, "%d", good_digits) end if else fprintf(file, "Unknown") end if; fprintf(file, "") end proc > # End Function number 19 > # Begin Function number 20 > log_revs := proc(file,revs) > fprintf(file,revs); > end; log_revs := proc(file, revs) fprintf(file, revs) end proc > # End Function number 20 > # Begin Function number 21 > logitem_float := proc(file,x) > fprintf(file,""); > fprintf(file,"%g",x); > fprintf(file,""); > end; logitem_float := proc(file, x) fprintf(file, ""); fprintf(file, "%g", x); fprintf(file, "") end proc > # End Function number 21 > # Begin Function number 22 > logitem_pole := proc(file,pole) > fprintf(file,""); > if (pole = 0) then # if number 6 > fprintf(file,"NA"); > elif > (pole = 1) then # if number 7 > fprintf(file,"Real"); > elif > (pole = 2) then # if number 8 > fprintf(file,"Complex"); > else > fprintf(file,"No Pole"); > fi;# end if 8 > fprintf(file,""); > end; logitem_pole := proc(file, pole) fprintf(file, ""); if pole = 0 then fprintf(file, "NA") elif pole = 1 then fprintf(file, "Real") elif pole = 2 then fprintf(file, "Complex") else fprintf(file, "No Pole") end if; fprintf(file, "") end proc > # End Function number 22 > # Begin Function number 23 > logstart := proc(file) > fprintf(file,""); > end; logstart := proc(file) fprintf(file, "") end proc > # End Function number 23 > # Begin Function number 24 > logend := proc(file) > fprintf(file,"\n"); > end; logend := proc(file) fprintf(file, "\n") end proc > # End Function number 24 > # Begin Function number 25 > chk_data := proc() > global glob_max_iter,ALWAYS, glob_max_terms; > local errflag; > errflag := false; > if ((glob_max_terms < 15) or (glob_max_terms > 512)) then # if number 8 > omniout_str(ALWAYS,"Illegal max_terms = -- Using 30"); > glob_max_terms := 30; > fi;# end if 8; > if (glob_max_iter < 2) then # if number 8 > omniout_str(ALWAYS,"Illegal max_iter"); > errflag := true; > fi;# end if 8; > if (errflag) then # if number 8 > quit; > fi;# end if 8 > end; chk_data := proc() local errflag; global glob_max_iter, ALWAYS, glob_max_terms; errflag := false; if glob_max_terms < 15 or 512 < glob_max_terms then omniout_str(ALWAYS, "Illegal max_terms = -- Using 30"); glob_max_terms := 30 end if; if glob_max_iter < 2 then omniout_str(ALWAYS, "Illegal max_iter"); errflag := true end if; if errflag then quit end if end proc > # End Function number 25 > # Begin Function number 26 > comp_expect_sec := proc(t_end2,t_start2,t2,clock_sec2) > global glob_small_float; > local ms2, rrr, sec_left, sub1, sub2; > ; > ms2 := clock_sec2; > sub1 := (t_end2-t_start2); > sub2 := (t2-t_start2); > if (sub1 = 0.0) then # if number 8 > sec_left := 0.0; > else > if (sub2 > 0.0) then # if number 9 > rrr := (sub1/sub2); > sec_left := rrr * ms2 - ms2; > else > sec_left := 0.0; > fi;# end if 9 > fi;# end if 8; > sec_left; > end; comp_expect_sec := proc(t_end2, t_start2, t2, clock_sec2) local ms2, rrr, sec_left, sub1, sub2; global glob_small_float; ms2 := clock_sec2; sub1 := t_end2 - t_start2; sub2 := t2 - t_start2; if sub1 = 0. then sec_left := 0. else if 0. < sub2 then rrr := sub1/sub2; sec_left := rrr*ms2 - ms2 else sec_left := 0. end if end if; sec_left end proc > # End Function number 26 > # Begin Function number 27 > comp_percent := proc(t_end2,t_start2, t2) > global glob_small_float; > local rrr, sub1, sub2; > sub1 := (t_end2-t_start2); > sub2 := (t2-t_start2); > if (sub2 > glob_small_float) then # if number 8 > rrr := (100.0*sub2)/sub1; > else > rrr := 0.0; > fi;# end if 8; > rrr; > end; comp_percent := proc(t_end2, t_start2, t2) local rrr, sub1, sub2; global glob_small_float; sub1 := t_end2 - t_start2; sub2 := t2 - t_start2; if glob_small_float < sub2 then rrr := 100.0*sub2/sub1 else rrr := 0. end if; rrr end proc > # End Function number 27 > # Begin Function number 28 > factorial_2 := proc(nnn) > nnn!; > end; factorial_2 := proc(nnn) nnn! end proc > # End Function number 28 > # Begin Function number 29 > factorial_1 := proc(nnn) > global glob_max_terms,array_fact_1; > local ret; > if (nnn <= glob_max_terms) then # if number 8 > if (array_fact_1[nnn] = 0) then # if number 9 > ret := factorial_2(nnn); > array_fact_1[nnn] := ret; > else > ret := array_fact_1[nnn]; > fi;# end if 9; > else > ret := factorial_2(nnn); > fi;# end if 8; > ret; > end; factorial_1 := proc(nnn) local ret; global glob_max_terms, array_fact_1; if nnn <= glob_max_terms then if array_fact_1[nnn] = 0 then ret := factorial_2(nnn); array_fact_1[nnn] := ret else ret := array_fact_1[nnn] end if else ret := factorial_2(nnn) end if; ret end proc > # End Function number 29 > # Begin Function number 30 > factorial_3 := proc(mmm,nnn) > global glob_max_terms,array_fact_2; > local ret; > if ((nnn <= glob_max_terms) and (mmm <= glob_max_terms)) then # if number 8 > if (array_fact_2[mmm,nnn] = 0) then # if number 9 > ret := factorial_1(mmm)/factorial_1(nnn); > array_fact_2[mmm,nnn] := ret; > else > ret := array_fact_2[mmm,nnn]; > fi;# end if 9; > else > ret := factorial_2(mmm)/factorial_2(nnn); > fi;# end if 8; > ret; > end; factorial_3 := proc(mmm, nnn) local ret; global glob_max_terms, array_fact_2; if nnn <= glob_max_terms and mmm <= glob_max_terms then if array_fact_2[mmm, nnn] = 0 then ret := factorial_1(mmm)/factorial_1(nnn); array_fact_2[mmm, nnn] := ret else ret := array_fact_2[mmm, nnn] end if else ret := factorial_2(mmm)/factorial_2(nnn) end if; ret end proc > # End Function number 30 > # Begin Function number 31 > convfp := proc(mmm) > (mmm); > end; convfp := proc(mmm) mmm end proc > # End Function number 31 > # Begin Function number 32 > convfloat := proc(mmm) > (mmm); > end; convfloat := proc(mmm) mmm end proc > # End Function number 32 > # Begin Function number 33 > elapsed_time_seconds := proc() > time(); > end; elapsed_time_seconds := proc() time() end proc > # End Function number 33 > # Begin Function number 34 > omniabs := proc(x) > abs(x); > end; omniabs := proc(x) abs(x) end proc > # End Function number 34 > # Begin Function number 35 > expt := proc(x,y) > (x^y); > end; expt := proc(x, y) x^y end proc > # End Function number 35 > # Begin Function number 36 > estimated_needed_step_error := proc(x_start,x_end,estimated_h,estimated_answer) > local desired_abs_gbl_error,range,estimated_steps,step_error; > global glob_desired_digits_correct,ALWAYS; > omniout_float(ALWAYS,"glob_desired_digits_correct",32,glob_desired_digits_correct,32,""); > desired_abs_gbl_error := expt(10.0,- glob_desired_digits_correct) * omniabs(estimated_answer); > omniout_float(ALWAYS,"desired_abs_gbl_error",32,desired_abs_gbl_error,32,""); > range := (x_end - x_start); > omniout_float(ALWAYS,"range",32,range,32,""); > estimated_steps := range / estimated_h; > omniout_float(ALWAYS,"estimated_steps",32,estimated_steps,32,""); > step_error := omniabs(desired_abs_gbl_error / estimated_steps); > omniout_float(ALWAYS,"step_error",32,step_error,32,""); > (step_error);; > end; estimated_needed_step_error := proc( x_start, x_end, estimated_h, estimated_answer) local desired_abs_gbl_error, range, estimated_steps, step_error; global glob_desired_digits_correct, ALWAYS; omniout_float(ALWAYS, "glob_desired_digits_correct", 32, glob_desired_digits_correct, 32, ""); desired_abs_gbl_error := expt(10.0, -glob_desired_digits_correct)*omniabs(estimated_answer); omniout_float(ALWAYS, "desired_abs_gbl_error", 32, desired_abs_gbl_error, 32, ""); range := x_end - x_start; omniout_float(ALWAYS, "range", 32, range, 32, ""); estimated_steps := range/estimated_h; omniout_float(ALWAYS, "estimated_steps", 32, estimated_steps, 32, ""); step_error := omniabs(desired_abs_gbl_error/estimated_steps); omniout_float(ALWAYS, "step_error", 32, step_error, 32, ""); step_error end proc > # End Function number 36 > #END ATS LIBRARY BLOCK > #BEGIN USER DEF BLOCK > #BEGIN USER DEF BLOCK > exact_soln_y := proc(x) > return(1.0 / (x * x + 0.000001)); > end; exact_soln_y := proc(x) return 1.0/(x*x + 0.1*10^(-5)) end proc > #END USER DEF BLOCK > #END USER DEF BLOCK > #END OUTFILE5 > # Begin Function number 2 > main := proc() > #BEGIN OUTFIEMAIN > local d1,d2,d3,d4,est_err_2,niii,done_once, > term,ord,order_diff,term_no,html_log_file,iiif,jjjf, > rows,r_order,sub_iter,calc_term,iii,temp_sum,current_iter, > x_start,x_end > ,it, log10norm, max_terms, opt_iter, tmp,subiter, est_needed_step_err,value3,min_value,est_answer,best_h,found_h,repeat_it; > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_0D000001, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4, > array_tmp5, > array_tmp6, > array_tmp7, > array_tmp8, > array_tmp9, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > glob_last; > ALWAYS := 1; > INFO := 2; > DEBUGL := 3; > DEBUGMASSIVE := 4; > glob_iolevel := INFO; > glob_max_terms := 30; > glob_iolevel := 5; > ALWAYS := 1; > INFO := 2; > DEBUGL := 3; > DEBUGMASSIVE := 4; > MAX_UNCHANGED := 10; > glob_check_sign := 1.0; > glob_desired_digits_correct := 8.0; > glob_max_value3 := 0.0; > glob_ratio_of_radius := 0.01; > glob_percent_done := 0.0; > glob_subiter_method := 3; > glob_log10normmin := 0.1; > glob_total_exp_sec := 0.1; > glob_optimal_expect_sec := 0.1; > glob_html_log := true; > glob_good_digits := 0; > glob_max_opt_iter := 10; > glob_dump := false; > glob_djd_debug := true; > glob_display_flag := true; > glob_djd_debug2 := true; > glob_sec_in_minute := 60; > glob_min_in_hour := 60; > glob_hours_in_day := 24; > glob_days_in_year := 365; > glob_sec_in_hour := 3600; > glob_sec_in_day := 86400; > glob_sec_in_year := 31536000; > glob_almost_1 := 0.9990; > glob_clock_sec := 0.0; > glob_clock_start_sec := 0.0; > glob_not_yet_finished := true; > glob_initial_pass := true; > glob_not_yet_start_msg := true; > glob_reached_optimal_h := false; > glob_optimal_done := false; > glob_disp_incr := 0.1; > glob_h := 0.1; > glob_hmax := 1.0; > glob_hmin := 0.00000000001; > glob_hmin_init := 0.001; > glob_large_float := 9.0e100; > glob_last_good_h := 0.1; > glob_look_poles := false; > glob_neg_h := false; > glob_display_interval := 0.0; > glob_next_display := 0.0; > glob_dump_analytic := false; > glob_log10_abserr := 0.1e-10; > glob_log10_relerr := 0.1e-10; > glob_abserr := 0.1e-10; > glob_relerr := 0.1e-10; > glob_max_hours := 0.0; > glob_max_iter := 1000; > glob_max_rel_trunc_err := 0.1e-10; > glob_max_trunc_err := 0.1e-10; > glob_no_eqs := 0; > glob_optimal_clock_start_sec := 0.0; > glob_optimal_start := 0.0; > glob_small_float := 0.1e-50; > glob_smallish_float := 0.1e-100; > glob_unchanged_h_cnt := 0; > glob_warned := false; > glob_warned2 := false; > glob_max_sec := 10000.0; > glob_orig_start_sec := 0.0; > glob_start := 0; > glob_curr_iter_when_opt := 0; > glob_current_iter := 0; > glob_iter := 0; > glob_normmax := 0.0; > glob_log10abserr := 0.0; > glob_log10relerr := 0.0; > glob_max_minutes := 0.0; > #Write Set Defaults > glob_orig_start_sec := elapsed_time_seconds(); > MAX_UNCHANGED := 10; > glob_curr_iter_when_opt := 0; > glob_display_flag := true; > glob_no_eqs := 1; > glob_iter := -1; > opt_iter := -1; > glob_max_iter := 50000; > glob_max_hours := 0.0; > glob_max_minutes := 15.0; > omniout_str(ALWAYS,"##############ECHO OF PROBLEM#################"); > omniout_str(ALWAYS,"##############temp/sing1postode.ode#################"); > omniout_str(ALWAYS,"diff ( y , x , 1 ) = m1 * 2.0 * x / (x * x + 0.000001) /( x * x + 0.000001);"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#BEGIN FIRST INPUT BLOCK"); > omniout_str(ALWAYS,"Digits:=32;"); > omniout_str(ALWAYS,"max_terms:=30;"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#END FIRST INPUT BLOCK"); > omniout_str(ALWAYS,"#BEGIN SECOND INPUT BLOCK"); > omniout_str(ALWAYS,"x_start := -2.0;"); > omniout_str(ALWAYS,"x_end := 1.0;"); > omniout_str(ALWAYS,"array_y_init[0 + 1] := exact_soln_y(x_start);"); > omniout_str(ALWAYS,"glob_h := 0.1;"); > omniout_str(ALWAYS,"glob_look_poles := true;"); > omniout_str(ALWAYS,"glob_max_iter := 500;"); > omniout_str(ALWAYS,"#END SECOND INPUT BLOCK"); > omniout_str(ALWAYS,"#BEGIN OVERRIDE BLOCK"); > omniout_str(ALWAYS,"glob_desired_digits_correct:=10;"); > omniout_str(ALWAYS,"glob_display_interval:=0.001;"); > omniout_str(ALWAYS,"glob_look_poles:=true;"); > omniout_str(ALWAYS,"glob_max_iter:=10000000;"); > omniout_str(ALWAYS,"glob_max_minutes:=3;"); > omniout_str(ALWAYS,"glob_subiter_method:=3;"); > omniout_str(ALWAYS,"#END OVERRIDE BLOCK"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#BEGIN USER DEF BLOCK"); > omniout_str(ALWAYS,"exact_soln_y := proc(x)"); > omniout_str(ALWAYS,"return(1.0 / (x * x + 0.000001));"); > omniout_str(ALWAYS,"end;"); > omniout_str(ALWAYS,""); > omniout_str(ALWAYS,""); > omniout_str(ALWAYS,"#END USER DEF BLOCK"); > omniout_str(ALWAYS,"#######END OF ECHO OF PROBLEM#################"); > glob_unchanged_h_cnt := 0; > glob_warned := false; > glob_warned2 := false; > glob_small_float := 1.0e-200; > glob_smallish_float := 1.0e-64; > glob_large_float := 1.0e100; > glob_almost_1 := 0.99; > glob_log10_abserr := -8.0; > glob_log10_relerr := -8.0; > glob_hmax := 0.01; > #BEGIN FIRST INPUT BLOCK > #BEGIN FIRST INPUT BLOCK > Digits:=32; > max_terms:=30; > #END FIRST INPUT BLOCK > #START OF INITS AFTER INPUT BLOCK > glob_max_terms := max_terms; > glob_html_log := true; > #END OF INITS AFTER INPUT BLOCK > array_y_init:= Array(0..(max_terms + 1),[]); > array_norms:= Array(0..(max_terms + 1),[]); > array_fact_1:= Array(0..(max_terms + 1),[]); > array_pole:= Array(0..(max_terms + 1),[]); > array_1st_rel_error:= Array(0..(max_terms + 1),[]); > array_last_rel_error:= Array(0..(max_terms + 1),[]); > array_type_pole:= Array(0..(max_terms + 1),[]); > array_y:= Array(0..(max_terms + 1),[]); > array_x:= Array(0..(max_terms + 1),[]); > array_tmp0:= Array(0..(max_terms + 1),[]); > array_tmp1:= Array(0..(max_terms + 1),[]); > array_tmp2:= Array(0..(max_terms + 1),[]); > array_tmp3:= Array(0..(max_terms + 1),[]); > array_tmp4:= Array(0..(max_terms + 1),[]); > array_tmp5:= Array(0..(max_terms + 1),[]); > array_tmp6:= Array(0..(max_terms + 1),[]); > array_tmp7:= Array(0..(max_terms + 1),[]); > array_tmp8:= Array(0..(max_terms + 1),[]); > array_tmp9:= Array(0..(max_terms + 1),[]); > array_m1:= Array(0..(max_terms + 1),[]); > array_y_higher := Array(0..(2+ 1) ,(0..max_terms+ 1),[]); > array_y_higher_work := Array(0..(2+ 1) ,(0..max_terms+ 1),[]); > array_y_higher_work2 := Array(0..(2+ 1) ,(0..max_terms+ 1),[]); > array_y_set_initial := Array(0..(2+ 1) ,(0..max_terms+ 1),[]); > array_poles := Array(0..(1+ 1) ,(0..3+ 1),[]); > array_real_pole := Array(0..(1+ 1) ,(0..3+ 1),[]); > array_complex_pole := Array(0..(1+ 1) ,(0..3+ 1),[]); > array_fact_2 := Array(0..(max_terms+ 1) ,(0..max_terms+ 1),[]); > term := 1; > while (term <= max_terms) do # do number 2 > array_y_init[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_norms[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_fact_1[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_pole[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_1st_rel_error[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_last_rel_error[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_type_pole[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_y[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_x[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp0[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp1[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp2[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp3[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp4[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp5[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp6[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp7[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp8[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp9[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_m1[term] := 0.0; > term := term + 1; > od;# end do number 2; > ord := 1; > while (ord <=2) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_y_higher[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=2) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_y_higher_work[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=2) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_y_higher_work2[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=2) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_y_set_initial[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=1) do # do number 2 > term := 1; > while (term <= 3) do # do number 3 > array_poles[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=1) do # do number 2 > term := 1; > while (term <= 3) do # do number 3 > array_real_pole[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=1) do # do number 2 > term := 1; > while (term <= 3) do # do number 3 > array_complex_pole[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=max_terms) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_fact_2[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > #BEGIN ARRAYS DEFINED AND INITIALIZATED > array_y := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_y[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_x := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_x[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_m1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_m1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp0 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp0[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp2 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp2[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp3 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp3[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp4 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp4[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp5 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp5[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp6 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp6[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp7 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp7[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp8 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp8[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp9 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp9[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_1[1] := 1; > array_const_0D0 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_0D0[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_0D0[1] := 0.0; > array_const_2D0 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_2D0[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_2D0[1] := 2.0; > array_const_0D000001 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_0D000001[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_0D000001[1] := 0.000001; > array_m1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms) do # do number 2 > array_m1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_m1[1] := -1.0; > #END ARRAYS DEFINED AND INITIALIZATED > #Initing Factorial Tables > iiif := 0; > while (iiif <= glob_max_terms) do # do number 2 > jjjf := 0; > while (jjjf <= glob_max_terms) do # do number 3 > array_fact_1[iiif] := 0; > array_fact_2[iiif,jjjf] := 0; > jjjf := jjjf + 1; > od;# end do number 3; > iiif := iiif + 1; > od;# end do number 2; > #Done Initing Factorial Tables > #TOP SECOND INPUT BLOCK > #BEGIN SECOND INPUT BLOCK > #END FIRST INPUT BLOCK > #BEGIN SECOND INPUT BLOCK > x_start := -2.0; > x_end := 1.0; > array_y_init[0 + 1] := exact_soln_y(x_start); > glob_h := 0.1; > glob_look_poles := true; > glob_max_iter := 500; > #END SECOND INPUT BLOCK > #BEGIN OVERRIDE BLOCK > glob_desired_digits_correct:=10; > glob_display_interval:=0.001; > glob_look_poles:=true; > glob_max_iter:=10000000; > glob_max_minutes:=3; > glob_subiter_method:=3; > #END OVERRIDE BLOCK > #END SECOND INPUT BLOCK > #BEGIN INITS AFTER SECOND INPUT BLOCK > glob_last_good_h := glob_h; > glob_max_terms := max_terms; > glob_max_sec := convfloat(60.0) * convfloat(glob_max_minutes) + convfloat(3600.0) * convfloat(glob_max_hours); > glob_abserr := expt(10.0 , (glob_log10_abserr)); > glob_relerr := expt(10.0 , (glob_log10_relerr)); > if (glob_h > 0.0) then # if number 1 > glob_neg_h := false; > glob_display_interval := omniabs(glob_display_interval); > else > glob_neg_h := true; > glob_display_interval := -omniabs(glob_display_interval); > fi;# end if 1; > chk_data(); > #AFTER INITS AFTER SECOND INPUT BLOCK > array_y_set_initial[1,1] := true; > array_y_set_initial[1,2] := false; > array_y_set_initial[1,3] := false; > array_y_set_initial[1,4] := false; > array_y_set_initial[1,5] := false; > array_y_set_initial[1,6] := false; > array_y_set_initial[1,7] := false; > array_y_set_initial[1,8] := false; > array_y_set_initial[1,9] := false; > array_y_set_initial[1,10] := false; > array_y_set_initial[1,11] := false; > array_y_set_initial[1,12] := false; > array_y_set_initial[1,13] := false; > array_y_set_initial[1,14] := false; > array_y_set_initial[1,15] := false; > array_y_set_initial[1,16] := false; > array_y_set_initial[1,17] := false; > array_y_set_initial[1,18] := false; > array_y_set_initial[1,19] := false; > array_y_set_initial[1,20] := false; > array_y_set_initial[1,21] := false; > array_y_set_initial[1,22] := false; > array_y_set_initial[1,23] := false; > array_y_set_initial[1,24] := false; > array_y_set_initial[1,25] := false; > array_y_set_initial[1,26] := false; > array_y_set_initial[1,27] := false; > array_y_set_initial[1,28] := false; > array_y_set_initial[1,29] := false; > array_y_set_initial[1,30] := false; > #BEGIN OPTIMIZE CODE > omniout_str(ALWAYS,"START of Optimize"); > #Start Series -- INITIALIZE FOR OPTIMIZE > glob_check_sign := check_sign(x_start,x_end); > glob_h := check_sign(x_start,x_end); > if (glob_display_interval < glob_h) then # if number 2 > glob_h := glob_display_interval; > fi;# end if 2; > found_h := -1.0; > best_h := 0.0; > min_value := glob_large_float; > est_answer := est_size_answer(); > opt_iter := 1; > while ((opt_iter <= 20) and (found_h < 0.0)) do # do number 2 > omniout_int(ALWAYS,"opt_iter",32,opt_iter,4,""); > array_x[1] := x_start; > array_x[2] := glob_h; > glob_next_display := x_start; > order_diff := 1; > #Start Series array_y > term_no := 1; > while (term_no <= order_diff) do # do number 3 > array_y[term_no] := array_y_init[term_no] * expt(glob_h , (term_no - 1)) / factorial_1(term_no - 1); > term_no := term_no + 1; > od;# end do number 3; > rows := order_diff; > r_order := 1; > while (r_order <= rows) do # do number 3 > term_no := 1; > while (term_no <= (rows - r_order + 1)) do # do number 4 > it := term_no + r_order - 1; > array_y_higher[r_order,term_no] := array_y_init[it]* expt(glob_h , (term_no - 1)) / ((factorial_1(term_no - 1))); > term_no := term_no + 1; > od;# end do number 4; > r_order := r_order + 1; > od;# end do number 3 > ; > atomall(); > est_needed_step_err := estimated_needed_step_error(x_start,x_end,glob_h,est_answer); > omniout_float(ALWAYS,"est_needed_step_err",32,est_needed_step_err,16,""); > value3 := test_suggested_h(); > omniout_float(ALWAYS,"value3",32,value3,32,""); > if ((value3 < est_needed_step_err) and (found_h < 0.0)) then # if number 2 > best_h := glob_h; > found_h := 1.0; > fi;# end if 2; > omniout_float(ALWAYS,"best_h",32,best_h,32,""); > opt_iter := opt_iter + 1; > glob_h := glob_h * 0.5; > od;# end do number 2; > if (found_h > 0.0) then # if number 2 > glob_h := best_h ; > else > omniout_str(ALWAYS,"No increment to obtain desired accuracy found"); > fi;# end if 2; > #END OPTIMIZE CODE > if (glob_html_log) then # if number 2 > html_log_file := fopen("html/entry.html",WRITE,TEXT); > fi;# end if 2; > #BEGIN SOLUTION CODE > if (found_h > 0.0) then # if number 2 > omniout_str(ALWAYS,"START of Soultion"); > #Start Series -- INITIALIZE FOR SOLUTION > array_x[1] := x_start; > array_x[2] := glob_h; > glob_next_display := x_start; > order_diff := 1; > #Start Series array_y > term_no := 1; > while (term_no <= order_diff) do # do number 2 > array_y[term_no] := array_y_init[term_no] * expt(glob_h , (term_no - 1)) / factorial_1(term_no - 1); > term_no := term_no + 1; > od;# end do number 2; > rows := order_diff; > r_order := 1; > while (r_order <= rows) do # do number 2 > term_no := 1; > while (term_no <= (rows - r_order + 1)) do # do number 3 > it := term_no + r_order - 1; > array_y_higher[r_order,term_no] := array_y_init[it]* expt(glob_h , (term_no - 1)) / ((factorial_1(term_no - 1))); > term_no := term_no + 1; > od;# end do number 3; > r_order := r_order + 1; > od;# end do number 2 > ; > current_iter := 1; > glob_clock_start_sec := elapsed_time_seconds(); > glob_log10normmin := -glob_large_float ; > if (omniabs(array_y_higher[1,1]) > glob_small_float) then # if number 3 > tmp := omniabs(array_y_higher[1,1]); > log10norm := (log10(tmp)); > if (log10norm < glob_log10normmin) then # if number 4 > glob_log10normmin := log10norm; > fi;# end if 4 > fi;# end if 3; > display_alot(current_iter) > ; > glob_clock_sec := elapsed_time_seconds(); > glob_current_iter := 0; > glob_iter := 0; > omniout_str(DEBUGL," "); > glob_reached_optimal_h := true; > glob_optimal_clock_start_sec := elapsed_time_seconds(); > while ((glob_current_iter < glob_max_iter) and ((glob_check_sign * array_x[1]) < (glob_check_sign * x_end )) and ((convfloat(glob_clock_sec) - convfloat(glob_orig_start_sec)) < convfloat(glob_max_sec))) do # do number 2 > #left paren 0001C > if (reached_interval()) then # if number 3 > omniout_str(INFO," "); > omniout_str(INFO,"TOP MAIN SOLVE Loop"); > fi;# end if 3; > glob_iter := glob_iter + 1; > glob_clock_sec := elapsed_time_seconds(); > glob_current_iter := glob_current_iter + 1; > atomall(); > display_alot(current_iter); > if (glob_look_poles) then # if number 3 > #left paren 0004C > check_for_pole(); > fi;# end if 3;#was right paren 0004C > if (reached_interval()) then # if number 3 > glob_next_display := glob_next_display + glob_display_interval; > fi;# end if 3; > array_x[1] := array_x[1] + glob_h; > array_x[2] := glob_h; > #Jump Series array_y; > order_diff := 2; > #START PART 1 SUM AND ADJUST > #START SUM AND ADJUST EQ =1 > #sum_and_adjust array_y > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 2; > calc_term := 1; > #adjust_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > array_y_higher_work[2,iii] := array_y_higher[2,iii] / expt(glob_h , (calc_term - 1)) / factorial_3(iii - calc_term , iii - 1); > iii := iii - 1; > od;# end do number 3; > #AFTER ADJUST SUBSERIES EQ =1 > #BEFORE SUM SUBSERIES EQ =1 > temp_sum := 0.0; > ord := 2; > calc_term := 1; > #sum_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > temp_sum := temp_sum + array_y_higher_work[ord,iii]; > iii := iii - 1; > od;# end do number 3; > array_y_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , (calc_term - 1)) / (factorial_1(calc_term - 1)); > #AFTER SUM SUBSERIES EQ =1 > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 1; > calc_term := 2; > #adjust_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > array_y_higher_work[1,iii] := array_y_higher[1,iii] / expt(glob_h , (calc_term - 1)) / factorial_3(iii - calc_term , iii - 1); > iii := iii - 1; > od;# end do number 3; > #AFTER ADJUST SUBSERIES EQ =1 > #BEFORE SUM SUBSERIES EQ =1 > temp_sum := 0.0; > ord := 1; > calc_term := 2; > #sum_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > temp_sum := temp_sum + array_y_higher_work[ord,iii]; > iii := iii - 1; > od;# end do number 3; > array_y_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , (calc_term - 1)) / (factorial_1(calc_term - 1)); > #AFTER SUM SUBSERIES EQ =1 > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 1; > calc_term := 1; > #adjust_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > array_y_higher_work[1,iii] := array_y_higher[1,iii] / expt(glob_h , (calc_term - 1)) / factorial_3(iii - calc_term , iii - 1); > iii := iii - 1; > od;# end do number 3; > #AFTER ADJUST SUBSERIES EQ =1 > #BEFORE SUM SUBSERIES EQ =1 > temp_sum := 0.0; > ord := 1; > calc_term := 1; > #sum_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > temp_sum := temp_sum + array_y_higher_work[ord,iii]; > iii := iii - 1; > od;# end do number 3; > array_y_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , (calc_term - 1)) / (factorial_1(calc_term - 1)); > #AFTER SUM SUBSERIES EQ =1 > #END SUM AND ADJUST EQ =1 > #END PART 1 > #START PART 2 MOVE TERMS to REGULAR Array > term_no := glob_max_terms; > while (term_no >= 1) do # do number 3 > array_y[term_no] := array_y_higher_work2[1,term_no]; > ord := 1; > while (ord <= order_diff) do # do number 4 > array_y_higher[ord,term_no] := array_y_higher_work2[ord,term_no]; > ord := ord + 1; > od;# end do number 4; > term_no := term_no - 1; > od;# end do number 3; > #END PART 2 HEVE MOVED TERMS to REGULAR Array > ; > od;# end do number 2;#right paren 0001C > omniout_str(ALWAYS,"Finished!"); > if (glob_iter >= glob_max_iter) then # if number 3 > omniout_str(ALWAYS,"Maximum Iterations Reached before Solution Completed!"); > fi;# end if 3; > if (elapsed_time_seconds() - convfloat(glob_orig_start_sec) >= convfloat(glob_max_sec )) then # if number 3 > omniout_str(ALWAYS,"Maximum Time Reached before Solution Completed!"); > fi;# end if 3; > glob_clock_sec := elapsed_time_seconds(); > omniout_str(INFO,"diff ( y , x , 1 ) = m1 * 2.0 * x / (x * x + 0.000001) /( x * x + 0.000001);"); > omniout_int(INFO,"Iterations ",32,glob_iter,4," ") > ; > prog_report(x_start,x_end); > if (glob_html_log) then # if number 3 > logstart(html_log_file); > logitem_str(html_log_file,"2013-01-13T01:27:20-06:00") > ; > logitem_str(html_log_file,"Maple") > ; > logitem_str(html_log_file,"sing1") > ; > logitem_str(html_log_file,"diff ( y , x , 1 ) = m1 * 2.0 * x / (x * x + 0.000001) /( x * x + 0.000001);") > ; > logitem_float(html_log_file,x_start) > ; > logitem_float(html_log_file,x_end) > ; > logitem_float(html_log_file,array_x[1]) > ; > logitem_float(html_log_file,glob_h) > ; > logitem_integer(html_log_file,Digits) > ; > ; > logitem_good_digits(html_log_file,array_last_rel_error[1]) > ; > logitem_integer(html_log_file,glob_max_terms) > ; > logitem_float(html_log_file,array_1st_rel_error[1]) > ; > logitem_float(html_log_file,array_last_rel_error[1]) > ; > logitem_integer(html_log_file,glob_iter) > ; > logitem_pole(html_log_file,array_type_pole[1]) > ; > if (array_type_pole[1] = 1 or array_type_pole[1] = 2) then # if number 4 > logitem_float(html_log_file,array_pole[1]) > ; > logitem_float(html_log_file,array_pole[2]) > ; > 0; > else > logitem_str(html_log_file,"NA") > ; > logitem_str(html_log_file,"NA") > ; > 0; > fi;# end if 4; > logitem_time(html_log_file,convfloat(glob_clock_sec)) > ; > if (glob_percent_done < 100.0) then # if number 4 > logitem_time(html_log_file,convfloat(glob_total_exp_sec)) > ; > 0; > else > logitem_str(html_log_file,"Done") > ; > 0; > fi;# end if 4; > log_revs(html_log_file," 156 ") > ; > logitem_str(html_log_file,"sing1 diffeq.mxt") > ; > logitem_str(html_log_file,"sing1 maple results") > ; > logitem_str(html_log_file,"Languages compared - single equations") > ; > logend(html_log_file) > ; > ; > fi;# end if 3; > if (glob_html_log) then # if number 3 > fclose(html_log_file); > fi;# end if 3 > ; > ;; > fi;# end if 2 > #END OUTFILEMAIN > end; main := proc() local d1, d2, d3, d4, est_err_2, niii, done_once, term, ord, order_diff, term_no, html_log_file, iiif, jjjf, rows, r_order, sub_iter, calc_term, iii, temp_sum, current_iter, x_start, x_end, it, log10norm, max_terms, opt_iter, tmp, subiter, est_needed_step_err, value3, min_value, est_answer, best_h, found_h, repeat_it; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_0D000001, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4, array_tmp5, array_tmp6, array_tmp7, array_tmp8, array_tmp9, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; glob_last; ALWAYS := 1; INFO := 2; DEBUGL := 3; DEBUGMASSIVE := 4; glob_iolevel := INFO; glob_max_terms := 30; glob_iolevel := 5; ALWAYS := 1; INFO := 2; DEBUGL := 3; DEBUGMASSIVE := 4; MAX_UNCHANGED := 10; glob_check_sign := 1.0; glob_desired_digits_correct := 8.0; glob_max_value3 := 0.; glob_ratio_of_radius := 0.01; glob_percent_done := 0.; glob_subiter_method := 3; glob_log10normmin := 0.1; glob_total_exp_sec := 0.1; glob_optimal_expect_sec := 0.1; glob_html_log := true; glob_good_digits := 0; glob_max_opt_iter := 10; glob_dump := false; glob_djd_debug := true; glob_display_flag := true; glob_djd_debug2 := true; glob_sec_in_minute := 60; glob_min_in_hour := 60; glob_hours_in_day := 24; glob_days_in_year := 365; glob_sec_in_hour := 3600; glob_sec_in_day := 86400; glob_sec_in_year := 31536000; glob_almost_1 := 0.9990; glob_clock_sec := 0.; glob_clock_start_sec := 0.; glob_not_yet_finished := true; glob_initial_pass := true; glob_not_yet_start_msg := true; glob_reached_optimal_h := false; glob_optimal_done := false; glob_disp_incr := 0.1; glob_h := 0.1; glob_hmax := 1.0; glob_hmin := 0.1*10^(-10); glob_hmin_init := 0.001; glob_large_float := 0.90*10^101; glob_last_good_h := 0.1; glob_look_poles := false; glob_neg_h := false; glob_display_interval := 0.; glob_next_display := 0.; glob_dump_analytic := false; glob_log10_abserr := 0.1*10^(-10); glob_log10_relerr := 0.1*10^(-10); glob_abserr := 0.1*10^(-10); glob_relerr := 0.1*10^(-10); glob_max_hours := 0.; glob_max_iter := 1000; glob_max_rel_trunc_err := 0.1*10^(-10); glob_max_trunc_err := 0.1*10^(-10); glob_no_eqs := 0; glob_optimal_clock_start_sec := 0.; glob_optimal_start := 0.; glob_small_float := 0.1*10^(-50); glob_smallish_float := 0.1*10^(-100); glob_unchanged_h_cnt := 0; glob_warned := false; glob_warned2 := false; glob_max_sec := 10000.0; glob_orig_start_sec := 0.; glob_start := 0; glob_curr_iter_when_opt := 0; glob_current_iter := 0; glob_iter := 0; glob_normmax := 0.; glob_log10abserr := 0.; glob_log10relerr := 0.; glob_max_minutes := 0.; glob_orig_start_sec := elapsed_time_seconds(); MAX_UNCHANGED := 10; glob_curr_iter_when_opt := 0; glob_display_flag := true; glob_no_eqs := 1; glob_iter := -1; opt_iter := -1; glob_max_iter := 50000; glob_max_hours := 0.; glob_max_minutes := 15.0; omniout_str(ALWAYS, "##############ECHO OF PROBLEM#################"); omniout_str(ALWAYS, "##############temp/sing1postode.ode#################"); omniout_str(ALWAYS, "diff ( y , x , 1 ) = m1 * 2.0 * x / (x * x + 0.\ 000001) /( x * x + 0.000001);"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#BEGIN FIRST INPUT BLOCK"); omniout_str(ALWAYS, "Digits:=32;"); omniout_str(ALWAYS, "max_terms:=30;"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#END FIRST INPUT BLOCK"); omniout_str(ALWAYS, "#BEGIN SECOND INPUT BLOCK"); omniout_str(ALWAYS, "x_start := -2.0;"); omniout_str(ALWAYS, "x_end := 1.0;"); omniout_str(ALWAYS, "array_y_init[0 + 1] := exact_soln_y(x_start);"); omniout_str(ALWAYS, "glob_h := 0.1;"); omniout_str(ALWAYS, "glob_look_poles := true;"); omniout_str(ALWAYS, "glob_max_iter := 500;"); omniout_str(ALWAYS, "#END SECOND INPUT BLOCK"); omniout_str(ALWAYS, "#BEGIN OVERRIDE BLOCK"); omniout_str(ALWAYS, "glob_desired_digits_correct:=10;"); omniout_str(ALWAYS, "glob_display_interval:=0.001;"); omniout_str(ALWAYS, "glob_look_poles:=true;"); omniout_str(ALWAYS, "glob_max_iter:=10000000;"); omniout_str(ALWAYS, "glob_max_minutes:=3;"); omniout_str(ALWAYS, "glob_subiter_method:=3;"); omniout_str(ALWAYS, "#END OVERRIDE BLOCK"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#BEGIN USER DEF BLOCK"); omniout_str(ALWAYS, "exact_soln_y := proc(x)"); omniout_str(ALWAYS, "return(1.0 / (x * x + 0.000001));"); omniout_str(ALWAYS, "end;"); omniout_str(ALWAYS, ""); omniout_str(ALWAYS, ""); omniout_str(ALWAYS, "#END USER DEF BLOCK"); omniout_str(ALWAYS, "#######END OF ECHO OF PROBLEM#################"); glob_unchanged_h_cnt := 0; glob_warned := false; glob_warned2 := false; glob_small_float := 0.10*10^(-199); glob_smallish_float := 0.10*10^(-63); glob_large_float := 0.10*10^101; glob_almost_1 := 0.99; glob_log10_abserr := -8.0; glob_log10_relerr := -8.0; glob_hmax := 0.01; Digits := 32; max_terms := 30; glob_max_terms := max_terms; glob_html_log := true; array_y_init := Array(0 .. max_terms + 1, []); array_norms := Array(0 .. max_terms + 1, []); array_fact_1 := Array(0 .. max_terms + 1, []); array_pole := Array(0 .. max_terms + 1, []); array_1st_rel_error := Array(0 .. max_terms + 1, []); array_last_rel_error := Array(0 .. max_terms + 1, []); array_type_pole := Array(0 .. max_terms + 1, []); array_y := Array(0 .. max_terms + 1, []); array_x := Array(0 .. max_terms + 1, []); array_tmp0 := Array(0 .. max_terms + 1, []); array_tmp1 := Array(0 .. max_terms + 1, []); array_tmp2 := Array(0 .. max_terms + 1, []); array_tmp3 := Array(0 .. max_terms + 1, []); array_tmp4 := Array(0 .. max_terms + 1, []); array_tmp5 := Array(0 .. max_terms + 1, []); array_tmp6 := Array(0 .. max_terms + 1, []); array_tmp7 := Array(0 .. max_terms + 1, []); array_tmp8 := Array(0 .. max_terms + 1, []); array_tmp9 := Array(0 .. max_terms + 1, []); array_m1 := Array(0 .. max_terms + 1, []); array_y_higher := Array(0 .. 3, 0 .. max_terms + 1, []); array_y_higher_work := Array(0 .. 3, 0 .. max_terms + 1, []); array_y_higher_work2 := Array(0 .. 3, 0 .. max_terms + 1, []); array_y_set_initial := Array(0 .. 3, 0 .. max_terms + 1, []); array_poles := Array(0 .. 2, 0 .. 4, []); array_real_pole := Array(0 .. 2, 0 .. 4, []); array_complex_pole := Array(0 .. 2, 0 .. 4, []); array_fact_2 := Array(0 .. max_terms + 1, 0 .. max_terms + 1, []); term := 1; while term <= max_terms do array_y_init[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_norms[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_fact_1[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_pole[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_1st_rel_error[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_last_rel_error[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_type_pole[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_y[term] := 0.; term := term + 1 end do ; term := 1; while term <= max_terms do array_x[term] := 0.; term := term + 1 end do ; term := 1; while term <= max_terms do array_tmp0[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp1[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp2[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp3[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp4[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp5[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp6[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp7[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp8[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp9[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_m1[term] := 0.; term := term + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= max_terms do array_y_higher[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= max_terms do array_y_higher_work[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= max_terms do array_y_higher_work2[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= max_terms do array_y_set_initial[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 1 do term := 1; while term <= 3 do array_poles[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 1 do term := 1; while term <= 3 do array_real_pole[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 1 do term := 1; while term <= 3 do array_complex_pole[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= max_terms do term := 1; while term <= max_terms do array_fact_2[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; array_y := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_y[term] := 0.; term := term + 1 end do; array_x := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_x[term] := 0.; term := term + 1 end do; array_m1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_m1[term] := 0.; term := term + 1 end do; array_tmp0 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp0[term] := 0.; term := term + 1 end do; array_tmp1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp1[term] := 0.; term := term + 1 end do; array_tmp2 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp2[term] := 0.; term := term + 1 end do; array_tmp3 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp3[term] := 0.; term := term + 1 end do; array_tmp4 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp4[term] := 0.; term := term + 1 end do; array_tmp5 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp5[term] := 0.; term := term + 1 end do; array_tmp6 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp6[term] := 0.; term := term + 1 end do; array_tmp7 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp7[term] := 0.; term := term + 1 end do; array_tmp8 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp8[term] := 0.; term := term + 1 end do; array_tmp9 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp9[term] := 0.; term := term + 1 end do; array_const_1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_1[term] := 0.; term := term + 1 end do; array_const_1[1] := 1; array_const_0D0 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_0D0[term] := 0.; term := term + 1 end do; array_const_0D0[1] := 0.; array_const_2D0 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_2D0[term] := 0.; term := term + 1 end do; array_const_2D0[1] := 2.0; array_const_0D000001 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_0D000001[term] := 0.; term := term + 1 end do; array_const_0D000001[1] := 0.1*10^(-5); array_m1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms do array_m1[term] := 0.; term := term + 1 end do; array_m1[1] := -1.0; iiif := 0; while iiif <= glob_max_terms do jjjf := 0; while jjjf <= glob_max_terms do array_fact_1[iiif] := 0; array_fact_2[iiif, jjjf] := 0; jjjf := jjjf + 1 end do; iiif := iiif + 1 end do; x_start := -2.0; x_end := 1.0; array_y_init[1] := exact_soln_y(x_start); glob_h := 0.1; glob_look_poles := true; glob_max_iter := 500; glob_desired_digits_correct := 10; glob_display_interval := 0.001; glob_look_poles := true; glob_max_iter := 10000000; glob_max_minutes := 3; glob_subiter_method := 3; glob_last_good_h := glob_h; glob_max_terms := max_terms; glob_max_sec := convfloat(60.0)*convfloat(glob_max_minutes) + convfloat(3600.0)*convfloat(glob_max_hours); glob_abserr := expt(10.0, glob_log10_abserr); glob_relerr := expt(10.0, glob_log10_relerr); if 0. < glob_h then glob_neg_h := false; glob_display_interval := omniabs(glob_display_interval) else glob_neg_h := true; glob_display_interval := -omniabs(glob_display_interval) end if; chk_data(); array_y_set_initial[1, 1] := true; array_y_set_initial[1, 2] := false; array_y_set_initial[1, 3] := false; array_y_set_initial[1, 4] := false; array_y_set_initial[1, 5] := false; array_y_set_initial[1, 6] := false; array_y_set_initial[1, 7] := false; array_y_set_initial[1, 8] := false; array_y_set_initial[1, 9] := false; array_y_set_initial[1, 10] := false; array_y_set_initial[1, 11] := false; array_y_set_initial[1, 12] := false; array_y_set_initial[1, 13] := false; array_y_set_initial[1, 14] := false; array_y_set_initial[1, 15] := false; array_y_set_initial[1, 16] := false; array_y_set_initial[1, 17] := false; array_y_set_initial[1, 18] := false; array_y_set_initial[1, 19] := false; array_y_set_initial[1, 20] := false; array_y_set_initial[1, 21] := false; array_y_set_initial[1, 22] := false; array_y_set_initial[1, 23] := false; array_y_set_initial[1, 24] := false; array_y_set_initial[1, 25] := false; array_y_set_initial[1, 26] := false; array_y_set_initial[1, 27] := false; array_y_set_initial[1, 28] := false; array_y_set_initial[1, 29] := false; array_y_set_initial[1, 30] := false; omniout_str(ALWAYS, "START of Optimize"); glob_check_sign := check_sign(x_start, x_end); glob_h := check_sign(x_start, x_end); if glob_display_interval < glob_h then glob_h := glob_display_interval end if; found_h := -1.0; best_h := 0.; min_value := glob_large_float; est_answer := est_size_answer(); opt_iter := 1; while opt_iter <= 20 and found_h < 0. do omniout_int(ALWAYS, "opt_iter", 32, opt_iter, 4, ""); array_x[1] := x_start; array_x[2] := glob_h; glob_next_display := x_start; order_diff := 1; term_no := 1; while term_no <= order_diff do array_y[term_no] := array_y_init[term_no]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; rows := order_diff; r_order := 1; while r_order <= rows do term_no := 1; while term_no <= rows - r_order + 1 do it := term_no + r_order - 1; array_y_higher[r_order, term_no] := array_y_init[it]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; r_order := r_order + 1 end do; atomall(); est_needed_step_err := estimated_needed_step_error(x_start, x_end, glob_h, est_answer) ; omniout_float(ALWAYS, "est_needed_step_err", 32, est_needed_step_err, 16, ""); value3 := test_suggested_h(); omniout_float(ALWAYS, "value3", 32, value3, 32, ""); if value3 < est_needed_step_err and found_h < 0. then best_h := glob_h; found_h := 1.0 end if; omniout_float(ALWAYS, "best_h", 32, best_h, 32, ""); opt_iter := opt_iter + 1; glob_h := glob_h*0.5 end do; if 0. < found_h then glob_h := best_h else omniout_str(ALWAYS, "No increment to obtain desired accuracy found") end if; if glob_html_log then html_log_file := fopen("html/entry.html", WRITE, TEXT) end if; if 0. < found_h then omniout_str(ALWAYS, "START of Soultion"); array_x[1] := x_start; array_x[2] := glob_h; glob_next_display := x_start; order_diff := 1; term_no := 1; while term_no <= order_diff do array_y[term_no] := array_y_init[term_no]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; rows := order_diff; r_order := 1; while r_order <= rows do term_no := 1; while term_no <= rows - r_order + 1 do it := term_no + r_order - 1; array_y_higher[r_order, term_no] := array_y_init[it]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; r_order := r_order + 1 end do; current_iter := 1; glob_clock_start_sec := elapsed_time_seconds(); glob_log10normmin := -glob_large_float; if glob_small_float < omniabs(array_y_higher[1, 1]) then tmp := omniabs(array_y_higher[1, 1]); log10norm := log10(tmp); if log10norm < glob_log10normmin then glob_log10normmin := log10norm end if end if; display_alot(current_iter); glob_clock_sec := elapsed_time_seconds(); glob_current_iter := 0; glob_iter := 0; omniout_str(DEBUGL, " "); glob_reached_optimal_h := true; glob_optimal_clock_start_sec := elapsed_time_seconds(); while glob_current_iter < glob_max_iter and glob_check_sign*array_x[1] < glob_check_sign*x_end and convfloat(glob_clock_sec) - convfloat(glob_orig_start_sec) < convfloat(glob_max_sec) do if reached_interval() then omniout_str(INFO, " "); omniout_str(INFO, "TOP MAIN SOLVE Loop") end if; glob_iter := glob_iter + 1; glob_clock_sec := elapsed_time_seconds(); glob_current_iter := glob_current_iter + 1; atomall(); display_alot(current_iter); if glob_look_poles then check_for_pole() end if; if reached_interval() then glob_next_display := glob_next_display + glob_display_interval end if; array_x[1] := array_x[1] + glob_h; array_x[2] := glob_h; order_diff := 2; ord := 2; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do array_y_higher_work[2, iii] := array_y_higher[2, iii]/( expt(glob_h, calc_term - 1)* factorial_3(iii - calc_term, iii - 1)); iii := iii - 1 end do; temp_sum := 0.; ord := 2; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do temp_sum := temp_sum + array_y_higher_work[ord, iii]; iii := iii - 1 end do; array_y_higher_work2[ord, calc_term] := temp_sum* expt(glob_h, calc_term - 1)/factorial_1(calc_term - 1); ord := 1; calc_term := 2; iii := glob_max_terms; while calc_term <= iii do array_y_higher_work[1, iii] := array_y_higher[1, iii]/( expt(glob_h, calc_term - 1)* factorial_3(iii - calc_term, iii - 1)); iii := iii - 1 end do; temp_sum := 0.; ord := 1; calc_term := 2; iii := glob_max_terms; while calc_term <= iii do temp_sum := temp_sum + array_y_higher_work[ord, iii]; iii := iii - 1 end do; array_y_higher_work2[ord, calc_term] := temp_sum* expt(glob_h, calc_term - 1)/factorial_1(calc_term - 1); ord := 1; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do array_y_higher_work[1, iii] := array_y_higher[1, iii]/( expt(glob_h, calc_term - 1)* factorial_3(iii - calc_term, iii - 1)); iii := iii - 1 end do; temp_sum := 0.; ord := 1; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do temp_sum := temp_sum + array_y_higher_work[ord, iii]; iii := iii - 1 end do; array_y_higher_work2[ord, calc_term] := temp_sum* expt(glob_h, calc_term - 1)/factorial_1(calc_term - 1); term_no := glob_max_terms; while 1 <= term_no do array_y[term_no] := array_y_higher_work2[1, term_no]; ord := 1; while ord <= order_diff do array_y_higher[ord, term_no] := array_y_higher_work2[ord, term_no]; ord := ord + 1 end do; term_no := term_no - 1 end do end do; omniout_str(ALWAYS, "Finished!"); if glob_max_iter <= glob_iter then omniout_str(ALWAYS, "Maximum Iterations Reached before Solution Completed!") end if; if convfloat(glob_max_sec) <= elapsed_time_seconds() - convfloat(glob_orig_start_sec) then omniout_str(ALWAYS, "Maximum Time Reached before Solution Completed!") end if; glob_clock_sec := elapsed_time_seconds(); omniout_str(INFO, "diff ( y , x , 1 ) = m1 * 2.0 * x / (x * x + \ 0.000001) /( x * x + 0.000001);"); omniout_int(INFO, "Iterations ", 32, glob_iter, 4, " "); prog_report(x_start, x_end); if glob_html_log then logstart(html_log_file); logitem_str(html_log_file, "2013-01-13T01:27:20-06:00"); logitem_str(html_log_file, "Maple"); logitem_str(html_log_file, "sing1"); logitem_str(html_log_file, "diff ( y , x , 1 ) = m1 * 2.0 * x\ / (x * x + 0.000001) /( x * x + 0.000001);"); logitem_float(html_log_file, x_start); logitem_float(html_log_file, x_end); logitem_float(html_log_file, array_x[1]); logitem_float(html_log_file, glob_h); logitem_integer(html_log_file, Digits); logitem_good_digits(html_log_file, array_last_rel_error[1]); logitem_integer(html_log_file, glob_max_terms); logitem_float(html_log_file, array_1st_rel_error[1]); logitem_float(html_log_file, array_last_rel_error[1]); logitem_integer(html_log_file, glob_iter); logitem_pole(html_log_file, array_type_pole[1]); if array_type_pole[1] = 1 or array_type_pole[1] = 2 then logitem_float(html_log_file, array_pole[1]); logitem_float(html_log_file, array_pole[2]); 0 else logitem_str(html_log_file, "NA"); logitem_str(html_log_file, "NA"); 0 end if; logitem_time(html_log_file, convfloat(glob_clock_sec)); if glob_percent_done < 100.0 then logitem_time(html_log_file, convfloat(glob_total_exp_sec)); 0 else logitem_str(html_log_file, "Done"); 0 end if; log_revs(html_log_file, " 156 "); logitem_str(html_log_file, "sing1 diffeq.mxt"); logitem_str(html_log_file, "sing1 maple results") ; logitem_str(html_log_file, "Languages compared - single equations"); logend(html_log_file) end if; if glob_html_log then fclose(html_log_file) end if end if end proc > # End Function number 12 > main(); ##############ECHO OF PROBLEM################# ##############temp/sing1postode.ode################# diff ( y , x , 1 ) = m1 * 2.0 * x / (x * x + 0.000001) /( x * x + 0.000001); ! #BEGIN FIRST INPUT BLOCK Digits:=32; max_terms:=30; ! #END FIRST INPUT BLOCK #BEGIN SECOND INPUT BLOCK x_start := -2.0; x_end := 1.0; array_y_init[0 + 1] := exact_soln_y(x_start); glob_h := 0.1; glob_look_poles := true; glob_max_iter := 500; #END SECOND INPUT BLOCK #BEGIN OVERRIDE BLOCK glob_desired_digits_correct:=10; glob_display_interval:=0.001; glob_look_poles:=true; glob_max_iter:=10000000; glob_max_minutes:=3; glob_subiter_method:=3; #END OVERRIDE BLOCK ! #BEGIN USER DEF BLOCK exact_soln_y := proc(x) return(1.0 / (x * x + 0.000001)); 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.0060551788397984124943226430006e-85 max_value3 = 1.0060551788397984124943226430006e-85 value3 = 1.0060551788397984124943226430006e-85 best_h = 0.001 START of Soultion x[1] = -2 y[1] (analytic) = 0.24999993750001562499609375097656 y[1] (numeric) = 0.24999993750001562499609375097656 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 TOP MAIN SOLVE Loop x[1] = -2 y[1] (analytic) = 0.24999993750001562499609375097656 y[1] (numeric) = 0.24999993750001562499609375097656 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 2 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.999 y[1] (analytic) = 0.25025012499993743746875001564063 y[1] (numeric) = 0.25025012499993743746875001564063 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.999 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.998 y[1] (analytic) = 0.2505006882506409686360613275785 y[1] (numeric) = 0.25050068825064096863606132757849 absolute error = 1e-32 relative error = 3.9920050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.998 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.997 y[1] (analytic) = 0.2507516280049448221042575118919 y[1] (numeric) = 0.25075162800494482210425751189189 absolute error = 1e-32 relative error = 3.9880099999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.997 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.996 y[1] (analytic) = 0.25100294501755389095980263136427 y[1] (numeric) = 0.25100294501755389095980263136427 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.996 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.995 y[1] (analytic) = 0.25125464004506503223848286418229 y[1] (numeric) = 0.25125464004506503223848286418229 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.995 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.994 y[1] (analytic) = 0.251506713845972761319877053458 y[1] (numeric) = 0.251506713845972761319877053458 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.994 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.993 y[1] (analytic) = 0.25175916718067496632721138958472 y[1] (numeric) = 0.25175916718067496632721138958472 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.993 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.992 y[1] (analytic) = 0.25201200081147864261296122921374 y[1] (numeric) = 0.25201200081147864261296122921373 absolute error = 1e-32 relative error = 3.9680649999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.992 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.991 y[1] (analytic) = 0.25226521550260564741092641373211 y[1] (numeric) = 0.2522652155026056474109264137321 absolute error = 1e-32 relative error = 3.9640820000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.991 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.99 y[1] (analytic) = 0.25251881202019847473587163559717 y[1] (numeric) = 0.25251881202019847473587163559717 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.99 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.989 y[1] (analytic) = 0.25277279113232605061219042284338 y[1] (numeric) = 0.25277279113232605061219042284338 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.989 Order of pole = 1 TOP MAIN SOLVE Loop memory used=3.8MB, alloc=3.0MB, time=0.17 x[1] = -1.988 y[1] (analytic) = 0.25302715360898954871342018068669 y[1] (numeric) = 0.25302715360898954871342018068669 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.988 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.987 y[1] (analytic) = 0.25328190022212822649480645463595 y[1] (numeric) = 0.25328190022212822649480645463594 absolute error = 1e-32 relative error = 3.9481699999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.987 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.986 y[1] (analytic) = 0.25353703174562528190148717216711 y[1] (numeric) = 0.25353703174562528190148717216711 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.986 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.985 y[1] (analytic) = 0.25379254895531373073524209017452 y[1] (numeric) = 0.25379254895531373073524209017452 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.985 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.984 y[1] (analytic) = 0.25404845262898230476312903349553 y[1] (numeric) = 0.25404845262898230476312903349552 absolute error = 1e-32 relative error = 3.9362569999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.984 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.983 y[1] (analytic) = 0.25430474354638137065170676628631 y[1] (numeric) = 0.25430474354638137065170676628631 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.983 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.982 y[1] (analytic) = 0.25456142248922886981092450344613 y[1] (numeric) = 0.25456142248922886981092450344612 absolute error = 1e-32 relative error = 3.9283249999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.982 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.981 y[1] (analytic) = 0.25481849024121627923214015424673 y[1] (numeric) = 0.25481849024121627923214015424672 absolute error = 1e-32 relative error = 3.9243620000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.981 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.98 y[1] (analytic) = 0.25507594758801459340511340549092 y[1] (numeric) = 0.25507594758801459340511340549091 absolute error = 1e-32 relative error = 3.9204010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.98 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.979 y[1] (analytic) = 0.25533379531728032739920570762953 y[1] (numeric) = 0.25533379531728032739920570762952 absolute error = 1e-32 relative error = 3.9164420000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.979 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.978 y[1] (analytic) = 0.25559203421866154119440713510723 y[1] (numeric) = 0.25559203421866154119440713510722 absolute error = 1e-32 relative error = 3.9124850000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.978 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.977 y[1] (analytic) = 0.2558506650838038853481999626458 y[1] (numeric) = 0.2558506650838038853481999626458 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.977 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.976 y[1] (analytic) = 0.25610968870635666808466064313753 y[1] (numeric) = 0.25610968870635666808466064313753 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.976 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.975 y[1] (analytic) = 0.25636910588197894389259570130538 y[1] (numeric) = 0.25636910588197894389259570130538 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.975 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.974 y[1] (analytic) = 0.2566289174083456237199028813525 y[1] (numeric) = 0.2566289174083456237199028813525 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.974 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.973 y[1] (analytic) = 0.25688912408515360685174671759922 y[1] (numeric) = 0.25688912408515360685174671759922 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.973 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.972 y[1] (analytic) = 0.25714972671412793456053754578872 y[1] (numeric) = 0.25714972671412793456053754578873 absolute error = 1e-32 relative error = 3.8887850000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.972 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.971 y[1] (analytic) = 0.25741072609902796561610485059624 y[1] (numeric) = 0.25741072609902796561610485059625 absolute error = 1e-32 relative error = 3.8848420000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.971 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.97 y[1] (analytic) = 0.25767212304565357374485976323539 y[1] (numeric) = 0.2576721230456535737448597632354 absolute error = 1e-32 relative error = 3.8809010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.97 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.969 y[1] (analytic) = 0.2579339183618513671271474933208 y[1] (numeric) = 0.25793391836185136712714749332081 absolute error = 1e-32 relative error = 3.8769620000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.969 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.968 y[1] (analytic) = 0.25819611285752093002239851279039 y[1] (numeric) = 0.2581961128575209300223985127904 absolute error = 1e-32 relative error = 3.8730250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.968 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.967 y[1] (analytic) = 0.25845870734462108661209741825597 y[1] (numeric) = 0.25845870734462108661209741825598 absolute error = 1e-32 relative error = 3.8690900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.967 Order of pole = 1 TOP MAIN SOLVE Loop memory used=7.6MB, alloc=4.2MB, time=0.39 x[1] = -1.966 y[1] (analytic) = 0.25872170263717618715100059324886 y[1] (numeric) = 0.25872170263717618715100059324887 absolute error = 1e-32 relative error = 3.8651570000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.966 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.965 y[1] (analytic) = 0.25898509955128241651744808514187 y[1] (numeric) = 0.25898509955128241651744808514188 absolute error = 1e-32 relative error = 3.8612260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.965 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.964 y[1] (analytic) = 0.25924889890511412525403151481465 y[1] (numeric) = 0.25924889890511412525403151481466 absolute error = 1e-32 relative error = 3.8572970000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.964 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.963 y[1] (analytic) = 0.25951310151893018319029836221282 y[1] (numeric) = 0.25951310151893018319029836221283 absolute error = 1e-32 relative error = 3.8533699999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.963 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.962 y[1] (analytic) = 0.25977770821508035573959362973104 y[1] (numeric) = 0.25977770821508035573959362973105 absolute error = 1e-32 relative error = 3.8494450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.962 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.961 y[1] (analytic) = 0.26004271981801170296256268979868 y[1] (numeric) = 0.26004271981801170296256268979869 absolute error = 1e-32 relative error = 3.8455220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.961 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.96 y[1] (analytic) = 0.26030813715427500149026408520822 y[1] (numeric) = 0.26030813715427500149026408520823 absolute error = 1e-32 relative error = 3.8416010000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.96 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.959 y[1] (analytic) = 0.26057396105253118940026818272072 y[1] (numeric) = 0.26057396105253118940026818272072 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.959 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.958 y[1] (analytic) = 0.26084019234355783413954689450188 y[1] (numeric) = 0.26084019234355783413954689450188 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.958 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.957 y[1] (analytic) = 0.26110683186025562358839119025549 y[1] (numeric) = 0.26110683186025562358839119025549 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.957 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.956 y[1] (analytic) = 0.26137388043765488036002683787004 y[1] (numeric) = 0.26137388043765488036002683787004 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.956 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.955 y[1] (analytic) = 0.26164133891292209943103474439996 y[1] (numeric) = 0.26164133891292209943103474439996 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.955 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.954 y[1] (analytic) = 0.26190920812536650919812043475881 y[1] (numeric) = 0.26190920812536650919812043475881 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.954 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.953 y[1] (analytic) = 0.26217748891644665605721761518113 y[1] (numeric) = 0.26217748891644665605721761518113 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.953 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.952 y[1] (analytic) = 0.26244618212977701260135343496124 y[1] (numeric) = 0.26244618212977701260135343496125 absolute error = 1e-32 relative error = 3.8103050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.952 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.951 y[1] (analytic) = 0.26271528861113460953414799592896 y[1] (numeric) = 0.26271528861113460953414799592897 absolute error = 1e-32 relative error = 3.8064020000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.951 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.95 y[1] (analytic) = 0.2629848092084656913962678773786 y[1] (numeric) = 0.26298480920846569139626787737861 absolute error = 1e-32 relative error = 3.8025010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.95 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.949 y[1] (analytic) = 0.26325474477189239620260295761441 y[1] (numeric) = 0.26325474477189239620260295761442 absolute error = 1e-32 relative error = 3.7986020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.949 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.948 y[1] (analytic) = 0.26352509615371945908838763487544 y[1] (numeric) = 0.26352509615371945908838763487545 absolute error = 1e-32 relative error = 3.7947050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.948 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.947 y[1] (analytic) = 0.26379586420844094006294169320013 y[1] (numeric) = 0.26379586420844094006294169320015 absolute error = 2e-32 relative error = 7.5816200000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.947 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.946 y[1] (analytic) = 0.26406704979274697597016253590982 y[1] (numeric) = 0.26406704979274697597016253590983 absolute error = 1e-32 relative error = 3.7869170000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.946 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.945 y[1] (analytic) = 0.26433865376553055675535933403577 y[1] (numeric) = 0.26433865376553055675535933403578 absolute error = 1e-32 relative error = 3.7830260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.945 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.944 y[1] (analytic) = 0.26461067698789432613848082247349 y[1] (numeric) = 0.2646106769878943261384808224735 absolute error = 1e-32 relative error = 3.7791370000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.944 Order of pole = 1 TOP MAIN SOLVE Loop memory used=11.4MB, alloc=4.3MB, time=0.61 x[1] = -1.943 y[1] (analytic) = 0.26488312032315740679425203628899 y[1] (numeric) = 0.264883120323157406794252036289 absolute error = 1e-32 relative error = 3.7752500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.943 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.942 y[1] (analytic) = 0.26515598463686225014020122687674 y[1] (numeric) = 0.26515598463686225014020122687675 absolute error = 1e-32 relative error = 3.7713650000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.942 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.941 y[1] (analytic) = 0.26542927079678151083402654611223 y[1] (numeric) = 0.26542927079678151083402654611224 absolute error = 1e-32 relative error = 3.7674820000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.941 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.94 y[1] (analytic) = 0.26570297967292494608222284987171 y[1] (numeric) = 0.26570297967292494608222284987171 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.94 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.939 y[1] (analytic) = 0.26597711213754633986236216401106 y[1] (numeric) = 0.26597711213754633986236216401107 absolute error = 1e-32 relative error = 3.7597220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.939 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.938 y[1] (analytic) = 0.26625166906515045216189698989176 y[1] (numeric) = 0.26625166906515045216189698989176 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.938 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.937 y[1] (analytic) = 0.2665266513324999933368337166875 y[1] (numeric) = 0.2665266513324999933368337166875 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.937 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.936 y[1] (analytic) = 0.26680205981862262369410396796027 y[1] (numeric) = 0.26680205981862262369410396796027 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.936 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.935 y[1] (analytic) = 0.26707789540481797840194475440318 y[1] (numeric) = 0.26707789540481797840194475440318 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.935 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.934 y[1] (analytic) = 0.26735415897466471783308384734398 y[1] (numeric) = 0.26735415897466471783308384734398 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.934 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.933 y[1] (analytic) = 0.26763085141402760344601484280702 y[1] (numeric) = 0.26763085141402760344601484280702 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.933 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.932 y[1] (analytic) = 0.26790797361106459931013696795151 y[1] (numeric) = 0.26790797361106459931013696795151 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.932 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.931 y[1] (analytic) = 0.26818552645623399938102780493901 y[1] (numeric) = 0.26818552645623399938102780493901 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.931 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.93 y[1] (analytic) = 0.26846351084230158063261278621902 y[1] (numeric) = 0.26846351084230158063261278621901 absolute error = 1e-32 relative error = 3.7249009999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.93 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.929 y[1] (analytic) = 0.26874192766434778215349356443706 y[1] (numeric) = 0.26874192766434778215349356443705 absolute error = 1e-32 relative error = 3.7210420000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.929 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.928 y[1] (analytic) = 0.26902077781977491031519819433254 y[1] (numeric) = 0.26902077781977491031519819433253 absolute error = 1e-32 relative error = 3.7171850000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.928 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.927 y[1] (analytic) = 0.2693000622083143701206194978631 y[1] (numeric) = 0.26930006220831437012061949786309 absolute error = 1e-32 relative error = 3.7133300000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.927 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.926 y[1] (analytic) = 0.26957978173203392284141403222071 y[1] (numeric) = 0.2695797817320339228414140322207 absolute error = 1e-32 relative error = 3.7094770000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.926 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.925 y[1] (analytic) = 0.26985993729534497005364275833557 y[1] (numeric) = 0.26985993729534497005364275833555 absolute error = 2e-32 relative error = 7.4112520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.925 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.924 y[1] (analytic) = 0.27014052980500986418144582993519 y[1] (numeric) = 0.27014052980500986418144582993517 absolute error = 2e-32 relative error = 7.4035540000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.924 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.923 y[1] (analytic) = 0.27042156017014924565905790536868 y[1] (numeric) = 0.27042156017014924565905790536866 absolute error = 2e-32 relative error = 7.3958600000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.923 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.922 y[1] (analytic) = 0.27070302930224940682198704144599 y[1] (numeric) = 0.27070302930224940682198704144597 absolute error = 2e-32 relative error = 7.3881699999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.922 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.921 y[1] (analytic) = 0.27098493811516968263869957580018 y[1] (numeric) = 0.27098493811516968263869957580016 absolute error = 2e-32 relative error = 7.3804839999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.921 Order of pole = 1 TOP MAIN SOLVE Loop memory used=15.2MB, alloc=4.3MB, time=0.83 x[1] = -1.92 y[1] (analytic) = 0.27126728752514986839467545717354 y[1] (numeric) = 0.27126728752514986839467545717352 absolute error = 2e-32 relative error = 7.3728020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.92 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.919 y[1] (analytic) = 0.2715500784508176644412232570694 y[1] (numeric) = 0.27155007845081766444122325706938 absolute error = 2e-32 relative error = 7.3651240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.919 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.918 y[1] (analytic) = 0.27183331181319614812197160701058 y[1] (numeric) = 0.27183331181319614812197160701056 absolute error = 2e-32 relative error = 7.3574500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.918 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.917 y[1] (analytic) = 0.27211698853571127299048406891091 y[1] (numeric) = 0.27211698853571127299048406891089 absolute error = 2e-32 relative error = 7.3497799999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.917 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.916 y[1] (analytic) = 0.27240110954419939543297747760386 y[1] (numeric) = 0.27240110954419939543297747760385 absolute error = 1e-32 relative error = 3.6710570000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.916 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.915 y[1] (analytic) = 0.27268567576691482881065961028854 y[1] (numeric) = 0.27268567576691482881065961028853 absolute error = 1e-32 relative error = 3.6672260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.915 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.914 y[1] (analytic) = 0.27297068813453742523674065355188 y[1] (numeric) = 0.27297068813453742523674065355187 absolute error = 1e-32 relative error = 3.6633970000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.914 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.913 y[1] (analytic) = 0.27325614758018018510371437081406 y[1] (numeric) = 0.27325614758018018510371437081405 absolute error = 1e-32 relative error = 3.6595700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.913 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.912 y[1] (analytic) = 0.27354205503939689447704913772706 y[1] (numeric) = 0.27354205503939689447704913772705 absolute error = 1e-32 relative error = 3.6557450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.912 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.911 y[1] (analytic) = 0.27382841145018979047197612654378 y[1] (numeric) = 0.27382841145018979047197612654377 absolute error = 1e-32 relative error = 3.6519219999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.911 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.91 y[1] (analytic) = 0.27411521775301725473061189917713 y[1] (numeric) = 0.27411521775301725473061189917713 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.91 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.909 y[1] (analytic) = 0.27440247489080153511720552910011 y[1] (numeric) = 0.2744024748908015351172055291001 absolute error = 1e-32 relative error = 3.6442820000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.909 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.908 y[1] (analytic) = 0.27469018380893649574985613101623 y[1] (numeric) = 0.27469018380893649574985613101622 absolute error = 1e-32 relative error = 3.6404650000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.908 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.907 y[1] (analytic) = 0.2749783454552953954876053510786 y[1] (numeric) = 0.27497834545529539548760535107859 absolute error = 1e-32 relative error = 3.6366500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.907 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.906 y[1] (analytic) = 0.27526696078023869499237097618198 y[1] (numeric) = 0.27526696078023869499237097618196 absolute error = 2e-32 relative error = 7.2656739999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.906 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.905 y[1] (analytic) = 0.27555603073662189248575237543076 y[1] (numeric) = 0.27555603073662189248575237543075 absolute error = 1e-32 relative error = 3.6290260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.905 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.904 y[1] (analytic) = 0.27584555627980338832130600733694 y[1] (numeric) = 0.27584555627980338832130600733693 absolute error = 1e-32 relative error = 3.6252170000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.904 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.903 y[1] (analytic) = 0.27613553836765237849345972977376 y[1] (numeric) = 0.27613553836765237849345972977375 absolute error = 1e-32 relative error = 3.6214100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.903 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.902 y[1] (analytic) = 0.27642597796055677720480815346065 y[1] (numeric) = 0.27642597796055677720480815346063 absolute error = 2e-32 relative error = 7.2352099999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.902 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.901 y[1] (analytic) = 0.27671687602143116861410780114683 y[1] (numeric) = 0.27671687602143116861410780114681 absolute error = 2e-32 relative error = 7.2276039999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.901 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.9 y[1] (analytic) = 0.27700823351572478788787039117164 y[1] (numeric) = 0.27700823351572478788787039117162 absolute error = 2e-32 relative error = 7.2200019999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.9 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.899 y[1] (analytic) = 0.27730005141142953167903517329312 y[1] (numeric) = 0.2773000514114295316790351732931 absolute error = 2e-32 relative error = 7.2124040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.899 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.898 y[1] (analytic) = 0.27759233067908799815678692429086 y[1] (numeric) = 0.27759233067908799815678692429083 absolute error = 3e-32 relative error = 1.0807215000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.898 Order of pole = 1 memory used=19.0MB, alloc=4.3MB, time=1.05 TOP MAIN SOLVE Loop x[1] = -1.897 y[1] (analytic) = 0.27788507229180155671217497867232 y[1] (numeric) = 0.2778850722918015567121749786723 absolute error = 2e-32 relative error = 7.1972200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.897 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.896 y[1] (analytic) = 0.27817827722523844746478054376621 y[1] (numeric) = 0.27817827722523844746478054376618 absolute error = 3e-32 relative error = 1.0784451000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.896 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.895 y[1] (analytic) = 0.2784719464576419106962745466059 y[1] (numeric) = 0.27847194645764191069627454660587 absolute error = 3e-32 relative error = 1.0773078000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.895 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.894 y[1] (analytic) = 0.27876608096983834633730640044134 y[1] (numeric) = 0.27876608096983834633730640044131 absolute error = 3e-32 relative error = 1.0761711000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.894 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.893 y[1] (analytic) = 0.27906068174524550363476537973182 y[1] (numeric) = 0.27906068174524550363476537973179 absolute error = 3e-32 relative error = 1.0750350000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.893 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.892 y[1] (analytic) = 0.27935574976988070112706077244658 y[1] (numeric) = 0.27935574976988070112706077244655 absolute error = 3e-32 relative error = 1.0738995000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.892 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.891 y[1] (analytic) = 0.27965128603236907705567465593104 y[1] (numeric) = 0.27965128603236907705567465593101 absolute error = 3e-32 relative error = 1.0727646000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.891 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.89 y[1] (analytic) = 0.27994729152395187034185203609864 y[1] (numeric) = 0.27994729152395187034185203609861 absolute error = 3e-32 relative error = 1.0716303000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.89 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.889 y[1] (analytic) = 0.28024376723849473225790721801452 y[1] (numeric) = 0.28024376723849473225790721801448 absolute error = 4e-32 relative error = 1.4273288000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.889 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.888 y[1] (analytic) = 0.28054071417249606892324265789883 y[1] (numeric) = 0.2805407141724960689232426578988 absolute error = 3e-32 relative error = 1.0693635000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.888 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.887 y[1] (analytic) = 0.28083813332509541475579720116716 y[1] (numeric) = 0.28083813332509541475579720116713 absolute error = 3e-32 relative error = 1.0682310000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.887 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.886 y[1] (analytic) = 0.28113602569808183701026455743426 y[1] (numeric) = 0.28113602569808183701026455743423 absolute error = 3e-32 relative error = 1.0670991000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.886 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.885 y[1] (analytic) = 0.28143439229590237153505012065092 y[1] (numeric) = 0.28143439229590237153505012065089 absolute error = 3e-32 relative error = 1.0659678000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.885 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.884 y[1] (analytic) = 0.2817332341256704898805648300571 y[1] (numeric) = 0.28173323412567048988056483005707 absolute error = 3e-32 relative error = 1.0648371000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.884 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.883 y[1] (analytic) = 0.28203255219717459789208870487832 y[1] (numeric) = 0.28203255219717459789208870487828 absolute error = 4e-32 relative error = 1.4182760000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.883 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.882 y[1] (analytic) = 0.28233234752288656592107399224998 y[1] (numeric) = 0.28233234752288656592107399224994 absolute error = 4e-32 relative error = 1.4167700000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.882 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.881 y[1] (analytic) = 0.28263262111797029078939856343491 y[1] (numeric) = 0.28263262111797029078939856343488 absolute error = 3e-32 relative error = 1.0614486000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.881 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.88 y[1] (analytic) = 0.28293337400029028964172429783717 y[1] (numeric) = 0.28293337400029028964172429783714 absolute error = 3e-32 relative error = 1.0603203000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.88 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.879 y[1] (analytic) = 0.28323460719042032582176272757193 y[1] (numeric) = 0.28323460719042032582176272757189 absolute error = 4e-32 relative error = 1.4122568000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.879 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.878 y[1] (analytic) = 0.28353632171165206690890119751565 y[1] (numeric) = 0.28353632171165206690890119751562 absolute error = 3e-32 relative error = 1.0580655000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.878 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.877 y[1] (analytic) = 0.28383851859000377505229724705021 y[1] (numeric) = 0.28383851859000377505229724705017 absolute error = 4e-32 relative error = 1.4092520000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.877 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.876 y[1] (analytic) = 0.28414119885422902974020686047559 y[1] (numeric) = 0.28414119885422902974020686047555 absolute error = 4e-32 relative error = 1.4077508000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.876 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.875 y[1] (analytic) = 0.28444436353582548314297368377637 y[1] (numeric) = 0.28444436353582548314297368377633 absolute error = 4e-32 relative error = 1.4062504000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.875 Order of pole = 1 memory used=22.8MB, alloc=4.3MB, time=1.28 TOP MAIN SOLVE Loop x[1] = -1.874 y[1] (analytic) = 0.2847480136690436481687712866937 y[1] (numeric) = 0.28474801366904364816877128669365 absolute error = 5e-32 relative error = 1.7559385000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.874 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.873 y[1] (analytic) = 0.28505215029089571937185908161898 y[1] (numeric) = 0.28505215029089571937185908161894 absolute error = 4e-32 relative error = 1.4032520000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.873 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.872 y[1] (analytic) = 0.28535677444116442685378461556022 y[1] (numeric) = 0.28535677444116442685378461556018 absolute error = 4e-32 relative error = 1.4017540000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.872 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.871 y[1] (analytic) = 0.28566188716241192329864064934375 y[1] (numeric) = 0.28566188716241192329864064934371 absolute error = 4e-32 relative error = 1.4002568000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.871 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.87 y[1] (analytic) = 0.28596748949998870428416475044618 y[1] (numeric) = 0.28596748949998870428416475044614 absolute error = 4e-32 relative error = 1.3987604000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.87 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.869 y[1] (analytic) = 0.28627358250204256201115207367995 y[1] (numeric) = 0.28627358250204256201115207367991 absolute error = 4e-32 relative error = 1.3972648000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.869 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.868 y[1] (analytic) = 0.28658016721952757259433860879658 y[1] (numeric) = 0.28658016721952757259433860879654 absolute error = 4e-32 relative error = 1.3957700000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.868 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.867 y[1] (analytic) = 0.28688724470621311705860245747614 y[1] (numeric) = 0.2868872447062131170586024574761 absolute error = 4e-32 relative error = 1.3942760000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.867 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.866 y[1] (analytic) = 0.28719481601869293618502468583041 y[1] (numeric) = 0.28719481601869293618502468583037 absolute error = 4e-32 relative error = 1.3927828000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.866 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.865 y[1] (analytic) = 0.28750288221639421935204900429127 y[1] (numeric) = 0.28750288221639421935204900429123 absolute error = 4e-32 relative error = 1.3912904000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.865 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.864 y[1] (analytic) = 0.28781144436158672751768097655574 y[1] (numeric) = 0.28781144436158672751768097655571 absolute error = 3e-32 relative error = 1.0423491000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.864 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.863 y[1] (analytic) = 0.28812050351939195048937267522769 y[1] (numeric) = 0.28812050351939195048937267522765 absolute error = 4e-32 relative error = 1.3883080000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.863 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.862 y[1] (analytic) = 0.28843006075779229862894770618783 y[1] (numeric) = 0.2884300607577922986289477061878 absolute error = 3e-32 relative error = 1.0401135000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.862 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.861 y[1] (analytic) = 0.28874011714764032914063433893816 y[1] (numeric) = 0.28874011714764032914063433893813 absolute error = 3e-32 relative error = 1.0389966000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.861 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.86 y[1] (analytic) = 0.28905067376266800709099112874577 y[1] (numeric) = 0.28905067376266800709099112874574 absolute error = 3e-32 relative error = 1.0378803000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.86 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.859 y[1] (analytic) = 0.28936173167949600131022992104476 y[1] (numeric) = 0.28936173167949600131022992104473 absolute error = 3e-32 relative error = 1.0367646000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 1.859 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.858 y[1] (analytic) = 0.2896732919776430153251655120772 y[1] (numeric) = 0.28967329197764301532516551207718 absolute error = 2e-32 relative error = 6.9043300000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.858 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.857 y[1] (analytic) = 0.28998535573953515347474952514898 y[1] (numeric) = 0.28998535573953515347474952514896 absolute error = 2e-32 relative error = 6.8969000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.857 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.856 y[1] (analytic) = 0.29029792405051532235987827227449 y[1] (numeric) = 0.29029792405051532235987827227447 absolute error = 2e-32 relative error = 6.8894739999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.856 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.855 y[1] (analytic) = 0.2906109979988526677799005296676 y[1] (numeric) = 0.29061099799885266777990052966759 absolute error = 1e-32 relative error = 3.4410260000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.855 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.854 y[1] (analytic) = 0.29092457867575204730899128593609 y[1] (numeric) = 0.29092457867575204730899128593608 absolute error = 1e-32 relative error = 3.4373170000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.854 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.853 y[1] (analytic) = 0.29123866717536353866630164753714 y[1] (numeric) = 0.29123866717536353866630164753713 absolute error = 1e-32 relative error = 3.4336100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.853 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.852 y[1] (analytic) = 0.29155326459479198403454323078919 y[1] (numeric) = 0.29155326459479198403454323078918 absolute error = 1e-32 relative error = 3.4299050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 memory used=26.7MB, alloc=4.4MB, time=1.50 Complex estimate of poles used Radius of convergence = 1.852 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.851 y[1] (analytic) = 0.29186837203410657048241755740029 y[1] (numeric) = 0.29186837203410657048241755740028 absolute error = 1e-32 relative error = 3.4262020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.851 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.85 y[1] (analytic) = 0.29218399059635044664705722511111 y[1] (numeric) = 0.2921839905963504466470572251111 absolute error = 1e-32 relative error = 3.4225010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.85 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.849 y[1] (analytic) = 0.29250012138755037583340597086348 y[1] (numeric) = 0.29250012138755037583340597086347 absolute error = 1e-32 relative error = 3.4188020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.849 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.848 y[1] (analytic) = 0.29281676551672642568822920525138 y[1] (numeric) = 0.29281676551672642568822920525137 absolute error = 1e-32 relative error = 3.4151050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.848 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.847 y[1] (analytic) = 0.2931339240959016946072151984077 y[1] (numeric) = 0.29313392409590169460721519840769 absolute error = 1e-32 relative error = 3.4114100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.847 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.846 y[1] (analytic) = 0.2934515982401120750343998636037 y[1] (numeric) = 0.29345159824011207503439986360369 absolute error = 1e-32 relative error = 3.4077170000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.846 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.845 y[1] (analytic) = 0.29376978906741605381392504052554 y[1] (numeric) = 0.29376978906741605381392504052554 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.845 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.844 y[1] (analytic) = 0.29408849769890454975492135044262 y[1] (numeric) = 0.29408849769890454975492135044262 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.844 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.843 y[1] (analytic) = 0.29440772525871078857109210545685 y[1] (numeric) = 0.29440772525871078857109210545685 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.843 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.842 y[1] (analytic) = 0.29472747287402021535736442904657 y[1] (numeric) = 0.29472747287402021535736442904657 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.842 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.841 y[1] (analytic) = 0.29504774167508044476676771068327 y[1] (numeric) = 0.29504774167508044476676771068326 absolute error = 1e-32 relative error = 3.3892820000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.841 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.84 y[1] (analytic) = 0.29536853279521124905149779906138 y[1] (numeric) = 0.29536853279521124905149779906137 absolute error = 1e-32 relative error = 3.3856010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.84 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.839 y[1] (analytic) = 0.29568984737081458413292796226524 y[1] (numeric) = 0.29568984737081458413292796226524 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.839 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.838 y[1] (analytic) = 0.29601168654138465386613463499539 y[1] (numeric) = 0.29601168654138465386613463499539 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.838 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.837 y[1] (analytic) = 0.2963340514495180126653173589524 y[1] (numeric) = 0.2963340514495180126653173589524 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.837 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.836 y[1] (analytic) = 0.29665694324092370665730812896389 y[1] (numeric) = 0.29665694324092370665730812896389 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.836 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.835 y[1] (analytic) = 0.29698036306443345353118561094503 y[1] (numeric) = 0.29698036306443345353118561094503 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.835 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.834 y[1] (analytic) = 0.29730431207201186125283442498522 y[1] (numeric) = 0.29730431207201186125283442498521 absolute error = 1e-32 relative error = 3.3635570000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.834 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.833 y[1] (analytic) = 0.29762879141876668581411891460732 y[1] (numeric) = 0.29762879141876668581411891460732 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.833 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.832 y[1] (analytic) = 0.29795380226295912818717457858159 y[1] (numeric) = 0.29795380226295912818717457858159 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.832 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.831 y[1] (analytic) = 0.29827934576601417065515865180122 y[1] (numeric) = 0.29827934576601417065515865180122 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.831 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.83 y[1] (analytic) = 0.29860542309253095269164421402723 y[1] (numeric) = 0.29860542309253095269164421402723 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.83 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.829 y[1] (analytic) = 0.29893203541029318656168970735152 y[1] (numeric) = 0.29893203541029318656168970735152 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.829 Order of pole = 1 TOP MAIN SOLVE Loop memory used=30.5MB, alloc=4.4MB, time=1.72 x[1] = -1.828 y[1] (analytic) = 0.29925918389027961281846788275624 y[1] (numeric) = 0.29925918389027961281846788275624 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.828 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.827 y[1] (analytic) = 0.29958686970667449587019500109349 y[1] (numeric) = 0.2995868697066744958701950010935 absolute error = 1e-32 relative error = 3.3379300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.827 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.826 y[1] (analytic) = 0.29991509403687815979296261228446 y[1] (numeric) = 0.29991509403687815979296261228447 absolute error = 1e-32 relative error = 3.3342770000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.826 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.825 y[1] (analytic) = 0.30024385806151756456594045683904 y[1] (numeric) = 0.30024385806151756456594045683905 absolute error = 1e-32 relative error = 3.3306260000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.825 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.824 y[1] (analytic) = 0.30057316296445692290629000440941 y[1] (numeric) = 0.30057316296445692290629000440941 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.824 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.823 y[1] (analytic) = 0.30090300993280835788200389368495 y[1] (numeric) = 0.30090300993280835788200389368495 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.823 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.822 y[1] (analytic) = 0.301233400156942601481767095372 y[1] (numeric) = 0.301233400156942601481767095372 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.822 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.821 y[1] (analytic) = 0.30156433483049973432182101432973 y[1] (numeric) = 0.30156433483049973432182101432973 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.821 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.82 y[1] (analytic) = 0.30189581515039996667070200739584 y[1] (numeric) = 0.30189581515039996667070200739584 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.82 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.819 y[1] (analytic) = 0.3022278423168544609736209494669 y[1] (numeric) = 0.3022278423168544609736209494669 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.819 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.818 y[1] (analytic) = 0.30256041753337619605915056162778 y[1] (numeric) = 0.30256041753337619605915056162777 absolute error = 1e-32 relative error = 3.3051249999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.818 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.817 y[1] (analytic) = 0.30289354200679087321179225137741 y[1] (numeric) = 0.3028935420067908732117922513774 absolute error = 1e-32 relative error = 3.3014900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.817 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.816 y[1] (analytic) = 0.30322721694724786429490423629648 y[1] (numeric) = 0.30322721694724786429490423629647 absolute error = 1e-32 relative error = 3.2978570000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.816 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.815 y[1] (analytic) = 0.30356144356823120210938775906692 y[1] (numeric) = 0.30356144356823120210938775906692 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.815 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.814 y[1] (analytic) = 0.30389622308657061317444828400439 y[1] (numeric) = 0.30389622308657061317444828400439 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.814 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.813 y[1] (analytic) = 0.30423155672245259311767372382468 y[1] (numeric) = 0.30423155672245259311767372382468 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.813 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.812 y[1] (analytic) = 0.30456744569943152486260201105884 y[1] (numeric) = 0.30456744569943152486260201105885 absolute error = 1e-32 relative error = 3.2833450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.812 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.811 y[1] (analytic) = 0.30490389124444083980288573238829 y[1] (numeric) = 0.3049038912444408398028857323883 absolute error = 1e-32 relative error = 3.2797220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.811 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.81 y[1] (analytic) = 0.30524089458780422215310211742556 y[1] (numeric) = 0.30524089458780422215310211742557 absolute error = 1e-32 relative error = 3.2761010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.81 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.809 y[1] (analytic) = 0.30557845696324685666720244756121 y[1] (numeric) = 0.30557845696324685666720244756122 absolute error = 1e-32 relative error = 3.2724820000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.809 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.808 y[1] (analytic) = 0.30591657960790671991654595708296 y[1] (numeric) = 0.30591657960790671991654595708297 absolute error = 1e-32 relative error = 3.2688650000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.808 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.807 y[1] (analytic) = 0.30625526376234591532041956971135 y[1] (numeric) = 0.30625526376234591532041956971136 absolute error = 1e-32 relative error = 3.2652500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.807 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.806 y[1] (analytic) = 0.30659451067056205212290638105957 y[1] (numeric) = 0.30659451067056205212290638105958 absolute error = 1e-32 relative error = 3.2616370000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.806 Order of pole = 1 TOP MAIN SOLVE Loop memory used=34.3MB, alloc=4.4MB, time=1.95 x[1] = -1.805 y[1] (analytic) = 0.30693432157999966851093269360036 y[1] (numeric) = 0.30693432157999966851093269360037 absolute error = 1e-32 relative error = 3.2580260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.805 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.804 y[1] (analytic) = 0.30727469774156169906929566801058 y[1] (numeric) = 0.3072746977415616990692956680106 absolute error = 2e-32 relative error = 6.5088340000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.804 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.803 y[1] (analytic) = 0.3076156404096209867694513059822 y[1] (numeric) = 0.30761564040962098676945130598222 absolute error = 2e-32 relative error = 6.5016200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.803 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.802 y[1] (analytic) = 0.30795715084203183968982555767191 y[1] (numeric) = 0.30795715084203183968982555767192 absolute error = 1e-32 relative error = 3.2472050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.802 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.801 y[1] (analytic) = 0.30829923030014163266639988506605 y[1] (numeric) = 0.30829923030014163266639988506606 absolute error = 1e-32 relative error = 3.2436020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.801 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.8 y[1] (analytic) = 0.30864188004880245407331664403807 y[1] (numeric) = 0.30864188004880245407331664403809 absolute error = 2e-32 relative error = 6.4800020000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.8 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.799 y[1] (analytic) = 0.30898510135638279793424920637177 y[1] (numeric) = 0.30898510135638279793424920637178 absolute error = 1e-32 relative error = 3.2364020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.799 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.798 y[1] (analytic) = 0.30932889549477930156628686233781 y[1] (numeric) = 0.30932889549477930156628686233783 absolute error = 2e-32 relative error = 6.4656100000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.798 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.797 y[1] (analytic) = 0.30967326373942852895909525859266 y[1] (numeric) = 0.30967326373942852895909525859267 absolute error = 1e-32 relative error = 3.2292100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.797 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.796 y[1] (analytic) = 0.31001820736931880009312946949374 y[1] (numeric) = 0.31001820736931880009312946949375 absolute error = 1e-32 relative error = 3.2256170000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.796 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.795 y[1] (analytic) = 0.31036372766700206640169880689976 y[1] (numeric) = 0.31036372766700206640169880689976 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.795 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.794 y[1] (analytic) = 0.31070982591860583258271017888497 y[1] (numeric) = 0.31070982591860583258271017888497 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.794 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.793 y[1] (analytic) = 0.31105650341384512496695024651228 y[1] (numeric) = 0.31105650341384512496695024651228 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.793 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.792 y[1] (analytic) = 0.31140376144603450665080583508368 y[1] (numeric) = 0.31140376144603450665080583508368 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.792 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.791 y[1] (analytic) = 0.31175160131210013960236706755844 y[1] (numeric) = 0.31175160131210013960236706755844 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.791 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.79 y[1] (analytic) = 0.31210002431259189395090853877578 y[1] (numeric) = 0.31210002431259189395090853877577 absolute error = 1e-32 relative error = 3.2041010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.79 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.789 y[1] (analytic) = 0.3124490317516955046708005756561 y[1] (numeric) = 0.31244903175169550467080057565609 absolute error = 1e-32 relative error = 3.2005220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.789 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.788 y[1] (analytic) = 0.31279862493724477587196526684069 y[1] (numeric) = 0.31279862493724477587196526684068 absolute error = 1e-32 relative error = 3.1969450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.788 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.787 y[1] (analytic) = 0.31314880518073383291006053166404 y[1] (numeric) = 0.31314880518073383291006053166403 absolute error = 1e-32 relative error = 3.1933700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.787 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.786 y[1] (analytic) = 0.31349957379732942253065006958123 y[1] (numeric) = 0.31349957379732942253065006958122 absolute error = 1e-32 relative error = 3.1897970000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.786 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.785 y[1] (analytic) = 0.31385093210588326126269762408567 y[1] (numeric) = 0.31385093210588326126269762408566 absolute error = 1e-32 relative error = 3.1862260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.785 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.784 y[1] (analytic) = 0.31420288142894443227781064689032 y[1] (numeric) = 0.3142028814289444322778106468903 absolute error = 2e-32 relative error = 6.3653140000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.784 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.783 y[1] (analytic) = 0.314555423092771830932751196097 y[1] (numeric) = 0.31455542309277183093275119609698 absolute error = 2e-32 relative error = 6.3581799999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.783 Order of pole = 1 TOP MAIN SOLVE Loop memory used=38.1MB, alloc=4.4MB, time=2.17 x[1] = -1.782 y[1] (analytic) = 0.31490855842734665921383078388613 y[1] (numeric) = 0.31490855842734665921383078388611 absolute error = 2e-32 relative error = 6.3510500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.782 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.781 y[1] (analytic) = 0.3152622887663849693029109428171 y[1] (numeric) = 0.31526228876638496930291094281708 absolute error = 2e-32 relative error = 6.3439239999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.781 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.78 y[1] (analytic) = 0.31561661544735025648584254328919 y[1] (numeric) = 0.31561661544735025648584254328917 absolute error = 2e-32 relative error = 6.3368019999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.78 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.779 y[1] (analytic) = 0.31597153981146610162529440648222 y[1] (numeric) = 0.3159715398114661016252944064822 absolute error = 2e-32 relative error = 6.3296840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.779 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.778 y[1] (analytic) = 0.31632706320372886342104555584201 y[1] (numeric) = 0.31632706320372886342104555584199 absolute error = 2e-32 relative error = 6.3225699999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.778 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.777 y[1] (analytic) = 0.31668318697292042068194557482749 y[1] (numeric) = 0.31668318697292042068194557482747 absolute error = 2e-32 relative error = 6.3154599999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.777 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.776 y[1] (analytic) = 0.31703991247162096483488402838522 y[1] (numeric) = 0.3170399124716209648348840283852 absolute error = 2e-32 relative error = 6.3083539999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.776 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.775 y[1] (analytic) = 0.31739724105622184289725279991976 y[1] (numeric) = 0.31739724105622184289725279991974 absolute error = 2e-32 relative error = 6.3012520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.775 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.774 y[1] (analytic) = 0.31775517408693845114053453410895 y[1] (numeric) = 0.31775517408693845114053453410893 absolute error = 2e-32 relative error = 6.2941540000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.774 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.773 y[1] (analytic) = 0.31811371292782317967380619876381 y[1] (numeric) = 0.31811371292782317967380619876379 absolute error = 2e-32 relative error = 6.2870600000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.773 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.772 y[1] (analytic) = 0.31847285894677840817710912631748 y[1] (numeric) = 0.31847285894677840817710912631746 absolute error = 2e-32 relative error = 6.2799700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.772 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.771 y[1] (analytic) = 0.31883261351556955301580580798242 y[1] (numeric) = 0.3188326135155695530158058079824 absolute error = 2e-32 relative error = 6.2728840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.771 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.77 y[1] (analytic) = 0.31919297800983816596821923195147 y[1] (numeric) = 0.31919297800983816596821923195145 absolute error = 2e-32 relative error = 6.2658020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.77 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.769 y[1] (analytic) = 0.31955395380911508480003272232487 y[1] (numeric) = 0.31955395380911508480003272232485 absolute error = 2e-32 relative error = 6.2587240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.769 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.768 y[1] (analytic) = 0.31991554229683363592011708908848 y[1] (numeric) = 0.31991554229683363592011708908846 absolute error = 2e-32 relative error = 6.2516500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.768 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.767 y[1] (analytic) = 0.32027774486034288935364748309734 y[1] (numeric) = 0.32027774486034288935364748309732 absolute error = 2e-32 relative error = 6.2445800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.767 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.766 y[1] (analytic) = 0.32064056289092096626957470556379 y[1] (numeric) = 0.32064056289092096626957470556377 absolute error = 2e-32 relative error = 6.2375139999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.766 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.765 y[1] (analytic) = 0.3210039977837883993007248912278 y[1] (numeric) = 0.32100399778378839930072489122778 absolute error = 2e-32 relative error = 6.2304519999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.765 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.764 y[1] (analytic) = 0.32136805093812154589601751070236 y[1] (numeric) = 0.32136805093812154589601751070234 absolute error = 2e-32 relative error = 6.2233940000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.764 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.763 y[1] (analytic) = 0.32173272375706605494551456323174 y[1] (numeric) = 0.32173272375706605494551456323172 absolute error = 2e-32 relative error = 6.2163400000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.763 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.762 y[1] (analytic) = 0.32209801764775038692024369936015 y[1] (numeric) = 0.32209801764775038692024369936013 absolute error = 2e-32 relative error = 6.2092900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.762 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.761 y[1] (analytic) = 0.32246393402129938776997486716098 y[1] (numeric) = 0.32246393402129938776997486716096 absolute error = 2e-32 relative error = 6.2022440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.761 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.76 y[1] (analytic) = 0.32283047429284791682337395939632 y[1] (numeric) = 0.3228304742928479168233739593963 absolute error = 2e-32 relative error = 6.1952020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.76 Order of pole = 1 TOP MAIN SOLVE Loop memory used=41.9MB, alloc=4.4MB, time=2.40 x[1] = -1.759 y[1] (analytic) = 0.32319763988155452893620789623546 y[1] (numeric) = 0.32319763988155452893620789623544 absolute error = 2e-32 relative error = 6.1881640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.759 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.758 y[1] (analytic) = 0.32356543221061521113453365323169 y[1] (numeric) = 0.32356543221061521113453365323167 absolute error = 2e-32 relative error = 6.1811300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.758 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.757 y[1] (analytic) = 0.32393385270727717400106898171393 y[1] (numeric) = 0.32393385270727717400106898171391 absolute error = 2e-32 relative error = 6.1741000000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.757 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.756 y[1] (analytic) = 0.32430290280285269805421501347316 y[1] (numeric) = 0.32430290280285269805421501347314 absolute error = 2e-32 relative error = 6.1670740000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.756 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.755 y[1] (analytic) = 0.3246725839327330353704806387998 y[1] (numeric) = 0.32467258393273303537048063879978 absolute error = 2e-32 relative error = 6.1600520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.755 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.754 y[1] (analytic) = 0.32504289753640236670234554205291 y[1] (numeric) = 0.32504289753640236670234554205289 absolute error = 2e-32 relative error = 6.1530340000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.754 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.753 y[1] (analytic) = 0.32541384505745181434489311782259 y[1] (numeric) = 0.32541384505745181434489311782257 absolute error = 2e-32 relative error = 6.1460200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.753 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.752 y[1] (analytic) = 0.32578542794359351100584621950445 y[1] (numeric) = 0.32578542794359351100584621950443 absolute error = 2e-32 relative error = 6.1390100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.752 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.751 y[1] (analytic) = 0.32615764764667472493494785717687 y[1] (numeric) = 0.32615764764667472493494785717685 absolute error = 2e-32 relative error = 6.1320040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.751 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.75 y[1] (analytic) = 0.32653050562269204156994560981368 y[1] (numeric) = 0.32653050562269204156994560981366 absolute error = 2e-32 relative error = 6.1250020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.75 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.749 y[1] (analytic) = 0.32690400333180560195776269515352 y[1] (numeric) = 0.3269040033318056019577626951535 absolute error = 2e-32 relative error = 6.1180040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.749 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.748 y[1] (analytic) = 0.32727814223835339821077039638292 y[1] (numeric) = 0.3272781422383533982107703963829 absolute error = 2e-32 relative error = 6.1110100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.748 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.747 y[1] (analytic) = 0.32765292381086562625941592589801 y[1] (numeric) = 0.32765292381086562625941592589799 absolute error = 2e-32 relative error = 6.1040200000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.747 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.746 y[1] (analytic) = 0.32802834952207909616380686084414 y[1] (numeric) = 0.32802834952207909616380686084412 absolute error = 2e-32 relative error = 6.0970340000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.746 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.745 y[1] (analytic) = 0.32840442084895170024820806127764 y[1] (numeric) = 0.32840442084895170024820806127762 absolute error = 2e-32 relative error = 6.0900520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.745 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.744 y[1] (analytic) = 0.32878113927267693932376952836674 y[1] (numeric) = 0.32878113927267693932376952836673 absolute error = 1e-32 relative error = 3.0415370000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.744 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.743 y[1] (analytic) = 0.32915850627869850726617402610227 y[1] (numeric) = 0.32915850627869850726617402610226 absolute error = 1e-32 relative error = 3.0380500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.743 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.742 y[1] (analytic) = 0.32953652335672493421627152491378 y[1] (numeric) = 0.32953652335672493421627152491378 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.742 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.741 y[1] (analytic) = 0.32991519200074428867315367911525 y[1] (numeric) = 0.32991519200074428867315367911524 absolute error = 1e-32 relative error = 3.0310820000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.741 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.74 y[1] (analytic) = 0.33029451370903893875051567230953 y[1] (numeric) = 0.33029451370903893875051567230952 absolute error = 1e-32 relative error = 3.0276010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.74 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.739 y[1] (analytic) = 0.33067448998420037286855490618434 y[1] (numeric) = 0.33067448998420037286855490618433 absolute error = 1e-32 relative error = 3.0241220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.739 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.738 y[1] (analytic) = 0.33105512233314408015506621930084 y[1] (numeric) = 0.33105512233314408015506621930083 absolute error = 1e-32 relative error = 3.0206450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.738 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.737 y[1] (analytic) = 0.33143641226712449083081165463 y[1] (numeric) = 0.33143641226712449083081165462999 absolute error = 1e-32 relative error = 3.0171700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.737 Order of pole = 1 TOP MAIN SOLVE Loop memory used=45.7MB, alloc=4.4MB, time=2.62 x[1] = -1.736 y[1] (analytic) = 0.33181836130174997685566929920294 y[1] (numeric) = 0.33181836130174997685566929920293 absolute error = 1e-32 relative error = 3.0136970000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.736 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.735 y[1] (analytic) = 0.33220097095699791311350044813911 y[1] (numeric) = 0.3322009709569979131135004481391 absolute error = 1e-32 relative error = 3.0102260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.735 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.734 y[1] (analytic) = 0.33258424275722979941511735068714 y[1] (numeric) = 0.33258424275722979941511735068713 absolute error = 1e-32 relative error = 3.0067570000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.734 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.733 y[1] (analytic) = 0.3329681782312064436001851303071 y[1] (numeric) = 0.33296817823120644360018513030709 absolute error = 1e-32 relative error = 3.0032900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.733 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.732 y[1] (analytic) = 0.33335277891210320602035118715258 y[1] (numeric) = 0.33335277891210320602035118715258 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.732 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.731 y[1] (analytic) = 0.3337380463375253056873635428563 y[1] (numeric) = 0.3337380463375253056873635428563 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.731 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.73 y[1] (analytic) = 0.33412398204952318837141622793403 y[1] (numeric) = 0.33412398204952318837141622793403 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.73 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.729 y[1] (analytic) = 0.33451058759460795693644499542055 y[1] (numeric) = 0.33451058759460795693644499542055 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.729 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.728 y[1] (analytic) = 0.33489786452376686420059042493516 y[1] (numeric) = 0.33489786452376686420059042493516 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.728 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.727 y[1] (analytic) = 0.33528581439247886861154791401931 y[1] (numeric) = 0.33528581439247886861154791401931 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.727 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.726 y[1] (analytic) = 0.33567443876073025302803519345086 y[1] (numeric) = 0.33567443876073025302803519345086 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.726 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.725 y[1] (analytic) = 0.33606373919303030690012790585914 y[1] (numeric) = 0.33606373919303030690012790585914 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.725 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.724 y[1] (analytic) = 0.33645371725842707214274250826919 y[1] (numeric) = 0.33645371725842707214274250826919 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.724 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.723 y[1] (analytic) = 0.33684437453052315299808335550892 y[1] (numeric) = 0.33684437453052315299808335550892 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.723 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.722 y[1] (analytic) = 0.33723571258749159018441734942847 y[1] (numeric) = 0.33723571258749159018441734942847 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.722 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.721 y[1] (analytic) = 0.33762773301209179963009505571195 y[1] (numeric) = 0.33762773301209179963009505571195 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.721 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.72 y[1] (analytic) = 0.3380204373916855760933017532106 y[1] (numeric) = 0.3380204373916855760933017532106 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.72 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.719 y[1] (analytic) = 0.33841382731825316196959554809842 y[1] (numeric) = 0.33841382731825316196959554809842 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.719 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.718 y[1] (analytic) = 0.33880790438840938159087251505578 y[1] (numeric) = 0.33880790438840938159087251505578 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.718 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.717 y[1] (analytic) = 0.3392026702034198413209908788402 y[1] (numeric) = 0.3392026702034198413209908788402 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.717 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.716 y[1] (analytic) = 0.33959812636921719575488758113424 y[1] (numeric) = 0.33959812636921719575488758113424 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.716 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.715 y[1] (analytic) = 0.33999427449641748032963124900977 y[1] (numeric) = 0.33999427449641748032963124900977 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.715 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.714 y[1] (analytic) = 0.34039111620033651065747565267444 y[1] (numeric) = 0.34039111620033651065747565267444 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.714 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.713 y[1] (analytic) = 0.34078865310100634889260727174828 y[1] (numeric) = 0.34078865310100634889260727174828 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.713 Order of pole = 1 TOP MAIN SOLVE Loop memory used=49.5MB, alloc=4.4MB, time=2.85 x[1] = -1.712 y[1] (analytic) = 0.34118688682319183744491964195848 y[1] (numeric) = 0.34118688682319183744491964195848 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.712 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.711 y[1] (analytic) = 0.34158581899640720035579578906666 y[1] (numeric) = 0.34158581899640720035579578906666 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.711 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.71 y[1] (analytic) = 0.34198545125493271265253833571412 y[1] (numeric) = 0.34198545125493271265253833571412 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.71 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.709 y[1] (analytic) = 0.34238578523783143799975485177777 y[1] (numeric) = 0.34238578523783143799975485177777 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.709 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.708 y[1] (analytic) = 0.34278682258896603496768377230043 y[1] (numeric) = 0.34278682258896603496768377230043 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.708 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.707 y[1] (analytic) = 0.34318856495701563223913379206205 y[1] (numeric) = 0.34318856495701563223913379206205 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.707 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.706 y[1] (analytic) = 0.34359101399549277307840712580276 y[1] (numeric) = 0.34359101399549277307840712580276 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.706 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.705 y[1] (analytic) = 0.34399417136276042938728446185208 y[1] (numeric) = 0.34399417136276042938728446185208 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.705 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.704 y[1] (analytic) = 0.34439803872204908567486689876798 y[1] (numeric) = 0.34439803872204908567486689876799 absolute error = 1e-32 relative error = 2.9036170000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.704 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.703 y[1] (analytic) = 0.34480261774147389326979770430417 y[1] (numeric) = 0.34480261774147389326979770430418 absolute error = 1e-32 relative error = 2.9002100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.703 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.702 y[1] (analytic) = 0.34520791009405189510512443882139 y[1] (numeric) = 0.3452079100940518951051244388214 absolute error = 1e-32 relative error = 2.8968050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.702 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.701 y[1] (analytic) = 0.34561391745771932140780990681558 y[1] (numeric) = 0.34561391745771932140780990681558 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.701 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.7 y[1] (analytic) = 0.34602064151534895662665860669252 y[1] (numeric) = 0.34602064151534895662665860669253 absolute error = 1e-32 relative error = 2.8900010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.7 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.699 y[1] (analytic) = 0.34642808395476757793419390688429 y[1] (numeric) = 0.34642808395476757793419390688429 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.699 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.698 y[1] (analytic) = 0.34683624646877346563980015295478 y[1] (numeric) = 0.34683624646877346563980015295479 absolute error = 1e-32 relative error = 2.8832050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.698 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.697 y[1] (analytic) = 0.34724513075515398585323337303503 y[1] (numeric) = 0.34724513075515398585323337303503 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.697 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.696 y[1] (analytic) = 0.34765473851670324573940426579317 y[1] (numeric) = 0.34765473851670324573940426579318 absolute error = 1e-32 relative error = 2.8764170000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.696 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.695 y[1] (analytic) = 0.34806507146123982170714779469451 y[1] (numeric) = 0.34806507146123982170714779469452 absolute error = 1e-32 relative error = 2.8730260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.695 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.694 y[1] (analytic) = 0.34847613130162456087651504354035 y[1] (numeric) = 0.34847613130162456087651504354036 absolute error = 1e-32 relative error = 2.8696370000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.694 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.693 y[1] (analytic) = 0.34888791975577845617095508068033 y[1] (numeric) = 0.34888791975577845617095508068034 absolute error = 1e-32 relative error = 2.8662500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.693 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.692 y[1] (analytic) = 0.34930043854670059538259750285116 y[1] (numeric) = 0.34930043854670059538259750285117 absolute error = 1e-32 relative error = 2.8628650000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.692 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.691 y[1] (analytic) = 0.34971368940248618456070015478328 y[1] (numeric) = 0.34971368940248618456070015478328 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.691 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.69 y[1] (analytic) = 0.3501276740563446460751913185143 y[1] (numeric) = 0.3501276740563446460751913185143 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.69 Order of pole = 1 TOP MAIN SOLVE Loop memory used=53.4MB, alloc=4.4MB, time=3.07 x[1] = -1.689 y[1] (analytic) = 0.35054239424661779170911150823669 y[1] (numeric) = 0.3505423942466177917091115082367 absolute error = 1e-32 relative error = 2.8527220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.689 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.688 y[1] (analytic) = 0.3509578517167980711356469644778 y[1] (numeric) = 0.35095785171679807113564696447781 absolute error = 1e-32 relative error = 2.8493450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.688 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.687 y[1] (analytic) = 0.35137404821554689613734508796649 y[1] (numeric) = 0.3513740482155468961373450879665 absolute error = 1e-32 relative error = 2.8459700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.687 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.686 y[1] (analytic) = 0.3517909854967130409270114617021 y[1] (numeric) = 0.35179098549671304092701146170211 absolute error = 1e-32 relative error = 2.8425970000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.686 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.685 y[1] (analytic) = 0.35220866531935111893170885304657 y[1] (numeric) = 0.35220866531935111893170885304658 absolute error = 1e-32 relative error = 2.8392260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.685 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.684 y[1] (analytic) = 0.35262708944774013640321074017484 y[1] (numeric) = 0.35262708944774013640321074017485 absolute error = 1e-32 relative error = 2.8358570000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.684 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.683 y[1] (analytic) = 0.35304625965140212322020554353237 y[1] (numeric) = 0.35304625965140212322020554353238 absolute error = 1e-32 relative error = 2.8324900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.683 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.682 y[1] (analytic) = 0.3534661777051208412495029381876 y[1] (numeric) = 0.35346617770512084124950293818761 absolute error = 1e-32 relative error = 2.8291250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.682 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.681 y[1] (analytic) = 0.35388684538896057063546045279114 y[1] (numeric) = 0.35388684538896057063546045279115 absolute error = 1e-32 relative error = 2.8257620000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.681 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.68 y[1] (analytic) = 0.35430826448828497438882710146432 y[1] (numeric) = 0.35430826448828497438882710146433 absolute error = 1e-32 relative error = 2.8224010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.68 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.679 y[1] (analytic) = 0.35473043679377604164819112308366 y[1] (numeric) = 0.35473043679377604164819112308367 absolute error = 1e-32 relative error = 2.8190420000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.679 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.678 y[1] (analytic) = 0.35515336410145310998922109539952 y[1] (numeric) = 0.35515336410145310998922109539953 absolute error = 1e-32 relative error = 2.8156850000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.678 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.677 y[1] (analytic) = 0.35557704821269196715890382707577 y[1] (numeric) = 0.35557704821269196715890382707578 absolute error = 1e-32 relative error = 2.8123300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.677 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.676 y[1] (analytic) = 0.35600149093424403261400858746796 y[1] (numeric) = 0.35600149093424403261400858746797 absolute error = 1e-32 relative error = 2.8089770000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.676 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.675 y[1] (analytic) = 0.35642669407825561924504549073897 y[1] (numeric) = 0.35642669407825561924504549073897 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.675 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.674 y[1] (analytic) = 0.35685265946228727566903628727638 y[1] (numeric) = 0.35685265946228727566903628727639 absolute error = 1e-32 relative error = 2.8022770000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.674 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.673 y[1] (analytic) = 0.35727938890933320947647851143115 y[1] (numeric) = 0.35727938890933320947647851143116 absolute error = 1e-32 relative error = 2.7989300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.673 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.672 y[1] (analytic) = 0.35770688424784079181995897102038 y[1] (numeric) = 0.35770688424784079181995897102038 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.672 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.671 y[1] (analytic) = 0.35813514731173014373396002208978 y[1] (numeric) = 0.35813514731173014373396002208978 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.671 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.67 y[1] (analytic) = 0.35856417994041380457750203395531 y[1] (numeric) = 0.35856417994041380457750203395531 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.67 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.669 y[1] (analytic) = 0.35899398397881648299337799697153 y[1] (numeric) = 0.35899398397881648299337799697153 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.669 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.668 y[1] (analytic) = 0.35942456127739489077986144183163 y[1] (numeric) = 0.35942456127739489077986144183163 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.668 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.667 y[1] (analytic) = 0.35985591369215766007290680811403 y[1] (numeric) = 0.35985591369215766007290680811403 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.667 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.666 y[1] (analytic) = 0.36028804308468534423901220547804 y[1] (numeric) = 0.36028804308468534423901220547803 absolute error = 1e-32 relative error = 2.7755570000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.666 memory used=57.2MB, alloc=4.4MB, time=3.29 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.665 y[1] (analytic) = 0.36072095132215050288107823821002 y[1] (numeric) = 0.36072095132215050288107823821001 absolute error = 1e-32 relative error = 2.7722260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.665 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.664 y[1] (analytic) = 0.36115464027733787136177329817613 y[1] (numeric) = 0.36115464027733787136177329817613 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.664 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.663 y[1] (analytic) = 0.36158911182866461525110555870942 y[1] (numeric) = 0.36158911182866461525110555870941 absolute error = 1e-32 relative error = 2.7655700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.663 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.662 y[1] (analytic) = 0.36202436786020067010710490923144 y[1] (numeric) = 0.36202436786020067010710490923143 absolute error = 1e-32 relative error = 2.7622450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.662 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.661 y[1] (analytic) = 0.36246041026168916700073434479119 y[1] (numeric) = 0.36246041026168916700073434479118 absolute error = 1e-32 relative error = 2.7589220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.661 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.66 y[1] (analytic) = 0.36289724092856694419837995413705 y[1] (numeric) = 0.36289724092856694419837995413704 absolute error = 1e-32 relative error = 2.7556010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.66 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.659 y[1] (analytic) = 0.36333486176198514541751172299931 y[1] (numeric) = 0.36333486176198514541751172299931 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.659 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.658 y[1] (analytic) = 0.36377327466882990507336397516884 y[1] (numeric) = 0.36377327466882990507336397516883 absolute error = 1e-32 relative error = 2.7489650000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.658 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.657 y[1] (analytic) = 0.3642124815617431209367545025768 y[1] (numeric) = 0.3642124815617431209367545025768 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.657 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.656 y[1] (analytic) = 0.36465248435914331462544537742808 y[1] (numeric) = 0.36465248435914331462544537742808 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.656 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.655 y[1] (analytic) = 0.36509328498524658035374618568791 y[1] (numeric) = 0.3650932849852465803537461856879 absolute error = 1e-32 relative error = 2.7390260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.655 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.654 y[1] (analytic) = 0.36553488537008762236737206370396 y[1] (numeric) = 0.36553488537008762236737206370395 absolute error = 1e-32 relative error = 2.7357170000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.654 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.653 y[1] (analytic) = 0.36597728744954088149289455096417 y[1] (numeric) = 0.36597728744954088149289455096416 absolute error = 1e-32 relative error = 2.7324100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.653 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.652 y[1] (analytic) = 0.36642049316534175123346298511783 y[1] (numeric) = 0.36642049316534175123346298511782 absolute error = 1e-32 relative error = 2.7291050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.652 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.651 y[1] (analytic) = 0.3668645044651078838448280542754 y[1] (numeric) = 0.36686450446510788384482805427539 absolute error = 1e-32 relative error = 2.7258020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.651 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.65 y[1] (analytic) = 0.36730932330236058682806728078337 y[1] (numeric) = 0.36730932330236058682806728078336 absolute error = 1e-32 relative error = 2.7225010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.65 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.649 y[1] (analytic) = 0.36775495163654631027779473536721 y[1] (numeric) = 0.36775495163654631027779473536721 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.649 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.648 y[1] (analytic) = 0.36820139143305822552703426666249 y[1] (numeric) = 0.36820139143305822552703426666249 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.648 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.647 y[1] (analytic) = 0.36864864466325789553234707532598 y[1] (numeric) = 0.36864864466325789553234707532597 absolute error = 1e-32 relative error = 2.7126100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.647 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.646 y[1] (analytic) = 0.36909671330449703744523066145453 y[1] (numeric) = 0.36909671330449703744523066145452 absolute error = 1e-32 relative error = 2.7093170000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.646 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.645 y[1] (analytic) = 0.36954559934013937781824712696774 y[1] (numeric) = 0.36954559934013937781824712696773 absolute error = 1e-32 relative error = 2.7060260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.645 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.644 y[1] (analytic) = 0.36999530475958260089679461967628 y[1] (numeric) = 0.36999530475958260089679461967627 absolute error = 1e-32 relative error = 2.7027370000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.644 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.643 y[1] (analytic) = 0.37044583155828039044990646242753 y[1] (numeric) = 0.37044583155828039044990646242753 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.643 Order of pole = 1 memory used=61.0MB, alloc=4.4MB, time=3.52 TOP MAIN SOLVE Loop x[1] = -1.642 y[1] (analytic) = 0.3708971817377645655959483191867 y[1] (numeric) = 0.3708971817377645655959483191867 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.642 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.641 y[1] (analytic) = 0.37134935730566731108158471110134 y[1] (numeric) = 0.37134935730566731108158471110134 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.641 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.64 y[1] (analytic) = 0.37180236027574350247490241117549 y[1] (numeric) = 0.37180236027574350247490241117549 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.64 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.639 y[1] (analytic) = 0.37225619266789312673610981855489 y[1] (numeric) = 0.37225619266789312673610981855489 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.639 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.638 y[1] (analytic) = 0.37271085650818379863177844575846 y[1] (numeric) = 0.37271085650818379863177844575846 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.638 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.637 y[1] (analytic) = 0.37316635382887337346115524839818 y[1] (numeric) = 0.37316635382887337346115524839819 absolute error = 1e-32 relative error = 2.6797700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.637 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.636 y[1] (analytic) = 0.37362268666843265656565279169003 y[1] (numeric) = 0.37362268666843265656565279169004 absolute error = 1e-32 relative error = 2.6764970000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.636 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.635 y[1] (analytic) = 0.374079857071568210095218286819 y[1] (numeric) = 0.374079857071568210095218286819 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.635 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.634 y[1] (analytic) = 0.37453786708924525750789244920424 y[1] (numeric) = 0.37453786708924525750789244920424 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.634 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.633 y[1] (analytic) = 0.37499671877871068628149503691843 y[1] (numeric) = 0.37499671877871068628149503691843 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.633 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.632 y[1] (analytic) = 0.37545641420351614931901592873837 y[1] (numeric) = 0.37545641420351614931901592873838 absolute error = 1e-32 relative error = 2.6634250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.632 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.631 y[1] (analytic) = 0.37591695543354126553194880612534 y[1] (numeric) = 0.37591695543354126553194880612535 absolute error = 1e-32 relative error = 2.6601620000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.631 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.63 y[1] (analytic) = 0.37637834454501692008847902123564 y[1] (numeric) = 0.37637834454501692008847902123565 absolute error = 1e-32 relative error = 2.6569010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.63 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.629 y[1] (analytic) = 0.37684058362054866481612817403403 y[1] (numeric) = 0.37684058362054866481612817403403 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.629 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.628 y[1] (analytic) = 0.37730367474914021925116539672538 y[1] (numeric) = 0.37730367474914021925116539672539 absolute error = 1e-32 relative error = 2.6503850000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.628 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.627 y[1] (analytic) = 0.37776762002621707282981946485439 y[1] (numeric) = 0.3777676200262170728298194648544 absolute error = 1e-32 relative error = 2.6471300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.627 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.626 y[1] (analytic) = 0.37823242155365018871906673419376 y[1] (numeric) = 0.37823242155365018871906673419377 absolute error = 1e-32 relative error = 2.6438770000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.626 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.625 y[1] (analytic) = 0.3786980814397798097875276544274 y[1] (numeric) = 0.37869808143977980978752765442741 absolute error = 1e-32 relative error = 2.6406260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.625 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.624 y[1] (analytic) = 0.37916460179943936721977934895163 y[1] (numeric) = 0.37916460179943936721977934895164 absolute error = 1e-32 relative error = 2.6373770000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.624 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.623 y[1] (analytic) = 0.37963198475397949228018359002783 y[1] (numeric) = 0.37963198475397949228018359002784 absolute error = 1e-32 relative error = 2.6341300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.623 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.622 y[1] (analytic) = 0.38010023243129213173513855603723 y[1] (numeric) = 0.38010023243129213173513855603724 absolute error = 1e-32 relative error = 2.6308850000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.622 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.621 y[1] (analytic) = 0.38056934696583476744548914958735 y[1] (numeric) = 0.38056934696583476744548914958736 absolute error = 1e-32 relative error = 2.6276420000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.621 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.62 y[1] (analytic) = 0.38103933049865474064367449943816 y[1] (numeric) = 0.38103933049865474064367449943817 absolute error = 1e-32 relative error = 2.6244010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.62 Order of pole = 1 TOP MAIN SOLVE Loop memory used=64.8MB, alloc=4.4MB, time=3.74 x[1] = -1.619 y[1] (analytic) = 0.38151018517741368141305268426751 y[1] (numeric) = 0.38151018517741368141305268426752 absolute error = 1e-32 relative error = 2.6211620000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.619 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.618 y[1] (analytic) = 0.38198191315641204388972182167174 y[1] (numeric) = 0.38198191315641204388972182167175 absolute error = 1e-32 relative error = 2.6179250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.618 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.617 y[1] (analytic) = 0.38245451659661374771005358187778 y[1] (numeric) = 0.38245451659661374771005358187778 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.617 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.616 y[1] (analytic) = 0.38292799766567092623007003370149 y[1] (numeric) = 0.3829279976656709262300700337015 absolute error = 1e-32 relative error = 2.6114570000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.616 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.615 y[1] (analytic) = 0.3834023585379487820457276324981 y[1] (numeric) = 0.38340235853794878204572763249811 absolute error = 1e-32 relative error = 2.6082260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.615 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.614 y[1] (analytic) = 0.3838776013945505503461232392974 y[1] (numeric) = 0.3838776013945505503461232392974 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.614 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.613 y[1] (analytic) = 0.38435372842334257063460644099978 y[1] (numeric) = 0.38435372842334257063460644099978 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.613 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.612 y[1] (analytic) = 0.38483074181897946735577024835052 y[1] (numeric) = 0.38483074181897946735577024835052 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.612 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.611 y[1] (analytic) = 0.38530864378292943996929860726338 y[1] (numeric) = 0.38530864378292943996929860726338 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.611 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.61 y[1] (analytic) = 0.38578743652349966301467419672304 y[1] (numeric) = 0.38578743652349966301467419672305 absolute error = 1e-32 relative error = 2.5921010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.61 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.609 y[1] (analytic) = 0.38626712225586179671379383069603 y[1] (numeric) = 0.38626712225586179671379383069604 absolute error = 1e-32 relative error = 2.5888820000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.609 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.608 y[1] (analytic) = 0.38674770320207760866160156091373 y[1] (numeric) = 0.38674770320207760866160156091374 absolute error = 1e-32 relative error = 2.5856650000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.608 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.607 y[1] (analytic) = 0.38722918159112470715793142171194 y[1] (numeric) = 0.38722918159112470715793142171195 absolute error = 1e-32 relative error = 2.5824500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.607 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.606 y[1] (analytic) = 0.38771155965892238673685279793986 y[1] (numeric) = 0.38771155965892238673685279793987 absolute error = 1e-32 relative error = 2.5792370000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.606 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.605 y[1] (analytic) = 0.38819483964835758645293176388748 y[1] (numeric) = 0.38819483964835758645293176388749 absolute error = 1e-32 relative error = 2.5760260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.605 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.604 y[1] (analytic) = 0.3886790238093109614869615678068 y[1] (numeric) = 0.38867902380931096148696156780682 absolute error = 2e-32 relative error = 5.1456340000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.604 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.603 y[1] (analytic) = 0.38916411439868306863687485649573 y[1] (numeric) = 0.38916411439868306863687485649575 absolute error = 2e-32 relative error = 5.1392200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.603 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.602 y[1] (analytic) = 0.3896501136804206662627293821513 y[1] (numeric) = 0.38965011368042066626272938215131 absolute error = 1e-32 relative error = 2.5664050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.602 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.601 y[1] (analytic) = 0.3901370239255431292578579448674 y[1] (numeric) = 0.39013702392554312925785794486741 absolute error = 1e-32 relative error = 2.5632020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.601 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.6 y[1] (analytic) = 0.39062484741216897962149233535456 y[1] (numeric) = 0.39062484741216897962149233535457 absolute error = 1e-32 relative error = 2.5600010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.6 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.599 y[1] (analytic) = 0.39111358642554253321141019132494 y[1] (numeric) = 0.39111358642554253321141019132496 absolute error = 2e-32 relative error = 5.1136040000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.599 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.598 y[1] (analytic) = 0.39160324325806066325841310617735 y[1] (numeric) = 0.39160324325806066325841310617736 absolute error = 1e-32 relative error = 2.5536050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.598 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.597 y[1] (analytic) = 0.39209382020929968122772416983936 y[1] (numeric) = 0.39209382020929968122772416983937 absolute error = 1e-32 relative error = 2.5504100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.597 Order of pole = 1 TOP MAIN SOLVE Loop memory used=68.6MB, alloc=4.4MB, time=3.97 x[1] = -1.596 y[1] (analytic) = 0.39258531958604233561569351963339 y[1] (numeric) = 0.3925853195860423356156935196334 absolute error = 1e-32 relative error = 2.5472170000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.596 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.595 y[1] (analytic) = 0.39307774370230492927352157564427 y[1] (numeric) = 0.39307774370230492927352157564429 absolute error = 2e-32 relative error = 5.0880520000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.595 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.594 y[1] (analytic) = 0.3935710948793645558530515731627 y[1] (numeric) = 0.39357109487936455585305157316272 absolute error = 2e-32 relative error = 5.0816740000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.594 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.593 y[1] (analytic) = 0.39406537544578645597304592831951 y[1] (numeric) = 0.39406537544578645597304592831953 absolute error = 2e-32 relative error = 5.0753000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.593 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.592 y[1] (analytic) = 0.39456058773745149370774502705699 y[1] (numeric) = 0.39456058773745149370774502705701 absolute error = 2e-32 relative error = 5.0689300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.592 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.591 y[1] (analytic) = 0.39505673409758375400291235824377 y[1] (numeric) = 0.39505673409758375400291235824379 absolute error = 2e-32 relative error = 5.0625640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.591 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.59 y[1] (analytic) = 0.39555381687677826162799666627243 y[1] (numeric) = 0.39555381687677826162799666627245 absolute error = 2e-32 relative error = 5.0562020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.59 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.589 y[1] (analytic) = 0.39605183843302882227649012523951 y[1] (numeric) = 0.39605183843302882227649012523953 absolute error = 2e-32 relative error = 5.0498440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.589 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.588 y[1] (analytic) = 0.39655080113175598643003158527131 y[1] (numeric) = 0.39655080113175598643003158527133 absolute error = 2e-32 relative error = 5.0434900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.588 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.587 y[1] (analytic) = 0.39705070734583513660529586233458 y[1] (numeric) = 0.3970507073458351366052958623346 absolute error = 2e-32 relative error = 5.0371400000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.587 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.586 y[1] (analytic) = 0.39755155945562469860622398770453 y[1] (numeric) = 0.39755155945562469860622398770455 absolute error = 2e-32 relative error = 5.0307939999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.586 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.585 y[1] (analytic) = 0.39805335984899447740768545505062 y[1] (numeric) = 0.39805335984899447740768545505065 absolute error = 3e-32 relative error = 7.5366780000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.585 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.584 y[1] (analytic) = 0.39855611092135411830022195589817 y[1] (numeric) = 0.3985561109213541183002219558982 absolute error = 3e-32 relative error = 7.5271710000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.584 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.583 y[1] (analytic) = 0.39905981507568169392910303325365 y[1] (numeric) = 0.39905981507568169392910303325368 absolute error = 3e-32 relative error = 7.5176700000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.583 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.582 y[1] (analytic) = 0.39956447472255241786452766484532 y[1] (numeric) = 0.39956447472255241786452766484534 absolute error = 2e-32 relative error = 5.0054500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.582 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.581 y[1] (analytic) = 0.40007009228016748534343216931606 y[1] (numeric) = 0.40007009228016748534343216931609 absolute error = 3e-32 relative error = 7.4986860000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.581 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.58 y[1] (analytic) = 0.40057667017438304182701416959855 y[1] (numeric) = 0.40057667017438304182701416959858 absolute error = 3e-32 relative error = 7.4892030000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.58 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.579 y[1] (analytic) = 0.40108421083873928002175480759589 y[1] (numeric) = 0.40108421083873928002175480759592 absolute error = 3e-32 relative error = 7.4797260000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.579 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.578 y[1] (analytic) = 0.40159271671448966601541714439467 y[1] (numeric) = 0.4015927167144896660154171443947 absolute error = 3e-32 relative error = 7.4702550000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.578 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.577 y[1] (analytic) = 0.4021021902506302951832178629877 y[1] (numeric) = 0.40210219025063029518321786298773 absolute error = 3e-32 relative error = 7.4607900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.577 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.576 y[1] (analytic) = 0.40261263390392937852311217955557 y[1] (numeric) = 0.4026126339039293785231121795556 absolute error = 3e-32 relative error = 7.4513310000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.576 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.575 y[1] (analytic) = 0.40312405013895686008289842967058 y[1] (numeric) = 0.4031240501389568600828984296706 absolute error = 2e-32 relative error = 4.9612519999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.575 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.574 y[1] (analytic) = 0.40363644142811416614563929352321 y[1] (numeric) = 0.40363644142811416614563929352323 absolute error = 2e-32 relative error = 4.9549540000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.574 Order of pole = 1 TOP MAIN SOLVE Loop memory used=72.4MB, alloc=4.4MB, time=4.19 x[1] = -1.573 y[1] (analytic) = 0.40414981025166408684371122687758 y[1] (numeric) = 0.4041498102516640868437112268776 absolute error = 2e-32 relative error = 4.9486600000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.573 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.572 y[1] (analytic) = 0.40466415909776079087563254066369 y[1] (numeric) = 0.40466415909776079087563254066371 absolute error = 2e-32 relative error = 4.9423700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.572 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.571 y[1] (analytic) = 0.40517949046247997400368389192728 y[1] (numeric) = 0.40517949046247997400368389192731 absolute error = 3e-32 relative error = 7.4041260000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.571 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.57 y[1] (analytic) = 0.40569580684984914201422288359654 y[1] (numeric) = 0.40569580684984914201422288359657 absolute error = 3e-32 relative error = 7.3947030000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.57 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.569 y[1] (analytic) = 0.40621311077187802882650719281555 y[1] (numeric) = 0.40621311077187802882650719281558 absolute error = 3e-32 relative error = 7.3852860000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.569 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.568 y[1] (analytic) = 0.40673140474858915043977833138441 y[1] (numeric) = 0.40673140474858915043977833138444 absolute error = 3e-32 relative error = 7.3758750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.568 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.567 y[1] (analytic) = 0.40725069130804849541232096241483 y[1] (numeric) = 0.40725069130804849541232096241486 absolute error = 3e-32 relative error = 7.3664700000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.567 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.566 y[1] (analytic) = 0.40777097298639635257020083128191 y[1] (numeric) = 0.40777097298639635257020083128193 absolute error = 2e-32 relative error = 4.9047139999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.566 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.565 y[1] (analytic) = 0.40829225232787827664739799430514 y[1] (numeric) = 0.40829225232787827664739799430516 absolute error = 2e-32 relative error = 4.8984520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.565 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.564 y[1] (analytic) = 0.40881453188487619256309132466946 y[1] (numeric) = 0.40881453188487619256309132466948 absolute error = 2e-32 relative error = 4.8921940000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.564 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.563 y[1] (analytic) = 0.40933781421793963904591542262083 y[1] (numeric) = 0.40933781421793963904591542262084 absolute error = 1e-32 relative error = 2.4429700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.563 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.562 y[1] (analytic) = 0.40986210189581715231910223805201 y[1] (numeric) = 0.40986210189581715231910223805202 absolute error = 1e-32 relative error = 2.4398450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.562 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.561 y[1] (analytic) = 0.41038739749548779056453711174274 y[1] (numeric) = 0.41038739749548779056453711174276 absolute error = 2e-32 relative error = 4.8734440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.561 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.56 y[1] (analytic) = 0.41091370360219279988790274165732 y[1] (numeric) = 0.41091370360219279988790274165734 absolute error = 2e-32 relative error = 4.8672020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.56 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.559 y[1] (analytic) = 0.41144102280946742251125496917895 y[1] (numeric) = 0.41144102280946742251125496917897 absolute error = 2e-32 relative error = 4.8609640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.559 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.558 y[1] (analytic) = 0.41196935771917284792357144475594 y[1] (numeric) = 0.41196935771917284792357144475596 absolute error = 2e-32 relative error = 4.8547300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.558 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.557 y[1] (analytic) = 0.41249871094152830772403836238012 y[1] (numeric) = 0.41249871094152830772403836238014 absolute error = 2e-32 relative error = 4.8485000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.557 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.556 y[1] (analytic) = 0.41302908509514331489709173830312 y[1] (numeric) = 0.41302908509514331489709173830314 absolute error = 2e-32 relative error = 4.8422740000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.556 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.555 y[1] (analytic) = 0.41356048280705004826250834358274 y[1] (numeric) = 0.41356048280705004826250834358276 absolute error = 2e-32 relative error = 4.8360520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.555 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.554 y[1] (analytic) = 0.41409290671273588284814757608647 y[1] (numeric) = 0.41409290671273588284814757608649 absolute error = 2e-32 relative error = 4.8298340000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.554 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.553 y[1] (analytic) = 0.41462635945617606693727947060506 y[1] (numeric) = 0.41462635945617606693727947060509 absolute error = 3e-32 relative error = 7.2354300000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.553 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.552 y[1] (analytic) = 0.41516084368986654654679589239861 y[1] (numeric) = 0.41516084368986654654679589239864 absolute error = 3e-32 relative error = 7.2261150000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.552 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.551 y[1] (analytic) = 0.41569636207485693809699193798475 y[1] (numeric) = 0.41569636207485693809699193798478 absolute error = 3e-32 relative error = 7.2168060000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.551 Order of pole = 1 TOP MAIN SOLVE Loop memory used=76.2MB, alloc=4.4MB, time=4.42 x[1] = -1.55 y[1] (analytic) = 0.4162329172807836500380228769936 y[1] (numeric) = 0.41623291728078365003802287699363 absolute error = 3e-32 relative error = 7.2075030000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.55 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.549 y[1] (analytic) = 0.41677051198590315420258881171225 y[1] (numeric) = 0.41677051198590315420258881171228 absolute error = 3e-32 relative error = 7.1982060000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.549 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.548 y[1] (analytic) = 0.41730914887712540765887480934188 y[1] (numeric) = 0.41730914887712540765887480934191 absolute error = 3e-32 relative error = 7.1889150000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.548 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.547 y[1] (analytic) = 0.41784883065004742584227878038283 y[1] (numeric) = 0.41784883065004742584227878038286 absolute error = 3e-32 relative error = 7.1796300000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.547 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.546 y[1] (analytic) = 0.41838956000898700774899304092645 y[1] (numeric) = 0.41838956000898700774899304092648 absolute error = 3e-32 relative error = 7.1703510000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.546 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.545 y[1] (analytic) = 0.41893133966701661397906851454488 y[1] (numeric) = 0.41893133966701661397906851454491 absolute error = 3e-32 relative error = 7.1610780000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.545 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.544 y[1] (analytic) = 0.41947417234599739842118311012413 y[1] (numeric) = 0.41947417234599739842118311012417 absolute error = 4e-32 relative error = 9.5357480000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.544 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.543 y[1] (analytic) = 0.42001806077661339437595816620115 y[1] (numeric) = 0.42001806077661339437595816620118 absolute error = 3e-32 relative error = 7.1425499999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.543 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.542 y[1] (analytic) = 0.42056300769840585591931919260314 y[1] (numeric) = 0.42056300769840585591931919260317 absolute error = 3e-32 relative error = 7.1332950000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.542 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.541 y[1] (analytic) = 0.42110901585980775531207968056354 y[1] (numeric) = 0.42110901585980775531207968056358 absolute error = 4e-32 relative error = 9.4987280000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.541 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.54 y[1] (analytic) = 0.42165608801817843726663970878744 y[1] (numeric) = 0.42165608801817843726663970878747 absolute error = 3e-32 relative error = 7.1148030000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.54 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.539 y[1] (analytic) = 0.42220422693983843088643466262927 y[1] (numeric) = 0.4222042269398384308864346626293 absolute error = 3e-32 relative error = 7.1055660000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.539 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.538 y[1] (analytic) = 0.42275343540010442009854382579176 y[1] (numeric) = 0.4227534354001044200985438257918 absolute error = 4e-32 relative error = 9.4617800000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.538 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.537 y[1] (analytic) = 0.4233037161833243734046741196341 y[1] (numeric) = 0.42330371618332437340467411963413 absolute error = 3e-32 relative error = 7.0871099999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.537 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.536 y[1] (analytic) = 0.42385507208291283378057107689282 y[1] (numeric) = 0.42385507208291283378057107689285 absolute error = 3e-32 relative error = 7.0778910000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.536 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.535 y[1] (analytic) = 0.4244075059013863695587774687148 y[1] (numeric) = 0.42440750590138636955877746871483 absolute error = 3e-32 relative error = 7.0686780000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.535 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.534 y[1] (analytic) = 0.42496102045039918713456008247643 y[1] (numeric) = 0.42496102045039918713456008247646 absolute error = 3e-32 relative error = 7.0594710000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.534 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.533 y[1] (analytic) = 0.42551561855077890633975720078805 y[1] (numeric) = 0.42551561855077890633975720078808 absolute error = 3e-32 relative error = 7.0502700000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.533 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.532 y[1] (analytic) = 0.42607130303256249933426358901162 y[1] (numeric) = 0.42607130303256249933426358901165 absolute error = 3e-32 relative error = 7.0410750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.532 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.531 y[1] (analytic) = 0.42662807673503239386986649100967 y[1] (numeric) = 0.4266280767350323938698664910097 absolute error = 3e-32 relative error = 7.0318859999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.531 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.53 y[1] (analytic) = 0.42718594250675274178617549396578 y[1] (numeric) = 0.42718594250675274178617549396582 absolute error = 4e-32 relative error = 9.3636040000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.53 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.529 y[1] (analytic) = 0.42774490320560585360345138807499 y[1] (numeric) = 0.42774490320560585360345138807502 absolute error = 3e-32 relative error = 7.0135259999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.529 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.528 y[1] (analytic) = 0.42830496169882880008223455264618 y[1] (numeric) = 0.42830496169882880008223455264621 absolute error = 3e-32 relative error = 7.0043549999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.528 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.527 memory used=80.1MB, alloc=4.4MB, time=4.64 y[1] (analytic) = 0.42886612086305018162480218550175 y[1] (numeric) = 0.42886612086305018162480218550179 absolute error = 4e-32 relative error = 9.3269200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.527 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.526 y[1] (analytic) = 0.42942838358432706639864609819224 y[1] (numeric) = 0.42942838358432706639864609819227 absolute error = 3e-32 relative error = 6.9860309999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.526 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.525 y[1] (analytic) = 0.42999175275818209806735906805307 y[1] (numeric) = 0.42999175275818209806735906805311 absolute error = 4e-32 relative error = 9.3025040000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.525 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.524 y[1] (analytic) = 0.43055623128964077401954811401301 y[1] (numeric) = 0.43055623128964077401954811401305 absolute error = 4e-32 relative error = 9.2903080000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.524 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.523 y[1] (analytic) = 0.4311218220932688949916577927425 y[1] (numeric) = 0.43112182209326889499165779274253 absolute error = 3e-32 relative error = 6.9585899999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.523 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.522 y[1] (analytic) = 0.43168852809321018698588594357399 y[1] (numeric) = 0.43168852809321018698588594357403 absolute error = 4e-32 relative error = 9.2659400000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.522 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.521 y[1] (analytic) = 0.43225635222322409638970849496119 y[1] (numeric) = 0.43225635222322409638970849496123 absolute error = 4e-32 relative error = 9.2537680000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.521 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.52 y[1] (analytic) = 0.43282529742672375920889923437533 y[1] (numeric) = 0.43282529742672375920889923437537 absolute error = 4e-32 relative error = 9.2416040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.52 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.519 y[1] (analytic) = 0.4333953666568141453313350917628 y[1] (numeric) = 0.43339536665681414533133509176284 absolute error = 4e-32 relative error = 9.2294480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.519 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.518 y[1] (analytic) = 0.43396656287633037874431775031734 y[1] (numeric) = 0.43396656287633037874431775031738 absolute error = 4e-32 relative error = 9.2173000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.518 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.517 y[1] (analytic) = 0.43453888905787623463361853569085 y[1] (numeric) = 0.43453888905787623463361853569089 absolute error = 4e-32 relative error = 9.2051600000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.517 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.516 y[1] (analytic) = 0.43511234818386281429796580626101 y[1] (numeric) = 0.43511234818386281429796580626104 absolute error = 3e-32 relative error = 6.8947709999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.516 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.515 y[1] (analytic) = 0.43568694324654739881824273513806 y[1] (numeric) = 0.4356869432465473988182427351381 absolute error = 4e-32 relative error = 9.1809040000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.515 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.514 y[1] (analytic) = 0.43626267724807248242624870375452 y[1] (numeric) = 0.43626267724807248242624870375456 absolute error = 4e-32 relative error = 9.1687880000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.514 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.513 y[1] (analytic) = 0.43683955320050498652349978376442 y[1] (numeric) = 0.43683955320050498652349978376446 absolute error = 4e-32 relative error = 9.1566800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.513 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.512 y[1] (analytic) = 0.43741757412587565530620323732747 y[1] (numeric) = 0.4374175741258756553062032373275 absolute error = 3e-32 relative error = 6.8584349999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.512 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.511 y[1] (analytic) = 0.43799674305621863395823788654308 y[1] (numeric) = 0.43799674305621863395823788654311 absolute error = 3e-32 relative error = 6.8493659999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.511 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.51 y[1] (analytic) = 0.43857706303361123037970686386261 y[1] (numeric) = 0.43857706303361123037970686386264 absolute error = 3e-32 relative error = 6.8403030000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.51 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.509 y[1] (analytic) = 0.43915853711021386142440193194624 y[1] (numeric) = 0.43915853711021386142440193194627 absolute error = 3e-32 relative error = 6.8312459999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.509 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.508 y[1] (analytic) = 0.43974116834831018462532953103803 y[1] (numeric) = 0.43974116834831018462532953103806 absolute error = 3e-32 relative error = 6.8221950000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.508 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.507 y[1] (analytic) = 0.44032495982034741639329825411153 y[1] (numeric) = 0.44032495982034741639329825411156 absolute error = 3e-32 relative error = 6.8131500000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.507 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.506 y[1] (analytic) = 0.44090991460897683767945584661979 y[1] (numeric) = 0.44090991460897683767945584661981 absolute error = 2e-32 relative error = 4.5360740000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.506 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.505 y[1] (analytic) = 0.44149603580709448809859136274815 y[1] (numeric) = 0.44149603580709448809859136274818 absolute error = 3e-32 relative error = 6.7950780000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.505 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.504 y[1] (analytic) = 0.4420833265178820495159850699619 y[1] (numeric) = 0.44208332651788204951598506996192 memory used=83.9MB, alloc=4.4MB, time=4.87 absolute error = 2e-32 relative error = 4.5240340000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.504 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.503 y[1] (analytic) = 0.44267178985484792010659536699705 y[1] (numeric) = 0.44267178985484792010659536699707 absolute error = 2e-32 relative error = 4.5180200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.503 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.502 y[1] (analytic) = 0.44326142894186847990141865820333 y[1] (numeric) = 0.44326142894186847990141865820335 absolute error = 2e-32 relative error = 4.5120100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.502 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.501 y[1] (analytic) = 0.44385224691322954884194510257869 y[1] (numeric) = 0.44385224691322954884194510257871 absolute error = 2e-32 relative error = 4.5060040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.501 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.5 y[1] (analytic) = 0.44444424691366803836976072455079 y[1] (numeric) = 0.44444424691366803836976072455081 absolute error = 2e-32 relative error = 4.5000020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.5 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.499 y[1] (analytic) = 0.44503743209841379758451483354265 y[1] (numeric) = 0.44503743209841379758451483354267 absolute error = 2e-32 relative error = 4.4940040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.499 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.498 y[1] (analytic) = 0.44563180563323165500968135097738 y[1] (numeric) = 0.4456318056332316550096813509774 absolute error = 2e-32 relative error = 4.4880100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.498 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.497 y[1] (analytic) = 0.44622737069446365701179378940745 y[1] (numeric) = 0.44622737069446365701179378940747 absolute error = 2e-32 relative error = 4.4820200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.497 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.496 y[1] (analytic) = 0.44682413046907150392512657410556 y[1] (numeric) = 0.44682413046907150392512657410557 absolute error = 1e-32 relative error = 2.2380170000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.496 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.495 y[1] (analytic) = 0.44742208815467918494013045038402 y[1] (numeric) = 0.44742208815467918494013045038403 absolute error = 1e-32 relative error = 2.2350260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.495 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.494 y[1] (analytic) = 0.44802124695961581282030719024819 y[1] (numeric) = 0.4480212469596158128203071902482 absolute error = 1e-32 relative error = 2.2320370000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.494 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.493 y[1] (analytic) = 0.44862161010295865951862901235953 y[1] (numeric) = 0.44862161010295865951862901235954 absolute error = 1e-32 relative error = 2.2290500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.493 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.492 y[1] (analytic) = 0.44922318081457639377107137482508 y[1] (numeric) = 0.4492231808145763937710713748251 absolute error = 2e-32 relative error = 4.4521300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.492 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.491 y[1] (analytic) = 0.44982596233517252175133440871727 y[1] (numeric) = 0.44982596233517252175133440871728 absolute error = 1e-32 relative error = 2.2230820000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.491 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.49 y[1] (analytic) = 0.45042995791632903187737855169652 y[1] (numeric) = 0.45042995791632903187737855169653 absolute error = 1e-32 relative error = 2.2201010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.49 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.489 y[1] (analytic) = 0.45103517082055024486699423847673 y[1] (numeric) = 0.45103517082055024486699423847674 absolute error = 1e-32 relative error = 2.2171220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.489 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.488 y[1] (analytic) = 0.45164160432130687014626413355946 y[1] (numeric) = 0.45164160432130687014626413355947 absolute error = 1e-32 relative error = 2.2141450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.488 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.487 y[1] (analytic) = 0.45224926170308026972145967971707 y[1] (numeric) = 0.45224926170308026972145967971709 absolute error = 2e-32 relative error = 4.4223400000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.487 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.486 y[1] (analytic) = 0.45285814626140693063164201382395 y[1] (numeric) = 0.45285814626140693063164201382396 absolute error = 1e-32 relative error = 2.2081970000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.486 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.485 y[1] (analytic) = 0.45346826130292314710601090319087 y[1] (numeric) = 0.45346826130292314710601090319089 absolute error = 2e-32 relative error = 4.4104520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.485 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.484 y[1] (analytic) = 0.45407961014540991355686461661831 y[1] (numeric) = 0.45407961014540991355686461661833 absolute error = 2e-32 relative error = 4.4045140000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.484 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.483 y[1] (analytic) = 0.45469219611783802954589890373712 y[1] (numeric) = 0.45469219611783802954589890373713 absolute error = 1e-32 relative error = 2.1992900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.483 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.482 y[1] (analytic) = 0.45530602256041341786848485538342 y[1] (numeric) = 0.45530602256041341786848485538344 absolute error = 2e-32 relative error = 4.3926500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.482 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.481 y[1] (analytic) = 0.45592109282462265690752370105801 y[1] (numeric) = 0.45592109282462265690752370105803 memory used=87.7MB, alloc=4.4MB, time=5.10 absolute error = 2e-32 relative error = 4.3867240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.481 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.48 y[1] (analytic) = 0.45653741027327872841548191404222 y[1] (numeric) = 0.45653741027327872841548191404224 absolute error = 2e-32 relative error = 4.3808020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.48 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.479 y[1] (analytic) = 0.45715497828056698189026269039362 y[1] (numeric) = 0.45715497828056698189026269039364 absolute error = 2e-32 relative error = 4.3748840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.479 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.478 y[1] (analytic) = 0.45777380023209131671767029757586 y[1] (numeric) = 0.45777380023209131671767029757588 absolute error = 2e-32 relative error = 4.3689700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.478 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.477 y[1] (analytic) = 0.45839387952492058326037230750895 y[1] (numeric) = 0.45839387952492058326037230750897 absolute error = 2e-32 relative error = 4.3630600000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.477 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.476 y[1] (analytic) = 0.45901521956763520408046169586845 y[1] (numeric) = 0.45901521956763520408046169586847 absolute error = 2e-32 relative error = 4.3571540000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.476 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.475 y[1] (analytic) = 0.4596378237803740164899665659447 y[1] (numeric) = 0.45963782378037401648996656594472 absolute error = 2e-32 relative error = 4.3512520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.475 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.474 y[1] (analytic) = 0.46026169559488133763095020566794 y[1] (numeric) = 0.46026169559488133763095020566796 absolute error = 2e-32 relative error = 4.3453540000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.474 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.473 y[1] (analytic) = 0.46088683845455425329418867785393 y[1] (numeric) = 0.46088683845455425329418867785395 absolute error = 2e-32 relative error = 4.3394600000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.473 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.472 y[1] (analytic) = 0.46151325581449013169280754666476 y[1] (numeric) = 0.46151325581449013169280754666478 absolute error = 2e-32 relative error = 4.3335700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.472 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.471 y[1] (analytic) = 0.46214095114153436341470403107066 y[1] (numeric) = 0.46214095114153436341470403107068 absolute error = 2e-32 relative error = 4.3276840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.471 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.47 y[1] (analytic) = 0.46276992791432832878507622514868 y[1] (numeric) = 0.4627699279143283287850762251487 absolute error = 2e-32 relative error = 4.3218020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.47 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.469 y[1] (analytic) = 0.4634001896233575938779274148479 y[1] (numeric) = 0.46340018962335759387792741484792 absolute error = 2e-32 relative error = 4.3159240000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.469 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.468 y[1] (analytic) = 0.46403173977100033642301133397524 y[1] (numeric) = 0.46403173977100033642301133397527 absolute error = 3e-32 relative error = 6.4650750000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.468 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.467 y[1] (analytic) = 0.46466458187157600286233382432891 y[1] (numeric) = 0.46466458187157600286233382432893 absolute error = 2e-32 relative error = 4.3041800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.467 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.466 y[1] (analytic) = 0.46529871945139419781802818500463 y[1] (numeric) = 0.46529871945139419781802818500465 absolute error = 2e-32 relative error = 4.2983140000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.466 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.465 y[1] (analytic) = 0.46593415604880380724117590598567 y[1] (numeric) = 0.46593415604880380724117590598569 absolute error = 2e-32 relative error = 4.2924520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.465 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.464 y[1] (analytic) = 0.46657089521424235651895187647815 y[1] (numeric) = 0.46657089521424235651895187647818 absolute error = 3e-32 relative error = 6.4298910000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.464 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.463 y[1] (analytic) = 0.46720894051028560482533393759023 y[1] (numeric) = 0.46720894051028560482533393759025 absolute error = 2e-32 relative error = 4.2807400000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.463 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.462 y[1] (analytic) = 0.46784829551169737700853121366866 y[1] (numeric) = 0.46784829551169737700853121366868 absolute error = 2e-32 relative error = 4.2748900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.462 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.461 y[1] (analytic) = 0.46848896380547963431625441199482 y[1] (numeric) = 0.46848896380547963431625441199484 absolute error = 2e-32 relative error = 4.2690440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.461 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.46 y[1] (analytic) = 0.46913094899092278526797463502785 y[1] (numeric) = 0.46913094899092278526797463502787 absolute error = 2e-32 relative error = 4.2632020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.46 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.459 y[1] (analytic) = 0.46977425467965623799139561475129 y[1] (numeric) = 0.46977425467965623799139561475131 absolute error = 2e-32 relative error = 4.2573640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.459 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.458 y[1] (analytic) = 0.47041888449569919534849807010653 y[1] (numeric) = 0.47041888449569919534849807010655 absolute error = 2e-32 relative error = 4.2515300000000000000000000000000e-30 % memory used=91.5MB, alloc=4.4MB, time=5.32 Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.458 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.457 y[1] (analytic) = 0.47106484207551169418470452457781 y[1] (numeric) = 0.47106484207551169418470452457783 absolute error = 2e-32 relative error = 4.2457000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.457 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.456 y[1] (analytic) = 0.47171213106804589004295882377637 y[1] (numeric) = 0.47171213106804589004295882377639 absolute error = 2e-32 relative error = 4.2398740000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.456 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.455 y[1] (analytic) = 0.47236075513479758869281718788527 y[1] (numeric) = 0.47236075513479758869281718788529 absolute error = 2e-32 relative error = 4.2340520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.455 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.454 y[1] (analytic) = 0.47301071794985802583300735011355 y[1] (numeric) = 0.47301071794985802583300735011357 absolute error = 2e-32 relative error = 4.2282340000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.454 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.453 y[1] (analytic) = 0.47366202319996589633432960245546 y[1] (numeric) = 0.47366202319996589633432960245549 absolute error = 3e-32 relative error = 6.3336300000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.453 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.452 y[1] (analytic) = 0.47431467458455963439824883022143 y[1] (numeric) = 0.47431467458455963439824883022146 absolute error = 3e-32 relative error = 6.3249150000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.452 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.451 y[1] (analytic) = 0.47496867581582994601506030677277 y[1] (numeric) = 0.47496867581582994601506030677279 absolute error = 2e-32 relative error = 4.2108040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.451 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.45 y[1] (analytic) = 0.4756240306187725951141045830656 y[1] (numeric) = 0.47562403061877259511410458306562 absolute error = 2e-32 relative error = 4.2050020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.45 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.449 y[1] (analytic) = 0.47628074273124144480715869007555 y[1] (numeric) = 0.47628074273124144480715869007557 absolute error = 2e-32 relative error = 4.1992040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.449 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.448 y[1] (analytic) = 0.47693881590400175513484252672646 y[1] (numeric) = 0.47693881590400175513484252672648 absolute error = 2e-32 relative error = 4.1934100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.448 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.447 y[1] (analytic) = 0.47759825390078373873465118611526 y[1] (numeric) = 0.47759825390078373873465118611528 absolute error = 2e-32 relative error = 4.1876200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.447 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.446 y[1] (analytic) = 0.47825906049833637585805653691658 y[1] (numeric) = 0.47825906049833637585805653691659 absolute error = 1e-32 relative error = 2.0909170000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.446 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.445 y[1] (analytic) = 0.47892123948648149017301508697689 y[1] (numeric) = 0.4789212394864814901730150869769 absolute error = 1e-32 relative error = 2.0880260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.445 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.444 y[1] (analytic) = 0.47958479466816808679717447822373 y[1] (numeric) = 0.47958479466816808679717447822375 absolute error = 2e-32 relative error = 4.1702740000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.444 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.443 y[1] (analytic) = 0.48024972985952695401608836595029 y[1] (numeric) = 0.48024972985952695401608836595031 absolute error = 2e-32 relative error = 4.1645000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.443 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.442 y[1] (analytic) = 0.48091604888992553014982939503166 y[1] (numeric) = 0.48091604888992553014982939503167 absolute error = 1e-32 relative error = 2.0793650000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.442 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.441 y[1] (analytic) = 0.481583755602023037040532978374 y[1] (numeric) = 0.48158375560202303704053297837401 absolute error = 1e-32 relative error = 2.0764820000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.441 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.44 y[1] (analytic) = 0.48225285385182588164261109056178 y[1] (numeric) = 0.48225285385182588164261109056179 absolute error = 1e-32 relative error = 2.0736010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.44 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.439 y[1] (analytic) = 0.48292334750874332720664579793908 y[1] (numeric) = 0.48292334750874332720664579793909 absolute error = 1e-32 relative error = 2.0707220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.439 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.438 y[1] (analytic) = 0.48359524045564343555730724498209 y[1] (numeric) = 0.48359524045564343555730724498211 absolute error = 2e-32 relative error = 4.1356900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.438 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.437 y[1] (analytic) = 0.48426853658890928197504079962421 y[1] (numeric) = 0.48426853658890928197504079962422 absolute error = 1e-32 relative error = 2.0649700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.437 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.436 y[1] (analytic) = 0.48494323981849544420073352514455 y[1] (numeric) = 0.48494323981849544420073352514456 absolute error = 1e-32 relative error = 2.0620970000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.436 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.435 y[1] (analytic) = 0.48561935406798476709210159545383 y[1] (numeric) = 0.48561935406798476709210159545384 absolute error = 1e-32 relative error = 2.0592260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 memory used=95.3MB, alloc=4.4MB, time=5.55 Complex estimate of poles used Radius of convergence = 1.435 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.434 y[1] (analytic) = 0.4862968832746454044701382104372 y[1] (numeric) = 0.48629688327464540447013821043721 absolute error = 1e-32 relative error = 2.0563570000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.434 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.433 y[1] (analytic) = 0.48697583138948813970362650901636 y[1] (numeric) = 0.48697583138948813970362650901637 absolute error = 1e-32 relative error = 2.0534900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.433 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.432 y[1] (analytic) = 0.48765620237732398658945443462359 y[1] (numeric) = 0.4876562023773239865894544346236 absolute error = 1e-32 relative error = 2.0506250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.432 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.431 y[1] (analytic) = 0.48833800021682207209626900001074 y[1] (numeric) = 0.48833800021682207209626900001075 absolute error = 1e-32 relative error = 2.0477620000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.431 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.43 y[1] (analytic) = 0.48902122890056780254887644927554 y[1] (numeric) = 0.48902122890056780254887644927555 absolute error = 1e-32 relative error = 2.0449010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.43 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.429 y[1] (analytic) = 0.48970589243512131484073295260333 y[1] (numeric) = 0.48970589243512131484073295260334 absolute error = 1e-32 relative error = 2.0420420000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.429 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.428 y[1] (analytic) = 0.49039199484107621427187822585984 y[1] (numeric) = 0.49039199484107621427187822585986 absolute error = 2e-32 relative error = 4.0783700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.428 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.427 y[1] (analytic) = 0.49107954015311860061974237967324 y[1] (numeric) = 0.49107954015311860061974237967325 absolute error = 1e-32 relative error = 2.0363300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.427 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.426 y[1] (analytic) = 0.49176853242008638406040491237422 y[1] (numeric) = 0.49176853242008638406040491237424 absolute error = 2e-32 relative error = 4.0669540000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.426 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.425 y[1] (analytic) = 0.49245897570502889256810461404513 y[1] (numeric) = 0.49245897570502889256810461404514 absolute error = 1e-32 relative error = 2.0306260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.425 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.424 y[1] (analytic) = 0.49315087408526677243109079548688 y[1] (numeric) = 0.49315087408526677243109079548689 absolute error = 1e-32 relative error = 2.0277770000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.424 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.423 y[1] (analytic) = 0.49384423165245218353227025131733 y[1] (numeric) = 0.49384423165245218353227025131734 absolute error = 1e-32 relative error = 2.0249300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.423 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.422 y[1] (analytic) = 0.49453905251262929105354127052028 y[1] (numeric) = 0.49453905251262929105354127052029 absolute error = 1e-32 relative error = 2.0220850000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.422 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.421 y[1] (analytic) = 0.49523534078629505527321638515839 y[1] (numeric) = 0.4952353407862950552732163851584 absolute error = 1e-32 relative error = 2.0192420000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.421 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.42 y[1] (analytic) = 0.4959331006084603211365199680024 y[1] (numeric) = 0.49593310060846032113651996800241 absolute error = 1e-32 relative error = 2.0164010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.42 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.419 y[1] (analytic) = 0.49663233612871120928980582668922 y[1] (numeric) = 0.49663233612871120928980582668923 absolute error = 1e-32 relative error = 2.0135620000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.419 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.418 y[1] (analytic) = 0.49733305151127081027987417473797 y[1] (numeric) = 0.49733305151127081027987417473798 absolute error = 1e-32 relative error = 2.0107250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.418 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.417 y[1] (analytic) = 0.49803525093506118363057737226641 y[1] (numeric) = 0.49803525093506118363057737226642 absolute error = 1e-32 relative error = 2.0078900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.417 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.416 y[1] (analytic) = 0.49873893859376566351979021045287 y[1] (numeric) = 0.49873893859376566351979021045288 absolute error = 1e-32 relative error = 2.0050570000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.416 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.415 y[1] (analytic) = 0.49944411869589147279078385756653 y[1] (numeric) = 0.49944411869589147279078385756654 absolute error = 1e-32 relative error = 2.0022260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.415 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.414 y[1] (analytic) = 0.50015079546483264704308348967214 y[1] (numeric) = 0.50015079546483264704308348967215 absolute error = 1e-32 relative error = 1.9993970000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.414 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.413 y[1] (analytic) = 0.50085897313893327055900869992036 y[1] (numeric) = 0.50085897313893327055900869992038 absolute error = 2e-32 relative error = 3.9931400000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.413 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.412 y[1] (analytic) = 0.50156865597155102583329362581474 y[1] (numeric) = 0.50156865597155102583329362581475 absolute error = 1e-32 relative error = 1.9937450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 memory used=99.1MB, alloc=4.4MB, time=5.77 Complex estimate of poles used Radius of convergence = 1.412 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.411 y[1] (analytic) = 0.50227984823112105848446096833527 y[1] (numeric) = 0.50227984823112105848446096833529 absolute error = 2e-32 relative error = 3.9818440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.411 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.41 y[1] (analytic) = 0.50299255420122015933798131986252 y[1] (numeric) = 0.50299255420122015933798131986254 absolute error = 2e-32 relative error = 3.9762020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.41 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.409 y[1] (analytic) = 0.50370677818063126548268709432715 y[1] (numeric) = 0.50370677818063126548268709432717 absolute error = 2e-32 relative error = 3.9705640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.409 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.408 y[1] (analytic) = 0.50442252448340828211342949308058 y[1] (numeric) = 0.5044225244834082821134294930806 absolute error = 2e-32 relative error = 3.9649300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.408 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.407 y[1] (analytic) = 0.50513979743894122698456797918824 y[1] (numeric) = 0.50513979743894122698456797918826 absolute error = 2e-32 relative error = 3.9593000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.407 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.406 y[1] (analytic) = 0.50585860139202169931056531216281 y[1] (numeric) = 0.50585860139202169931056531216283 absolute error = 2e-32 relative error = 3.9536740000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.406 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.405 y[1] (analytic) = 0.5065789407029086749617279610299 y[1] (numeric) = 0.50657894070290867496172796102991 absolute error = 1e-32 relative error = 1.9740260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.405 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.404 y[1] (analytic) = 0.50730081974739462981498231802993 y[1] (numeric) = 0.50730081974739462981498231802994 absolute error = 1e-32 relative error = 1.9712170000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.404 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.403 y[1] (analytic) = 0.50802424291687199313151223576389 y[1] (numeric) = 0.5080242429168719931315122357639 absolute error = 1e-32 relative error = 1.9684100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.403 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.402 y[1] (analytic) = 0.50874921461839993284510367037121 y[1] (numeric) = 0.50874921461839993284510367037122 absolute error = 1e-32 relative error = 1.9656050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.402 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.401 y[1] (analytic) = 0.50947573927477147465714830125504 y[1] (numeric) = 0.50947573927477147465714830125505 absolute error = 1e-32 relative error = 1.9628020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.401 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.4 y[1] (analytic) = 0.51020382132458095684645058854562 y[1] (numeric) = 0.51020382132458095684645058854563 absolute error = 1e-32 relative error = 1.9600010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.4 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.399 y[1] (analytic) = 0.51093346522229182271426250330829 y[1] (numeric) = 0.51093346522229182271426250330831 absolute error = 2e-32 relative error = 3.9144040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.399 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.398 y[1] (analytic) = 0.51166467543830475259733780869369 y[1] (numeric) = 0.51166467543830475259733780869371 absolute error = 2e-32 relative error = 3.9088100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.398 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.397 y[1] (analytic) = 0.51239745645902613739425397492327 y[1] (numeric) = 0.51239745645902613739425397492328 absolute error = 1e-32 relative error = 1.9516100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.397 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.396 y[1] (analytic) = 0.51313181278693689556279527528752 y[1] (numeric) = 0.51313181278693689556279527528753 absolute error = 1e-32 relative error = 1.9488170000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.396 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.395 y[1] (analytic) = 0.51386774894066163555882603829548 y[1] (numeric) = 0.51386774894066163555882603829549 absolute error = 1e-32 relative error = 1.9460260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.395 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.394 y[1] (analytic) = 0.51460526945503816569980913290556 y[1] (numeric) = 0.51460526945503816569980913290557 absolute error = 1e-32 relative error = 1.9432370000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.394 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.393 y[1] (analytic) = 0.51534437888118735344894225566235 y[1] (numeric) = 0.51534437888118735344894225566236 absolute error = 1e-32 relative error = 1.9404500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.393 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.392 y[1] (analytic) = 0.51608508178658333612879419301066 y[1] (numeric) = 0.51608508178658333612879419301067 absolute error = 1e-32 relative error = 1.9376650000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.392 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.391 y[1] (analytic) = 0.51682738275512408508632567774159 y[1] (numeric) = 0.5168273827551240850863256777416 absolute error = 1e-32 relative error = 1.9348820000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.391 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.39 y[1] (analytic) = 0.51757128638720232534427548042261 y[1] (numeric) = 0.51757128638720232534427548042262 absolute error = 1e-32 relative error = 1.9321010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.39 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.389 y[1] (analytic) = 0.51831679729977681278708271610441 y[1] (numeric) = 0.51831679729977681278708271610443 absolute error = 2e-32 relative error = 3.8586440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used memory used=103.0MB, alloc=4.4MB, time=6.00 Radius of convergence = 1.389 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.388 y[1] (analytic) = 0.51906392012644397094280175132167 y[1] (numeric) = 0.51906392012644397094280175132168 absolute error = 1e-32 relative error = 1.9265450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.388 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.387 y[1] (analytic) = 0.51981265951750988943584732062565 y[1] (numeric) = 0.51981265951750988943584732062566 absolute error = 1e-32 relative error = 1.9237700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.387 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.386 y[1] (analytic) = 0.52056302014006268619888526634867 y[1] (numeric) = 0.52056302014006268619888526634869 absolute error = 2e-32 relative error = 3.8419940000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.386 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.385 y[1] (analytic) = 0.52131500667804523554575946734118 y[1] (numeric) = 0.5213150066780452355457594673412 absolute error = 2e-32 relative error = 3.8364520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.385 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.384 y[1] (analytic) = 0.52206862383232826422101879603666 y[1] (numeric) = 0.52206862383232826422101879603669 absolute error = 3e-32 relative error = 5.7463710000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.384 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.383 y[1] (analytic) = 0.52282387632078381755538011909928 y[1] (numeric) = 0.52282387632078381755538011909931 absolute error = 3e-32 relative error = 5.7380700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.383 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.382 y[1] (analytic) = 0.52358076887835909787033522258727 y[1] (numeric) = 0.52358076887835909787033522258731 absolute error = 4e-32 relative error = 7.6397000000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.382 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.381 y[1] (analytic) = 0.52433930625715067728908189236153 y[1] (numeric) = 0.52433930625715067728908189236157 absolute error = 4e-32 relative error = 7.6286480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.381 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.38 y[1] (analytic) = 0.52509949322647908712503301563064 y[1] (numeric) = 0.52509949322647908712503301563068 absolute error = 4e-32 relative error = 7.6176040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.38 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.379 y[1] (analytic) = 0.52586133457296378603333329827591 y[1] (numeric) = 0.52586133457296378603333329827595 absolute error = 4e-32 relative error = 7.6065680000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.379 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.378 y[1] (analytic) = 0.52662483510059850912509183020562 y[1] (numeric) = 0.52662483510059850912509183020566 absolute error = 4e-32 relative error = 7.5955400000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.378 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.377 y[1] (analytic) = 0.52738999963082700025842109981911 y[1] (numeric) = 0.52738999963082700025842109981914 absolute error = 3e-32 relative error = 5.6883899999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.377 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.376 y[1] (analytic) = 0.52815683300261912973485998826436 y[1] (numeric) = 0.52815683300261912973485998826439 absolute error = 3e-32 relative error = 5.6801309999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.376 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.375 y[1] (analytic) = 0.52892534007254739964435060133522 y[1] (numeric) = 0.52892534007254739964435060133525 absolute error = 3e-32 relative error = 5.6718780000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.375 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.374 y[1] (analytic) = 0.52969552571486383911663736567584 y[1] (numeric) = 0.52969552571486383911663736567587 absolute error = 3e-32 relative error = 5.6636310000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.374 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.373 y[1] (analytic) = 0.53046739482157729175176247791929 y[1] (numeric) = 0.53046739482157729175176247791933 absolute error = 4e-32 relative error = 7.5405200000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.373 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.372 y[1] (analytic) = 0.53124095230253109751724540941412 y[1] (numeric) = 0.53124095230253109751724540941416 absolute error = 4e-32 relative error = 7.5295400000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.372 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.371 y[1] (analytic) = 0.53201620308548117141455660173586 y[1] (numeric) = 0.5320162030854811714145566017359 absolute error = 4e-32 relative error = 7.5185680000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.371 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.37 y[1] (analytic) = 0.53279315211617448123262761328381 y[1] (numeric) = 0.53279315211617448123262761328385 absolute error = 4e-32 relative error = 7.5076040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.37 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.369 y[1] (analytic) = 0.53357180435842792672138267663094 y[1] (numeric) = 0.53357180435842792672138267663098 absolute error = 4e-32 relative error = 7.4966480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.369 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.368 y[1] (analytic) = 0.53435216479420762253363078937174 y[1] (numeric) = 0.53435216479420762253363078937177 absolute error = 3e-32 relative error = 5.6142750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.368 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.367 y[1] (analytic) = 0.5351342384237085872991239852517 y[1] (numeric) = 0.53513423842370858729912398525173 absolute error = 3e-32 relative error = 5.6060700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.367 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.366 y[1] (analytic) = 0.53591803026543484121016722250298 y[1] (numeric) = 0.53591803026543484121016722250301 absolute error = 3e-32 relative error = 5.5978710000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.366 Order of pole = 1 memory used=106.8MB, alloc=4.4MB, time=6.23 TOP MAIN SOLVE Loop x[1] = -1.365 y[1] (analytic) = 0.53670354535627991451385929565174 y[1] (numeric) = 0.53670354535627991451385929565176 absolute error = 2e-32 relative error = 3.7264520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.365 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.364 y[1] (analytic) = 0.53749078875160776932185324673998 y[1] (numeric) = 0.53749078875160776932185324674001 absolute error = 3e-32 relative error = 5.5814910000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.364 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.363 y[1] (analytic) = 0.53827976552533413716444985116564 y[1] (numeric) = 0.53827976552533413716444985116567 absolute error = 3e-32 relative error = 5.5733100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.363 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.362 y[1] (analytic) = 0.53907048077000827473187981962702 y[1] (numeric) = 0.53907048077000827473187981962704 absolute error = 2e-32 relative error = 3.7100900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.362 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.361 y[1] (analytic) = 0.53986293959689514026179033666933 y[1] (numeric) = 0.53986293959689514026179033666935 absolute error = 2e-32 relative error = 3.7046440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.361 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.36 y[1] (analytic) = 0.54065714713605799304823040212457 y[1] (numeric) = 0.54065714713605799304823040212459 absolute error = 2e-32 relative error = 3.6992020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.36 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.359 y[1] (analytic) = 0.5414531085364414185638281167936 y[1] (numeric) = 0.54145310853644141856382811679362 absolute error = 2e-32 relative error = 3.6937640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.359 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.358 y[1] (analytic) = 0.54225082896595478170337252903075 y[1] (numeric) = 0.54225082896595478170337252903077 absolute error = 2e-32 relative error = 3.6883300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.358 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.357 y[1] (analytic) = 0.54305031361155611067365391403514 y[1] (numeric) = 0.54305031361155611067365391403515 absolute error = 1e-32 relative error = 1.8414500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.357 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.356 y[1] (analytic) = 0.54385156767933641407118038088101 y[1] (numeric) = 0.54385156767933641407118038088102 absolute error = 1e-32 relative error = 1.8387370000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.356 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.355 y[1] (analytic) = 0.54465459639460443370627649063793 y[1] (numeric) = 0.54465459639460443370627649063795 absolute error = 2e-32 relative error = 3.6720520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.355 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.354 y[1] (analytic) = 0.54545940500197183574908212818623 y[1] (numeric) = 0.54545940500197183574908212818625 absolute error = 2e-32 relative error = 3.6666340000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.354 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.353 y[1] (analytic) = 0.54626599876543884279010821529436 y[1] (numeric) = 0.54626599876543884279010821529437 absolute error = 1e-32 relative error = 1.8306100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.353 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.352 y[1] (analytic) = 0.54707438296848030942527100697246 y[1] (numeric) = 0.54707438296848030942527100697248 absolute error = 2e-32 relative error = 3.6558100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.352 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.351 y[1] (analytic) = 0.547884562914132243992719709928 y[1] (numeric) = 0.54788456291413224399271970992801 absolute error = 1e-32 relative error = 1.8252020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.351 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.35 y[1] (analytic) = 0.54869654392507877910629404318571 y[1] (numeric) = 0.54869654392507877910629404318572 absolute error = 1e-32 relative error = 1.8225010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.35 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.349 y[1] (analytic) = 0.54951033134373959364810017793145 y[1] (numeric) = 0.54951033134373959364810017793146 absolute error = 1e-32 relative error = 1.8198020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.349 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.348 y[1] (analytic) = 0.55032593053235778890047630709288 y[1] (numeric) = 0.55032593053235778890047630709289 absolute error = 1e-32 relative error = 1.8171050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.348 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.347 y[1] (analytic) = 0.55114334687308822151553397523162 y[1] (numeric) = 0.55114334687308822151553397523163 absolute error = 1e-32 relative error = 1.8144100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.347 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.346 y[1] (analytic) = 0.55196258576808629603850932568387 y[1] (numeric) = 0.55196258576808629603850932568388 absolute error = 1e-32 relative error = 1.8117170000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.346 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.345 y[1] (analytic) = 0.55278365263959721971934068388182 y[1] (numeric) = 0.55278365263959721971934068388184 absolute error = 2e-32 relative error = 3.6180520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.345 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.344 y[1] (analytic) = 0.55360655293004572236520649247621 y[1] (numeric) = 0.55360655293004572236520649247623 absolute error = 2e-32 relative error = 3.6126740000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.344 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.343 y[1] (analytic) = 0.55443129210212624400521165414576 y[1] (numeric) = 0.55443129210212624400521165414578 absolute error = 2e-32 relative error = 3.6073000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.343 Order of pole = 1 memory used=110.6MB, alloc=4.4MB, time=6.46 TOP MAIN SOLVE Loop x[1] = -1.342 y[1] (analytic) = 0.55525787563889359315700194062628 y[1] (numeric) = 0.5552578756388935931570019406263 absolute error = 2e-32 relative error = 3.6019300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.342 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.341 y[1] (analytic) = 0.55608630904385407850381642033897 y[1] (numeric) = 0.55608630904385407850381642033899 absolute error = 2e-32 relative error = 3.5965640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.341 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.34 y[1] (analytic) = 0.55691659784105711680935798097684 y[1] (numeric) = 0.55691659784105711680935798097686 absolute error = 2e-32 relative error = 3.5912020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.34 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.339 y[1] (analytic) = 0.55774874757518731991687312666139 y[1] (numeric) = 0.55774874757518731991687312666141 absolute error = 2e-32 relative error = 3.5858440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.339 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.338 y[1] (analytic) = 0.55858276381165706369798547126231 y[1] (numeric) = 0.55858276381165706369798547126233 absolute error = 2e-32 relative error = 3.5804900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.338 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.337 y[1] (analytic) = 0.55941865213669954183612390004308 y[1] (numeric) = 0.55941865213669954183612390004309 absolute error = 1e-32 relative error = 1.7875700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.337 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.336 y[1] (analytic) = 0.56025641815746230734882741132962 y[1] (numeric) = 0.56025641815746230734882741132963 absolute error = 1e-32 relative error = 1.7848970000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.336 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.335 y[1] (analytic) = 0.56109606750210130477279536938637 y[1] (numeric) = 0.56109606750210130477279536938639 absolute error = 2e-32 relative error = 3.5644520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.335 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.334 y[1] (analytic) = 0.5619376058198753959552855008297 y[1] (numeric) = 0.56193760581987539595528550082972 absolute error = 2e-32 relative error = 3.5591140000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.334 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.333 y[1] (analytic) = 0.56278103878124138241534366224133 y[1] (numeric) = 0.56278103878124138241534366224135 absolute error = 2e-32 relative error = 3.5537800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.333 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.332 y[1] (analytic) = 0.56362637207794952725838041961983 y[1] (numeric) = 0.56362637207794952725838041961985 absolute error = 2e-32 relative error = 3.5484500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.332 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.331 y[1] (analytic) = 0.56447361142313957964779104541642 y[1] (numeric) = 0.56447361142313957964779104541643 absolute error = 1e-32 relative error = 1.7715620000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.331 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.33 y[1] (analytic) = 0.56532276255143730485764890177574 y[1] (numeric) = 0.56532276255143730485764890177575 absolute error = 1e-32 relative error = 1.7689010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.33 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.329 y[1] (analytic) = 0.56617383121905152295098859612669 y[1] (numeric) = 0.56617383121905152295098859612671 absolute error = 2e-32 relative error = 3.5324840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.329 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.328 y[1] (analytic) = 0.56702682320387165914883603568867 y[1] (numeric) = 0.56702682320387165914883603568869 absolute error = 2e-32 relative error = 3.5271700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.328 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.327 y[1] (analytic) = 0.56788174430556580897593885049377 y[1] (numeric) = 0.56788174430556580897593885049379 absolute error = 2e-32 relative error = 3.5218600000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.327 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.326 y[1] (analytic) = 0.56873860034567932129010389148013 y[1] (numeric) = 0.56873860034567932129010389148014 absolute error = 1e-32 relative error = 1.7582770000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.326 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.325 y[1] (analytic) = 0.56959739716773390232315994408832 y[1] (numeric) = 0.56959739716773390232315994408833 absolute error = 1e-32 relative error = 1.7556260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.325 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.324 y[1] (analytic) = 0.57045814063732724388283474341078 y[1] (numeric) = 0.57045814063732724388283474341079 absolute error = 1e-32 relative error = 1.7529770000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.324 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.323 y[1] (analytic) = 0.57132083664223317888626716104963 y[1] (numeric) = 0.57132083664223317888626716104964 absolute error = 1e-32 relative error = 1.7503300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.323 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.322 y[1] (analytic) = 0.57218549109250236741746939522855 y[1] (numeric) = 0.57218549109250236741746939522855 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.322 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.321 y[1] (analytic) = 0.57305210992056351652281148533961 y[1] (numeric) = 0.57305210992056351652281148533961 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.321 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.32 y[1] (analytic) = 0.57392069908132513698052285323528 y[1] (numeric) = 0.57392069908132513698052285323528 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.32 Order of pole = 1 memory used=114.4MB, alloc=4.4MB, time=6.68 TOP MAIN SOLVE Loop x[1] = -1.319 y[1] (analytic) = 0.57479126455227784030229422185333 y[1] (numeric) = 0.57479126455227784030229422185334 absolute error = 1e-32 relative error = 1.7397620000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.319 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.318 y[1] (analytic) = 0.57566381233359717924731956537382 y[1] (numeric) = 0.57566381233359717924731956537383 absolute error = 1e-32 relative error = 1.7371250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.318 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.317 y[1] (analytic) = 0.57653834844824703515154310488962 y[1] (numeric) = 0.57653834844824703515154310488963 absolute error = 1e-32 relative error = 1.7344900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.317 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.316 y[1] (analytic) = 0.57741487894208355539747219314297 y[1] (numeric) = 0.57741487894208355539747219314298 absolute error = 1e-32 relative error = 1.7318570000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.316 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.315 y[1] (analytic) = 0.57829340988395964437268465776018 y[1] (numeric) = 0.57829340988395964437268465776019 absolute error = 1e-32 relative error = 1.7292260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.315 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.314 y[1] (analytic) = 0.57917394736583001128810023416003 y[1] (numeric) = 0.57917394736583001128810023416004 absolute error = 1e-32 relative error = 1.7265970000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.314 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.313 y[1] (analytic) = 0.58005649750285677825020156963288 y[1] (numeric) = 0.5800564975028567782502015696329 absolute error = 2e-32 relative error = 3.4479400000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.313 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.312 y[1] (analytic) = 0.58094106643351565200468238499545 y[1] (numeric) = 0.58094106643351565200468238499547 absolute error = 2e-32 relative error = 3.4426900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.312 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.311 y[1] (analytic) = 0.58182766031970266279247021915121 y[1] (numeric) = 0.58182766031970266279247021915122 absolute error = 1e-32 relative error = 1.7187220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.311 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.31 y[1] (analytic) = 0.58271628534684147378272024781758 y[1] (numeric) = 0.5827162853468414737827202478176 absolute error = 2e-32 relative error = 3.4322020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.31 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.309 y[1] (analytic) = 0.58360694772399126457120646729875 y[1] (numeric) = 0.58360694772399126457120646729877 absolute error = 2e-32 relative error = 3.4269640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.309 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.308 y[1] (analytic) = 0.58449965368395519225654858799496 y[1] (numeric) = 0.58449965368395519225654858799498 absolute error = 2e-32 relative error = 3.4217300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.308 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.307 y[1] (analytic) = 0.58539440948338943363090882482072 y[1] (numeric) = 0.58539440948338943363090882482074 absolute error = 2e-32 relative error = 3.4165000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.307 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.306 y[1] (analytic) = 0.58629122140291281204617395143281 y[1] (numeric) = 0.58629122140291281204617395143282 absolute error = 1e-32 relative error = 1.7056370000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.306 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.305 y[1] (analytic) = 0.58719009574721701254120606496906 y[1] (numeric) = 0.58719009574721701254120606496907 absolute error = 1e-32 relative error = 1.7030260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.305 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.304 y[1] (analytic) = 0.58809103884517738884050206508168 y[1] (numeric) = 0.58809103884517738884050206508169 absolute error = 1e-32 relative error = 1.7004170000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.304 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.303 y[1] (analytic) = 0.58899405704996436585954847715587 y[1] (numeric) = 0.58899405704996436585954847715587 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.303 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.302 y[1] (analytic) = 0.58989915673915544137729655115458 y[1] (numeric) = 0.58989915673915544137729655115458 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.302 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.301 y[1] (analytic) = 0.59080634431484779056151416576372 y[1] (numeric) = 0.59080634431484779056151416576372 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.301 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.3 y[1] (analytic) = 0.59171562620377147705829759864047 y[1] (numeric) = 0.59171562620377147705829759864048 absolute error = 1e-32 relative error = 1.6900010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.3 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.299 y[1] (analytic) = 0.59262700885740327438274933892457 y[1] (numeric) = 0.59262700885740327438274933892458 absolute error = 1e-32 relative error = 1.6874020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.299 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.298 y[1] (analytic) = 0.59354049875208110137374948436169 y[1] (numeric) = 0.5935404987520811013737494843617 absolute error = 1e-32 relative error = 1.6848050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.298 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.297 y[1] (analytic) = 0.59445610238911907550186956444201 y[1] (numeric) = 0.59445610238911907550186956444202 absolute error = 1e-32 relative error = 1.6822100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.297 Order of pole = 1 TOP MAIN SOLVE Loop memory used=118.2MB, alloc=4.4MB, time=6.91 x[1] = -1.296 y[1] (analytic) = 0.59537382629492318784580056048492 y[1] (numeric) = 0.59537382629492318784580056048493 absolute error = 1e-32 relative error = 1.6796170000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.296 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.295 y[1] (analytic) = 0.5962936770211076035791931669515 y[1] (numeric) = 0.59629367702110760357919316695151 absolute error = 1e-32 relative error = 1.6770260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.295 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.294 y[1] (analytic) = 0.59721566114461159183653968468208 y[1] (numeric) = 0.59721566114461159183653968468209 absolute error = 1e-32 relative error = 1.6744370000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.294 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.293 y[1] (analytic) = 0.59813978526781708885366510153423 y[1] (numeric) = 0.59813978526781708885366510153424 absolute error = 1e-32 relative error = 1.6718500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.293 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.292 y[1] (analytic) = 0.5990660560186668983055416605512 y[1] (numeric) = 0.59906605601866689830554166055121 absolute error = 1e-32 relative error = 1.6692650000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.292 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.291 y[1] (analytic) = 0.59999448005078353279149831821547 y[1] (numeric) = 0.59999448005078353279149831821548 absolute error = 1e-32 relative error = 1.6666820000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.291 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.29 y[1] (analytic) = 0.60092506404358870044546574997551 y[1] (numeric) = 0.60092506404358870044546574997552 absolute error = 1e-32 relative error = 1.6641010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.29 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.289 y[1] (analytic) = 0.60185781470242344067668077822623 y[1] (numeric) = 0.60185781470242344067668077822624 absolute error = 1e-32 relative error = 1.6615220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.289 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.288 y[1] (analytic) = 0.60279273875866891307427310730615 y[1] (numeric) = 0.60279273875866891307427310730616 absolute error = 1e-32 relative error = 1.6589450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.288 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.287 y[1] (analytic) = 0.60372984296986784353737389592905 y[1] (numeric) = 0.60372984296986784353737389592906 absolute error = 1e-32 relative error = 1.6563700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.287 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.286 y[1] (analytic) = 0.60466913411984663172082184210033 y[1] (numeric) = 0.60466913411984663172082184210034 absolute error = 1e-32 relative error = 1.6537970000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.286 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.285 y[1] (analytic) = 0.60561061901883812391519997868251 y[1] (numeric) = 0.60561061901883812391519997868252 absolute error = 1e-32 relative error = 1.6512260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.285 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.284 y[1] (analytic) = 0.60655430450360505550881717664742 y[1] (numeric) = 0.60655430450360505550881717664743 absolute error = 1e-32 relative error = 1.6486570000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.284 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.283 y[1] (analytic) = 0.60750019743756416720835434271516 y[1] (numeric) = 0.60750019743756416720835434271517 absolute error = 1e-32 relative error = 1.6460900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.283 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.282 y[1] (analytic) = 0.60844830471091099922422841149359 y[1] (numeric) = 0.6084483047109109992242284114936 absolute error = 1e-32 relative error = 1.6435250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.282 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.281 y[1] (analytic) = 0.60939863324074536765628942047409 y[1] (numeric) = 0.6093986332407453676562894204741 absolute error = 1e-32 relative error = 1.6409620000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.281 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.28 y[1] (analytic) = 0.61035118997119752734525918868458 y[1] (numeric) = 0.61035118997119752734525918868459 absolute error = 1e-32 relative error = 1.6384010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.28 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.279 y[1] (analytic) = 0.61130598187355502548534638430851 y[1] (numeric) = 0.61130598187355502548534638430852 absolute error = 1e-32 relative error = 1.6358420000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.279 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.278 y[1] (analytic) = 0.61226301594639025032373406968165 y[1] (numeric) = 0.61226301594639025032373406968166 absolute error = 1e-32 relative error = 1.6332850000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.278 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.277 y[1] (analytic) = 0.61322229921568867930313417917129 y[1] (numeric) = 0.6132222992156886793031341791713 absolute error = 1e-32 relative error = 1.6307300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.277 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.276 y[1] (analytic) = 0.61418383873497783103434086097519 y[1] (numeric) = 0.6141838387349778310343408609752 absolute error = 1e-32 relative error = 1.6281770000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.276 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.275 y[1] (analytic) = 0.6151476415854569255166932615497 y[1] (numeric) = 0.61514764158545692551669326154972 absolute error = 2e-32 relative error = 3.2512520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.275 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.274 y[1] (analytic) = 0.61611371487612725705558023433269 y[1] (numeric) = 0.61611371487612725705558023433271 absolute error = 2e-32 relative error = 3.2461540000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.274 Order of pole = 1 TOP MAIN SOLVE Loop memory used=122.0MB, alloc=4.4MB, time=7.13 x[1] = -1.273 y[1] (analytic) = 0.61708206574392328435758671545729 y[1] (numeric) = 0.61708206574392328435758671545731 absolute error = 2e-32 relative error = 3.2410600000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.273 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.272 y[1] (analytic) = 0.61805270135384444231559625089231 y[1] (numeric) = 0.61805270135384444231559625089233 absolute error = 2e-32 relative error = 3.2359700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.272 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.271 y[1] (analytic) = 0.61902562889908768002812852457717 y[1] (numeric) = 0.61902562889908768002812852457719 absolute error = 2e-32 relative error = 3.2308840000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.271 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.27 y[1] (analytic) = 0.62000085560118072962940688858151 y[1] (numeric) = 0.62000085560118072962940688858152 absolute error = 1e-32 relative error = 1.6129010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.27 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.269 y[1] (analytic) = 0.62097838871011611053912101751035 y[1] (numeric) = 0.62097838871011611053912101751036 absolute error = 1e-32 relative error = 1.6103620000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.269 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.268 y[1] (analytic) = 0.62195823550448587377357610436459 y[1] (numeric) = 0.6219582355044858737735761043646 absolute error = 1e-32 relative error = 1.6078250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.268 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.267 y[1] (analytic) = 0.62294040329161709099290470880651 y[1] (numeric) = 0.62294040329161709099290470880652 absolute error = 1e-32 relative error = 1.6052900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.267 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.266 y[1] (analytic) = 0.62392489940770809299226270732244 y[1] (numeric) = 0.62392489940770809299226270732246 absolute error = 2e-32 relative error = 3.2055140000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.266 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.265 y[1] (analytic) = 0.62491173121796546237843904548483 y[1] (numeric) = 0.62491173121796546237843904548484 absolute error = 1e-32 relative error = 1.6002260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.265 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.264 y[1] (analytic) = 0.62590090611674178520708244429325 y[1] (numeric) = 0.62590090611674178520708244429327 absolute error = 2e-32 relative error = 3.1953940000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.264 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.263 y[1] (analytic) = 0.62689243152767416638978917607528 y[1] (numeric) = 0.62689243152767416638978917607529 absolute error = 1e-32 relative error = 1.5951700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.263 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.262 y[1] (analytic) = 0.62788631490382351371460683328676 y[1] (numeric) = 0.62788631490382351371460683328678 absolute error = 2e-32 relative error = 3.1852900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.262 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.261 y[1] (analytic) = 0.62888256372781459535809202061225 y[1] (numeric) = 0.62888256372781459535809202061227 absolute error = 2e-32 relative error = 3.1802440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.261 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.26 y[1] (analytic) = 0.62988118551197687580191748430494 y[1] (numeric) = 0.62988118551197687580191748430495 absolute error = 1e-32 relative error = 1.5876010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.26 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.259 y[1] (analytic) = 0.63088218779848613510215875267021 y[1] (numeric) = 0.63088218779848613510215875267022 absolute error = 1e-32 relative error = 1.5850820000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.259 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.258 y[1] (analytic) = 0.63188557815950687649480432083358 y[1] (numeric) = 0.63188557815950687649480432083359 absolute error = 1e-32 relative error = 1.5825650000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.258 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.257 y[1] (analytic) = 0.63289136419733552735672921742983 y[1] (numeric) = 0.63289136419733552735672921742983 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.257 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.256 y[1] (analytic) = 0.63389955354454443857735190997105 y[1] (numeric) = 0.63389955354454443857735190997105 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.256 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.255 y[1] (analytic) = 0.6349101538641266874324614323827 y[1] (numeric) = 0.6349101538641266874324614323827 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.255 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.254 y[1] (analytic) = 0.63592317284964168908825786939028 y[1] (numeric) = 0.63592317284964168908825786939028 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.254 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.253 y[1] (analytic) = 0.63693861822536162190049744906083 y[1] (numeric) = 0.63693861822536162190049744906083 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.253 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.252 y[1] (analytic) = 0.63795649774641867171077604218168 y[1] (numeric) = 0.63795649774641867171077604218168 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.252 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.251 y[1] (analytic) = 0.63897681919895310037942443524034 y[1] (numeric) = 0.63897681919895310037942443524033 absolute error = 1e-32 relative error = 1.5650020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.251 Order of pole = 1 TOP MAIN SOLVE Loop memory used=125.8MB, alloc=4.5MB, time=7.36 x[1] = -1.25 y[1] (analytic) = 0.63999959040026214383222794737411 y[1] (numeric) = 0.63999959040026214383222794737411 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.25 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.249 y[1] (analytic) = 0.6410248191989497449362244407379 y[1] (numeric) = 0.64102481919894974493622444073789 absolute error = 1e-32 relative error = 1.5600020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.249 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.248 y[1] (analytic) = 0.64205251347507712655818119363983 y[1] (numeric) = 0.64205251347507712655818119363982 absolute error = 1e-32 relative error = 1.5575050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.248 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.247 y[1] (analytic) = 0.6430826811403142101980051575231 y[1] (numeric) = 0.64308268114031421019800515752309 absolute error = 1e-32 relative error = 1.5550100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.247 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.246 y[1] (analytic) = 0.64411533013809188562830551935985 y[1] (numeric) = 0.64411533013809188562830551935984 absolute error = 1e-32 relative error = 1.5525170000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.246 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.245 y[1] (analytic) = 0.64515046844375513701060498340028 y[1] (numeric) = 0.64515046844375513701060498340027 absolute error = 1e-32 relative error = 1.5500260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.245 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.244 y[1] (analytic) = 0.64618810406471703099828954008854 y[1] (numeric) = 0.64618810406471703099828954008853 absolute error = 1e-32 relative error = 1.5475370000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.244 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.243 y[1] (analytic) = 0.64722824504061357237629850166661 y[1] (numeric) = 0.6472282450406135723762985016666 absolute error = 1e-32 relative error = 1.5450500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.243 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.242 y[1] (analytic) = 0.64827089944345943282779007691734 y[1] (numeric) = 0.64827089944345943282779007691733 absolute error = 1e-32 relative error = 1.5425650000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.242 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.241 y[1] (analytic) = 0.64931607537780455845857558233912 y[1] (numeric) = 0.64931607537780455845857558233911 absolute error = 1e-32 relative error = 1.5400820000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.241 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.24 y[1] (analytic) = 0.65036378098089166175100042208609 y[1] (numeric) = 0.65036378098089166175100042208608 absolute error = 1e-32 relative error = 1.5376010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.24 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.239 y[1] (analytic) = 0.65141402442281460366016512042691 y[1] (numeric) = 0.6514140244228146036601651204269 absolute error = 1e-32 relative error = 1.5351220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.239 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.238 y[1] (analytic) = 0.65246681390667767160692789263006 y[1] (numeric) = 0.65246681390667767160692789263005 absolute error = 1e-32 relative error = 1.5326450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.238 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.237 y[1] (analytic) = 0.65352215766875575916401445591013 y[1] (numeric) = 0.65352215766875575916401445591012 absolute error = 1e-32 relative error = 1.5301700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.237 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.236 y[1] (analytic) = 0.65458006397865545327378400297965 y[1] (numeric) = 0.65458006397865545327378400297964 absolute error = 1e-32 relative error = 1.5276970000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.236 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.235 y[1] (analytic) = 0.6556405411394770348787655075379 y[1] (numeric) = 0.65564054113947703487876550753789 absolute error = 1e-32 relative error = 1.5252260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.235 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.234 y[1] (analytic) = 0.65670359748797739888898885376984 y[1] (numeric) = 0.65670359748797739888898885376983 absolute error = 1e-32 relative error = 1.5227570000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.234 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.233 y[1] (analytic) = 0.65776924139473389945339376040098 y[1] (numeric) = 0.65776924139473389945339376040097 absolute error = 1e-32 relative error = 1.5202900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.233 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.232 y[1] (analytic) = 0.65883748126430912654620921384218 y[1] (numeric) = 0.65883748126430912654620921384217 absolute error = 1e-32 relative error = 1.5178250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.232 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.231 y[1] (analytic) = 0.65990832553541661992316027457466 y[1] (numeric) = 0.65990832553541661992316027457465 absolute error = 1e-32 relative error = 1.5153620000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.231 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.23 y[1] (analytic) = 0.66098178268108752654668084692918 y[1] (numeric) = 0.66098178268108752654668084692917 absolute error = 1e-32 relative error = 1.5129010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.23 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.229 y[1] (analytic) = 0.6620578612088382076239935065365 y[1] (numeric) = 0.66205786120883820762399350653649 absolute error = 1e-32 relative error = 1.5104420000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.229 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.228 y[1] (analytic) = 0.66313656966083880144696399499995 y[1] (numeric) = 0.66313656966083880144696399499994 absolute error = 1e-32 relative error = 1.5079850000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.228 Order of pole = 1 TOP MAIN SOLVE Loop memory used=129.7MB, alloc=4.5MB, time=7.59 x[1] = -1.227 y[1] (analytic) = 0.66421791661408274826805178242878 y[1] (numeric) = 0.66421791661408274826805178242877 absolute error = 1e-32 relative error = 1.5055300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.227 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.226 y[1] (analytic) = 0.66530191068055728349246246200294 y[1] (numeric) = 0.66530191068055728349246246200294 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.226 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.225 y[1] (analytic) = 0.66638856050741490551276600565364 y[1] (numeric) = 0.66638856050741490551276600565364 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.225 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.224 y[1] (analytic) = 0.66747787477714582455878043782544 y[1] (numeric) = 0.66747787477714582455878043782544 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.224 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.223 y[1] (analytic) = 0.6685698622077513989824366697198 y[1] (numeric) = 0.66856986220775139898243666971981 absolute error = 1e-32 relative error = 1.4957300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.223 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.222 y[1] (analytic) = 0.66966453155291856544464050733785 y[1] (numeric) = 0.66966453155291856544464050733786 absolute error = 1e-32 relative error = 1.4932850000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.222 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.221 y[1] (analytic) = 0.67076189160219526951883566467808 y[1] (numeric) = 0.67076189160219526951883566467809 absolute error = 1e-32 relative error = 1.4908420000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.221 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.22 y[1] (analytic) = 0.67186195118116690327405047430094 y[1] (numeric) = 0.67186195118116690327405047430095 absolute error = 1e-32 relative error = 1.4884010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.22 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.219 y[1] (analytic) = 0.67296471915163375644868442127053 y[1] (numeric) = 0.67296471915163375644868442127054 absolute error = 1e-32 relative error = 1.4859620000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.219 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.218 y[1] (analytic) = 0.67407020441178948787516219814294 y[1] (numeric) = 0.67407020441178948787516219814295 absolute error = 1e-32 relative error = 1.4835250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.218 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.217 y[1] (analytic) = 0.67517841589640062386485628827418 y[1] (numeric) = 0.67517841589640062386485628827419 absolute error = 1e-32 relative error = 1.4810900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.217 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.216 y[1] (analytic) = 0.67628936257698709031235776789343 y[1] (numeric) = 0.67628936257698709031235776789345 absolute error = 2e-32 relative error = 2.9573140000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.216 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.215 y[1] (analytic) = 0.67740305346200378532826274567715 y[1] (numeric) = 0.67740305346200378532826274567717 absolute error = 2e-32 relative error = 2.9524520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.215 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.214 y[1] (analytic) = 0.67851949759702319926014233982021 y[1] (numeric) = 0.67851949759702319926014233982022 absolute error = 1e-32 relative error = 1.4737970000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.214 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.213 y[1] (analytic) = 0.67963870406491908901228107138245 y[1] (numeric) = 0.67963870406491908901228107138247 absolute error = 2e-32 relative error = 2.9427400000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.213 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.212 y[1] (analytic) = 0.6807606819860512136261058106328 y[1] (numeric) = 0.68076068198605121362610581063282 absolute error = 2e-32 relative error = 2.9378900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.212 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.211 y[1] (analytic) = 0.68188544051845113813498876934679 y[1] (numeric) = 0.68188544051845113813498876934681 absolute error = 2e-32 relative error = 2.9330440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.211 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.21 y[1] (analytic) = 0.68301298885800911275929734355758 y[1] (numeric) = 0.6830129888580091127592973435576 absolute error = 2e-32 relative error = 2.9282020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.21 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.209 y[1] (analytic) = 0.68414333623866203456018477343225 y[1] (numeric) = 0.68414333623866203456018477343227 absolute error = 2e-32 relative error = 2.9233640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.209 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.208 y[1] (analytic) = 0.68527649193258249872367253377556 y[1] (numeric) = 0.68527649193258249872367253377558 absolute error = 2e-32 relative error = 2.9185300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.208 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.207 y[1] (analytic) = 0.68641246525036894670007207330885 y[1] (numeric) = 0.68641246525036894670007207330887 absolute error = 2e-32 relative error = 2.9137000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.207 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.206 y[1] (analytic) = 0.68755126554123691847773399604108 y[1] (numeric) = 0.6875512655412369184777339960411 absolute error = 2e-32 relative error = 2.9088740000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.206 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.205 y[1] (analytic) = 0.68869290219321141632450107642701 y[1] (numeric) = 0.68869290219321141632450107642703 absolute error = 2e-32 relative error = 2.9040520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.205 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.204 y[1] (analytic) = 0.6898373846333203873850817146874 y[1] (numeric) = 0.68983738463332038738508171468742 absolute error = 2e-32 relative error = 2.8992340000000000000000000000000e-30 % Correct digits = 31 h = 0.001 memory used=133.5MB, alloc=4.5MB, time=7.81 Complex estimate of poles used Radius of convergence = 1.204 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.203 y[1] (analytic) = 0.69098472232778933257785670358828 y[1] (numeric) = 0.69098472232778933257785670358831 absolute error = 3e-32 relative error = 4.3416300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.203 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.202 y[1] (analytic) = 0.69213492478223704929038866836701 y[1] (numeric) = 0.69213492478223704929038866836704 absolute error = 3e-32 relative error = 4.3344150000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.202 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.201 y[1] (analytic) = 0.69328800154187251542912447431437 y[1] (numeric) = 0.6932880015418725154291244743144 absolute error = 3e-32 relative error = 4.3272060000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.201 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.2 y[1] (analytic) = 0.69444396219169292243547053092324 y[1] (numeric) = 0.69444396219169292243547053092327 absolute error = 3e-32 relative error = 4.3200030000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.2 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.199 y[1] (analytic) = 0.69560281635668286493758355928831 y[1] (numeric) = 0.69560281635668286493758355928834 absolute error = 3e-32 relative error = 4.3128060000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.199 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.198 y[1] (analytic) = 0.69676457370201469476485937548991 y[1] (numeric) = 0.69676457370201469476485937548994 absolute error = 3e-32 relative error = 4.3056150000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.198 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.197 y[1] (analytic) = 0.69792924393325004711022396549438 y[1] (numeric) = 0.69792924393325004711022396549441 absolute error = 3e-32 relative error = 4.2984300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.197 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.196 y[1] (analytic) = 0.69909683679654254668393901918112 y[1] (numeric) = 0.69909683679654254668393901918115 absolute error = 3e-32 relative error = 4.2912510000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.196 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.195 y[1] (analytic) = 0.70026736207884170176173262951795 y[1] (numeric) = 0.70026736207884170176173262951798 absolute error = 3e-32 relative error = 4.2840780000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.195 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.194 y[1] (analytic) = 0.70144082960809799408965956972217 y[1] (numeric) = 0.7014408296080979940896595697222 absolute error = 3e-32 relative error = 4.2769110000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.194 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.193 y[1] (analytic) = 0.70261724925346917266818900404005 y[1] (numeric) = 0.70261724925346917266818900404008 absolute error = 3e-32 relative error = 4.2697500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.193 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.192 y[1] (analytic) = 0.70379663092552775949861528012865 y[1] (numeric) = 0.70379663092552775949861528012868 absolute error = 3e-32 relative error = 4.2625950000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.192 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.191 y[1] (analytic) = 0.70497898457646977543599425301132 y[1] (numeric) = 0.70497898457646977543599425301134 absolute error = 2e-32 relative error = 2.8369640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.191 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.19 y[1] (analytic) = 0.70616432020032469435442810929446 y[1] (numeric) = 0.70616432020032469435442810929449 absolute error = 3e-32 relative error = 4.2483030000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.19 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.189 y[1] (analytic) = 0.70735264783316663389266065039661 y[1] (numeric) = 0.70735264783316663389266065039664 absolute error = 3e-32 relative error = 4.2411660000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.189 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.188 y[1] (analytic) = 0.70854397755332679111060725761596 y[1] (numeric) = 0.70854397755332679111060725761599 absolute error = 3e-32 relative error = 4.2340350000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.188 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.187 y[1] (analytic) = 0.70973831948160713145063415118846 y[1] (numeric) = 0.70973831948160713145063415118848 absolute error = 2e-32 relative error = 2.8179400000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.187 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.186 y[1] (analytic) = 0.7109356837814953394611249704073 y[1] (numeric) = 0.71093568378149533946112497040733 absolute error = 3e-32 relative error = 4.2197910000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.186 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.185 y[1] (analytic) = 0.71213608065938103980413409237544 y[1] (numeric) = 0.71213608065938103980413409237547 absolute error = 3e-32 relative error = 4.2126780000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.185 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.184 y[1] (analytic) = 0.7133395203647732971337304732223 y[1] (numeric) = 0.71333952036477329713373047322233 absolute error = 3e-32 relative error = 4.2055710000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.184 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.183 y[1] (analytic) = 0.7145460131905194034969881885544 y[1] (numeric) = 0.71454601319051940349698818855443 absolute error = 3e-32 relative error = 4.1984700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.183 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.182 y[1] (analytic) = 0.71575556947302496197548537174555 y[1] (numeric) = 0.71575556947302496197548537174558 absolute error = 3e-32 relative error = 4.1913750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.182 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.181 y[1] (analytic) = 0.71696819959247527535163705349013 y[1] (numeric) = 0.71696819959247527535163705349016 absolute error = 3e-32 relative error = 4.1842860000000000000000000000000e-30 % Correct digits = 31 h = 0.001 memory used=137.3MB, alloc=4.5MB, time=8.04 Complex estimate of poles used Radius of convergence = 1.181 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.18 y[1] (analytic) = 0.7181839139730580486512147003629 y[1] (numeric) = 0.71818391397305804865121470036293 absolute error = 3e-32 relative error = 4.1772030000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.18 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.179 y[1] (analytic) = 0.7194027230831874144810012934861 y[1] (numeric) = 0.71940272308318741448100129348613 absolute error = 3e-32 relative error = 4.1701260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.179 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.178 y[1] (analytic) = 0.72062463743572929014870089393486 y[1] (numeric) = 0.7206246374357292901487008939349 absolute error = 4e-32 relative error = 5.5507400000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.178 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.177 y[1] (analytic) = 0.72184966758822807562097117654277 y[1] (numeric) = 0.72184966758822807562097117654281 absolute error = 4e-32 relative error = 5.5413200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.177 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.176 y[1] (analytic) = 0.7230778241431347014447818004204 y[1] (numeric) = 0.72307782414313470144478180042043 absolute error = 3e-32 relative error = 4.1489310000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.176 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.175 y[1] (analytic) = 0.72430911774803603582722620028885 y[1] (numeric) = 0.72430911774803603582722620028889 absolute error = 4e-32 relative error = 5.5225040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.175 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.174 y[1] (analytic) = 0.72554355909588566013943496118705 y[1] (numeric) = 0.72554355909588566013943496118708 absolute error = 3e-32 relative error = 4.1348310000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.174 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.173 y[1] (analytic) = 0.7267811589252360221813609703982 y[1] (numeric) = 0.72678115892523602218136097039824 absolute error = 4e-32 relative error = 5.5037200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.173 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.172 y[1] (analytic) = 0.72802192802047197661593567198244 y[1] (numeric) = 0.72802192802047197661593567198248 absolute error = 4e-32 relative error = 5.4943400000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.172 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.171 y[1] (analytic) = 0.72926587721204572205343768641859 y[1] (numeric) = 0.72926587721204572205343768641863 absolute error = 4e-32 relative error = 5.4849680000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.171 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.17 y[1] (analytic) = 0.73051301737671314433987556441262 y[1] (numeric) = 0.73051301737671314433987556441266 absolute error = 4e-32 relative error = 5.4756040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.17 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.169 y[1] (analytic) = 0.73176335943777157567677134297602 y[1] (numeric) = 0.73176335943777157567677134297606 absolute error = 4e-32 relative error = 5.4662480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.169 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.168 y[1] (analytic) = 0.73301691436529897927394674632117 y[1] (numeric) = 0.73301691436529897927394674632121 absolute error = 4e-32 relative error = 5.4569000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.168 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.167 y[1] (analytic) = 0.73427369317639456931176526738577 y[1] (numeric) = 0.7342736931763945693117652673858 absolute error = 3e-32 relative error = 4.0856700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.167 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.166 y[1] (analytic) = 0.73553370693542087606477698250239 y[1] (numeric) = 0.73553370693542087606477698250242 absolute error = 3e-32 relative error = 4.0786710000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.166 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.165 y[1] (analytic) = 0.73679696675424726611485485836552 y[1] (numeric) = 0.73679696675424726611485485836555 absolute error = 3e-32 relative error = 4.0716780000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.165 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.164 y[1] (analytic) = 0.73806348379249492765870763607861 y[1] (numeric) = 0.73806348379249492765870763607864 absolute error = 3e-32 relative error = 4.0646910000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.164 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.163 y[1] (analytic) = 0.73933326925778333099211131401702 y[1] (numeric) = 0.73933326925778333099211131401705 absolute error = 3e-32 relative error = 4.0577100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.163 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.162 y[1] (analytic) = 0.7406063344059781743313250558232 y[1] (numeric) = 0.74060633440597817433132505582323 absolute error = 3e-32 relative error = 4.0507350000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.162 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.161 y[1] (analytic) = 0.74188269054144082521095434305546 y[1] (numeric) = 0.74188269054144082521095434305549 absolute error = 3e-32 relative error = 4.0437660000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.161 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.16 y[1] (analytic) = 0.74316234901727926777700076025508 y[1] (numeric) = 0.74316234901727926777700076025511 absolute error = 3e-32 relative error = 4.0368030000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.16 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.159 y[1] (analytic) = 0.74444532123560056637400039604491 y[1] (numeric) = 0.74444532123560056637400039604494 absolute error = 3e-32 relative error = 4.0298460000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.159 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.158 y[1] (analytic) = 0.74573161864776485590600798678564 y[1] (numeric) = 0.74573161864776485590600798678566 absolute error = 2e-32 relative error = 2.6819300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.158 Order of pole = 1 memory used=141.1MB, alloc=4.5MB, time=8.27 TOP MAIN SOLVE Loop x[1] = -1.157 y[1] (analytic) = 0.74702125275464086953273820640197 y[1] (numeric) = 0.747021252754640869532738206402 absolute error = 3e-32 relative error = 4.0159500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.157 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.156 y[1] (analytic) = 0.74831423510686301434443557276346 y[1] (numeric) = 0.74831423510686301434443557276348 absolute error = 2e-32 relative error = 2.6726740000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.156 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.155 y[1] (analytic) = 0.74961057730509000574201702215699 y[1] (numeric) = 0.74961057730509000574201702215701 absolute error = 2e-32 relative error = 2.6680520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.155 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.154 y[1] (analytic) = 0.75091029100026507133272309357018 y[1] (numeric) = 0.7509102910002650713327230935702 absolute error = 2e-32 relative error = 2.6634340000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.154 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.153 y[1] (analytic) = 0.75221338789387773523593172911291 y[1] (numeric) = 0.75221338789387773523593172911293 absolute error = 2e-32 relative error = 2.6588200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.153 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.152 y[1] (analytic) = 0.7535198797382271937789398728812 y[1] (numeric) = 0.75351987973822719377893987288121 absolute error = 1e-32 relative error = 1.3271050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.152 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.151 y[1] (analytic) = 0.75482977833668729364840934720811 y[1] (numeric) = 0.75482977833668729364840934720812 absolute error = 1e-32 relative error = 1.3248020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.151 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.15 y[1] (analytic) = 0.75614309554397312364981198501929 y[1] (numeric) = 0.7561430955439731236498119850193 absolute error = 1e-32 relative error = 1.3225010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.15 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.149 y[1] (analytic) = 0.75745984326640923131460185638258 y[1] (numeric) = 0.75745984326640923131460185638259 absolute error = 1e-32 relative error = 1.3202020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.149 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.148 y[1] (analytic) = 0.75878003346219947568299687762016 y[1] (numeric) = 0.75878003346219947568299687762017 absolute error = 1e-32 relative error = 1.3179050000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.148 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.147 y[1] (analytic) = 0.76010367814169852767917543952995 y[1] (numeric) = 0.76010367814169852767917543952996 absolute error = 1e-32 relative error = 1.3156100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.147 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.146 y[1] (analytic) = 0.7614307893676850295853933208814 y[1] (numeric) = 0.76143078936768502958539332088141 absolute error = 1e-32 relative error = 1.3133170000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.146 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.145 y[1] (analytic) = 0.7627613792556364252120095253641 y[1] (numeric) = 0.76276137925563642521200952536411 absolute error = 1e-32 relative error = 1.3110260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.145 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.144 y[1] (analytic) = 0.76409545997400547245168433382719 y[1] (numeric) = 0.7640954599740054724516843338272 absolute error = 1e-32 relative error = 1.3087370000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.144 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.143 y[1] (analytic) = 0.76543304374449844999808641739064 y[1] (numeric) = 0.76543304374449844999808641739065 absolute error = 1e-32 relative error = 1.3064500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.143 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.142 y[1] (analytic) = 0.76677414284235507010232600936231 y[1] (numeric) = 0.76677414284235507010232600936232 absolute error = 1e-32 relative error = 1.3041650000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.142 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.141 y[1] (analytic) = 0.76811876959663010933402566438433 y[1] (numeric) = 0.76811876959663010933402566438434 absolute error = 1e-32 relative error = 1.3018820000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.141 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.14 y[1] (analytic) = 0.76946693639047676940845690331109 y[1] (numeric) = 0.7694669363904767694084569033111 absolute error = 1e-32 relative error = 1.2996010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.14 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.139 y[1] (analytic) = 0.77081865566143178023651799630315 y[1] (numeric) = 0.77081865566143178023651799630316 absolute error = 1e-32 relative error = 1.2973220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.139 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.138 y[1] (analytic) = 0.77217393990170225745051330262655 y[1] (numeric) = 0.77217393990170225745051330262656 absolute error = 1e-32 relative error = 1.2950450000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.138 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.137 y[1] (analytic) = 0.77353280165845432675572607656428 y[1] (numeric) = 0.77353280165845432675572607656429 absolute error = 1e-32 relative error = 1.2927700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.137 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.136 y[1] (analytic) = 0.77489525353410352755566266329949 y[1] (numeric) = 0.7748952535341035275556626632995 absolute error = 1e-32 relative error = 1.2904970000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.136 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.135 y[1] (analytic) = 0.77626130818660700839759483196271 y[1] (numeric) = 0.77626130818660700839759483196273 absolute error = 2e-32 relative error = 2.5764520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.135 Order of pole = 1 memory used=144.9MB, alloc=4.5MB, time=8.49 TOP MAIN SOLVE Loop x[1] = -1.134 y[1] (analytic) = 0.77763097832975752688464699830554 y[1] (numeric) = 0.77763097832975752688464699830556 absolute error = 2e-32 relative error = 2.5719140000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.134 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.133 y[1] (analytic) = 0.77900427673347926680117473844931 y[1] (numeric) = 0.77900427673347926680117473844933 absolute error = 2e-32 relative error = 2.5673800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.133 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.132 y[1] (analytic) = 0.78038121622412548529956883937804 y[1] (numeric) = 0.78038121622412548529956883937805 absolute error = 1e-32 relative error = 1.2814250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.132 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.131 y[1] (analytic) = 0.78176180968477800309890381359046 y[1] (numeric) = 0.78176180968477800309890381359047 absolute error = 1e-32 relative error = 1.2791620000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.131 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.13 y[1] (analytic) = 0.78314607005554855074904005870463 y[1] (numeric) = 0.78314607005554855074904005870464 absolute error = 1e-32 relative error = 1.2769010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.13 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.129 y[1] (analytic) = 0.78453401033388198411789349480089 y[1] (numeric) = 0.7845340103338819841178934948009 absolute error = 1e-32 relative error = 1.2746420000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.129 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.128 y[1] (analytic) = 0.78592564357486138236461448382369 y[1] (numeric) = 0.78592564357486138236461448382369 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.128 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.127 y[1] (analytic) = 0.78732098289151504176737814239487 y[1] (numeric) = 0.78732098289151504176737814239488 absolute error = 1e-32 relative error = 1.2701300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.127 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.126 y[1] (analytic) = 0.78872004145512537888138991400585 y[1] (numeric) = 0.78872004145512537888138991400586 absolute error = 1e-32 relative error = 1.2678770000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.126 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.125 y[1] (analytic) = 0.79012283249553975661056267807393 y[1] (numeric) = 0.79012283249553975661056267807394 absolute error = 1e-32 relative error = 1.2656260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.125 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.124 y[1] (analytic) = 0.79152936930148324688513404945634 y[1] (numeric) = 0.79152936930148324688513404945634 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 1.124 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.123 y[1] (analytic) = 0.7929396652208733437472742699008 y[1] (numeric) = 0.79293966522087334374727426990081 absolute error = 1e-32 relative error = 1.2611300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.123 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.122 y[1] (analytic) = 0.79435373366113664075749572041926 y[1] (numeric) = 0.79435373366113664075749572041927 absolute error = 1e-32 relative error = 1.2588850000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.122 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.121 y[1] (analytic) = 0.79577158808952748674642420036892 y[1] (numeric) = 0.79577158808952748674642420036893 absolute error = 1e-32 relative error = 1.2566420000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.121 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.12 y[1] (analytic) = 0.79719324203344863404923943778744 y[1] (numeric) = 0.79719324203344863404923943778745 absolute error = 1e-32 relative error = 1.2544010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.12 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.119 y[1] (analytic) = 0.79861870908077389347384763313373 y[1] (numeric) = 0.79861870908077389347384763313374 absolute error = 1e-32 relative error = 1.2521620000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.119 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.118 y[1] (analytic) = 0.80004800288017281036862211732704 y[1] (numeric) = 0.80004800288017281036862211732705 absolute error = 1e-32 relative error = 1.2499250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.118 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.117 y[1] (analytic) = 0.8014811371414373762713494537906 y[1] (numeric) = 0.80148113714143737627134945379062 absolute error = 2e-32 relative error = 2.4953800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.117 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.116 y[1] (analytic) = 0.80291812563581079073785766991554 y[1] (numeric) = 0.80291812563581079073785766991556 absolute error = 2e-32 relative error = 2.4909140000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.116 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.115 y[1] (analytic) = 0.80435898219631828806669101193186 y[1] (numeric) = 0.80435898219631828806669101193188 absolute error = 2e-32 relative error = 2.4864520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.115 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.114 y[1] (analytic) = 0.80580372071810004375514203499283 y[1] (numeric) = 0.80580372071810004375514203499285 absolute error = 2e-32 relative error = 2.4819940000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.114 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.113 y[1] (analytic) = 0.80725235515874617564196743543999 y[1] (numeric) = 0.80725235515874617564196743544001 absolute error = 2e-32 relative error = 2.4775400000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.113 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.112 y[1] (analytic) = 0.80870489953863385481320938582906 y[1] (numeric) = 0.80870489953863385481320938582908 absolute error = 2e-32 relative error = 2.4730900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.112 Order of pole = 1 TOP MAIN SOLVE Loop memory used=148.7MB, alloc=4.5MB, time=8.72 x[1] = -1.111 y[1] (analytic) = 0.81016136794126654146972994080961 y[1] (numeric) = 0.81016136794126654146972994080963 absolute error = 2e-32 relative error = 2.4686440000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.111 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.11 y[1] (analytic) = 0.81162177451361536107835315448977 y[1] (numeric) = 0.81162177451361536107835315448979 absolute error = 2e-32 relative error = 2.4642020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.11 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.109 y[1] (analytic) = 0.81308613346646263625290881564248 y[1] (numeric) = 0.8130861334664626362529088156425 absolute error = 2e-32 relative error = 2.4597640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.109 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.108 y[1] (analytic) = 0.81455445907474758993699421259057 y[1] (numeric) = 0.81455445907474758993699421259059 absolute error = 2e-32 relative error = 2.4553300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.108 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.107 y[1] (analytic) = 0.81602676567791423558692725121384 y[1] (numeric) = 0.81602676567791423558692725121386 absolute error = 2e-32 relative error = 2.4509000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.107 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.106 y[1] (analytic) = 0.81750306768026147018116685482862 y[1] (numeric) = 0.81750306768026147018116685482864 absolute error = 2e-32 relative error = 2.4464740000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.106 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.105 y[1] (analytic) = 0.81898337955129538601143628391205 y[1] (numeric) = 0.81898337955129538601143628391207 absolute error = 2e-32 relative error = 2.4420520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.105 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.104 y[1] (analytic) = 0.82046771582608381734091336107061 y[1] (numeric) = 0.82046771582608381734091336107063 absolute error = 2e-32 relative error = 2.4376340000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.104 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.103 y[1] (analytic) = 0.8219560911056131381461602321204 y[1] (numeric) = 0.82195609110561313814616023212042 absolute error = 2e-32 relative error = 2.4332200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.103 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.102 y[1] (analytic) = 0.82344852005714732729196602451406 y[1] (numeric) = 0.82344852005714732729196602451408 absolute error = 2e-32 relative error = 2.4288100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.102 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.101 y[1] (analytic) = 0.82494501741458931762198049500001 y[1] (numeric) = 0.82494501741458931762198049500003 absolute error = 2e-32 relative error = 2.4244040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.101 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.1 y[1] (analytic) = 0.82644559797884464558293753476237 y[1] (numeric) = 0.82644559797884464558293753476239 absolute error = 2e-32 relative error = 2.4200020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.099 y[1] (analytic) = 0.82795027661818741813641639937672 y[1] (numeric) = 0.82795027661818741813641639937674 absolute error = 2e-32 relative error = 2.4156040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.099 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.098 y[1] (analytic) = 0.82945906826862861384947806288129 y[1] (numeric) = 0.82945906826862861384947806288131 absolute error = 2e-32 relative error = 2.4112100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.098 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.097 y[1] (analytic) = 0.83097198793428673519415660498085 y[1] (numeric) = 0.83097198793428673519415660498086 absolute error = 1e-32 relative error = 1.2034100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.097 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.096 y[1] (analytic) = 0.83248905068776082922569360906481 y[1] (numeric) = 0.83248905068776082922569360906482 absolute error = 1e-32 relative error = 1.2012170000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.096 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.095 y[1] (analytic) = 0.83401027167050589395058989546515 y[1] (numeric) = 0.83401027167050589395058989546517 absolute error = 2e-32 relative error = 2.3980520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.095 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.094 y[1] (analytic) = 0.83553566609321068783802639791383 y[1] (numeric) = 0.83553566609321068783802639791385 absolute error = 2e-32 relative error = 2.3936740000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.094 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.093 y[1] (analytic) = 0.83706524923617796007198761143431 y[1] (numeric) = 0.83706524923617796007198761143433 absolute error = 2e-32 relative error = 2.3893000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.093 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.092 y[1] (analytic) = 0.83859903644970711928651993978859 y[1] (numeric) = 0.83859903644970711928651993978861 absolute error = 2e-32 relative error = 2.3849300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.092 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.091 y[1] (analytic) = 0.84013704315447935867298673759664 y[1] (numeric) = 0.84013704315447935867298673759666 absolute error = 2e-32 relative error = 2.3805640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.091 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.09 y[1] (analytic) = 0.84167928484194525549595531019669 y[1] (numeric) = 0.84167928484194525549595531019672 absolute error = 3e-32 relative error = 3.5643030000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.09 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.089 y[1] (analytic) = 0.84322577707471486320348218516901 y[1] (numeric) = 0.84322577707471486320348218516904 absolute error = 3e-32 relative error = 3.5577660000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.089 Order of pole = 1 TOP MAIN SOLVE Loop memory used=152.5MB, alloc=4.5MB, time=8.94 x[1] = -1.088 y[1] (analytic) = 0.84477653548695031446806533501725 y[1] (numeric) = 0.84477653548695031446806533501729 absolute error = 4e-32 relative error = 4.7349800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.088 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.087 y[1] (analytic) = 0.84633157578476095364641959426864 y[1] (numeric) = 0.84633157578476095364641959426868 absolute error = 4e-32 relative error = 4.7262800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.087 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.086 y[1] (analytic) = 0.8478909137466010172995183131719 y[1] (numeric) = 0.84789091374660101729951831317194 absolute error = 4e-32 relative error = 4.7175880000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.086 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.085 y[1] (analytic) = 0.84945456522366988156904451651595 y[1] (numeric) = 0.84945456522366988156904451651598 absolute error = 3e-32 relative error = 3.5316780000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.085 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.084 y[1] (analytic) = 0.85102254614031489536252283931758 y[1] (numeric) = 0.85102254614031489536252283931762 absolute error = 4e-32 relative error = 4.7002280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.084 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.083 y[1] (analytic) = 0.85259487249443681845697379975957 y[1] (numeric) = 0.85259487249443681845697379975961 absolute error = 4e-32 relative error = 4.6915600000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.083 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.082 y[1] (analytic) = 0.85417156035789788378995921330799 y[1] (numeric) = 0.85417156035789788378995921330803 absolute error = 4e-32 relative error = 4.6829000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.082 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.081 y[1] (analytic) = 0.85575262587693250336738658282573 y[1] (numeric) = 0.85575262587693250336738658282577 absolute error = 4e-32 relative error = 4.6742480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.081 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.08 y[1] (analytic) = 0.85733808527256063737942611503248 y[1] (numeric) = 0.85733808527256063737942611503252 absolute error = 4e-32 relative error = 4.6656040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.08 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.079 y[1] (analytic) = 0.85892795484100384627938177801522 y[1] (numeric) = 0.85892795484100384627938177801526 absolute error = 4e-32 relative error = 4.6569680000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.079 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.078 y[1] (analytic) = 0.86052225095410404574536286072017 y[1] (numeric) = 0.86052225095410404574536286072021 absolute error = 4e-32 relative error = 4.6483400000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.078 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.077 y[1] (analytic) = 0.86212099005974498461114032743355 y[1] (numeric) = 0.86212099005974498461114032743359 absolute error = 4e-32 relative error = 4.6397200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.077 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.076 y[1] (analytic) = 0.8637241886822764660206585551449 y[1] (numeric) = 0.86372418868227646602065855514494 absolute error = 4e-32 relative error = 4.6311080000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.076 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.075 y[1] (analytic) = 0.86533186342294133223032365142356 y[1] (numeric) = 0.86533186342294133223032365142359 absolute error = 3e-32 relative error = 3.4668780000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.075 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.074 y[1] (analytic) = 0.86694403096030523365442050426666 y[1] (numeric) = 0.8669440309603052336544205042667 absolute error = 4e-32 relative error = 4.6139080000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.074 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.073 y[1] (analytic) = 0.86856070805068920292183822188252 y[1] (numeric) = 0.86856070805068920292183822188255 absolute error = 3e-32 relative error = 3.4539900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.073 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.072 y[1] (analytic) = 0.87018191152860505488672406966676 y[1] (numeric) = 0.8701819115286050548867240696668 absolute error = 4e-32 relative error = 4.5967400000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.072 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.071 y[1] (analytic) = 0.87180765830719363371175597754921 y[1] (numeric) = 0.87180765830719363371175597754925 absolute error = 4e-32 relative error = 4.5881680000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.071 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.07 y[1] (analytic) = 0.8734379653786659283204399332344 y[1] (numeric) = 0.87343796537866592832043993323444 absolute error = 4e-32 relative error = 4.5796040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.07 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.069 y[1] (analytic) = 0.87507284981474707769421804365213 y[1] (numeric) = 0.87507284981474707769421804365217 absolute error = 4e-32 relative error = 4.5710480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.069 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.068 y[1] (analytic) = 0.87671232876712328767123287671233 y[1] (numeric) = 0.87671232876712328767123287671236 absolute error = 3e-32 relative error = 3.4218750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.068 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.067 y[1] (analytic) = 0.87835641946789168108635121959789 y[1] (numeric) = 0.87835641946789168108635121959792 absolute error = 3e-32 relative error = 3.4154700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.067 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.066 y[1] (analytic) = 0.88000513923001310327652313489511 y[1] (numeric) = 0.88000513923001310327652313489514 absolute error = 3e-32 relative error = 3.4090710000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.066 Order of pole = 1 TOP MAIN SOLVE Loop memory used=156.4MB, alloc=4.5MB, time=9.16 x[1] = -1.065 y[1] (analytic) = 0.8816585054477679051617578859945 y[1] (numeric) = 0.88165850544776790516175788599453 absolute error = 3e-32 relative error = 3.4026780000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.065 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.064 y[1] (analytic) = 0.88331653559721472629995486252503 y[1] (numeric) = 0.88331653559721472629995486252506 absolute error = 3e-32 relative error = 3.3962910000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.064 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.063 y[1] (analytic) = 0.88497924723665230050355319167766 y[1] (numeric) = 0.88497924723665230050355319167768 absolute error = 2e-32 relative error = 2.2599400000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.063 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.062 y[1] (analytic) = 0.88664665800708430679747660361131 y[1] (numeric) = 0.88664665800708430679747660361134 absolute error = 3e-32 relative error = 3.3835350000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.062 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.061 y[1] (analytic) = 0.88831878563268728869116886762451 y[1] (numeric) = 0.88831878563268728869116886762454 absolute error = 3e-32 relative error = 3.3771660000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.061 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.06 y[1] (analytic) = 0.88999564792128166493265847930004 y[1] (numeric) = 0.88999564792128166493265847930006 absolute error = 2e-32 relative error = 2.2472020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.06 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.059 y[1] (analytic) = 0.89167726276480585510957821882117 y[1] (numeric) = 0.89167726276480585510957821882119 absolute error = 2e-32 relative error = 2.2429640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.059 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.058 y[1] (analytic) = 0.89336364813979354366091489371206 y[1] (numeric) = 0.89336364813979354366091489371208 absolute error = 2e-32 relative error = 2.2387300000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.058 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.057 y[1] (analytic) = 0.89505482210785410606399641978071 y[1] (numeric) = 0.89505482210785410606399641978073 absolute error = 2e-32 relative error = 2.2345000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.057 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.056 y[1] (analytic) = 0.89675080281615622116385699694298 y[1] (numeric) = 0.89675080281615622116385699694299 absolute error = 1e-32 relative error = 1.1151370000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.056 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.055 y[1] (analytic) = 0.89845160849791469381667633999565 y[1] (numeric) = 0.89845160849791469381667633999567 absolute error = 2e-32 relative error = 2.2260520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.055 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.054 y[1] (analytic) = 0.90015725747288051222548579236793 y[1] (numeric) = 0.90015725747288051222548579236795 absolute error = 2e-32 relative error = 2.2218340000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.054 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.053 y[1] (analytic) = 0.90186776814783416455479297625382 y[1] (numeric) = 0.90186776814783416455479297625384 absolute error = 2e-32 relative error = 2.2176200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.053 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.052 y[1] (analytic) = 0.90358315901708223962121793974004 y[1] (numeric) = 0.90358315901708223962121793974006 absolute error = 2e-32 relative error = 2.2134100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.052 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.051 y[1] (analytic) = 0.90530344866295733666967830947255 y[1] (numeric) = 0.90530344866295733666967830947257 absolute error = 2e-32 relative error = 2.2092040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.051 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.05 y[1] (analytic) = 0.90702865575632130945912974228595 y[1] (numeric) = 0.90702865575632130945912974228597 absolute error = 2e-32 relative error = 2.2050020000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.05 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.049 y[1] (analytic) = 0.90875879905707187009838222758592 y[1] (numeric) = 0.90875879905707187009838222758594 absolute error = 2e-32 relative error = 2.2008040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.049 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.048 y[1] (analytic) = 0.91049389741465257829109400394244 y[1] (numeric) = 0.91049389741465257829109400394246 absolute error = 2e-32 relative error = 2.1966100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.048 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.047 y[1] (analytic) = 0.91223396976856624186971474443765 y[1] (numeric) = 0.91223396976856624186971474443767 absolute error = 2e-32 relative error = 2.1924200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.047 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.046 y[1] (analytic) = 0.91397903514889175472093021130281 y[1] (numeric) = 0.91397903514889175472093021130283 absolute error = 2e-32 relative error = 2.1882340000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.046 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.045 y[1] (analytic) = 0.91572911267680439843007400922689 y[1] (numeric) = 0.9157291126768043984300740092269 absolute error = 1e-32 relative error = 1.0920260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.045 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.044 y[1] (analytic) = 0.91748422156509963419904086199478 y[1] (numeric) = 0.91748422156509963419904086199479 absolute error = 1e-32 relative error = 1.0899370000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.044 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.043 y[1] (analytic) = 0.91924438111872041182148274118674 y[1] (numeric) = 0.91924438111872041182148274118676 absolute error = 2e-32 relative error = 2.1757000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.043 Order of pole = 1 TOP MAIN SOLVE Loop memory used=160.2MB, alloc=4.5MB, time=9.38 x[1] = -1.042 y[1] (analytic) = 0.92100961073528802273051719294691 y[1] (numeric) = 0.92100961073528802273051719294692 absolute error = 1e-32 relative error = 1.0857650000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.042 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.041 y[1] (analytic) = 0.92277992990563652436784960901814 y[1] (numeric) = 0.92277992990563652436784960901816 absolute error = 2e-32 relative error = 2.1673640000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.041 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.04 y[1] (analytic) = 0.92455535821435076335913150967871 y[1] (numeric) = 0.92455535821435076335913150967872 absolute error = 1e-32 relative error = 1.0816010000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.04 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.039 y[1] (analytic) = 0.92633591534030802521856895922455 y[1] (numeric) = 0.92633591534030802521856895922456 absolute error = 1e-32 relative error = 1.0795220000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.039 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.038 y[1] (analytic) = 0.92812162105722333854628310493807 y[1] (numeric) = 0.92812162105722333854628310493809 absolute error = 2e-32 relative error = 2.1548900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.038 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.037 y[1] (analytic) = 0.92991249523419846192473288263574 y[1] (numeric) = 0.92991249523419846192473288263576 absolute error = 2e-32 relative error = 2.1507400000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.037 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.036 y[1] (analytic) = 0.9317085578362745819656628128095 y[1] (numeric) = 0.93170855783627458196566281280952 absolute error = 2e-32 relative error = 2.1465940000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.036 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.035 y[1] (analytic) = 0.93350982892498875120656145388555 y[1] (numeric) = 0.93350982892498875120656145388557 absolute error = 2e-32 relative error = 2.1424520000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.035 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.034 y[1] (analytic) = 0.93531632865893409480553370552688 y[1] (numeric) = 0.9353163286589340948055337055269 absolute error = 2e-32 relative error = 2.1383140000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.034 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.033 y[1] (analytic) = 0.93712807729432381523582828065112 y[1] (numeric) = 0.93712807729432381523582828065114 absolute error = 2e-32 relative error = 2.1341800000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.033 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.032 y[1] (analytic) = 0.93894509518555902443604610220417 y[1] (numeric) = 0.9389450951855590244360461022042 absolute error = 3e-32 relative error = 3.1950750000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.032 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.031 y[1] (analytic) = 0.94076740278580043312931224258252 y[1] (numeric) = 0.94076740278580043312931224258255 absolute error = 3e-32 relative error = 3.1888860000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.031 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.03 y[1] (analytic) = 0.94259502064754392728444972716587 y[1] (numeric) = 0.9425950206475439272844497271659 absolute error = 3e-32 relative error = 3.1827030000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.03 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.029 y[1] (analytic) = 0.94442796942320006195447479416192 y[1] (numeric) = 0.94442796942320006195447479416195 absolute error = 3e-32 relative error = 3.1765260000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.029 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.028 y[1] (analytic) = 0.94626626986567750299256707845021 y[1] (numeric) = 0.94626626986567750299256707845023 absolute error = 2e-32 relative error = 2.1135700000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.028 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.027 y[1] (analytic) = 0.94810994282897044741308202099115 y[1] (numeric) = 0.94810994282897044741308202099118 absolute error = 3e-32 relative error = 3.1641900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.027 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.026 y[1] (analytic) = 0.94995900926875005343519427136719 y[1] (numeric) = 0.94995900926875005343519427136722 absolute error = 3e-32 relative error = 3.1580310000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.026 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.025 y[1] (analytic) = 0.95181349024295991151941794701445 y[1] (numeric) = 0.95181349024295991151941794701448 absolute error = 3e-32 relative error = 3.1518780000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.025 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.024 y[1] (analytic) = 0.95367340691241558798257066481527 y[1] (numeric) = 0.9536734069124155879825706648153 absolute error = 3e-32 relative error = 3.1457310000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.024 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.023 y[1] (analytic) = 0.95553878054140827305476192751283 y[1] (numeric) = 0.95553878054140827305476192751286 absolute error = 3e-32 relative error = 3.1395900000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.023 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.022 y[1] (analytic) = 0.95740963249831256552272172410327 y[1] (numeric) = 0.9574096324983125655227217241033 absolute error = 3e-32 relative error = 3.1334550000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.022 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.021 y[1] (analytic) = 0.9592859842561984263872714261321 y[1] (numeric) = 0.95928598425619842638727142613214 absolute error = 4e-32 relative error = 4.1697680000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.021 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.02 y[1] (analytic) = 0.96116785739344733424900591214349 y[1] (numeric) = 0.96116785739344733424900591214353 absolute error = 4e-32 relative error = 4.1616040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.02 Order of pole = 1 TOP MAIN SOLVE Loop memory used=164.0MB, alloc=4.5MB, time=9.60 x[1] = -1.019 y[1] (analytic) = 0.96305527359437267542533336158295 y[1] (numeric) = 0.96305527359437267542533336158299 absolute error = 4e-32 relative error = 4.1534480000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.019 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.018 y[1] (analytic) = 0.96494825464984440209393771259016 y[1] (numeric) = 0.9649482546498444020939377125902 absolute error = 4e-32 relative error = 4.1453000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.018 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.017 y[1] (analytic) = 0.96684682245791799205251911939591 y[1] (numeric) = 0.96684682245791799205251911939595 absolute error = 4e-32 relative error = 4.1371600000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.017 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.016 y[1] (analytic) = 0.96875099902446774398236098180976 y[1] (numeric) = 0.9687509990244677439823609818098 absolute error = 4e-32 relative error = 4.1290280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.016 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.015 y[1] (analytic) = 0.97066080646382444240389972685605 y[1] (numeric) = 0.97066080646382444240389972685609 absolute error = 4e-32 relative error = 4.1209040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.015 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.014 y[1] (analytic) = 0.97257626699941742681606734896134 y[1] (numeric) = 0.97257626699941742681606734896138 absolute error = 4e-32 relative error = 4.1127880000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.014 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.013 y[1] (analytic) = 0.97449740296442109981776898564565 y[1] (numeric) = 0.9744974029644210998177689856457 absolute error = 5e-32 relative error = 5.1308500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.013 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.012 y[1] (analytic) = 0.97642423680240590931948112816056 y[1] (numeric) = 0.97642423680240590931948112816061 absolute error = 5e-32 relative error = 5.1207250000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.012 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.011 y[1] (analytic) = 0.97835679106799384026564343591078 y[1] (numeric) = 0.97835679106799384026564343591083 absolute error = 5e-32 relative error = 5.1106100000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.011 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.01 y[1] (analytic) = 0.98029508842751845160430192696606 y[1] (numeric) = 0.9802950884275184516043019269661 absolute error = 4e-32 relative error = 4.0804040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.01 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.009 y[1] (analytic) = 0.98223915165968949455937733895698 y[1] (numeric) = 0.98223915165968949455937733895702 absolute error = 4e-32 relative error = 4.0723280000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.009 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.008 y[1] (analytic) = 0.9841890036562621485830138819859 y[1] (numeric) = 0.98418900365626214858301388198594 absolute error = 4e-32 relative error = 4.0642600000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.008 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.007 y[1] (analytic) = 0.98614466742271091169074503229624 y[1] (numeric) = 0.98614466742271091169074503229628 absolute error = 4e-32 relative error = 4.0562000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.007 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.006 y[1] (analytic) = 0.98810616607890818221072944961498 y[1] (numeric) = 0.98810616607890818221072944961503 absolute error = 5e-32 relative error = 5.0601850000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.006 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.005 y[1] (analytic) = 0.99007352285980756931009696780083 y[1] (numeric) = 0.99007352285980756931009696780087 absolute error = 4e-32 relative error = 4.0401040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.005 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.004 y[1] (analytic) = 0.9920467611161319699965377568037 y[1] (numeric) = 0.99204676111613196999653775680375 absolute error = 5e-32 relative error = 5.0400850000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.004 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.003 y[1] (analytic) = 0.99402590431506645063170346219222 y[1] (numeric) = 0.99402590431506645063170346219227 absolute error = 5e-32 relative error = 5.0300500000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.003 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.002 y[1] (analytic) = 0.99601097604095597133480410954129 y[1] (numeric) = 0.99601097604095597133480410954133 absolute error = 4e-32 relative error = 4.0160200000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.002 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1.001 y[1] (analytic) = 0.998001999996007992000015968032 y[1] (numeric) = 0.99800199999600799200001596803204 absolute error = 4e-32 relative error = 4.0080080000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1.001 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -1 y[1] (analytic) = 0.999999000000999999000000999999 y[1] (numeric) = 0.99999900000099999900000099999904 absolute error = 4e-32 relative error = 4.0000040000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.999 y[1] (analytic) = 1.002001999995991992000016032032 y[1] (numeric) = 1.002001999995991992000016032032 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 0.999 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.998 y[1] (analytic) = 1.0040110240410439706627978775207 y[1] (numeric) = 1.0040110240410439706627978775207 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 0.998 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.997 y[1] (analytic) = 1.0060260963169384613836882928743 y[1] (numeric) = 1.0060260963169384613836882928743 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 0.997 Order of pole = 1 TOP MAIN SOLVE Loop memory used=167.8MB, alloc=4.5MB, time=9.83 x[1] = -0.996 y[1] (analytic) = 1.0080472411259081245583493024817 y[1] (numeric) = 1.0080472411259081245583493024817 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 0.996 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.995 y[1] (analytic) = 1.0100744828923684832519549991616 y[1] (numeric) = 1.0100744828923684832519549991616 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 0.995 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.994 y[1] (analytic) = 1.0121078461636558145089708178945 y[1] (numeric) = 1.0121078461636558145089708178944 absolute error = 1e-31 relative error = 9.8803699999999999999999999999997e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.994 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.993 y[1] (analytic) = 1.014147355610770244916586380001 y[1] (numeric) = 1.0141473556107702449165863800009 absolute error = 1e-31 relative error = 9.8605000000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.993 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.992 y[1] (analytic) = 1.0161930360291240924125946964885 y[1] (numeric) = 1.0161930360291240924125946964884 absolute error = 1e-31 relative error = 9.8406500000000000000000000000004e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.992 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.991 y[1] (analytic) = 1.0182449123392954967100506882317 y[1] (numeric) = 1.0182449123392954967100506882316 absolute error = 1e-31 relative error = 9.8208200000000000000000000000003e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.991 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.99 y[1] (analytic) = 1.0203030095877873810964380201632 y[1] (numeric) = 1.0203030095877873810964380201631 absolute error = 1e-31 relative error = 9.8010100000000000000000000000003e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.99 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.989 y[1] (analytic) = 1.0223673529477917887543680645155 y[1] (numeric) = 1.0223673529477917887543680645153 absolute error = 2e-31 relative error = 1.9562439999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.989 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.988 y[1] (analytic) = 1.0244379677199596371440718335903 y[1] (numeric) = 1.0244379677199596371440718335901 absolute error = 2e-31 relative error = 1.9522900000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.988 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.987 y[1] (analytic) = 1.0265148793331759343851689130234 y[1] (numeric) = 1.0265148793331759343851689130232 absolute error = 2e-31 relative error = 1.9483400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.987 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.986 y[1] (analytic) = 1.0285981133453405019764512747931 y[1] (numeric) = 1.0285981133453405019764512747929 absolute error = 2e-31 relative error = 1.9443939999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.986 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.985 y[1] (analytic) = 1.0306876954441542485977493903482 y[1] (numeric) = 1.0306876954441542485977493903481 absolute error = 1e-31 relative error = 9.7022600000000000000000000000003e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.985 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.984 y[1] (analytic) = 1.0327836514479110401473988827346 y[1] (numeric) = 1.0327836514479110401473988827345 absolute error = 1e-31 relative error = 9.6825700000000000000000000000004e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.984 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.983 y[1] (analytic) = 1.0348860073062952115824441937721 y[1] (numeric) = 1.0348860073062952115824441937719 absolute error = 2e-31 relative error = 1.9325799999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.983 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.982 y[1] (analytic) = 1.0369947891011847665465481035958 y[1] (numeric) = 1.0369947891011847665465481035956 absolute error = 2e-31 relative error = 1.9286500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.982 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.981 y[1] (analytic) = 1.0391100230474603111926697022534 y[1] (numeric) = 1.0391100230474603111926697022532 absolute error = 2e-31 relative error = 1.9247240000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.981 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.98 y[1] (analytic) = 1.0412317354938197690339764327609 y[1] (numeric) = 1.0412317354938197690339764327607 absolute error = 2e-31 relative error = 1.9208020000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.98 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.979 y[1] (analytic) = 1.0433599529235989240872165451848 y[1] (numeric) = 1.0433599529235989240872165451846 absolute error = 2e-31 relative error = 1.9168840000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.979 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.978 y[1] (analytic) = 1.0454947019555978400079457597349 y[1] (numeric) = 1.0454947019555978400079457597347 absolute error = 2e-31 relative error = 1.9129699999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.978 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.977 y[1] (analytic) = 1.0476360093449132033566257739411 y[1] (numeric) = 1.0476360093449132033566257739409 absolute error = 2e-31 relative error = 1.9090600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.977 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.976 y[1] (analytic) = 1.049783901983776639578742715812 y[1] (numeric) = 1.0497839019837766395787427158117 absolute error = 3e-31 relative error = 2.8577309999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.976 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.975 y[1] (analytic) = 1.0519384069023990507307816112751 y[1] (numeric) = 1.0519384069023990507307816112748 absolute error = 3e-31 relative error = 2.8518780000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.975 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.974 y[1] (analytic) = 1.0540995512698210244371898970883 y[1] (numeric) = 1.054099551269821024437189897088 absolute error = 3e-31 relative error = 2.8460309999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.974 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.973 y[1] (analytic) = 1.0562673623947693640214211021094 y[1] (numeric) = 1.0562673623947693640214211021091 memory used=171.6MB, alloc=4.5MB, time=10.06 absolute error = 3e-31 relative error = 2.8401899999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.973 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.972 y[1] (analytic) = 1.0584418677265197902168218166038 y[1] (numeric) = 1.0584418677265197902168218166035 absolute error = 3e-31 relative error = 2.8343549999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.972 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.971 y[1] (analytic) = 1.0606230948557658653305643999737 y[1] (numeric) = 1.0606230948557658653305643999734 absolute error = 3e-31 relative error = 2.8285260000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.971 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.97 y[1] (analytic) = 1.0628110715154941912060886320665 y[1] (numeric) = 1.0628110715154941912060886320662 absolute error = 3e-31 relative error = 2.8227030000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.97 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.969 y[1] (analytic) = 1.0650058255818659328066524523889 y[1] (numeric) = 1.0650058255818659328066524523886 absolute error = 3e-31 relative error = 2.8168860000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.969 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.968 y[1] (analytic) = 1.0672073850751047197246604946506 y[1] (numeric) = 1.0672073850751047197246604946503 absolute error = 3e-31 relative error = 2.8110750000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.968 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.967 y[1] (analytic) = 1.0694157781603909784084954389417 y[1] (numeric) = 1.0694157781603909784084954389414 absolute error = 3e-31 relative error = 2.8052700000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.967 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.966 y[1] (analytic) = 1.0716310331487627483906780959688 y[1] (numeric) = 1.0716310331487627483906780959685 absolute error = 3e-31 relative error = 2.7994710000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.966 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.965 y[1] (analytic) = 1.0738531784980230362983851395902 y[1] (numeric) = 1.0738531784980230362983851395898 absolute error = 4e-31 relative error = 3.7249039999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.965 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.964 y[1] (analytic) = 1.0760822428136537619297167643929 y[1] (numeric) = 1.0760822428136537619297167643925 absolute error = 4e-31 relative error = 3.7171879999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.964 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.963 y[1] (analytic) = 1.0783182548497363511866892394621 y[1] (numeric) = 1.0783182548497363511866892394618 absolute error = 3e-31 relative error = 2.7821100000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.963 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.962 y[1] (analytic) = 1.0805612435098790311687890690425 y[1] (numeric) = 1.0805612435098790311687890690421 absolute error = 4e-31 relative error = 3.7017799999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.962 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.961 y[1] (analytic) = 1.0828112378481508832491267127367 y[1] (numeric) = 1.0828112378481508832491267127363 absolute error = 4e-31 relative error = 3.6940879999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.961 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.96 y[1] (analytic) = 1.0850682670700227104788297755753 y[1] (numeric) = 1.085068267070022710478829775575 absolute error = 3e-31 relative error = 2.7648030000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.96 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.959 y[1] (analytic) = 1.0873323605333147761943802314278 y[1] (numeric) = 1.0873323605333147761943802314275 absolute error = 3e-31 relative error = 2.7590460000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.959 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.958 y[1] (analytic) = 1.0896035477491514712371903482918 y[1] (numeric) = 1.0896035477491514712371903482915 absolute error = 3e-31 relative error = 2.7532949999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.958 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.957 y[1] (analytic) = 1.0918818583829229677348910847846 y[1] (numeric) = 1.0918818583829229677348910847844 absolute error = 2e-31 relative error = 1.8317000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.957 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.956 y[1] (analytic) = 1.0941673222552539179396391655005 y[1] (numeric) = 1.0941673222552539179396391655002 absolute error = 3e-31 relative error = 2.7418109999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.956 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.955 y[1] (analytic) = 1.0964599693429792571702999695184 y[1] (numeric) = 1.0964599693429792571702999695181 absolute error = 3e-31 relative error = 2.7360780000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.955 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.954 y[1] (analytic) = 1.0987598297801271704626987519187 y[1] (numeric) = 1.0987598297801271704626987519184 absolute error = 3e-31 relative error = 2.7303510000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.954 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.953 y[1] (analytic) = 1.1010669338589092830953193644642 y[1] (numeric) = 1.1010669338589092830953193644639 absolute error = 3e-31 relative error = 2.7246299999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.953 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.952 y[1] (analytic) = 1.1033813120307181357269351928986 y[1] (numeric) = 1.1033813120307181357269351928984 absolute error = 2e-31 relative error = 1.8126100000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.952 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.951 y[1] (analytic) = 1.1057029949071320054577499828616 y[1] (numeric) = 1.1057029949071320054577499828614 absolute error = 2e-31 relative error = 1.8088040000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.951 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.95 y[1] (analytic) = 1.1080320132609271347067759481707 y[1] (numeric) = 1.1080320132609271347067759481705 absolute error = 2e-31 relative error = 1.8050020000000000000000000000000e-29 % Correct digits = 30 h = 0.001 memory used=175.4MB, alloc=4.5MB, time=10.28 Complex estimate of poles used Radius of convergence = 0.95 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.949 y[1] (analytic) = 1.1103683980270974303854532856911 y[1] (numeric) = 1.1103683980270974303854532856909 absolute error = 2e-31 relative error = 1.8012040000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.949 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.948 y[1] (analytic) = 1.112712180303881696440990091298 y[1] (numeric) = 1.1127121803038816964409900912978 absolute error = 2e-31 relative error = 1.7974100000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.948 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.947 y[1] (analytic) = 1.1150633913537984634426467144657 y[1] (numeric) = 1.1150633913537984634426467144655 absolute error = 2e-31 relative error = 1.7936200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.947 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.946 y[1] (analytic) = 1.1174220626046884794902767519222 y[1] (numeric) = 1.117422062604688479490276751922 absolute error = 2e-31 relative error = 1.7898340000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.946 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.945 y[1] (analytic) = 1.1197882256507649273369420375219 y[1] (numeric) = 1.1197882256507649273369420375216 absolute error = 3e-31 relative error = 2.6790779999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.945 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.944 y[1] (analytic) = 1.1221619122536714332364159495117 y[1] (numeric) = 1.1221619122536714332364159495114 absolute error = 3e-31 relative error = 2.6734110000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.944 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.943 y[1] (analytic) = 1.1245431543435479336519538937307 y[1] (numeric) = 1.1245431543435479336519538937304 absolute error = 3e-31 relative error = 2.6677499999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.943 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.942 y[1] (analytic) = 1.1269319840201044665949186636841 y[1] (numeric) = 1.1269319840201044665949186636838 absolute error = 3e-31 relative error = 2.6620949999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.942 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.941 y[1] (analytic) = 1.1293284335537029550007792366192 y[1] (numeric) = 1.1293284335537029550007792366189 absolute error = 3e-31 relative error = 2.6564459999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.941 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.94 y[1] (analytic) = 1.1317325353864470501957331419951 y[1] (numeric) = 1.1317325353864470501957331419948 absolute error = 3e-31 relative error = 2.6508030000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.94 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.939 y[1] (analytic) = 1.1341443221332801041598145447204 y[1] (numeric) = 1.1341443221332801041598145447202 absolute error = 2e-31 relative error = 1.7634440000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.939 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.938 y[1] (analytic) = 1.1365638265830913399519233501355 y[1] (numeric) = 1.1365638265830913399519233501353 absolute error = 2e-31 relative error = 1.7596900000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.938 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.937 y[1] (analytic) = 1.1389910816998302903288267252867 y[1] (numeric) = 1.1389910816998302903288267252865 absolute error = 2e-31 relative error = 1.7559400000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.937 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.936 y[1] (analytic) = 1.1414261206236295752639262547412 y[1] (numeric) = 1.141426120623629575263926254741 absolute error = 2e-31 relative error = 1.7521940000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.936 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.935 y[1] (analytic) = 1.1438689766719360897525353855868 y[1] (numeric) = 1.1438689766719360897525353855866 absolute error = 2e-31 relative error = 1.7484520000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.935 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.934 y[1] (analytic) = 1.1463196833406506739786578201356 y[1] (numeric) = 1.1463196833406506739786578201354 absolute error = 2e-31 relative error = 1.7447139999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.934 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.933 y[1] (analytic) = 1.1487782743052763386138841342233 y[1] (numeric) = 1.1487782743052763386138841342231 absolute error = 2e-31 relative error = 1.7409799999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.933 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.932 y[1] (analytic) = 1.1512447834220751187221182904015 y[1] (numeric) = 1.1512447834220751187221182904013 absolute error = 2e-31 relative error = 1.7372500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.932 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.931 y[1] (analytic) = 1.1537192447292336304544961592686 y[1] (numeric) = 1.1537192447292336304544961592684 absolute error = 2e-31 relative error = 1.7335240000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.931 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.93 y[1] (analytic) = 1.1562016924480374054371540789061 y[1] (numeric) = 1.1562016924480374054371540789059 absolute error = 2e-31 relative error = 1.7298020000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.93 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.929 y[1] (analytic) = 1.158692160984054078480537447772 y[1] (numeric) = 1.1586921609840540784805374477717 absolute error = 3e-31 relative error = 2.5891259999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.929 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.928 y[1] (analytic) = 1.1611906849283255049727991082056 y[1] (numeric) = 1.1611906849283255049727991082053 absolute error = 3e-31 relative error = 2.5835549999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.928 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.927 y[1] (analytic) = 1.1636972990585688850616177719852 y[1] (numeric) = 1.1636972990585688850616177719849 absolute error = 3e-31 relative error = 2.5779899999999999999999999999999e-29 % Correct digits = 30 h = 0.001 memory used=179.2MB, alloc=4.5MB, time=10.51 Complex estimate of poles used Radius of convergence = 0.927 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.926 y[1] (analytic) = 1.1662120383403869724785621072052 y[1] (numeric) = 1.166212038340386972478562107205 absolute error = 2e-31 relative error = 1.7149540000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.926 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.925 y[1] (analytic) = 1.1687349379284874466180317101163 y[1] (numeric) = 1.1687349379284874466180317101161 absolute error = 2e-31 relative error = 1.7112520000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.925 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.924 y[1] (analytic) = 1.1712660331679115272489186286349 y[1] (numeric) = 1.1712660331679115272489186286346 absolute error = 3e-31 relative error = 2.5613310000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.924 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.923 y[1] (analytic) = 1.1738053595952719120115502447384 y[1] (numeric) = 1.1738053595952719120115502447381 absolute error = 3e-31 relative error = 2.5557900000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.923 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.922 y[1] (analytic) = 1.176352952940000117635295294 y[1] (numeric) = 1.1763529529400001176352952939997 absolute error = 3e-31 relative error = 2.5502550000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.922 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.921 y[1] (analytic) = 1.1789088491256033066035400274922 y[1] (numeric) = 1.1789088491256033066035400274918 absolute error = 4e-31 relative error = 3.3929679999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.921 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.92 y[1] (analytic) = 1.181473084270930681792672740226 y[1] (numeric) = 1.1814730842709306817926727402256 absolute error = 4e-31 relative error = 3.3856039999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.92 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.919 y[1] (analytic) = 1.1840456946914495324203551663466 y[1] (numeric) = 1.1840456946914495324203551663462 absolute error = 4e-31 relative error = 3.3782479999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.919 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.918 y[1] (analytic) = 1.1866267169005310154558129876294 y[1] (numeric) = 1.186626716900531015455812987629 absolute error = 4e-31 relative error = 3.3709000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.918 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.917 y[1] (analytic) = 1.1892161876107457574712506986645 y[1] (numeric) = 1.1892161876107457574712506986641 absolute error = 4e-31 relative error = 3.3635600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.917 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.916 y[1] (analytic) = 1.1918141437351693627488954862423 y[1] (numeric) = 1.1918141437351693627488954862419 absolute error = 4e-31 relative error = 3.3562280000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.916 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.915 y[1] (analytic) = 1.1944206223886979143027091848557 y[1] (numeric) = 1.1944206223886979143027091848553 absolute error = 4e-31 relative error = 3.3489040000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.915 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.914 y[1] (analytic) = 1.1970356608893735553275867641373 y[1] (numeric) = 1.1970356608893735553275867641369 absolute error = 4e-31 relative error = 3.3415880000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.914 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.913 y[1] (analytic) = 1.1996592967597202394519956332402 y[1] (numeric) = 1.1996592967597202394519956332398 absolute error = 4e-31 relative error = 3.3342799999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.913 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.912 y[1] (analytic) = 1.2022915677280897390426152246181 y[1] (numeric) = 1.2022915677280897390426152246178 absolute error = 3e-31 relative error = 2.4952350000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.912 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.911 y[1] (analytic) = 1.2049325117300180016917252464689 y[1] (numeric) = 1.2049325117300180016917252464686 absolute error = 3e-31 relative error = 2.4897660000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.911 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.91 y[1] (analytic) = 1.2075821669095919459099795797856 y[1] (numeric) = 1.2075821669095919459099795797852 absolute error = 4e-31 relative error = 3.3124039999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.91 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.909 y[1] (analytic) = 1.2102405716208267879489084840285 y[1] (numeric) = 1.2102405716208267879489084840281 absolute error = 4e-31 relative error = 3.3051279999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.909 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.908 y[1] (analytic) = 1.2129077644290539925891335593385 y[1] (numeric) = 1.2129077644290539925891335593381 absolute error = 4e-31 relative error = 3.2978599999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.908 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.907 y[1] (analytic) = 1.2155837841123199416519783626086 y[1] (numeric) = 1.2155837841123199416519783626083 absolute error = 3e-31 relative error = 2.4679500000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.907 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.906 y[1] (analytic) = 1.2182686696627954149240348571032 y[1] (numeric) = 1.2182686696627954149240348571028 absolute error = 4e-31 relative error = 3.2833479999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.906 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.905 y[1] (analytic) = 1.220962460288195979126425778913 y[1] (numeric) = 1.2209624602881959791264257789126 absolute error = 4e-31 relative error = 3.2761040000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.905 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.904 y[1] (analytic) = 1.2236651954132133815131109607363 y[1] (numeric) = 1.2236651954132133815131109607359 absolute error = 4e-31 relative error = 3.2688679999999999999999999999999e-29 % Correct digits = 30 h = 0.001 memory used=183.1MB, alloc=4.5MB, time=10.73 Complex estimate of poles used Radius of convergence = 0.904 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.903 y[1] (analytic) = 1.2263769146809580456457487644253 y[1] (numeric) = 1.2263769146809580456457487644249 absolute error = 4e-31 relative error = 3.2616399999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.903 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.902 y[1] (analytic) = 1.2290976579544127678664708304398 y[1] (numeric) = 1.2290976579544127678664708304395 absolute error = 3e-31 relative error = 2.4408150000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.902 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.901 y[1] (analytic) = 1.2318274653178977139745898630454 y[1] (numeric) = 1.2318274653178977139745898630451 absolute error = 3e-31 relative error = 2.4354060000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.901 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.9 y[1] (analytic) = 1.2345663770785468166088683841131 y[1] (numeric) = 1.2345663770785468166088683841128 absolute error = 3e-31 relative error = 2.4300030000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.9 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.899 y[1] (analytic) = 1.2373144337677956748436653212934 y[1] (numeric) = 1.2373144337677956748436653212931 absolute error = 3e-31 relative error = 2.4246060000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.899 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.898 y[1] (analytic) = 1.2400716761428810585251827555633 y[1] (numeric) = 1.2400716761428810585251827555629 absolute error = 4e-31 relative error = 3.2256199999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.898 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.897 y[1] (analytic) = 1.2428381451883521209032947639229 y[1] (numeric) = 1.2428381451883521209032947639225 absolute error = 4e-31 relative error = 3.2184400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.897 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.896 y[1] (analytic) = 1.2456138821175934241551935248008 y[1] (numeric) = 1.2456138821175934241551935248004 absolute error = 4e-31 relative error = 3.2112680000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.896 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.895 y[1] (analytic) = 1.2483989283743598834494760469698 y[1] (numeric) = 1.2483989283743598834494760469694 absolute error = 4e-31 relative error = 3.2041039999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.895 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.894 y[1] (analytic) = 1.2511933256343237362634612761922 y[1] (numeric) = 1.2511933256343237362634612761918 absolute error = 4e-31 relative error = 3.1969479999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.894 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.893 y[1] (analytic) = 1.2539971158066336447426170919807 y[1] (numeric) = 1.2539971158066336447426170919803 absolute error = 4e-31 relative error = 3.1898000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.893 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.892 y[1] (analytic) = 1.2568103410354860399791369483388 y[1] (numeric) = 1.2568103410354860399791369483384 absolute error = 4e-31 relative error = 3.1826600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.892 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.891 y[1] (analytic) = 1.2596330437017088181870857381828 y[1] (numeric) = 1.2596330437017088181870857381823 absolute error = 5e-31 relative error = 3.9694099999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.891 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.89 y[1] (analytic) = 1.2624652664243574998642849838594 y[1] (numeric) = 1.2624652664243574998642849838589 absolute error = 5e-31 relative error = 3.9605049999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.89 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.889 y[1] (analytic) = 1.2653070520623239641563818291785 y[1] (numeric) = 1.265307052062323964156381829178 absolute error = 5e-31 relative error = 3.9516100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.889 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.888 y[1] (analytic) = 1.2681584437159578717764997558795 y[1] (numeric) = 1.268158443715957871776499755879 absolute error = 5e-31 relative error = 3.9427250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.888 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.887 y[1] (analytic) = 1.2710194847287008909846587948193 y[1] (numeric) = 1.2710194847287008909846587948188 absolute error = 5e-31 relative error = 3.9338500000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.887 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.886 y[1] (analytic) = 1.2738902186887338422949387067721 y[1] (numeric) = 1.2738902186887338422949387067716 absolute error = 5e-31 relative error = 3.9249850000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.886 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.885 y[1] (analytic) = 1.2767706894306368787553017902879 y[1] (numeric) = 1.2767706894306368787553017902873 absolute error = 6e-31 relative error = 4.6993559999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.885 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.884 y[1] (analytic) = 1.2796609410370628198352564504509 y[1] (numeric) = 1.2796609410370628198352564504503 absolute error = 6e-31 relative error = 4.6887420000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.884 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.883 y[1] (analytic) = 1.2825610178404237581602944760097 y[1] (numeric) = 1.2825610178404237581602944760091 absolute error = 6e-31 relative error = 4.6781400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.883 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.882 y[1] (analytic) = 1.2854709644245910595494424269692 y[1] (numeric) = 1.2854709644245910595494424269686 absolute error = 6e-31 relative error = 4.6675499999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.882 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.881 y[1] (analytic) = 1.2883908256266088780435012278365 y[1] (numeric) = 1.2883908256266088780435012278359 absolute error = 6e-31 relative error = 4.6569719999999999999999999999998e-29 % Correct digits = 30 h = 0.001 memory used=186.9MB, alloc=4.5MB, time=10.95 Complex estimate of poles used Radius of convergence = 0.881 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.88 y[1] (analytic) = 1.2913206465384213088567809184131 y[1] (numeric) = 1.2913206465384213088567809184125 absolute error = 6e-31 relative error = 4.6464059999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.88 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.879 y[1] (analytic) = 1.2942604725086133034445448215344 y[1] (numeric) = 1.2942604725086133034445448215339 absolute error = 5e-31 relative error = 3.8632100000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.879 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.878 y[1] (analytic) = 1.2972103491441654721521368297476 y[1] (numeric) = 1.2972103491441654721521368297471 absolute error = 5e-31 relative error = 3.8544250000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.878 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.877 y[1] (analytic) = 1.3001703223122229012000572074942 y[1] (numeric) = 1.3001703223122229012000572074937 absolute error = 5e-31 relative error = 3.8456499999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.877 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.876 y[1] (analytic) = 1.3031404381418781120622588375727 y[1] (numeric) = 1.3031404381418781120622588375722 absolute error = 5e-31 relative error = 3.8368849999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.876 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.875 y[1] (analytic) = 1.3061207430259682926128423015937 y[1] (numeric) = 1.3061207430259682926128423015933 absolute error = 4e-31 relative error = 3.0625040000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.875 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.874 y[1] (analytic) = 1.3091112836228869307493222076329 y[1] (numeric) = 1.3091112836228869307493222076325 absolute error = 4e-31 relative error = 3.0555080000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.874 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.873 y[1] (analytic) = 1.3121121068584099825489089787831 y[1] (numeric) = 1.3121121068584099825489089787827 absolute error = 4e-31 relative error = 3.0485200000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.873 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.872 y[1] (analytic) = 1.3151232599275367083779927273684 y[1] (numeric) = 1.3151232599275367083779927273679 absolute error = 5e-31 relative error = 3.8019249999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.872 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.871 y[1] (analytic) = 1.3181447902963453117544243529886 y[1] (numeric) = 1.3181447902963453117544243529882 absolute error = 4e-31 relative error = 3.0345680000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.871 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.87 y[1] (analytic) = 1.3211767457038635171574618080832 y[1] (numeric) = 1.3211767457038635171574618080828 absolute error = 4e-31 relative error = 3.0276040000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.87 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.869 y[1] (analytic) = 1.3242191741639542243915875004304 y[1] (numeric) = 1.3242191741639542243915875004299 absolute error = 5e-31 relative error = 3.7758099999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.869 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.868 y[1] (analytic) = 1.3272721239672163785380097554501 y[1] (numeric) = 1.3272721239672163785380097554496 absolute error = 5e-31 relative error = 3.7671250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.868 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.867 y[1] (analytic) = 1.3303356436829011959717436709282 y[1] (numeric) = 1.3303356436829011959717436709277 absolute error = 5e-31 relative error = 3.7584499999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.867 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.866 y[1] (analytic) = 1.3334097821608438883829339548801 y[1] (numeric) = 1.3334097821608438883829339548796 absolute error = 5e-31 relative error = 3.7497849999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.866 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.865 y[1] (analytic) = 1.3364945885334110282187467422944 y[1] (numeric) = 1.336494588533411028218746742294 absolute error = 4e-31 relative error = 2.9929040000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.865 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.864 y[1] (analytic) = 1.3395901122174637004569341872774 y[1] (numeric) = 1.3395901122174637004569341872769 absolute error = 5e-31 relative error = 3.7324849999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.864 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.863 y[1] (analytic) = 1.3426964029163365871342830672557 y[1] (numeric) = 1.3426964029163365871342830672552 absolute error = 5e-31 relative error = 3.7238499999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.863 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.862 y[1] (analytic) = 1.3458135106218331325828179989099 y[1] (numeric) = 1.3458135106218331325828179989094 absolute error = 5e-31 relative error = 3.7152250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.862 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.861 y[1] (analytic) = 1.3489414856162369388740655207858 y[1] (numeric) = 1.3489414856162369388740655207853 absolute error = 5e-31 relative error = 3.7066100000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.861 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.86 y[1] (analytic) = 1.352080378474339542537124746992 y[1] (numeric) = 1.3520803784743395425371247469914 absolute error = 6e-31 relative error = 4.4376059999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.86 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.859 y[1] (analytic) = 1.3552302400654847251999642219217 y[1] (numeric) = 1.3552302400654847251999642219211 absolute error = 6e-31 relative error = 4.4272919999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.859 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.858 y[1] (analytic) = 1.3583911215556295124055069176068 y[1] (numeric) = 1.3583911215556295124055069176062 absolute error = 6e-31 relative error = 4.4169900000000000000000000000000e-29 % Correct digits = 30 h = 0.001 memory used=190.7MB, alloc=4.5MB, time=11.18 Complex estimate of poles used Radius of convergence = 0.858 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.857 y[1] (analytic) = 1.361563074409422016474913200354 y[1] (numeric) = 1.3615630744094220164749132003534 absolute error = 6e-31 relative error = 4.4067000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.857 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.856 y[1] (analytic) = 1.3647461503922962809302655659534 y[1] (numeric) = 1.3647461503922962809302655659528 absolute error = 6e-31 relative error = 4.3964220000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.856 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.855 y[1] (analytic) = 1.3679404015725842856478428947808 y[1] (numeric) = 1.3679404015725842856478428947802 absolute error = 6e-31 relative error = 4.3861559999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.855 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.854 y[1] (analytic) = 1.3711458803236452735915932303786 y[1] (numeric) = 1.371145880323645273591593230378 absolute error = 6e-31 relative error = 4.3759019999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.854 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.853 y[1] (analytic) = 1.3743626393260125616745234397548 y[1] (numeric) = 1.3743626393260125616745234397543 absolute error = 5e-31 relative error = 3.6380500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.853 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.852 y[1] (analytic) = 1.3775907315695580000137759073157 y[1] (numeric) = 1.3775907315695580000137759073152 absolute error = 5e-31 relative error = 3.6295250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.852 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.851 y[1] (analytic) = 1.3808302103556742455834145721774 y[1] (numeric) = 1.3808302103556742455834145721769 absolute error = 5e-31 relative error = 3.6210099999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.851 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.85 y[1] (analytic) = 1.3840811292994750180276567091257 y[1] (numeric) = 1.3840811292994750180276567091252 absolute error = 5e-31 relative error = 3.6125049999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.85 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.849 y[1] (analytic) = 1.3873435423320135071767281444835 y[1] (numeric) = 1.387343542332013507176728144483 absolute error = 5e-31 relative error = 3.6040100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.849 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.848 y[1] (analytic) = 1.3906175037025191036079571133562 y[1] (numeric) = 1.3906175037025191036079571133557 absolute error = 5e-31 relative error = 3.5955250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.848 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.847 y[1] (analytic) = 1.3939030679806526254164285415592 y[1] (numeric) = 1.3939030679806526254164285415587 absolute error = 5e-31 relative error = 3.5870500000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.847 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.846 y[1] (analytic) = 1.3972002900587802162027728836956 y[1] (numeric) = 1.3972002900587802162027728836951 absolute error = 5e-31 relative error = 3.5785850000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.846 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.845 y[1] (analytic) = 1.4005092251542660911507424099403 y[1] (numeric) = 1.4005092251542660911507424099397 absolute error = 6e-31 relative error = 4.2841559999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.845 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.844 y[1] (analytic) = 1.4038299288117843099544176422115 y[1] (numeric) = 1.4038299288117843099544176422109 absolute error = 6e-31 relative error = 4.2740219999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.844 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.843 y[1] (analytic) = 1.4071624569056497572644761837754 y[1] (numeric) = 1.4071624569056497572644761837748 absolute error = 6e-31 relative error = 4.2639000000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.843 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.842 y[1] (analytic) = 1.4105068656421685132552382698723 y[1] (numeric) = 1.4105068656421685132552382698717 absolute error = 6e-31 relative error = 4.2537899999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.842 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.841 y[1] (analytic) = 1.413863211562007798869474976035 y[1] (numeric) = 1.4138632115620077988694749760344 absolute error = 6e-31 relative error = 4.2436920000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.841 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.84 y[1] (analytic) = 1.4172315515425856822765273858739 y[1] (numeric) = 1.4172315515425856822765273858733 absolute error = 6e-31 relative error = 4.2336060000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.84 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.839 y[1] (analytic) = 1.4206119428004807350814436826808 y[1] (numeric) = 1.4206119428004807350814436826802 absolute error = 6e-31 relative error = 4.2235319999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.839 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.838 y[1] (analytic) = 1.4240044428938618288489060085867 y[1] (numeric) = 1.4240044428938618288489060085862 absolute error = 5e-31 relative error = 3.5112250000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.838 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.837 y[1] (analytic) = 1.4274091097249382645560043964201 y[1] (numeric) = 1.4274091097249382645560043964195 absolute error = 6e-31 relative error = 4.2034199999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.837 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.836 y[1] (analytic) = 1.4308260015424304296627400031764 y[1] (numeric) = 1.4308260015424304296627400031759 absolute error = 5e-31 relative error = 3.4944850000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.836 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.835 y[1] (analytic) = 1.4342551769440611795888277258737 y[1] (numeric) = 1.4342551769440611795888277258731 absolute error = 6e-31 relative error = 4.1833559999999999999999999999999e-29 % Correct digits = 30 h = 0.001 memory used=194.5MB, alloc=4.5MB, time=11.40 Complex estimate of poles used Radius of convergence = 0.835 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.834 y[1] (analytic) = 1.4376966948790681425102471831928 y[1] (numeric) = 1.4376966948790681425102471831922 absolute error = 6e-31 relative error = 4.1733419999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.834 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.833 y[1] (analytic) = 1.4411506146507371485393938520515 y[1] (numeric) = 1.4411506146507371485393938520509 absolute error = 6e-31 relative error = 4.1633399999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.833 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.832 y[1] (analytic) = 1.4446169959189569865289465130557 y[1] (numeric) = 1.4446169959189569865289465130551 absolute error = 6e-31 relative error = 4.1533500000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.832 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.831 y[1] (analytic) = 1.4480958987027956939420356173667 y[1] (numeric) = 1.4480958987027956939420356173661 absolute error = 6e-31 relative error = 4.1433720000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.831 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.83 y[1] (analytic) = 1.4515873833830985874603172299068 y[1] (numeric) = 1.4515873833830985874603172299061 absolute error = 7e-31 relative error = 4.8223069999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.83 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.829 y[1] (analytic) = 1.4550915107051082442574813530023 y[1] (numeric) = 1.4550915107051082442574813530016 absolute error = 7e-31 relative error = 4.8106940000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.829 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.828 y[1] (analytic) = 1.4586083417811066461489093256124 y[1] (numeric) = 1.4586083417811066461489093256117 absolute error = 7e-31 relative error = 4.7990950000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.828 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.827 y[1] (analytic) = 1.4621379380930797011390054537745 y[1] (numeric) = 1.4621379380930797011390054537738 absolute error = 7e-31 relative error = 4.7875100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.827 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.826 y[1] (analytic) = 1.4656803614954043592265311596316 y[1] (numeric) = 1.4656803614954043592265311596309 absolute error = 7e-31 relative error = 4.7759390000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.826 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.825 y[1] (analytic) = 1.4692356742175585416954391986201 y[1] (numeric) = 1.4692356742175585416954391986193 absolute error = 8e-31 relative error = 5.4450080000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.825 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.824 y[1] (analytic) = 1.4728039388668541055146197882992 y[1] (numeric) = 1.4728039388668541055146197882984 absolute error = 8e-31 relative error = 5.4318159999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.824 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.823 y[1] (analytic) = 1.4763852184311930668950142471174 y[1] (numeric) = 1.4763852184311930668950142471166 absolute error = 8e-31 relative error = 5.4186399999999999999999999999998e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.823 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.822 y[1] (analytic) = 1.479979576281847310507115001813 y[1] (numeric) = 1.4799795762818473105071150018122 absolute error = 8e-31 relative error = 5.4054799999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.822 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.821 y[1] (analytic) = 1.4835870761762620133463493372817 y[1] (numeric) = 1.4835870761762620133463493372809 absolute error = 8e-31 relative error = 5.3923359999999999999999999999998e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.821 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.82 y[1] (analytic) = 1.4872077822608830147486395766812 y[1] (numeric) = 1.4872077822608830147486395766804 absolute error = 8e-31 relative error = 5.3792079999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.82 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.819 y[1] (analytic) = 1.490841759074008366603951923335 y[1] (numeric) = 1.4908417590740083666039519233342 absolute error = 8e-31 relative error = 5.3660959999999999999999999999998e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.819 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.818 y[1] (analytic) = 1.4944890715486643003923033812815 y[1] (numeric) = 1.4944890715486643003923033812808 absolute error = 7e-31 relative error = 4.6838750000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.818 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.817 y[1] (analytic) = 1.4981497850155058502749104855503 y[1] (numeric) = 1.4981497850155058502749104855496 absolute error = 7e-31 relative error = 4.6724300000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.817 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.816 y[1] (analytic) = 1.5018239652057423741133606765417 y[1] (numeric) = 1.5018239652057423741133606765409 absolute error = 8e-31 relative error = 5.3268559999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.816 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.815 y[1] (analytic) = 1.5055116782540882169622989765532 y[1] (numeric) = 1.5055116782540882169622989765524 absolute error = 8e-31 relative error = 5.3138079999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.815 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.814 y[1] (analytic) = 1.5092129907017387642865874732303 y[1] (numeric) = 1.5092129907017387642865874732296 absolute error = 7e-31 relative error = 4.6381790000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.814 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.813 y[1] (analytic) = 1.512927969499372134892657760564 y[1] (numeric) = 1.5129279694993721348926577605633 absolute error = 7e-31 relative error = 4.6267900000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.813 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.812 y[1] (analytic) = 1.5166566820101767663362882861021 y[1] (numeric) = 1.5166566820101767663362882861014 absolute error = 7e-31 relative error = 4.6154150000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.812 Order of pole = 1 memory used=198.3MB, alloc=4.5MB, time=11.63 TOP MAIN SOLVE Loop x[1] = -0.811 y[1] (analytic) = 1.5203991960129051483757575388994 y[1] (numeric) = 1.5203991960129051483757575388987 absolute error = 7e-31 relative error = 4.6040540000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.811 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.81 y[1] (analytic) = 1.5241555797049539628807150118656 y[1] (numeric) = 1.5241555797049539628807150118648 absolute error = 8e-31 relative error = 5.2488079999999999999999999999998e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.81 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.809 y[1] (analytic) = 1.527925901705470891483646609074 y[1] (numeric) = 1.5279259017054708914836466090733 absolute error = 7e-31 relative error = 4.5813740000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.809 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.808 y[1] (analytic) = 1.5317102310584883551729683778423 y[1] (numeric) = 1.5317102310584883551729683778415 absolute error = 8e-31 relative error = 5.2229199999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.808 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.807 y[1] (analytic) = 1.5355086372360844529750479846449 y[1] (numeric) = 1.5355086372360844529750479846441 absolute error = 8e-31 relative error = 5.2100000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.807 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.806 y[1] (analytic) = 1.5393211901415713698573203188858 y[1] (numeric) = 1.539321190141571369857320318885 absolute error = 8e-31 relative error = 5.1970959999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.806 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.805 y[1] (analytic) = 1.5431479601127115270066324499326 y[1] (numeric) = 1.5431479601127115270066324499318 absolute error = 8e-31 relative error = 5.1842079999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.805 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.804 y[1] (analytic) = 1.5469890179249617506965318053207 y[1] (numeric) = 1.5469890179249617506965318053199 absolute error = 8e-31 relative error = 5.1713360000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.804 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.803 y[1] (analytic) = 1.5508444347947457390549154014361 y[1] (numeric) = 1.5508444347947457390549154014353 absolute error = 8e-31 relative error = 5.1584799999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.803 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.802 y[1] (analytic) = 1.554714282382755109179810480329 y[1] (numeric) = 1.5547142823827551091798104803282 absolute error = 8e-31 relative error = 5.1456399999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.802 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.801 y[1] (analytic) = 1.5585986327972793102265890692361 y[1] (numeric) = 1.5585986327972793102265890692353 absolute error = 8e-31 relative error = 5.1328159999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.801 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.8 y[1] (analytic) = 1.5624975585975646913051698356721 y[1] (numeric) = 1.5624975585975646913051698356714 absolute error = 7e-31 relative error = 4.4800070000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.8 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.799 y[1] (analytic) = 1.5664111327972030162812773142941 y[1] (numeric) = 1.5664111327972030162812773142934 absolute error = 7e-31 relative error = 4.4688140000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.799 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.798 y[1] (analytic) = 1.570339428867549720872166518793 y[1] (numeric) = 1.5703394288675497208721665187923 absolute error = 7e-31 relative error = 4.4576350000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.798 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.797 y[1] (analytic) = 1.5742825207411722107649438768281 y[1] (numeric) = 1.5742825207411722107649438768274 absolute error = 7e-31 relative error = 4.4464700000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.797 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.796 y[1] (analytic) = 1.5782404828153285028652955965512 y[1] (numeric) = 1.5782404828153285028652955965505 absolute error = 7e-31 relative error = 4.4353190000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.796 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.795 y[1] (analytic) = 1.5822133899554765152066528908621 y[1] (numeric) = 1.5822133899554765152066528908614 absolute error = 7e-31 relative error = 4.4241820000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.795 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.794 y[1] (analytic) = 1.5862013174988143145151696362999 y[1] (numeric) = 1.5862013174988143145151696362992 absolute error = 7e-31 relative error = 4.4130590000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.794 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.793 y[1] (analytic) = 1.5902043412578516339349606424426 y[1] (numeric) = 1.5902043412578516339349606424419 absolute error = 7e-31 relative error = 4.4019499999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.793 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.792 y[1] (analytic) = 1.5942225375240129769714554454656 y[1] (numeric) = 1.594222537524012976971455445465 absolute error = 6e-31 relative error = 3.7635900000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.792 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.791 y[1] (analytic) = 1.5982559830712726273090803315422 y[1] (numeric) = 1.5982559830712726273090803315416 absolute error = 6e-31 relative error = 3.7540920000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.791 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.79 y[1] (analytic) = 1.602304755159821887803416434199 y[1] (numeric) = 1.6023047551598218878034164341983 absolute error = 7e-31 relative error = 4.3687069999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.79 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.789 y[1] (analytic) = 1.6063689315397688756381300580542 y[1] (numeric) = 1.6063689315397688756381300580535 absolute error = 7e-31 relative error = 4.3576539999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.789 Order of pole = 1 memory used=202.1MB, alloc=4.5MB, time=11.85 TOP MAIN SOLVE Loop x[1] = -0.788 y[1] (analytic) = 1.6104485904548712043739783716754 y[1] (numeric) = 1.6104485904548712043739783716748 absolute error = 6e-31 relative error = 3.7256700000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.788 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.787 y[1] (analytic) = 1.6145438106463018874017146455269 y[1] (numeric) = 1.6145438106463018874017146455263 absolute error = 6e-31 relative error = 3.7162200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.787 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.786 y[1] (analytic) = 1.6186546713564488011434176598462 y[1] (numeric) = 1.6186546713564488011434176598456 absolute error = 6e-31 relative error = 3.7067820000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.786 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.785 y[1] (analytic) = 1.6227812523327480502283253222032 y[1] (numeric) = 1.6227812523327480502283253222026 absolute error = 6e-31 relative error = 3.6973560000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.785 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.784 y[1] (analytic) = 1.6269236338315515808003488124271 y[1] (numeric) = 1.6269236338315515808003488124265 absolute error = 6e-31 relative error = 3.6879420000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.784 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.783 y[1] (analytic) = 1.6310818966220293920957771289696 y[1] (numeric) = 1.6310818966220293920957771289691 absolute error = 5e-31 relative error = 3.0654500000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.783 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.782 y[1] (analytic) = 1.6352561219901067004619598544622 y[1] (numeric) = 1.6352561219901067004619598544617 absolute error = 5e-31 relative error = 3.0576250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.782 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.781 y[1] (analytic) = 1.6394463917424364140716962696037 y[1] (numeric) = 1.6394463917424364140716962696032 absolute error = 5e-31 relative error = 3.0498100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.781 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.78 y[1] (analytic) = 1.6436527882104072807243906568201 y[1] (numeric) = 1.6436527882104072807243906568196 absolute error = 5e-31 relative error = 3.0420050000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.78 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.779 y[1] (analytic) = 1.6478753942541880753144970189934 y[1] (numeric) = 1.6478753942541880753144970189929 absolute error = 5e-31 relative error = 3.0342100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.779 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.778 y[1] (analytic) = 1.6521142932668081977911231899023 y[1] (numeric) = 1.6521142932668081977911231899018 absolute error = 5e-31 relative error = 3.0264250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.778 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.777 y[1] (analytic) = 1.6563695691782750567306577443559 y[1] (numeric) = 1.6563695691782750567306577443554 absolute error = 5e-31 relative error = 3.0186500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.777 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.776 y[1] (analytic) = 1.6606413064597286179976983511492 y[1] (numeric) = 1.6606413064597286179976983511487 absolute error = 5e-31 relative error = 3.0108850000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.776 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.775 y[1] (analytic) = 1.6649295901276335023791843842924 y[1] (numeric) = 1.6649295901276335023791843842918 absolute error = 6e-31 relative error = 3.6037560000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.775 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.774 y[1] (analytic) = 1.6692345057480090205432690622407 y[1] (numeric) = 1.6692345057480090205432690622402 absolute error = 5e-31 relative error = 2.9953850000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.774 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.773 y[1] (analytic) = 1.6735561394406975381989188827339 y[1] (numeric) = 1.6735561394406975381989188827334 absolute error = 5e-31 relative error = 2.9876500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.773 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.772 y[1] (analytic) = 1.6778945778836715689153250501271 y[1] (numeric) = 1.6778945778836715689153250501266 absolute error = 5e-31 relative error = 2.9799250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.772 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.771 y[1] (analytic) = 1.6822499083173799967027901796979 y[1] (numeric) = 1.6822499083173799967027901796974 absolute error = 5e-31 relative error = 2.9722100000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.771 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.77 y[1] (analytic) = 1.686622218549133835159664092319 y[1] (numeric) = 1.6866222185491338351596640923184 absolute error = 6e-31 relative error = 3.5574059999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.77 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.769 y[1] (analytic) = 1.6910115969575319347540085429906 y[1] (numeric) = 1.69101159695753193475400854299 absolute error = 6e-31 relative error = 3.5481720000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.769 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.768 y[1] (analytic) = 1.6954181324969270546348493197135 y[1] (numeric) = 1.6954181324969270546348493197129 absolute error = 6e-31 relative error = 3.5389499999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.768 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.767 y[1] (analytic) = 1.6998419147019327202570160975029 y[1] (numeric) = 1.6998419147019327202570160975024 absolute error = 5e-31 relative error = 2.9414500000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.767 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.766 y[1] (analytic) = 1.7042830336919712930565804924355 y[1] (numeric) = 1.704283033691971293056580492435 absolute error = 5e-31 relative error = 2.9337850000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.766 Order of pole = 1 memory used=206.0MB, alloc=4.5MB, time=12.08 TOP MAIN SOLVE Loop x[1] = -0.765 y[1] (analytic) = 1.7087415801758636834316998902988 y[1] (numeric) = 1.7087415801758636834316998902983 absolute error = 5e-31 relative error = 2.9261300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.765 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.764 y[1] (analytic) = 1.713217645456461143367192224733 y[1] (numeric) = 1.7132176454564611433671922247325 absolute error = 5e-31 relative error = 2.9184850000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.764 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.763 y[1] (analytic) = 1.7177113214353195801913530412079 y[1] (numeric) = 1.7177113214353195801913530412074 absolute error = 5e-31 relative error = 2.9108500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.763 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.762 y[1] (analytic) = 1.7222227006174168381713439364844 y[1] (numeric) = 1.7222227006174168381713439364839 absolute error = 5e-31 relative error = 2.9032250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.762 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.761 y[1] (analytic) = 1.7267518761159133999399090347112 y[1] (numeric) = 1.7267518761159133999399090347106 absolute error = 6e-31 relative error = 3.4747319999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.761 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.76 y[1] (analytic) = 1.7312989416569569651022072330207 y[1] (numeric) = 1.7312989416569569651022072330202 absolute error = 5e-31 relative error = 2.8880050000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.76 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.759 y[1] (analytic) = 1.7358639915845313687981919240664 y[1] (numeric) = 1.7358639915845313687981919240658 absolute error = 6e-31 relative error = 3.4564919999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.759 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.758 y[1] (analytic) = 1.7404471208653503084942521733833 y[1] (numeric) = 1.7404471208653503084942521733828 absolute error = 5e-31 relative error = 2.8728250000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.758 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.757 y[1] (analytic) = 1.7450484250937963528487915539656 y[1] (numeric) = 1.7450484250937963528487915539651 absolute error = 5e-31 relative error = 2.8652500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.757 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.756 y[1] (analytic) = 1.7496680004969057121411212222481 y[1] (numeric) = 1.7496680004969057121411212222476 absolute error = 5e-31 relative error = 2.8576850000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.756 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.755 y[1] (analytic) = 1.754305943939399255472557392119 y[1] (numeric) = 1.7543059439393992554725573921185 absolute error = 5e-31 relative error = 2.8501299999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.755 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.754 y[1] (analytic) = 1.7589623529287602657440322804771 y[1] (numeric) = 1.7589623529287602657440322804766 absolute error = 5e-31 relative error = 2.8425850000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.754 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.753 y[1] (analytic) = 1.7636373256203594292869614292517 y[1] (numeric) = 1.7636373256203594292869614292512 absolute error = 5e-31 relative error = 2.8350500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.753 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.752 y[1] (analytic) = 1.7683309608226275629746863422958 y[1] (numeric) = 1.7683309608226275629746863422953 absolute error = 5e-31 relative error = 2.8275250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.752 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.751 y[1] (analytic) = 1.7730433580022765876716749231386 y[1] (numeric) = 1.773043358002276587671674923138 absolute error = 6e-31 relative error = 3.3840119999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.751 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.75 y[1] (analytic) = 1.7777746172895692629879769102633 y[1] (numeric) = 1.7777746172895692629879769102627 absolute error = 6e-31 relative error = 3.3750059999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.75 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.749 y[1] (analytic) = 1.7825248394836382044983796849209 y[1] (numeric) = 1.7825248394836382044983796849203 absolute error = 6e-31 relative error = 3.3660120000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.749 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.748 y[1] (analytic) = 1.7872941260578547108604927569906 y[1] (numeric) = 1.7872941260578547108604927569899 absolute error = 7e-31 relative error = 3.9165349999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.748 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.747 y[1] (analytic) = 1.7920825791652479346248275120518 y[1] (numeric) = 1.7920825791652479346248275120511 absolute error = 7e-31 relative error = 3.9060699999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.747 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.746 y[1] (analytic) = 1.7968903016439749369740726698376 y[1] (numeric) = 1.7968903016439749369740726698369 absolute error = 7e-31 relative error = 3.8956190000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.746 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.745 y[1] (analytic) = 1.8017173970228421731594555930713 y[1] (numeric) = 1.8017173970228421731594555930706 absolute error = 7e-31 relative error = 3.8851820000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.745 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.744 y[1] (analytic) = 1.8065639695268789620206056686364 y[1] (numeric) = 1.8065639695268789620206056686357 absolute error = 7e-31 relative error = 3.8747590000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.744 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.743 y[1] (analytic) = 1.8114301240829634996829997282855 y[1] (numeric) = 1.8114301240829634996829997282848 absolute error = 7e-31 relative error = 3.8643500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.743 Order of pole = 1 memory used=209.8MB, alloc=4.5MB, time=12.30 TOP MAIN SOLVE Loop x[1] = -0.742 y[1] (analytic) = 1.8163159663255019843251932106109 y[1] (numeric) = 1.8163159663255019843251932106102 absolute error = 7e-31 relative error = 3.8539550000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.742 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.741 y[1] (analytic) = 1.8212216026021614257979682451801 y[1] (numeric) = 1.8212216026021614257979682451794 absolute error = 7e-31 relative error = 3.8435740000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.741 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.74 y[1] (analytic) = 1.8261471399796567208606266241296 y[1] (numeric) = 1.8261471399796567208606266241289 absolute error = 7e-31 relative error = 3.8332070000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.74 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.739 y[1] (analytic) = 1.8310926862495925818773094656505 y[1] (numeric) = 1.8310926862495925818773094656498 absolute error = 7e-31 relative error = 3.8228540000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.739 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.738 y[1] (analytic) = 1.8360583499343609139898465973249 y[1] (numeric) = 1.8360583499343609139898465973241 absolute error = 8e-31 relative error = 4.3571599999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.738 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.737 y[1] (analytic) = 1.8410442402930942430546606034943 y[1] (numeric) = 1.8410442402930942430546606034935 absolute error = 8e-31 relative error = 4.3453600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.737 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.736 y[1] (analytic) = 1.846050467327675804001129782886 y[1] (numeric) = 1.8460504673276758040011297828852 absolute error = 8e-31 relative error = 4.3335760000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.736 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.735 y[1] (analytic) = 1.8510771417888069067390314423963 y[1] (numeric) = 1.8510771417888069067390314423955 absolute error = 8e-31 relative error = 4.3218080000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.735 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.734 y[1] (analytic) = 1.8561243751821322043147467225484 y[1] (numeric) = 1.8561243751821322043147467225476 absolute error = 8e-31 relative error = 4.3100560000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.734 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.733 y[1] (analytic) = 1.8611922797744234956913398723222 y[1] (numeric) = 1.8611922797744234956913398723214 absolute error = 8e-31 relative error = 4.2983200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.733 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.732 y[1] (analytic) = 1.8662809685998227033079830168432 y[1] (numeric) = 1.8662809685998227033079830168424 absolute error = 8e-31 relative error = 4.2866000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.732 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.731 y[1] (analytic) = 1.8713905554661446734610619767124 y[1] (numeric) = 1.8713905554661446734610619767116 absolute error = 8e-31 relative error = 4.2748960000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.731 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.73 y[1] (analytic) = 1.8765211549612404555442755783907 y[1] (numeric) = 1.8765211549612404555442755783899 absolute error = 8e-31 relative error = 4.2632080000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.73 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.729 y[1] (analytic) = 1.8816728824594217242897625705157 y[1] (numeric) = 1.8816728824594217242897625705149 absolute error = 8e-31 relative error = 4.2515360000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.729 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.728 y[1] (analytic) = 1.8868458541279470173684160872478 y[1] (numeric) = 1.886845854127947017368416087247 absolute error = 8e-31 relative error = 4.2398799999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.728 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.727 y[1] (analytic) = 1.8920401869335704690367623408321 y[1] (numeric) = 1.8920401869335704690367623408314 absolute error = 7e-31 relative error = 3.6997100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.727 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.726 y[1] (analytic) = 1.8972559986491537289618025449792 y[1] (numeric) = 1.8972559986491537289618025449785 absolute error = 7e-31 relative error = 3.6895390000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.726 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.725 y[1] (analytic) = 1.9024934078603417639157880317945 y[1] (numeric) = 1.9024934078603417639157880317938 absolute error = 7e-31 relative error = 3.6793819999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.725 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.724 y[1] (analytic) = 1.9077525339723032487117901014352 y[1] (numeric) = 1.9077525339723032487117901014345 absolute error = 7e-31 relative error = 3.6692390000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.724 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.723 y[1] (analytic) = 1.9130334972165362615499397394448 y[1] (numeric) = 1.9130334972165362615499397394441 absolute error = 7e-31 relative error = 3.6591100000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.723 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.722 y[1] (analytic) = 1.9183364186577400078651793164967 y[1] (numeric) = 1.918336418657740007865179316496 absolute error = 7e-31 relative error = 3.6489950000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.722 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.721 y[1] (analytic) = 1.9236614202007533058121506149946 y[1] (numeric) = 1.9236614202007533058121506149938 absolute error = 8e-31 relative error = 4.1587359999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.721 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.72 y[1] (analytic) = 1.929008624597560575693333924896 y[1] (numeric) = 1.9290086245975605756933339248952 absolute error = 8e-31 relative error = 4.1472080000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.72 Order of pole = 1 memory used=213.6MB, alloc=4.5MB, time=12.52 TOP MAIN SOLVE Loop x[1] = -0.719 y[1] (analytic) = 1.9343781554543660849346760496903 y[1] (numeric) = 1.9343781554543660849346760496895 absolute error = 8e-31 relative error = 4.1356960000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.719 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.718 y[1] (analytic) = 1.9397701372387372096406575820765 y[1] (numeric) = 1.9397701372387372096406575820757 absolute error = 8e-31 relative error = 4.1242000000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.718 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.717 y[1] (analytic) = 1.9451846952868174833200412379155 y[1] (numeric) = 1.9451846952868174833200412379147 absolute error = 8e-31 relative error = 4.1127200000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.717 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.716 y[1] (analytic) = 1.950621955810610213066436233193 y[1] (numeric) = 1.9506219558106102130664362331921 absolute error = 9e-31 relative error = 4.6139129999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.716 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.715 y[1] (analytic) = 1.9560820459053334533063654821938 y[1] (numeric) = 1.9560820459053334533063654821929 absolute error = 9e-31 relative error = 4.6010340000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.715 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.714 y[1] (analytic) = 1.9615650935568471371938242084594 y[1] (numeric) = 1.9615650935568471371938242084586 absolute error = 8e-31 relative error = 4.0783760000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.714 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.713 y[1] (analytic) = 1.9670712276491531758364970395578 y[1] (numeric) = 1.967071227649153175836497039557 absolute error = 8e-31 relative error = 4.0669600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.713 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.712 y[1] (analytic) = 1.9726005779719693457870183155964 y[1] (numeric) = 1.9726005779719693457870183155956 absolute error = 8e-31 relative error = 4.0555599999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.712 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.711 y[1] (analytic) = 1.9781532752283777956251162165049 y[1] (numeric) = 1.9781532752283777956251162165042 absolute error = 7e-31 relative error = 3.5386540000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.711 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.71 y[1] (analytic) = 1.9837294510425490129954116337797 y[1] (numeric) = 1.983729451042549012995411633779 absolute error = 7e-31 relative error = 3.5287070000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.71 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.709 y[1] (analytic) = 1.9893292379675421041533215830286 y[1] (numeric) = 1.9893292379675421041533215830279 absolute error = 7e-31 relative error = 3.5187740000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.709 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.708 y[1] (analytic) = 1.9949527694931822489102570496643 y[1] (numeric) = 1.9949527694931822489102570496636 absolute error = 7e-31 relative error = 3.5088550000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.708 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.707 y[1] (analytic) = 2.0006001800540162048614584375313 y[1] (numeric) = 2.0006001800540162048614584375305 absolute error = 8e-31 relative error = 3.9987999999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.707 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.706 y[1] (analytic) = 2.0062716050373467459277702096754 y[1] (numeric) = 2.0062716050373467459277702096747 absolute error = 7e-31 relative error = 3.4890590000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.706 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.705 y[1] (analytic) = 2.0119671807913469315488525751168 y[1] (numeric) = 2.011967180791346931548852575116 absolute error = 8e-31 relative error = 3.9762080000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.705 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.704 y[1] (analytic) = 2.0176870446332551143322363841434 y[1] (numeric) = 2.0176870446332551143322363841426 absolute error = 8e-31 relative error = 3.9649360000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.704 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.703 y[1] (analytic) = 2.0234313348576516055927642095465 y[1] (numeric) = 2.0234313348576516055927642095457 absolute error = 8e-31 relative error = 3.9536800000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.703 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.702 y[1] (analytic) = 2.0292001907448179300128854212112 y[1] (numeric) = 2.0292001907448179300128854212104 absolute error = 8e-31 relative error = 3.9424400000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.702 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.701 y[1] (analytic) = 2.034993752569179612618589260931 y[1] (numeric) = 2.0349937525691796126185892609301 absolute error = 9e-31 relative error = 4.4226179999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.701 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.7 y[1] (analytic) = 2.0408121616078334534011155079275 y[1] (numeric) = 2.0408121616078334534011155079267 absolute error = 8e-31 relative error = 3.9200080000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.7 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.699 y[1] (analytic) = 2.0466555601491602572236707995465 y[1] (numeric) = 2.0466555601491602572236707995456 absolute error = 9e-31 relative error = 4.3974179999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.699 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.698 y[1] (analytic) = 2.0525240915015239991379398815694 y[1] (numeric) = 2.0525240915015239991379398815685 absolute error = 9e-31 relative error = 4.3848449999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.698 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.697 y[1] (analytic) = 2.0584179000020584179000020584179 y[1] (numeric) = 2.058417900002058417900002058417 absolute error = 9e-31 relative error = 4.3722900000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.697 Order of pole = 1 memory used=217.4MB, alloc=4.5MB, time=12.75 TOP MAIN SOLVE Loop x[1] = -0.696 y[1] (analytic) = 2.064337131025542043322179031702 y[1] (numeric) = 2.0643371310255420433221790317011 absolute error = 9e-31 relative error = 4.3597530000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.696 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.695 y[1] (analytic) = 2.0702819309933626761292352792603 y[1] (numeric) = 2.0702819309933626761292352792594 absolute error = 9e-31 relative error = 4.3472340000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.695 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.694 y[1] (analytic) = 2.07625244738257235220716016419 y[1] (numeric) = 2.0762524473825723522071601641891 absolute error = 9e-31 relative error = 4.3347330000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.694 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.693 y[1] (analytic) = 2.0822488287350338365434669442998 y[1] (numeric) = 2.0822488287350338365434669442989 absolute error = 9e-31 relative error = 4.3222500000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.693 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.692 y[1] (analytic) = 2.0882712246666597057625844444676 y[1] (numeric) = 2.0882712246666597057625844444667 absolute error = 9e-31 relative error = 4.3097850000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.692 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.691 y[1] (analytic) = 2.0943197858767450919615817978479 y[1] (numeric) = 2.0943197858767450919615817978469 absolute error = 1.0e-30 relative error = 4.7748199999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.691 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.69 y[1] (analytic) = 2.1003946641573951745532985648003 y[1] (numeric) = 2.1003946641573951745532985647993 absolute error = 1.0e-30 relative error = 4.7610100000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.69 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.689 y[1] (analytic) = 2.1064960124030485210291496918196 y[1] (numeric) = 2.1064960124030485210291496918186 absolute error = 1.0e-30 relative error = 4.7472200000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.689 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.688 y[1] (analytic) = 2.1126239846200973919656909864898 y[1] (numeric) = 2.1126239846200973919656909864887 absolute error = 1.1e-30 relative error = 5.2067949999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.688 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.687 y[1] (analytic) = 2.1187787359366061402207767442846 y[1] (numeric) = 2.1187787359366061402207767442835 absolute error = 1.1e-30 relative error = 5.1916700000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.687 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.686 y[1] (analytic) = 2.1249604226121288491001855090449 y[1] (numeric) = 2.1249604226121288491001855090438 absolute error = 1.1e-30 relative error = 5.1765670000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.686 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.685 y[1] (analytic) = 2.1311692020476273693273603764497 y[1] (numeric) = 2.1311692020476273693273603764486 absolute error = 1.1e-30 relative error = 5.1614860000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.685 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.684 y[1] (analytic) = 2.1374052327954909299208946323342 y[1] (numeric) = 2.1374052327954909299208946323331 absolute error = 1.1e-30 relative error = 5.1464270000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.684 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.683 y[1] (analytic) = 2.1436686745696585135801410533988 y[1] (numeric) = 2.1436686745696585135801410533976 absolute error = 1.2e-30 relative error = 5.5978800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.683 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.682 y[1] (analytic) = 2.1499596882558452029024455791454 y[1] (numeric) = 2.1499596882558452029024455791442 absolute error = 1.2e-30 relative error = 5.5815000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.682 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.681 y[1] (analytic) = 2.1562784359218737197096786713875 y[1] (numeric) = 2.1562784359218737197096786713863 absolute error = 1.2e-30 relative error = 5.5651439999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.681 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.68 y[1] (analytic) = 2.1626250808281123959507007986574 y[1] (numeric) = 2.1626250808281123959507007986563 absolute error = 1.1e-30 relative error = 5.0864110000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.68 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.679 y[1] (analytic) = 2.1689997874380208310739585547521 y[1] (numeric) = 2.1689997874380208310739585547509 absolute error = 1.2e-30 relative error = 5.5325039999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.679 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.678 y[1] (analytic) = 2.1754027214288045074344388004829 y[1] (numeric) = 2.1754027214288045074344388004818 absolute error = 1.1e-30 relative error = 5.0565350000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.678 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.677 y[1] (analytic) = 2.1818340497021796522156524774726 y[1] (numeric) = 2.1818340497021796522156524774714 absolute error = 1.2e-30 relative error = 5.4999599999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.677 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.676 y[1] (analytic) = 2.1882939403952496515141899920565 y[1] (numeric) = 2.1882939403952496515141899920553 absolute error = 1.2e-30 relative error = 5.4837240000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.676 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.675 y[1] (analytic) = 2.1947825628914943396557703028361 y[1] (numeric) = 2.1947825628914943396557703028349 absolute error = 1.2e-30 relative error = 5.4675120000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.675 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.674 y[1] (analytic) = 2.2013000878318735044917528292209 y[1] (numeric) = 2.2013000878318735044917528292197 absolute error = 1.2e-30 relative error = 5.4513240000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.674 Order of pole = 1 memory used=221.2MB, alloc=4.5MB, time=12.97 TOP MAIN SOLVE Loop x[1] = -0.673 y[1] (analytic) = 2.207846687126045967368025964277 y[1] (numeric) = 2.2078466871260459673680259642758 absolute error = 1.2e-30 relative error = 5.4351600000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.673 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.672 y[1] (analytic) = 2.2144225339637056146683348649756 y[1] (numeric) = 2.2144225339637056146683348649743 absolute error = 1.3e-30 relative error = 5.8706050000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.672 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.671 y[1] (analytic) = 2.2210278028260357763158479217843 y[1] (numeric) = 2.221027802826035776315847921783 absolute error = 1.3e-30 relative error = 5.8531460000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.671 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.67 y[1] (analytic) = 2.2276626694972833653745480629359 y[1] (numeric) = 2.2276626694972833653745480629346 absolute error = 1.3e-30 relative error = 5.8357130000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.67 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.669 y[1] (analytic) = 2.2343273110764542119304141102238 y[1] (numeric) = 2.2343273110764542119304141102225 absolute error = 1.3e-30 relative error = 5.8183060000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.669 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.668 y[1] (analytic) = 2.2410219059891310437559527144378 y[1] (numeric) = 2.2410219059891310437559527144364 absolute error = 1.4e-30 relative error = 6.2471500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.668 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.667 y[1] (analytic) = 2.2477466339994155858751601519477 y[1] (numeric) = 2.2477466339994155858751601519463 absolute error = 1.4e-30 relative error = 6.2284599999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.667 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.666 y[1] (analytic) = 2.2545016762219962710542275288182 y[1] (numeric) = 2.2545016762219962710542275288168 absolute error = 1.4e-30 relative error = 6.2097979999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.666 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.665 y[1] (analytic) = 2.2612872151343430734511313219937 y[1] (numeric) = 2.2612872151343430734511313219924 absolute error = 1.3e-30 relative error = 5.7489380000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.665 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.664 y[1] (analytic) = 2.2681034345890309981696405282867 y[1] (numeric) = 2.2681034345890309981696405282853 absolute error = 1.4e-30 relative error = 6.1725579999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.664 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.663 y[1] (analytic) = 2.2749505198261937802852787951862 y[1] (numeric) = 2.2749505198261937802852787951849 absolute error = 1.3e-30 relative error = 5.7144100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.663 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.662 y[1] (analytic) = 2.281828657486109368047553309222 y[1] (numeric) = 2.2818286574861093680475533092207 absolute error = 1.3e-30 relative error = 5.6971850000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.662 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.661 y[1] (analytic) = 2.2887380356219187864195439918338 y[1] (numeric) = 2.2887380356219187864195439918325 absolute error = 1.3e-30 relative error = 5.6799860000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.661 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.66 y[1] (analytic) = 2.295678843712479998898074155018 y[1] (numeric) = 2.2956788437124799988980741550167 absolute error = 1.3e-30 relative error = 5.6628130000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.66 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.659 y[1] (analytic) = 2.3026512726753584076705919195362 y[1] (numeric) = 2.3026512726753584076705919195348 absolute error = 1.4e-30 relative error = 6.0799479999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.659 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.658 y[1] (analytic) = 2.3096555148799556546141143048514 y[1] (numeric) = 2.3096555148799556546141143048501 absolute error = 1.3e-30 relative error = 5.6285450000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.658 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.657 y[1] (analytic) = 2.3166917641607784084327580215452 y[1] (numeric) = 2.3166917641607784084327580215439 absolute error = 1.3e-30 relative error = 5.6114500000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.657 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.656 y[1] (analytic) = 2.3237602158308488463692408507751 y[1] (numeric) = 2.3237602158308488463692408507738 absolute error = 1.3e-30 relative error = 5.5943810000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.656 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.655 y[1] (analytic) = 2.3308610666952585624181285050323 y[1] (numeric) = 2.330861066695258562418128505031 absolute error = 1.3e-30 relative error = 5.5773380000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.655 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.654 y[1] (analytic) = 2.3379945150648676578204747531662 y[1] (numeric) = 2.3379945150648676578204747531649 absolute error = 1.3e-30 relative error = 5.5603210000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.654 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.653 y[1] (analytic) = 2.345160760770150793836917520696 y[1] (numeric) = 2.3451607607701507938369175206947 absolute error = 1.3e-30 relative error = 5.5433300000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.653 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.652 y[1] (analytic) = 2.3523600051751920113854224250479 y[1] (numeric) = 2.3523600051751920113854224250466 absolute error = 1.3e-30 relative error = 5.5263650000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.652 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.651 y[1] (analytic) = 2.3595924511918301470969934072987 y[1] (numeric) = 2.3595924511918301470969934072974 absolute error = 1.3e-30 relative error = 5.5094260000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.651 Order of pole = 1 memory used=225.0MB, alloc=4.5MB, time=13.20 TOP MAIN SOLVE Loop x[1] = -0.65 y[1] (analytic) = 2.3668583032939567006941995403561 y[1] (numeric) = 2.3668583032939567006941995403548 absolute error = 1.3e-30 relative error = 5.4925130000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.65 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.649 y[1] (analytic) = 2.3741577675319680343398179495824 y[1] (numeric) = 2.3741577675319680343398179495811 absolute error = 1.3e-30 relative error = 5.4756260000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.649 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.648 y[1] (analytic) = 2.3814910515473738107429061335302 y[1] (numeric) = 2.3814910515473738107429061335289 absolute error = 1.3e-30 relative error = 5.4587650000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.648 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.647 y[1] (analytic) = 2.3888583645875636033539571438809 y[1] (numeric) = 2.3888583645875636033539571438796 absolute error = 1.3e-30 relative error = 5.4419300000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.647 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.646 y[1] (analytic) = 2.3962599175207336389363481478109 y[1] (numeric) = 2.3962599175207336389363481478096 absolute error = 1.3e-30 relative error = 5.4251210000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.646 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.645 y[1] (analytic) = 2.4036959228509756601750852110205 y[1] (numeric) = 2.4036959228509756601750852110192 absolute error = 1.3e-30 relative error = 5.4083379999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.645 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.644 y[1] (analytic) = 2.4111665947335299237830239404731 y[1] (numeric) = 2.4111665947335299237830239404719 absolute error = 1.2e-30 relative error = 4.9768440000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.644 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.643 y[1] (analytic) = 2.4186721489902043777965896722699 y[1] (numeric) = 2.4186721489902043777965896722687 absolute error = 1.2e-30 relative error = 4.9614000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.643 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.642 y[1] (analytic) = 2.4262128031249620904249511724673 y[1] (numeric) = 2.4262128031249620904249511724661 absolute error = 1.2e-30 relative error = 4.9459800000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.642 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.641 y[1] (analytic) = 2.4337887763396790319361763231293 y[1] (numeric) = 2.433788776339679031936176323128 absolute error = 1.3e-30 relative error = 5.3414659999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.641 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.64 y[1] (analytic) = 2.4414002895500743406388167997637 y[1] (numeric) = 2.4414002895500743406388167997624 absolute error = 1.3e-30 relative error = 5.3248129999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.64 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.639 y[1] (analytic) = 2.4490475654018152340554758254515 y[1] (numeric) = 2.4490475654018152340554758254502 absolute error = 1.3e-30 relative error = 5.3081860000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.639 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.638 y[1] (analytic) = 2.4567308282867987568942008868798 y[1] (numeric) = 2.4567308282867987568942008868785 absolute error = 1.3e-30 relative error = 5.2915850000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.638 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.637 y[1] (analytic) = 2.4644503043596125884121546689011 y[1] (numeric) = 2.4644503043596125884121546688998 absolute error = 1.3e-30 relative error = 5.2750100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.637 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.636 y[1] (analytic) = 2.4722062215541771632422490154439 y[1] (numeric) = 2.4722062215541771632422490154426 absolute error = 1.3e-30 relative error = 5.2584609999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.636 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.635 y[1] (analytic) = 2.4799988096005713917257319716487 y[1] (numeric) = 2.4799988096005713917257319716474 absolute error = 1.3e-30 relative error = 5.2419379999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.635 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.634 y[1] (analytic) = 2.4878283000420442982707105486408 y[1] (numeric) = 2.4878283000420442982707105486395 absolute error = 1.3e-30 relative error = 5.2254409999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.634 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.633 y[1] (analytic) = 2.4956949262522149292470488407497 y[1] (numeric) = 2.4956949262522149292470488407484 absolute error = 1.3e-30 relative error = 5.2089700000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.633 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.632 y[1] (analytic) = 2.5035989234524629154409463603931 y[1] (numeric) = 2.5035989234524629154409463603918 absolute error = 1.3e-30 relative error = 5.1925249999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.632 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.631 y[1] (analytic) = 2.5115405287295121081368890049779 y[1] (numeric) = 2.5115405287295121081368890049766 absolute error = 1.3e-30 relative error = 5.1761059999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.631 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.63 y[1] (analytic) = 2.5195199810532097424798627365514 y[1] (numeric) = 2.5195199810532097424798627365502 absolute error = 1.2e-30 relative error = 4.7628120000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.63 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.629 y[1] (analytic) = 2.5275375212945036169061929724347 y[1] (numeric) = 2.5275375212945036169061929724334 absolute error = 1.3e-30 relative error = 5.1433460000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.629 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.628 y[1] (analytic) = 2.5355933922436198131267669916452 y[1] (numeric) = 2.5355933922436198131267669916439 absolute error = 1.3e-30 relative error = 5.1270050000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.628 Order of pole = 1 memory used=228.8MB, alloc=4.5MB, time=13.45 TOP MAIN SOLVE Loop x[1] = -0.627 y[1] (analytic) = 2.5436878386284435174115432554117 y[1] (numeric) = 2.5436878386284435174115432554104 absolute error = 1.3e-30 relative error = 5.1106900000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.627 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.626 y[1] (analytic) = 2.5518211071331055407691699181121 y[1] (numeric) = 2.5518211071331055407691699181108 absolute error = 1.3e-30 relative error = 5.0944009999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.626 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.625 y[1] (analytic) = 2.5599934464167771730504369908813 y[1] (numeric) = 2.55999344641677717305043699088 absolute error = 1.3e-30 relative error = 5.0781380000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.625 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.624 y[1] (analytic) = 2.5682051071326760440395811771111 y[1] (numeric) = 2.5682051071326760440395811771098 absolute error = 1.3e-30 relative error = 5.0619010000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.624 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.623 y[1] (analytic) = 2.5764563419472857032437585345116 y[1] (numeric) = 2.5764563419472857032437585345103 absolute error = 1.3e-30 relative error = 5.0456900000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.623 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.622 y[1] (analytic) = 2.5847474055597916693591118807914 y[1] (numeric) = 2.5847474055597916693591118807901 absolute error = 1.3e-30 relative error = 5.0295050000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.622 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.621 y[1] (analytic) = 2.5930785547217367402928104303992 y[1] (numeric) = 2.5930785547217367402928104303978 absolute error = 1.4e-30 relative error = 5.3989880000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.621 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.62 y[1] (analytic) = 2.6014500482568983951654652303194 y[1] (numeric) = 2.601450048256898395165465230318 absolute error = 1.4e-30 relative error = 5.3816140000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.62 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.619 y[1] (analytic) = 2.6098621470813911609188802647444 y[1] (numeric) = 2.609862147081391160918880264743 absolute error = 1.4e-30 relative error = 5.3642680000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.619 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.618 y[1] (analytic) = 2.6183151142239968580218629312038 y[1] (numeric) = 2.6183151142239968580218629312024 absolute error = 1.4e-30 relative error = 5.3469499999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.618 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.617 y[1] (analytic) = 2.626809214846725682313693556437 y[1] (numeric) = 2.6268092148467256823136935564356 absolute error = 1.4e-30 relative error = 5.3296600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.617 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.616 y[1] (analytic) = 2.6353447162656111232629784138914 y[1] (numeric) = 2.63534471626561112326297841389 absolute error = 1.4e-30 relative error = 5.3123980000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.616 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.615 y[1] (analytic) = 2.6439218879717417628613580240385 y[1] (numeric) = 2.6439218879717417628613580240371 absolute error = 1.4e-30 relative error = 5.2951640000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.615 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.614 y[1] (analytic) = 2.6525410016525330440295280864304 y[1] (numeric) = 2.652541001652533044029528086429 absolute error = 1.4e-30 relative error = 5.2779580000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.614 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.613 y[1] (analytic) = 2.6612023312132421428001170929026 y[1] (numeric) = 2.6612023312132421428001170929012 absolute error = 1.4e-30 relative error = 5.2607799999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.613 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.612 y[1] (analytic) = 2.6699061527987291246712678049367 y[1] (numeric) = 2.6699061527987291246712678049353 absolute error = 1.4e-30 relative error = 5.2436299999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.612 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.611 y[1] (analytic) = 2.6786527448154676124096624361811 y[1] (numeric) = 2.6786527448154676124096624361797 absolute error = 1.4e-30 relative error = 5.2265080000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.611 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.61 y[1] (analytic) = 2.6874423879538082402358499439668 y[1] (numeric) = 2.6874423879538082402358499439654 absolute error = 1.4e-30 relative error = 5.2094140000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.61 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.609 y[1] (analytic) = 2.6962753652104982177619835958607 y[1] (numeric) = 2.6962753652104982177619835958593 absolute error = 1.4e-30 relative error = 5.1923480000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.609 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.608 y[1] (analytic) = 2.7051519619114603762866379018841 y[1] (numeric) = 2.7051519619114603762866379018828 absolute error = 1.3e-30 relative error = 4.8056450000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.608 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.607 y[1] (analytic) = 2.7140724657348351200977066087665 y[1] (numeric) = 2.7140724657348351200977066087651 absolute error = 1.4e-30 relative error = 5.1582999999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.607 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.606 y[1] (analytic) = 2.7230371667342887563072348374483 y[1] (numeric) = 2.7230371667342887563072348374469 absolute error = 1.4e-30 relative error = 5.1413180000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.606 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.605 y[1] (analytic) = 2.7320463573625917284564484490173 y[1] (numeric) = 2.7320463573625917284564484490159 absolute error = 1.4e-30 relative error = 5.1243640000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.605 Order of pole = 1 memory used=232.7MB, alloc=4.5MB, time=13.67 TOP MAIN SOLVE Loop x[1] = -0.604 y[1] (analytic) = 2.7411003324954703317005512352769 y[1] (numeric) = 2.7411003324954703317005512352755 absolute error = 1.4e-30 relative error = 5.1074379999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.604 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.603 y[1] (analytic) = 2.7501993894557355408267099364704 y[1] (numeric) = 2.750199389455735540826709936469 absolute error = 1.4e-30 relative error = 5.0905400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.603 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.602 y[1] (analytic) = 2.7593438280376926366909948814172 y[1] (numeric) = 2.7593438280376926366909948814158 absolute error = 1.4e-30 relative error = 5.0736700000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.602 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.601 y[1] (analytic) = 2.7685339505318353718971655749414 y[1] (numeric) = 2.76853395053183537189716557494 absolute error = 1.4e-30 relative error = 5.0568280000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.601 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.6 y[1] (analytic) = 2.7777700617498284726986869480918 y[1] (numeric) = 2.7777700617498284726986869480904 absolute error = 1.4e-30 relative error = 5.0400140000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.6 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.599 y[1] (analytic) = 2.7870524690497823312021672119999 y[1] (numeric) = 2.7870524690497823312021672119985 absolute error = 1.4e-30 relative error = 5.0232280000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.599 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.598 y[1] (analytic) = 2.7963814823618238000027963814824 y[1] (numeric) = 2.7963814823618238000027963814809 absolute error = 1.5e-30 relative error = 5.3640749999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.598 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.597 y[1] (analytic) = 2.8057574142139670604079571280267 y[1] (numeric) = 2.8057574142139670604079571280252 absolute error = 1.5e-30 relative error = 5.3461500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.597 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.596 y[1] (analytic) = 2.8151805797582885954219533411971 y[1] (numeric) = 2.8151805797582885954219533411956 absolute error = 1.5e-30 relative error = 5.3282549999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.596 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.595 y[1] (analytic) = 2.8246512967974103596910961341822 y[1] (numeric) = 2.8246512967974103596910961341808 absolute error = 1.4e-30 relative error = 4.9563640000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.595 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.594 y[1] (analytic) = 2.8341698858112953006629123362913 y[1] (numeric) = 2.8341698858112953006629123362898 absolute error = 1.5e-30 relative error = 5.2925549999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.594 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.593 y[1] (analytic) = 2.8437366699843594483150860230343 y[1] (numeric) = 2.8437366699843594483150860230328 absolute error = 1.5e-30 relative error = 5.2747499999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.593 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.592 y[1] (analytic) = 2.8533519752329048549783858587876 y[1] (numeric) = 2.8533519752329048549783858587861 absolute error = 1.5e-30 relative error = 5.2569750000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.592 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.591 y[1] (analytic) = 2.8630161302328777320331422747236 y[1] (numeric) = 2.8630161302328777320331422747221 absolute error = 1.5e-30 relative error = 5.2392300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.591 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.59 y[1] (analytic) = 2.8727294664479561966210956015639 y[1] (numeric) = 2.8727294664479561966210956015624 absolute error = 1.5e-30 relative error = 5.2215150000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.59 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.589 y[1] (analytic) = 2.8824923181579721090043295034619 y[1] (numeric) = 2.8824923181579721090043295034604 absolute error = 1.5e-30 relative error = 5.2038300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.589 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.588 y[1] (analytic) = 2.8923050224876715498416463000188 y[1] (numeric) = 2.8923050224876715498416463000173 absolute error = 1.5e-30 relative error = 5.1861750000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.588 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.587 y[1] (analytic) = 2.9021679194358185564616768726238 y[1] (numeric) = 2.9021679194358185564616768726224 absolute error = 1.4e-30 relative error = 4.8239800000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.587 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.586 y[1] (analytic) = 2.9120813519046468082132342449119 y[1] (numeric) = 2.9120813519046468082132342449104 absolute error = 1.5e-30 relative error = 5.1509549999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.586 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.585 y[1] (analytic) = 2.9220456657296640231893544032306 y[1] (numeric) = 2.9220456657296640231893544032291 absolute error = 1.5e-30 relative error = 5.1333900000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.585 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.584 y[1] (analytic) = 2.9320612097098139020750197181116 y[1] (numeric) = 2.9320612097098139020750197181101 absolute error = 1.5e-30 relative error = 5.1158550000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.584 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.583 y[1] (analytic) = 2.9421283356380005295831004148401 y[1] (numeric) = 2.9421283356380005295831004148386 absolute error = 1.5e-30 relative error = 5.0983500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.583 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.582 y[1] (analytic) = 2.9522473983319802199424311757325 y[1] (numeric) = 2.952247398331980219942431175731 absolute error = 1.5e-30 relative error = 5.0808750000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.582 Order of pole = 1 memory used=236.5MB, alloc=4.5MB, time=13.90 TOP MAIN SOLVE Loop x[1] = -0.581 y[1] (analytic) = 2.9624187556656258702105094767776 y[1] (numeric) = 2.9624187556656258702105094767761 absolute error = 1.5e-30 relative error = 5.0634300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.581 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.58 y[1] (analytic) = 2.9726427686005689638259101488997 y[1] (numeric) = 2.9726427686005689638259101488982 absolute error = 1.5e-30 relative error = 5.0460150000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.58 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.579 y[1] (analytic) = 2.9829198012182244468175228640803 y[1] (numeric) = 2.9829198012182244468175228640788 absolute error = 1.5e-30 relative error = 5.0286300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.579 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.578 y[1] (analytic) = 2.9932502207522037804750288100334 y[1] (numeric) = 2.9932502207522037804750288100319 absolute error = 1.5e-30 relative error = 5.0112750000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.578 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.577 y[1] (analytic) = 3.0036343976211215570840717267894 y[1] (numeric) = 3.0036343976211215570840717267879 absolute error = 1.5e-30 relative error = 4.9939500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.577 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.576 y[1] (analytic) = 3.014072705461801149567329863131 y[1] (numeric) = 3.0140727054618011495673298631294 absolute error = 1.6e-30 relative error = 5.3084319999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.576 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.575 y[1] (analytic) = 3.0245655211628849515767060061822 y[1] (numeric) = 3.0245655211628849515767060061807 absolute error = 1.5e-30 relative error = 4.9593900000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.575 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.574 y[1] (analytic) = 3.0351132248988548517802456620644 y[1] (numeric) = 3.0351132248988548517802456620629 absolute error = 1.5e-30 relative error = 4.9421550000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.574 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.573 y[1] (analytic) = 3.0457162001644686748088813084397 y[1] (numeric) = 3.0457162001644686748088813084382 absolute error = 1.5e-30 relative error = 4.9249500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.573 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.572 y[1] (analytic) = 3.0563748338096184116019988691413 y[1] (numeric) = 3.0563748338096184116019988691398 absolute error = 1.5e-30 relative error = 4.9077750000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.572 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.571 y[1] (analytic) = 3.0670895160746161537470632617884 y[1] (numeric) = 3.0670895160746161537470632617868 absolute error = 1.6e-30 relative error = 5.2166719999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.571 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.57 y[1] (analytic) = 3.0778606406259137398776858181415 y[1] (numeric) = 3.07786064062591373987768581814 absolute error = 1.5e-30 relative error = 4.8735150000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.57 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.569 y[1] (analytic) = 3.0886886045922622173077754646932 y[1] (numeric) = 3.0886886045922622173077754646917 absolute error = 1.5e-30 relative error = 4.8564300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.569 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.568 y[1] (analytic) = 3.0995738086013173188686555598605 y[1] (numeric) = 3.099573808601317318868655559859 absolute error = 1.5e-30 relative error = 4.8393750000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.568 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.567 y[1] (analytic) = 3.1105166568166972534137920308563 y[1] (numeric) = 3.1105166568166972534137920308548 absolute error = 1.5e-30 relative error = 4.8223500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.567 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.566 y[1] (analytic) = 3.121517556975499208695299306711 y[1] (numeric) = 3.1215175569754992086952993067094 absolute error = 1.6e-30 relative error = 5.1257119999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.566 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.565 y[1] (analytic) = 3.1325769204262810673316083276425 y[1] (numeric) = 3.1325769204262810673316083276409 absolute error = 1.6e-30 relative error = 5.1076160000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.565 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.564 y[1] (analytic) = 3.1436951621675149404112582011148 y[1] (numeric) = 3.1436951621675149404112582011132 absolute error = 1.6e-30 relative error = 5.0895519999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.564 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.563 y[1] (analytic) = 3.1548727008865192289491119033347 y[1] (numeric) = 3.1548727008865192289491119033331 absolute error = 1.6e-30 relative error = 5.0715200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.563 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.562 y[1] (analytic) = 3.166109958998876030964555399009 y[1] (numeric) = 3.1661099589988760309645553990074 absolute error = 1.6e-30 relative error = 5.0535200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.562 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.561 y[1] (analytic) = 3.1774073626883408214233514021899 y[1] (numeric) = 3.1774073626883408214233514021883 absolute error = 1.6e-30 relative error = 5.0355520000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.561 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.56 y[1] (analytic) = 3.1887653419472514437135085666181 y[1] (numeric) = 3.1887653419472514437135085666165 absolute error = 1.6e-30 relative error = 5.0176160000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.56 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.559 y[1] (analytic) = 3.2001843306174435647493295613827 y[1] (numeric) = 3.2001843306174435647493295613811 absolute error = 1.6e-30 relative error = 4.9997120000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.559 Order of pole = 1 memory used=240.3MB, alloc=4.5MB, time=14.13 TOP MAIN SOLVE Loop x[1] = -0.558 y[1] (analytic) = 3.2116647664316798612560820901514 y[1] (numeric) = 3.2116647664316798612560820901498 absolute error = 1.6e-30 relative error = 4.9818400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.558 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.557 y[1] (analytic) = 3.22320709105560032232070910556 y[1] (numeric) = 3.2232070910556003223207091055584 absolute error = 1.6e-30 relative error = 4.9640000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.557 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.556 y[1] (analytic) = 3.2348117501302011729427405972109 y[1] (numeric) = 3.2348117501302011729427405972093 absolute error = 1.6e-30 relative error = 4.9461920000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.556 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.555 y[1] (analytic) = 3.2464791933148500451260607870764 y[1] (numeric) = 3.2464791933148500451260607870748 absolute error = 1.6e-30 relative error = 4.9284160000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.555 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.554 y[1] (analytic) = 3.2582098743308451470593026779227 y[1] (numeric) = 3.2582098743308451470593026779211 absolute error = 1.6e-30 relative error = 4.9106720000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.554 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.553 y[1] (analytic) = 3.2700042510055263071841993394591 y[1] (numeric) = 3.2700042510055263071841993394575 absolute error = 1.6e-30 relative error = 4.8929600000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.553 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.552 y[1] (analytic) = 3.2818627853169458984919840501469 y[1] (numeric) = 3.2818627853169458984919840501452 absolute error = 1.7e-30 relative error = 5.1799849999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.552 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.551 y[1] (analytic) = 3.2937859434391077792636412144848 y[1] (numeric) = 3.2937859434391077792636412144831 absolute error = 1.7e-30 relative error = 5.1612339999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.551 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.55 y[1] (analytic) = 3.3057741957877825197272075133636 y[1] (numeric) = 3.3057741957877825197272075133619 absolute error = 1.7e-30 relative error = 5.1425170000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.55 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.549 y[1] (analytic) = 3.3178280170669073197921712530109 y[1] (numeric) = 3.3178280170669073197921712530092 absolute error = 1.7e-30 relative error = 5.1238340000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.549 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.548 y[1] (analytic) = 3.3299478863155791611861274371056 y[1] (numeric) = 3.3299478863155791611861274371039 absolute error = 1.7e-30 relative error = 5.1051850000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.548 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.547 y[1] (analytic) = 3.3421342869556498780120985261188 y[1] (numeric) = 3.3421342869556498780120985261171 absolute error = 1.7e-30 relative error = 5.0865700000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.547 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.546 y[1] (analytic) = 3.3543877068399319730173052861796 y[1] (numeric) = 3.3543877068399319730173052861779 absolute error = 1.7e-30 relative error = 5.0679890000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.546 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.545 y[1] (analytic) = 3.3667086383010241527677711715473 y[1] (numeric) = 3.3667086383010241527677711715456 absolute error = 1.7e-30 relative error = 5.0494420000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.545 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.544 y[1] (analytic) = 3.3790975782007657035112202935084 y[1] (numeric) = 3.3790975782007657035112202935067 absolute error = 1.7e-30 relative error = 5.0309290000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.544 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.543 y[1] (analytic) = 3.3915550279803289808377140919111 y[1] (numeric) = 3.3915550279803289808377140919094 absolute error = 1.7e-30 relative error = 5.0124500000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.543 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.542 y[1] (analytic) = 3.4040814937109594403690024339183 y[1] (numeric) = 3.4040814937109594403690024339165 absolute error = 1.8e-30 relative error = 5.2877700000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.542 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.541 y[1] (analytic) = 3.4166774861453727936805133216255 y[1] (numeric) = 3.4166774861453727936805133216238 absolute error = 1.7e-30 relative error = 4.9755940000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.541 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.54 y[1] (analytic) = 3.4293435207698190335424089766496 y[1] (numeric) = 3.4293435207698190335424089766479 absolute error = 1.7e-30 relative error = 4.9572170000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.54 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.539 y[1] (analytic) = 3.4420801178568232354176275806996 y[1] (numeric) = 3.4420801178568232354176275806979 absolute error = 1.7e-30 relative error = 4.9388740000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.539 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.538 y[1] (analytic) = 3.4548878025186132080360690286583 y[1] (numeric) = 3.4548878025186132080360690286566 absolute error = 1.7e-30 relative error = 4.9205650000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.538 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.537 y[1] (analytic) = 3.4677671047612442348371883344315 y[1] (numeric) = 3.4677671047612442348371883344298 absolute error = 1.7e-30 relative error = 4.9022899999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.537 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.536 y[1] (analytic) = 3.4807185595394313202017424477109 y[1] (numeric) = 3.4807185595394313202017424477092 absolute error = 1.7e-30 relative error = 4.8840490000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.536 Order of pole = 1 memory used=244.1MB, alloc=4.5MB, time=14.35 TOP MAIN SOLVE Loop x[1] = -0.535 y[1] (analytic) = 3.4937427068120995297422316630914 y[1] (numeric) = 3.4937427068120995297422316630897 absolute error = 1.7e-30 relative error = 4.8658420000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.535 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.534 y[1] (analytic) = 3.506840091598663192557082589591 y[1] (numeric) = 3.5068400915986631925570825895893 absolute error = 1.7e-30 relative error = 4.8476690000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.534 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.533 y[1] (analytic) = 3.5200112640360449153437290999331 y[1] (numeric) = 3.5200112640360449153437290999314 absolute error = 1.7e-30 relative error = 4.8295300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.533 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.532 y[1] (analytic) = 3.5332567794364455436798869357831 y[1] (numeric) = 3.5332567794364455436798869357813 absolute error = 1.8e-30 relative error = 5.0944499999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.532 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.531 y[1] (analytic) = 3.5465771983458763946914832495159 y[1] (numeric) = 3.5465771983458763946914832495141 absolute error = 1.8e-30 relative error = 5.0753160000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.531 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.53 y[1] (analytic) = 3.5599730866034652778024998131014 y[1] (numeric) = 3.5599730866034652778024998130996 absolute error = 1.8e-30 relative error = 5.0562180000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.53 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.529 y[1] (analytic) = 3.5734450154015480163806719506007 y[1] (numeric) = 3.5734450154015480163806719505989 absolute error = 1.8e-30 relative error = 5.0371560000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.529 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.528 y[1] (analytic) = 3.5869935613465573829294976415517 y[1] (numeric) = 3.5869935613465573829294976415499 absolute error = 1.8e-30 relative error = 5.0181300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.528 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.527 y[1] (analytic) = 3.6006193065207215641090267526014 y[1] (numeric) = 3.6006193065207215641090267525996 absolute error = 1.8e-30 relative error = 4.9991400000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.527 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.526 y[1] (analytic) = 3.6143228385445844793748667218453 y[1] (numeric) = 3.6143228385445844793748667218435 absolute error = 1.8e-30 relative error = 4.9801860000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.526 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.525 y[1] (analytic) = 3.6281047506403604884880236262181 y[1] (numeric) = 3.6281047506403604884880236262163 absolute error = 1.8e-30 relative error = 4.9612680000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.525 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.524 y[1] (analytic) = 3.6419656416961362386507245690644 y[1] (numeric) = 3.6419656416961362386507245690626 absolute error = 1.8e-30 relative error = 4.9423860000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.524 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.523 y[1] (analytic) = 3.6559061163309326216502760209118 y[1] (numeric) = 3.65590611633093262165027602091 absolute error = 1.8e-30 relative error = 4.9235400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.523 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.522 y[1] (analytic) = 3.6699267849606400352312971356221 y[1] (numeric) = 3.6699267849606400352312971356204 absolute error = 1.7e-30 relative error = 4.6322450000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.522 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.521 y[1] (analytic) = 3.6840282638648403710553267364667 y[1] (numeric) = 3.684028263864840371055326736465 absolute error = 1.7e-30 relative error = 4.6145140000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.521 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.52 y[1] (analytic) = 3.6982111752545293841368929848632 y[1] (numeric) = 3.6982111752545293841368929848615 absolute error = 1.7e-30 relative error = 4.5968170000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.52 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.519 y[1] (analytic) = 3.7124761473407533356598183856669 y[1] (numeric) = 3.7124761473407533356598183856652 absolute error = 1.7e-30 relative error = 4.5791540000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.519 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.518 y[1] (analytic) = 3.7268238144041740426721326749278 y[1] (numeric) = 3.7268238144041740426721326749261 absolute error = 1.7e-30 relative error = 4.5615250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.518 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.517 y[1] (analytic) = 3.7412548168655767144300198286505 y[1] (numeric) = 3.7412548168655767144300198286488 absolute error = 1.7e-30 relative error = 4.5439300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.517 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.516 y[1] (analytic) = 3.7557698013573352062105409435245 y[1] (numeric) = 3.7557698013573352062105409435228 absolute error = 1.7e-30 relative error = 4.5263690000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.516 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.515 y[1] (analytic) = 3.7703694207958495773415879287853 y[1] (numeric) = 3.7703694207958495773415879287836 absolute error = 1.7e-30 relative error = 4.5088420000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.515 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.514 y[1] (analytic) = 3.7850543344549711011101564362956 y[1] (numeric) = 3.785054334454971101110156436294 absolute error = 1.6e-30 relative error = 4.2271520000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.514 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.513 y[1] (analytic) = 3.7998252080404301402135501766919 y[1] (numeric) = 3.7998252080404301402135501766902 absolute error = 1.7e-30 relative error = 4.4738900000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.513 Order of pole = 1 TOP MAIN SOLVE Loop memory used=247.9MB, alloc=4.5MB, time=14.58 x[1] = -0.512 y[1] (analytic) = 3.8146827137652825726220221633066 y[1] (numeric) = 3.8146827137652825726220221633049 absolute error = 1.7e-30 relative error = 4.4564650000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.512 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.511 y[1] (analytic) = 3.8296275304263907292376743437933 y[1] (numeric) = 3.8296275304263907292376743437917 absolute error = 1.6e-30 relative error = 4.1779520000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.511 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.51 y[1] (analytic) = 3.8446603434819550866778674438007 y[1] (numeric) = 3.8446603434819550866778674437991 absolute error = 1.6e-30 relative error = 4.1616160000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.51 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.509 y[1] (analytic) = 3.8597818451301132459993361175226 y[1] (numeric) = 3.8597818451301132459993361175211 absolute error = 1.5e-30 relative error = 3.8862300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.509 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.508 y[1] (analytic) = 3.8749927343886230213318350028094 y[1] (numeric) = 3.8749927343886230213318350028078 absolute error = 1.6e-30 relative error = 4.1290400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.508 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.507 y[1] (analytic) = 3.8902937171756467613304804512741 y[1] (numeric) = 3.8902937171756467613304804512725 absolute error = 1.6e-30 relative error = 4.1128000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.507 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.506 y[1] (analytic) = 3.9056855063916543312099423130251 y[1] (numeric) = 3.9056855063916543312099423130235 absolute error = 1.6e-30 relative error = 4.0965920000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.506 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.505 y[1] (analytic) = 3.9211688220024624940202175464462 y[1] (numeric) = 3.9211688220024624940202175464447 absolute error = 1.5e-30 relative error = 3.8253900000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.505 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.504 y[1] (analytic) = 3.9367443911234287468948928615014 y[1] (numeric) = 3.9367443911234287468948928614999 absolute error = 1.5e-30 relative error = 3.8102550000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.504 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.503 y[1] (analytic) = 3.9524129481048179913837397731315 y[1] (numeric) = 3.95241294810481799138373977313 absolute error = 1.5e-30 relative error = 3.7951500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.503 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.502 y[1] (analytic) = 3.9681752346183607468105791551755 y[1] (numeric) = 3.968175234618360746810579155174 absolute error = 1.5e-30 relative error = 3.7800750000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.502 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.501 y[1] (analytic) = 3.984031999745021952016318595071 y[1] (numeric) = 3.9840319997450219520163185950695 absolute error = 1.5e-30 relative error = 3.7650300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.501 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.5 y[1] (analytic) = 3.999984000063999744001023995904 y[1] (numeric) = 3.9999840000639997440010239959026 absolute error = 1.4e-30 relative error = 3.5000140000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.5 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.499 y[1] (analytic) = 4.0160319997429739520164496670709 y[1] (numeric) = 4.0160319997429739520164496670695 absolute error = 1.4e-30 relative error = 3.4860280000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.499 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.498 y[1] (analytic) = 4.0321767706296244027338158504869 y[1] (numeric) = 4.0321767706296244027338158504854 absolute error = 1.5e-30 relative error = 3.7200750000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.498 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.497 y[1] (analytic) = 4.0484190923444394963766649123517 y[1] (numeric) = 4.0484190923444394963766649123502 absolute error = 1.5e-30 relative error = 3.7051500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.497 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.496 y[1] (analytic) = 4.0647597523748358853249978660011 y[1] (numeric) = 4.0647597523748358853249978659996 absolute error = 1.5e-30 relative error = 3.6902550000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.496 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.495 y[1] (analytic) = 4.0811995461706104658281161999135 y[1] (numeric) = 4.0811995461706104658281161999119 absolute error = 1.6e-30 relative error = 3.9204160000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.495 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.494 y[1] (analytic) = 4.0977392772407462802771710847126 y[1] (numeric) = 4.097739277240746280277171084711 absolute error = 1.6e-30 relative error = 3.9045920000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.494 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.493 y[1] (analytic) = 4.1143797572515943221559349927998 y[1] (numeric) = 4.1143797572515943221559349927983 absolute error = 1.5e-30 relative error = 3.6457500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.493 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.492 y[1] (analytic) = 4.131121806126453638485530745874 y[1] (numeric) = 4.1311218061264536384855307458725 absolute error = 1.5e-30 relative error = 3.6309750000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.492 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.491 y[1] (analytic) = 4.1479662521465725354858512871139 y[1] (numeric) = 4.1479662521465725354858512871124 absolute error = 1.5e-30 relative error = 3.6162300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.491 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.49 y[1] (analytic) = 4.1649139320535941124776656490394 y[1] (numeric) = 4.1649139320535941124776656490378 absolute error = 1.6e-30 relative error = 3.8416160000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.49 Order of pole = 1 TOP MAIN SOLVE Loop memory used=251.7MB, alloc=4.5MB, time=14.80 x[1] = -0.489 y[1] (analytic) = 4.1819656911534697769339500338739 y[1] (numeric) = 4.1819656911534697769339500338724 absolute error = 1.5e-30 relative error = 3.5868300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.489 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.488 y[1] (analytic) = 4.1991223834218648302504776501711 y[1] (numeric) = 4.1991223834218648302504776501696 absolute error = 1.5e-30 relative error = 3.5721750000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.488 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.487 y[1] (analytic) = 4.216384871611080659442593919973 y[1] (numeric) = 4.2163848716110806594425939199715 absolute error = 1.5e-30 relative error = 3.5575500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.487 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.486 y[1] (analytic) = 4.2337540273585185247907467071978 y[1] (numeric) = 4.2337540273585185247907467071963 absolute error = 1.5e-30 relative error = 3.5429550000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.486 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.485 y[1] (analytic) = 4.2512307312967103976601226054943 y[1] (numeric) = 4.2512307312967103976601226054928 absolute error = 1.5e-30 relative error = 3.5283900000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.485 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.484 y[1] (analytic) = 4.2688158731649427765232202239421 y[1] (numeric) = 4.2688158731649427765232202239406 absolute error = 1.5e-30 relative error = 3.5138550000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.484 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.483 y[1] (analytic) = 4.2865103519224998928372412019375 y[1] (numeric) = 4.286510351922499892837241201936 absolute error = 1.5e-30 relative error = 3.4993500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.483 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.482 y[1] (analytic) = 4.3043150758635532120951253631766 y[1] (numeric) = 4.3043150758635532120951253631751 absolute error = 1.5e-30 relative error = 3.4848750000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.482 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.481 y[1] (analytic) = 4.3222309627337246393098261598707 y[1] (numeric) = 4.3222309627337246393098261598692 absolute error = 1.5e-30 relative error = 3.4704300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.481 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.48 y[1] (analytic) = 4.3402589398483513526416986037387 y[1] (numeric) = 4.3402589398483513526416986037372 absolute error = 1.5e-30 relative error = 3.4560150000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.48 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.479 y[1] (analytic) = 4.3583999442124807140802468597728 y[1] (numeric) = 4.3583999442124807140802468597713 absolute error = 1.5e-30 relative error = 3.4416300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.479 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.478 y[1] (analytic) = 4.3766549226426242422916165174957 y[1] (numeric) = 4.3766549226426242422916165174941 absolute error = 1.6e-30 relative error = 3.6557600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.478 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.477 y[1] (analytic) = 4.3950248318903001801960181075023 y[1] (numeric) = 4.3950248318903001801960181075007 absolute error = 1.6e-30 relative error = 3.6404800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.477 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.476 y[1] (analytic) = 4.4135106387673947488050419945537 y[1] (numeric) = 4.4135106387673947488050419945521 absolute error = 1.6e-30 relative error = 3.6252320000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.476 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.475 y[1] (analytic) = 4.432113320273372749594461631195 y[1] (numeric) = 4.4321133202733727495944616311934 absolute error = 1.6e-30 relative error = 3.6100160000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.475 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.474 y[1] (analytic) = 4.4508338637243687604872772914005 y[1] (numeric) = 4.450833863724368760487277291399 absolute error = 1.5e-30 relative error = 3.3701550000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.474 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.473 y[1] (analytic) = 4.4696732668841907656550306172619 y[1] (numeric) = 4.4696732668841907656550306172603 absolute error = 1.6e-30 relative error = 3.5796800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.473 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.472 y[1] (analytic) = 4.4886325380972686671005678120161 y[1] (numeric) = 4.4886325380972686671005678120145 absolute error = 1.6e-30 relative error = 3.5645600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.472 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.471 y[1] (analytic) = 4.5077126964235807466575310356019 y[1] (numeric) = 4.5077126964235807466575310356003 absolute error = 1.6e-30 relative error = 3.5494720000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.471 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.47 y[1] (analytic) = 4.5269147717755917809335403642356 y[1] (numeric) = 4.5269147717755917809335403642339 absolute error = 1.7e-30 relative error = 3.7553170000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.47 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.469 y[1] (analytic) = 4.5462398050572371591456706158336 y[1] (numeric) = 4.546239805057237159145670615832 absolute error = 1.6e-30 relative error = 3.5193920000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.469 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.468 y[1] (analytic) = 4.5656888483049880150667731994065 y[1] (numeric) = 4.5656888483049880150667731994048 absolute error = 1.7e-30 relative error = 3.7234250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.468 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.467 y[1] (analytic) = 4.5852629648310330597459764317484 y[1] (numeric) = 4.5852629648310330597459764317467 absolute error = 1.7e-30 relative error = 3.7075300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.467 Order of pole = 1 TOP MAIN SOLVE Loop memory used=255.5MB, alloc=4.5MB, time=15.03 x[1] = -0.466 y[1] (analytic) = 4.6049632293686134916212694041638 y[1] (numeric) = 4.6049632293686134916212694041621 absolute error = 1.7e-30 relative error = 3.6916690000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.466 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.465 y[1] (analytic) = 4.624790728219548065450038385763 y[1] (numeric) = 4.6247907282195480654500383857613 absolute error = 1.7e-30 relative error = 3.6758420000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.465 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.464 y[1] (analytic) = 4.6447465594039861214972805008895 y[1] (numeric) = 4.6447465594039861214972805008877 absolute error = 1.8e-30 relative error = 3.8753460000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.464 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.463 y[1] (analytic) = 4.6648318328124271120026123058264 y[1] (numeric) = 4.6648318328124271120026123058246 absolute error = 1.8e-30 relative error = 3.8586600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.463 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.462 y[1] (analytic) = 4.68504767036004591346716952845 y[1] (numeric) = 4.6850476703600459134671695284482 absolute error = 1.8e-30 relative error = 3.8420100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.462 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.461 y[1] (analytic) = 4.7053952061433639811407760137774 y[1] (numeric) = 4.7053952061433639811407760137756 absolute error = 1.8e-30 relative error = 3.8253960000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.461 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.46 y[1] (analytic) = 4.7258755865993071866390045415664 y[1] (numeric) = 4.7258755865993071866390045415646 absolute error = 1.8e-30 relative error = 3.8088180000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.46 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.459 y[1] (analytic) = 4.7464899706666919812798435556906 y[1] (numeric) = 4.7464899706666919812798435556887 absolute error = 1.9e-30 relative error = 4.0029580000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.459 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.458 y[1] (analytic) = 4.7672395299501823469120205944748 y[1] (numeric) = 4.7672395299501823469120205944729 absolute error = 1.9e-30 relative error = 3.9855350000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.458 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.457 y[1] (analytic) = 4.7881254488867608331338281062964 y[1] (numeric) = 4.7881254488867608331338281062945 absolute error = 1.9e-30 relative error = 3.9681500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.457 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.456 y[1] (analytic) = 4.8091489249147578353058859173692 y[1] (numeric) = 4.8091489249147578353058859173673 absolute error = 1.9e-30 relative error = 3.9508030000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.456 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.455 y[1] (analytic) = 4.8303111686454841420884333368756 y[1] (numeric) = 4.8303111686454841420884333368737 absolute error = 1.9e-30 relative error = 3.9334940000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.455 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.454 y[1] (analytic) = 4.8516134040375126748400180480019 y[1] (numeric) = 4.851613404037512674840018048 absolute error = 1.9e-30 relative error = 3.9162230000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.454 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.453 y[1] (analytic) = 4.8730568685736562545684908142878 y[1] (numeric) = 4.8730568685736562545684908142859 absolute error = 1.9e-30 relative error = 3.8989900000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.453 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.452 y[1] (analytic) = 4.8946428134406891657081324490345 y[1] (numeric) = 4.8946428134406891657081324490326 absolute error = 1.9e-30 relative error = 3.8817950000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.452 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.451 y[1] (analytic) = 4.9163725037118612403024552364284 y[1] (numeric) = 4.9163725037118612403024552364264 absolute error = 2.0e-30 relative error = 4.0680400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.451 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.45 y[1] (analytic) = 4.9382472185322541617078434180572 y[1] (numeric) = 4.9382472185322541617078434180552 absolute error = 2.0e-30 relative error = 4.0500200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.45 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.449 y[1] (analytic) = 4.9602682513070306842194025852918 y[1] (numeric) = 4.9602682513070306842194025852898 absolute error = 2.0e-30 relative error = 4.0320400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.449 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.448 y[1] (analytic) = 4.982436909892628484591813856157 y[1] (numeric) = 4.982436909892628484591813856155 absolute error = 2.0e-30 relative error = 4.0141000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.448 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.447 y[1] (analytic) = 5.0047545167909514038336419598619 y[1] (numeric) = 5.0047545167909514038336419598598 absolute error = 2.1e-30 relative error = 4.1960100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.447 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.446 y[1] (analytic) = 5.0272224093466119034572208509077 y[1] (numeric) = 5.0272224093466119034572208509056 absolute error = 2.1e-30 relative error = 4.1772570000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.446 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.445 y[1] (analytic) = 5.0498419399472796501469504004525 y[1] (numeric) = 5.0498419399472796501469504004504 absolute error = 2.1e-30 relative error = 4.1585460000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.445 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.444 y[1] (analytic) = 5.0726144762271922571612634868137 y[1] (numeric) = 5.0726144762271922571612634868117 absolute error = 2.0e-30 relative error = 3.9427400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.444 Order of pole = 1 TOP MAIN SOLVE Loop memory used=259.4MB, alloc=4.5MB, time=15.25 x[1] = -0.443 y[1] (analytic) = 5.0955414012738853503184713375796 y[1] (numeric) = 5.0955414012738853503184713375776 absolute error = 2.0e-30 relative error = 3.9250000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.443 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.442 y[1] (analytic) = 5.1186241138382002917615744887774 y[1] (numeric) = 5.1186241138382002917615744887754 absolute error = 2.0e-30 relative error = 3.9073000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.442 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.441 y[1] (analytic) = 5.1418640285476290864964366882282 y[1] (numeric) = 5.1418640285476290864964366882262 absolute error = 2.0e-30 relative error = 3.8896400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.441 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.44 y[1] (analytic) = 5.1652625761230572156135557151048 y[1] (numeric) = 5.1652625761230572156135557151028 absolute error = 2.0e-30 relative error = 3.8720200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.44 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.439 y[1] (analytic) = 5.1888212035989663868162430858957 y[1] (numeric) = 5.1888212035989663868162430858938 absolute error = 1.9e-30 relative error = 3.6617180000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.439 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.438 y[1] (analytic) = 5.212541374547160468086215434335 y[1] (numeric) = 5.2125413745471604680862154343331 absolute error = 1.9e-30 relative error = 3.6450550000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.438 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.437 y[1] (analytic) = 5.2364245693040791747394878776771 y[1] (numeric) = 5.2364245693040791747394878776752 absolute error = 1.9e-30 relative error = 3.6284300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.437 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.436 y[1] (analytic) = 5.2604722852017654144989137124731 y[1] (numeric) = 5.2604722852017654144989137124712 absolute error = 1.9e-30 relative error = 3.6118430000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.436 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.435 y[1] (analytic) = 5.2846860368025535602929829938803 y[1] (numeric) = 5.2846860368025535602929829938784 absolute error = 1.9e-30 relative error = 3.5952940000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.435 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.434 y[1] (analytic) = 5.3090673561375473170628115758905 y[1] (numeric) = 5.3090673561375473170628115758885 absolute error = 2.0e-30 relative error = 3.7671400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.434 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.433 y[1] (analytic) = 5.3336177929489572777214784788522 y[1] (numeric) = 5.3336177929489572777214784788502 absolute error = 2.0e-30 relative error = 3.7498000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.433 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.432 y[1] (analytic) = 5.3583389149363697253851306095111 y[1] (numeric) = 5.358338914936369725385130609509 absolute error = 2.1e-30 relative error = 3.9191250000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.432 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.431 y[1] (analytic) = 5.3832323080070197349296411537343 y[1] (numeric) = 5.3832323080070197349296411537323 absolute error = 2.0e-30 relative error = 3.7152400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.431 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.43 y[1] (analytic) = 5.4082995765301431576897907528894 y[1] (numeric) = 5.4082995765301431576897907528873 absolute error = 2.1e-30 relative error = 3.8829210000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.43 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.429 y[1] (analytic) = 5.4335423435954836396040034339988 y[1] (numeric) = 5.4335423435954836396040034339967 absolute error = 2.1e-30 relative error = 3.8648820000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.429 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.428 y[1] (analytic) = 5.4589622512760324262357725796326 y[1] (numeric) = 5.4589622512760324262357725796306 absolute error = 2.0e-30 relative error = 3.6637000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.428 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.427 y[1] (analytic) = 5.4845609608950803488180771129271 y[1] (numeric) = 5.4845609608950803488180771129251 absolute error = 2.0e-30 relative error = 3.6466000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.427 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.426 y[1] (analytic) = 5.5103401532976630647409864610942 y[1] (numeric) = 5.5103401532976630647409864610922 absolute error = 2.0e-30 relative error = 3.6295400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.426 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.425 y[1] (analytic) = 5.5363015291264823447344236156478 y[1] (numeric) = 5.5363015291264823447344236156458 absolute error = 2.0e-30 relative error = 3.6125200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.425 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.424 y[1] (analytic) = 5.5624468091023879584151476551505 y[1] (numeric) = 5.5624468091023879584151476551485 absolute error = 2.0e-30 relative error = 3.5955400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.424 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.423 y[1] (analytic) = 5.5887777343095065109260604705751 y[1] (numeric) = 5.588777734309506510926060470573 absolute error = 2.1e-30 relative error = 3.7575300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.423 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.422 y[1] (analytic) = 5.6152960664851054271836482578544 y[1] (numeric) = 5.6152960664851054271836482578523 absolute error = 2.1e-30 relative error = 3.7397850000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.422 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.421 y[1] (analytic) = 5.6420035883142821678834587738798 y[1] (numeric) = 5.6420035883142821678834587738777 absolute error = 2.1e-30 relative error = 3.7220820000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.421 Order of pole = 1 TOP MAIN SOLVE Loop memory used=263.2MB, alloc=4.5MB, time=15.48 x[1] = -0.42 y[1] (analytic) = 5.6689021037295706940436845596113 y[1] (numeric) = 5.6689021037295706940436845596093 absolute error = 2.0e-30 relative error = 3.5280200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.42 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.419 y[1] (analytic) = 5.6959934382155591756758296214443 y[1] (numeric) = 5.6959934382155591756758296214422 absolute error = 2.1e-30 relative error = 3.6868020000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.419 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.418 y[1] (analytic) = 5.7232794391186149663757332951781 y[1] (numeric) = 5.7232794391186149663757332951761 absolute error = 2.0e-30 relative error = 3.4945000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.418 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.417 y[1] (analytic) = 5.7507619759618149404796135487952 y[1] (numeric) = 5.7507619759618149404796135487932 absolute error = 2.0e-30 relative error = 3.4778000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.417 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.416 y[1] (analytic) = 5.7784429407651814142161253228705 y[1] (numeric) = 5.7784429407651814142161253228685 absolute error = 2.0e-30 relative error = 3.4611400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.416 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.415 y[1] (analytic) = 5.8063242483713260483318430434429 y[1] (numeric) = 5.8063242483713260483318430434409 absolute error = 2.0e-30 relative error = 3.4445200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.415 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.414 y[1] (analytic) = 5.8344078367766063583376605191456 y[1] (numeric) = 5.8344078367766063583376605191436 absolute error = 2.0e-30 relative error = 3.4279400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.414 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.413 y[1] (analytic) = 5.8626956674679017412206132379668 y[1] (numeric) = 5.8626956674679017412206132379648 absolute error = 2.0e-30 relative error = 3.4114000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.413 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.412 y[1] (analytic) = 5.8911897257651182656337447347492 y[1] (numeric) = 5.8911897257651182656337447347472 absolute error = 2.0e-30 relative error = 3.3949000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.412 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.411 y[1] (analytic) = 5.9198920211695338677022531109033 y[1] (numeric) = 5.9198920211695338677022531109013 absolute error = 2.0e-30 relative error = 3.3784400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.411 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.41 y[1] (analytic) = 5.948804587718098048197214769692 y[1] (numeric) = 5.9488045877180980481972147696901 absolute error = 1.9e-30 relative error = 3.1939190000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.41 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.409 y[1] (analytic) = 5.9779294843438026805035807797611 y[1] (numeric) = 5.9779294843438026805035807797592 absolute error = 1.9e-30 relative error = 3.1783580000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.409 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.408 y[1] (analytic) = 6.0072687952422431141681434535788 y[1] (numeric) = 6.0072687952422431141681434535769 absolute error = 1.9e-30 relative error = 3.1628350000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.408 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.407 y[1] (analytic) = 6.0368246302444913975249019015998 y[1] (numeric) = 6.0368246302444913975249019015978 absolute error = 2.0e-30 relative error = 3.3130000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.407 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.406 y[1] (analytic) = 6.0665991251964061466782336489987 y[1] (numeric) = 6.0665991251964061466782336489967 absolute error = 2.0e-30 relative error = 3.2967400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.406 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.405 y[1] (analytic) = 6.0965944423445063587480033653201 y[1] (numeric) = 6.0965944423445063587480033653181 absolute error = 2.0e-30 relative error = 3.2805200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.405 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.404 y[1] (analytic) = 6.1268127707285393065673306089439 y[1] (numeric) = 6.1268127707285393065673306089419 absolute error = 2.0e-30 relative error = 3.2643400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.404 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.403 y[1] (analytic) = 6.1572563265808755618496398005049 y[1] (numeric) = 6.1572563265808755618496398005029 absolute error = 2.0e-30 relative error = 3.2482000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.403 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.402 y[1] (analytic) = 6.1879273537328671761393521240061 y[1] (numeric) = 6.1879273537328671761393521240041 absolute error = 2.0e-30 relative error = 3.2321000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.402 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.401 y[1] (analytic) = 6.2188281240283081056205768584968 y[1] (numeric) = 6.2188281240283081056205768584948 absolute error = 2.0e-30 relative error = 3.2160400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.401 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.4 y[1] (analytic) = 6.2499609377441390991306304335598 y[1] (numeric) = 6.2499609377441390991306304335578 absolute error = 2.0e-30 relative error = 3.2000200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.4 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.399 y[1] (analytic) = 6.2813281240185424806221027374028 y[1] (numeric) = 6.2813281240185424806221027374008 absolute error = 2.0e-30 relative error = 3.1840400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.399 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.398 y[1] (analytic) = 6.3129320412865755500142040970929 y[1] (numeric) = 6.3129320412865755500142040970909 absolute error = 2.0e-30 relative error = 3.1681000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.398 Order of pole = 1 TOP MAIN SOLVE Loop memory used=267.0MB, alloc=4.5MB, time=15.70 x[1] = -0.397 y[1] (analytic) = 6.3447750777234947021128101008819 y[1] (numeric) = 6.3447750777234947021128101008799 absolute error = 2.0e-30 relative error = 3.1522000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.397 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.396 y[1] (analytic) = 6.3768596516959258243685314729908 y[1] (numeric) = 6.3768596516959258243685314729888 absolute error = 2.0e-30 relative error = 3.1363400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.396 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.395 y[1] (analytic) = 6.4091882122210400830630792303847 y[1] (numeric) = 6.4091882122210400830630792303827 absolute error = 2.0e-30 relative error = 3.1205200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.395 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.394 y[1] (analytic) = 6.4417632394338978465185490572479 y[1] (numeric) = 6.441763239433897846518549057246 absolute error = 1.9e-30 relative error = 2.9495030000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.394 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.393 y[1] (analytic) = 6.47458724506312722563936549045 y[1] (numeric) = 6.474587245063127225639365490448 absolute error = 2.0e-30 relative error = 3.0890000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.393 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.392 y[1] (analytic) = 6.5076627729151075391273224221521 y[1] (numeric) = 6.5076627729151075391273224221501 absolute error = 2.0e-30 relative error = 3.0733000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.392 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.391 y[1] (analytic) = 6.5409923993668319357412906686202 y[1] (numeric) = 6.5409923993668319357412906686183 absolute error = 1.9e-30 relative error = 2.9047580000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.391 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.39 y[1] (analytic) = 6.5745787338676274317723091892887 y[1] (numeric) = 6.5745787338676274317723091892868 absolute error = 1.9e-30 relative error = 2.8899190000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.39 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.389 y[1] (analytic) = 6.6084244194499147513249890960997 y[1] (numeric) = 6.6084244194499147513249890960978 absolute error = 1.9e-30 relative error = 2.8751180000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.389 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.388 y[1] (analytic) = 6.6425321332491945929788435351556 y[1] (numeric) = 6.6425321332491945929788435351537 absolute error = 1.9e-30 relative error = 2.8603550000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.388 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.387 y[1] (analytic) = 6.6769045870334512919810375909728 y[1] (numeric) = 6.6769045870334512919810375909709 absolute error = 1.9e-30 relative error = 2.8456300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.387 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.386 y[1] (analytic) = 6.7115445277421693054222568239629 y[1] (numeric) = 6.711544527742169305422256823961 absolute error = 1.9e-30 relative error = 2.8309430000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.386 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.385 y[1] (analytic) = 6.7464547380351625220946392670652 y[1] (numeric) = 6.7464547380351625220946392670633 absolute error = 1.9e-30 relative error = 2.8162940000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.385 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.384 y[1] (analytic) = 6.7816380368514210922506222152899 y[1] (numeric) = 6.781638036851421092250622215288 absolute error = 1.9e-30 relative error = 2.8016830000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.384 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.383 y[1] (analytic) = 6.8170972799781852887040698070761 y[1] (numeric) = 6.8170972799781852887040698070743 absolute error = 1.8e-30 relative error = 2.6404200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.383 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.382 y[1] (analytic) = 6.8528353606304608531780023984924 y[1] (numeric) = 6.8528353606304608531780023984905 absolute error = 1.9e-30 relative error = 2.7725750000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.382 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.381 y[1] (analytic) = 6.8888552100411953541560463482179 y[1] (numeric) = 6.888855210041195354156046348216 absolute error = 1.9e-30 relative error = 2.7580780000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.381 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.38 y[1] (analytic) = 6.9251597980623402885021571872771 y[1] (numeric) = 6.9251597980623402885021571872752 absolute error = 1.9e-30 relative error = 2.7436190000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.38 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.379 y[1] (analytic) = 6.9617521337770290026593893151028 y[1] (numeric) = 6.9617521337770290026593893151009 absolute error = 1.9e-30 relative error = 2.7291980000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.379 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.378 y[1] (analytic) = 6.9986352661231059943311054344403 y[1] (numeric) = 6.9986352661231059943311054344384 absolute error = 1.9e-30 relative error = 2.7148150000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.378 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.377 y[1] (analytic) = 7.0358122845282487863223809188771 y[1] (numeric) = 7.0358122845282487863223809188752 absolute error = 1.9e-30 relative error = 2.7004700000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.377 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.376 y[1] (analytic) = 7.0732863195569293449429539458328 y[1] (numeric) = 7.0732863195569293449429539458309 absolute error = 1.9e-30 relative error = 2.6861630000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.376 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.375 y[1] (analytic) = 7.1110605435694679504501301324079 y[1] (numeric) = 7.1110605435694679504501301324061 absolute error = 1.8e-30 relative error = 2.5312680000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.375 Order of pole = 1 TOP MAIN SOLVE Loop memory used=270.8MB, alloc=4.5MB, time=15.93 x[1] = -0.374 y[1] (analytic) = 7.1491381713934385209862951021254 y[1] (numeric) = 7.1491381713934385209862951021236 absolute error = 1.8e-30 relative error = 2.5177860000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.374 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.373 y[1] (analytic) = 7.1875224610076906490332782289945 y[1] (numeric) = 7.1875224610076906490332782289926 absolute error = 1.9e-30 relative error = 2.6434700000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.373 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.372 y[1] (analytic) = 7.2262167142392600354084618997724 y[1] (numeric) = 7.2262167142392600354084618997705 absolute error = 1.9e-30 relative error = 2.6293150000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.372 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.371 y[1] (analytic) = 7.2652242774734456052658345563128 y[1] (numeric) = 7.2652242774734456052658345563109 absolute error = 1.9e-30 relative error = 2.6151980000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.371 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.37 y[1] (analytic) = 7.3045485423773383686021285454452 y[1] (numeric) = 7.3045485423773383686021285454434 absolute error = 1.8e-30 relative error = 2.4642180000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.37 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.369 y[1] (analytic) = 7.3441929466370940497348746346264 y[1] (numeric) = 7.3441929466370940497348746346246 absolute error = 1.8e-30 relative error = 2.4509160000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.369 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.368 y[1] (analytic) = 7.3841609747092486616208233339487 y[1] (numeric) = 7.3841609747092486616208233339469 absolute error = 1.8e-30 relative error = 2.4376500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.368 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.367 y[1] (analytic) = 7.4244561585863835474051525725741 y[1] (numeric) = 7.4244561585863835474051525725723 absolute error = 1.8e-30 relative error = 2.4244200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.367 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.366 y[1] (analytic) = 7.4650820785774539591062803735527 y[1] (numeric) = 7.4650820785774539591062803735509 absolute error = 1.8e-30 relative error = 2.4112260000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.366 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.365 y[1] (analytic) = 7.5060423641031029979133202227793 y[1] (numeric) = 7.5060423641031029979133202227775 absolute error = 1.8e-30 relative error = 2.3980680000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.365 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.364 y[1] (analytic) = 7.5473406945062907084688709933055 y[1] (numeric) = 7.5473406945062907084688709933037 absolute error = 1.8e-30 relative error = 2.3849460000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.364 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.363 y[1] (analytic) = 7.5889807998785763072019427790848 y[1] (numeric) = 7.588980799878576307201942779083 absolute error = 1.8e-30 relative error = 2.3718600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.363 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.362 y[1] (analytic) = 7.6309664619023999389522683047808 y[1] (numeric) = 7.630966461902399938952268304779 absolute error = 1.8e-30 relative error = 2.3588100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.362 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.361 y[1] (analytic) = 7.6733015147097190036985313300901 y[1] (numeric) = 7.6733015147097190036985313300883 absolute error = 1.8e-30 relative error = 2.3457960000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.361 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.36 y[1] (analytic) = 7.7159898457573629833103139636268 y[1] (numeric) = 7.715989845757362983310313963625 absolute error = 1.8e-30 relative error = 2.3328180000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.36 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.359 y[1] (analytic) = 7.7590353967194798342670039260719 y[1] (numeric) = 7.7590353967194798342670039260701 absolute error = 1.8e-30 relative error = 2.3198760000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.359 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.358 y[1] (analytic) = 7.8024421643974564038544064292123 y[1] (numeric) = 7.8024421643974564038544064292105 absolute error = 1.8e-30 relative error = 2.3069700000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.358 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.357 y[1] (analytic) = 7.8462142016477049823460180462927 y[1] (numeric) = 7.8462142016477049823460180462908 absolute error = 1.9e-30 relative error = 2.4215500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.357 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.356 y[1] (analytic) = 7.8903556183277180302516234406685 y[1] (numeric) = 7.8903556183277180302516234406666 absolute error = 1.9e-30 relative error = 2.4080030000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.356 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.355 y[1] (analytic) = 7.9348705822608033262977480837288 y[1] (numeric) = 7.9348705822608033262977480837269 absolute error = 1.9e-30 relative error = 2.3944940000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.355 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.354 y[1] (analytic) = 7.979763320219922277105261057957 y[1] (numeric) = 7.9797633202199222771052610579552 absolute error = 1.8e-30 relative error = 2.2557060000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.354 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.353 y[1] (analytic) = 8.0250381189310649225583821523152 y[1] (numeric) = 8.0250381189310649225583821523134 absolute error = 1.8e-30 relative error = 2.2429800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.353 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.352 y[1] (analytic) = 8.0706993260966062709333763770631 y[1] (numeric) = 8.0706993260966062709333763770612 absolute error = 1.9e-30 relative error = 2.3541950000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.352 Order of pole = 1 TOP MAIN SOLVE Loop memory used=274.6MB, alloc=4.5MB, time=16.16 x[1] = -0.351 y[1] (analytic) = 8.1167513514391000146101524325904 y[1] (numeric) = 8.1167513514391000146101524325885 absolute error = 1.9e-30 relative error = 2.3408380000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.351 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.35 y[1] (analytic) = 8.1631986677659774205924849593065 y[1] (numeric) = 8.1631986677659774205924849593046 absolute error = 1.9e-30 relative error = 2.3275190000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.35 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.349 y[1] (analytic) = 8.2100458120556312704224889574884 y[1] (numeric) = 8.2100458120556312704224889574865 absolute error = 1.9e-30 relative error = 2.3142380000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.349 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.348 y[1] (analytic) = 8.2572973865653771520581313736014 y[1] (numeric) = 8.2572973865653771520581313735995 absolute error = 1.9e-30 relative error = 2.3009950000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.348 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.347 y[1] (analytic) = 8.3049580599617971929241757329125 y[1] (numeric) = 8.3049580599617971929241757329106 absolute error = 1.9e-30 relative error = 2.2877900000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.347 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.346 y[1] (analytic) = 8.3530325684739844800654877753368 y[1] (numeric) = 8.3530325684739844800654877753349 absolute error = 1.9e-30 relative error = 2.2746230000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.346 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.345 y[1] (analytic) = 8.4015257170702199519432728983583 y[1] (numeric) = 8.4015257170702199519432728983564 absolute error = 1.9e-30 relative error = 2.2614940000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.345 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.344 y[1] (analytic) = 8.4504423806586274791485334257248 y[1] (numeric) = 8.4504423806586274791485334257229 absolute error = 1.9e-30 relative error = 2.2484030000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.344 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.343 y[1] (analytic) = 8.4997875053123671908202294942626 y[1] (numeric) = 8.4997875053123671908202294942607 absolute error = 1.9e-30 relative error = 2.2353500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.343 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.342 y[1] (analytic) = 8.5495661095199418629504552643953 y[1] (numeric) = 8.5495661095199418629504552643934 absolute error = 1.9e-30 relative error = 2.2223350000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.342 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.341 y[1] (analytic) = 8.5997832854612063775992844980306 y[1] (numeric) = 8.5997832854612063775992844980287 absolute error = 1.9e-30 relative error = 2.2093580000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.341 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.34 y[1] (analytic) = 8.6504442003096859023710867553049 y[1] (numeric) = 8.6504442003096859023710867553029 absolute error = 2.0e-30 relative error = 2.3120200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.34 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.339 y[1] (analytic) = 8.7015540975618245418631767633699 y[1] (numeric) = 8.701554097561824541863176763368 absolute error = 1.9e-30 relative error = 2.1835180000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.339 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.338 y[1] (analytic) = 8.7531182983938027922447371876231 y[1] (numeric) = 8.7531182983938027922447371876212 absolute error = 1.9e-30 relative error = 2.1706550000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.338 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.337 y[1] (analytic) = 8.8051422030465792022541164039799 y[1] (numeric) = 8.805142203046579202254116403978 absolute error = 1.9e-30 relative error = 2.1578300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.337 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.336 y[1] (analytic) = 8.8576312922398292248686856160925 y[1] (numeric) = 8.8576312922398292248686856160906 absolute error = 1.9e-30 relative error = 2.1450430000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.336 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.335 y[1] (analytic) = 8.9105911286154723504357279061893 y[1] (numeric) = 8.9105911286154723504357279061874 absolute error = 1.9e-30 relative error = 2.1322940000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.335 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.334 y[1] (analytic) = 8.9640273582114972614896420663876 y[1] (numeric) = 8.9640273582114972614896420663857 absolute error = 1.9e-30 relative error = 2.1195830000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.334 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.333 y[1] (analytic) = 9.017945711966813959779962124628 y[1] (numeric) = 9.0179457119668139597799621246261 absolute error = 1.9e-30 relative error = 2.1069100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.333 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.332 y[1] (analytic) = 9.072352007257881605806305284645 y[1] (numeric) = 9.0723520072578816058063052846431 absolute error = 1.9e-30 relative error = 2.0942750000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.332 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.331 y[1] (analytic) = 9.1272521494678811996860225260583 y[1] (numeric) = 9.1272521494678811996860225260564 absolute error = 1.9e-30 relative error = 2.0816780000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.331 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.33 y[1] (analytic) = 9.1826521335892232394560196876062 y[1] (numeric) = 9.1826521335892232394560196876043 absolute error = 1.9e-30 relative error = 2.0691190000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.33 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.329 y[1] (analytic) = 9.2385580458602021396500434212228 y[1] (numeric) = 9.2385580458602021396500434212209 absolute error = 1.9e-30 relative error = 2.0565980000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.329 Order of pole = 1 TOP MAIN SOLVE Loop memory used=278.4MB, alloc=4.5MB, time=16.39 x[1] = -0.328 y[1] (analytic) = 9.2949760654366315006738857647442 y[1] (numeric) = 9.2949760654366315006738857647422 absolute error = 2.0e-30 relative error = 2.1517000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.328 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.327 y[1] (analytic) = 9.3519124660993173103899747498363 y[1] (numeric) = 9.3519124660993173103899747498344 absolute error = 1.9e-30 relative error = 2.0316700000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.327 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.326 y[1] (analytic) = 9.4093736179982498565070523255267 y[1] (numeric) = 9.4093736179982498565070523255247 absolute error = 2.0e-30 relative error = 2.1255400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.326 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.325 y[1] (analytic) = 9.467365989434419555791187775737 y[1] (numeric) = 9.467365989434419555791187775735 absolute error = 2.0e-30 relative error = 2.1125200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.325 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.324 y[1] (analytic) = 9.5258961486801870886003600788744 y[1] (numeric) = 9.5258961486801870886003600788724 absolute error = 2.0e-30 relative error = 2.0995400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.324 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.323 y[1] (analytic) = 9.5849707658391641905492188248826 y[1] (numeric) = 9.5849707658391641905492188248806 absolute error = 2.0e-30 relative error = 2.0866000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.323 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.322 y[1] (analytic) = 9.6445966147465882239475333944158 y[1] (numeric) = 9.6445966147465882239475333944138 absolute error = 2.0e-30 relative error = 2.0737000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.322 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.321 y[1] (analytic) = 9.7047805749112012577395625084917 y[1] (numeric) = 9.7047805749112012577395625084897 absolute error = 2.0e-30 relative error = 2.0608400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.321 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.32 y[1] (analytic) = 9.7655296334996728547572777609594 y[1] (numeric) = 9.7655296334996728547572777609574 absolute error = 2.0e-30 relative error = 2.0480200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.32 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.319 y[1] (analytic) = 9.8268508873646351290265521510977 y[1] (numeric) = 9.8268508873646351290265521510957 absolute error = 2.0e-30 relative error = 2.0352400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.319 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.318 y[1] (analytic) = 9.8887515451174289245982694684796 y[1] (numeric) = 9.8887515451174289245982694684776 absolute error = 2.0e-30 relative error = 2.0225000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.318 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.317 y[1] (analytic) = 9.9512389292466912130560254751717 y[1] (numeric) = 9.9512389292466912130560254751697 absolute error = 2.0e-30 relative error = 2.0098000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.317 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.316 y[1] (analytic) = 10.014320478283946042841263006099 y[1] (numeric) = 10.014320478283946042841263006097 absolute error = 2e-30 relative error = 1.9971399999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.316 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.315 y[1] (analytic) = 10.078003749017394634470804023139 y[1] (numeric) = 10.078003749017394634470804023137 absolute error = 2e-30 relative error = 1.9845200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.315 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.314 y[1] (analytic) = 10.14229641875513453756199478686 y[1] (numeric) = 10.142296418755134537561994786858 absolute error = 2e-30 relative error = 1.9719399999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.314 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.313 y[1] (analytic) = 10.207206287639073185669082372155 y[1] (numeric) = 10.207206287639073185669082372153 absolute error = 2e-30 relative error = 1.9594000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.313 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.312 y[1] (analytic) = 10.272741281010837742051466433818 y[1] (numeric) = 10.272741281010837742051466433816 absolute error = 2e-30 relative error = 1.9469000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.312 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.311 y[1] (analytic) = 10.338909451831020863919273795 y[1] (numeric) = 10.338909451831020863919273794998 absolute error = 2e-30 relative error = 1.9344400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.311 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.31 y[1] (analytic) = 10.405718983153140966275064775601 y[1] (numeric) = 10.405718983153140966275064775599 absolute error = 2e-30 relative error = 1.9220199999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.31 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.309 y[1] (analytic) = 10.473178190653735782660606187554 y[1] (numeric) = 10.473178190653735782660606187552 absolute error = 2e-30 relative error = 1.9096399999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.309 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.308 y[1] (analytic) = 10.541295525220049544088968534233 y[1] (numeric) = 10.541295525220049544088968534231 absolute error = 2e-30 relative error = 1.8973000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.308 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.307 y[1] (analytic) = 10.610079575596816976127320954907 y[1] (numeric) = 10.610079575596816976127320954905 absolute error = 2e-30 relative error = 1.8850000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.307 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.306 y[1] (analytic) = 10.679539071093691596270704956374 y[1] (numeric) = 10.679539071093691596270704956372 absolute error = 2e-30 relative error = 1.8727400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.306 Order of pole = 1 TOP MAIN SOLVE Loop memory used=282.2MB, alloc=4.5MB, time=16.61 x[1] = -0.305 y[1] (analytic) = 10.749682884354911530109861759078 y[1] (numeric) = 10.749682884354911530109861759076 absolute error = 2e-30 relative error = 1.8605200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.305 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.304 y[1] (analytic) = 10.820520034192843308049384853436 y[1] (numeric) = 10.820520034192843308049384853434 absolute error = 2e-30 relative error = 1.8483400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.304 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.303 y[1] (analytic) = 10.892059688487092909269142794903 y[1] (numeric) = 10.8920596884870929092691427949 absolute error = 3e-30 relative error = 2.7542999999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.303 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.302 y[1] (analytic) = 10.964311167150923743215832465325 y[1] (numeric) = 10.964311167150923743215832465323 absolute error = 2e-30 relative error = 1.8241000000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.302 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.301 y[1] (analytic) = 11.037283945166773360411469945476 y[1] (numeric) = 11.037283945166773360411469945473 absolute error = 3e-30 relative error = 2.7180600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.301 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.3 y[1] (analytic) = 11.110987655692714525394162287086 y[1] (numeric) = 11.110987655692714525394162287083 absolute error = 3e-30 relative error = 2.7000299999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.3 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.299 y[1] (analytic) = 11.185432093241761929263327442339 y[1] (numeric) = 11.185432093241761929263327442336 absolute error = 3e-30 relative error = 2.6820600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.299 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.298 y[1] (analytic) = 11.260627216935983334271718934745 y[1] (numeric) = 11.260627216935983334271718934742 absolute error = 3e-30 relative error = 2.6641499999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.298 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.297 y[1] (analytic) = 11.336583153837433397573971205079 y[1] (numeric) = 11.336583153837433397573971205076 absolute error = 3e-30 relative error = 2.6463000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.297 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.296 y[1] (analytic) = 11.413310202357989887807160710821 y[1] (numeric) = 11.413310202357989887807160710818 absolute error = 3e-30 relative error = 2.6285100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.296 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.295 y[1] (analytic) = 11.490818835750235561786132879829 y[1] (numeric) = 11.490818835750235561786132879826 absolute error = 3e-30 relative error = 2.6107800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.295 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.294 y[1] (analytic) = 11.569119705681594687460231151012 y[1] (numeric) = 11.569119705681594687460231151009 absolute error = 3e-30 relative error = 2.5931099999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.294 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.293 y[1] (analytic) = 11.6482236458940011648223645894 y[1] (numeric) = 11.648223645894001164822364589397 absolute error = 3e-30 relative error = 2.5755000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.293 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.292 y[1] (analytic) = 11.728141675951445493461561015657 y[1] (numeric) = 11.728141675951445493461561015654 absolute error = 3e-30 relative error = 2.5579500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.292 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.291 y[1] (analytic) = 11.808885005077820552183462837439 y[1] (numeric) = 11.808885005077820552183462837436 absolute error = 3e-30 relative error = 2.5404600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.291 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.29 y[1] (analytic) = 11.890465036087561384525748802036 y[1] (numeric) = 11.890465036087561384525748802033 absolute error = 3e-30 relative error = 2.5230299999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.29 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.289 y[1] (analytic) = 11.972893369411652019827111419746 y[1] (numeric) = 11.972893369411652019827111419743 absolute error = 3e-30 relative error = 2.5056599999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.289 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.288 y[1] (analytic) = 12.056181807221652902525770088613 y[1] (numeric) = 12.05618180722165290252577008861 absolute error = 3e-30 relative error = 2.4883500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.288 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.287 y[1] (analytic) = 12.140342357654485856501153332524 y[1] (numeric) = 12.140342357654485856501153332521 absolute error = 3e-30 relative error = 2.4711000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.287 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.286 y[1] (analytic) = 12.225387239140799784833184591122 y[1] (numeric) = 12.225387239140799784833184591119 absolute error = 3e-30 relative error = 2.4539100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.286 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.285 y[1] (analytic) = 12.311328884839829611208233816758 y[1] (numeric) = 12.311328884839829611208233816755 absolute error = 3e-30 relative error = 2.4367800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.285 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.284 y[1] (analytic) = 12.398179947183753424997210409512 y[1] (numeric) = 12.398179947183753424997210409509 absolute error = 3e-30 relative error = 2.4197100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.284 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.283 y[1] (analytic) = 12.485953302534648520414533649644 y[1] (numeric) = 12.485953302534648520414533649641 absolute error = 3e-30 relative error = 2.4027000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.283 Order of pole = 1 TOP MAIN SOLVE Loop memory used=286.1MB, alloc=4.5MB, time=16.84 x[1] = -0.282 y[1] (analytic) = 12.574662055957246149009745363093 y[1] (numeric) = 12.57466205595724614900974536309 absolute error = 3e-30 relative error = 2.3857500000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.282 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.281 y[1] (analytic) = 12.664319546110787467389377168765 y[1] (numeric) = 12.664319546110787467389377168761 absolute error = 4e-30 relative error = 3.1584799999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.281 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.28 y[1] (analytic) = 12.754939350263389497582938993125 y[1] (numeric) = 12.754939350263389497582938993121 absolute error = 4e-30 relative error = 3.1360400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.28 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.279 y[1] (analytic) = 12.846535289432440070912874797667 y[1] (numeric) = 12.846535289432440070912874797663 absolute error = 4e-30 relative error = 3.1136800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.279 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.278 y[1] (analytic) = 12.939121433654654848935757262082 y[1] (numeric) = 12.939121433654654848935757262078 absolute error = 4e-30 relative error = 3.0914000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.278 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.277 y[1] (analytic) = 13.032712107389547764889873582693 y[1] (numeric) = 13.032712107389547764889873582689 absolute error = 4e-30 relative error = 3.0691999999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.277 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.276 y[1] (analytic) = 13.127321895060188770888850965515 y[1] (numeric) = 13.127321895060188770888850965511 absolute error = 4e-30 relative error = 3.0470799999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.276 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.275 y[1] (analytic) = 13.222965646735249781821066828868 y[1] (numeric) = 13.222965646735249781821066828865 absolute error = 3e-30 relative error = 2.2687800000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.275 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.274 y[1] (analytic) = 13.319658483956471356074430251608 y[1] (numeric) = 13.319658483956471356074430251605 absolute error = 3e-30 relative error = 2.2523100000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.274 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.273 y[1] (analytic) = 13.417415805715819133234938950758 y[1] (numeric) = 13.417415805715819133234938950755 absolute error = 3e-30 relative error = 2.2359000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.273 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.272 y[1] (analytic) = 13.516253294586740555518010407515 y[1] (numeric) = 13.516253294586740555518010407512 absolute error = 3e-30 relative error = 2.2195500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.272 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.271 y[1] (analytic) = 13.616186923014079137278396557828 y[1] (numeric) = 13.616186923014079137278396557825 absolute error = 3e-30 relative error = 2.2032600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.271 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.27 y[1] (analytic) = 13.717232959767355729002345646836 y[1] (numeric) = 13.717232959767355729002345646833 absolute error = 3e-30 relative error = 2.1870300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.27 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.269 y[1] (analytic) = 13.819407976562284071750366214311 y[1] (numeric) = 13.819407976562284071750366214308 absolute error = 3e-30 relative error = 2.1708600000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.269 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.268 y[1] (analytic) = 13.922728854855551688130873651236 y[1] (numeric) = 13.922728854855551688130873651232 absolute error = 4e-30 relative error = 2.8729999999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.268 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.267 y[1] (analytic) = 14.02721279281806705007714967036 y[1] (numeric) = 14.027212792818067050077149670357 absolute error = 3e-30 relative error = 2.1387000000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.267 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.266 y[1] (analytic) = 14.132877312492050256511723221731 y[1] (numeric) = 14.132877312492050256511723221727 absolute error = 4e-30 relative error = 2.8302799999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.266 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.265 y[1] (analytic) = 14.23974026713752741150001423974 y[1] (numeric) = 14.239740267137527411500014239737 absolute error = 3e-30 relative error = 2.1067800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.265 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.264 y[1] (analytic) = 14.347819848773978793922263512059 y[1] (numeric) = 14.347819848773978793922263512056 absolute error = 3e-30 relative error = 2.0909100000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.264 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.263 y[1] (analytic) = 14.457134595923088043949689171606 y[1] (numeric) = 14.457134595923088043949689171603 absolute error = 3e-30 relative error = 2.0751000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.263 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.262 y[1] (analytic) = 14.567703401558744263966785636244 y[1] (numeric) = 14.567703401558744263966785636241 absolute error = 3e-30 relative error = 2.0593500000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.262 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.261 y[1] (analytic) = 14.679545521270661460321188456005 y[1] (numeric) = 14.679545521270661460321188456002 absolute error = 3e-30 relative error = 2.0436600000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.261 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.26 y[1] (analytic) = 14.792680581648200470407242496413 y[1] (numeric) = 14.792680581648200470407242496409 absolute error = 4e-30 relative error = 2.7040400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.26 Order of pole = 1 TOP MAIN SOLVE Loop memory used=289.9MB, alloc=4.5MB, time=17.07 x[1] = -0.259 y[1] (analytic) = 14.907128588891207775558271965654 y[1] (numeric) = 14.90712858889120777555827196565 absolute error = 4e-30 relative error = 2.6832800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.259 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.258 y[1] (analytic) = 15.022909937654923758732066401262 y[1] (numeric) = 15.022909937654923758732066401258 absolute error = 4e-30 relative error = 2.6626000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.258 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.257 y[1] (analytic) = 15.140045420136260408781226343679 y[1] (numeric) = 15.140045420136260408781226343675 absolute error = 4e-30 relative error = 2.6420000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.257 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.256 y[1] (analytic) = 15.258556235409005599890138395105 y[1] (numeric) = 15.258556235409005599890138395101 absolute error = 4e-30 relative error = 2.6214800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.256 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.255 y[1] (analytic) = 15.37846399901577830406299018854 y[1] (numeric) = 15.378463999015778304062990188536 absolute error = 4e-30 relative error = 2.6010400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.255 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.254 y[1] (analytic) = 15.499790752824836864702326518592 y[1] (numeric) = 15.499790752824836864702326518588 absolute error = 4e-30 relative error = 2.5806800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.254 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.253 y[1] (analytic) = 15.622558975160131229495391345102 y[1] (numeric) = 15.622558975160131229495391345098 absolute error = 4e-30 relative error = 2.5604000000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.253 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.252 y[1] (analytic) = 15.746791591213290292102984017007 y[1] (numeric) = 15.746791591213290292102984017002 absolute error = 5e-30 relative error = 3.1752499999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.252 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.251 y[1] (analytic) = 15.872511983746547728643535125869 y[1] (numeric) = 15.872511983746547728643535125864 absolute error = 5e-30 relative error = 3.1501000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.251 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.25 y[1] (analytic) = 15.999744004095934465048559223052 y[1] (numeric) = 15.999744004095934465048559223047 absolute error = 5e-30 relative error = 3.1250500000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.25 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.249 y[1] (analytic) = 16.128511983484403728911970581594 y[1] (numeric) = 16.128511983484403728911970581589 absolute error = 5e-30 relative error = 3.1001000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.249 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.248 y[1] (analytic) = 16.258840744654906105194699617917 y[1] (numeric) = 16.258840744654906105194699617912 absolute error = 5e-30 relative error = 3.0752500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.248 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.247 y[1] (analytic) = 16.390755613833797738075725290936 y[1] (numeric) = 16.390755613833797738075725290931 absolute error = 5e-30 relative error = 3.0505000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.247 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.246 y[1] (analytic) = 16.524282433035345440124262603896 y[1] (numeric) = 16.524282433035345440124262603892 absolute error = 4e-30 relative error = 2.4206800000000000000000000000001e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.246 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.245 y[1] (analytic) = 16.659447572718488654916202978709 y[1] (numeric) = 16.659447572718488654916202978705 absolute error = 4e-30 relative error = 2.4010400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.245 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.244 y[1] (analytic) = 16.79627794480743067336278280733 y[1] (numeric) = 16.796277944807430673362782807326 absolute error = 4e-30 relative error = 2.3814800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.244 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.243 y[1] (analytic) = 16.934801016088060965283657917019 y[1] (numeric) = 16.934801016088060965283657917016 absolute error = 3e-30 relative error = 1.7715000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.243 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.242 y[1] (analytic) = 17.075044821992657730726543157176 y[1] (numeric) = 17.075044821992657730726543157172 absolute error = 4e-30 relative error = 2.3426000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.242 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.241 y[1] (analytic) = 17.217037980785785613443063255398 y[1] (numeric) = 17.217037980785785613443063255394 absolute error = 4e-30 relative error = 2.3232799999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.241 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.24 y[1] (analytic) = 17.360809708164788805749900175344 y[1] (numeric) = 17.360809708164788805749900175341 absolute error = 3e-30 relative error = 1.7280300000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.24 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.239 y[1] (analytic) = 17.506389832288785406673435804068 y[1] (numeric) = 17.506389832288785406673435804065 absolute error = 3e-30 relative error = 1.7136600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.239 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.238 y[1] (analytic) = 17.653808809250595816047312207609 y[1] (numeric) = 17.653808809250595816047312207605 absolute error = 4e-30 relative error = 2.2658000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.238 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.237 y[1] (analytic) = 17.803097739006587146163432437244 y[1] (numeric) = 17.80309773900658714616343243724 absolute error = 4e-30 relative error = 2.2468000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.237 Order of pole = 1 TOP MAIN SOLVE Loop memory used=293.7MB, alloc=4.5MB, time=17.30 x[1] = -0.236 y[1] (analytic) = 17.954288381779988150169668025208 y[1] (numeric) = 17.954288381779988150169668025204 absolute error = 4e-30 relative error = 2.2278800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.236 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.235 y[1] (analytic) = 18.107413174953826096403867743454 y[1] (numeric) = 18.10741317495382609640386774345 absolute error = 4e-30 relative error = 2.2090400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.235 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.234 y[1] (analytic) = 18.262505250470259510199609182388 y[1] (numeric) = 18.262505250470259510199609182383 absolute error = 5e-30 relative error = 2.7378499999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.234 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.233 y[1] (analytic) = 18.419598452753729968686682630319 y[1] (numeric) = 18.419598452753729968686682630314 absolute error = 5e-30 relative error = 2.7144999999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.233 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.232 y[1] (analytic) = 18.57872735717603344170924291686 y[1] (numeric) = 18.578727357176033441709242916856 absolute error = 4e-30 relative error = 2.1530000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.232 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.231 y[1] (analytic) = 18.73992728908211836138075784266 y[1] (numeric) = 18.739927289082118361380757842655 absolute error = 5e-30 relative error = 2.6680999999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.231 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.23 y[1] (analytic) = 18.903234343396155082134553222056 y[1] (numeric) = 18.903234343396155082134553222052 absolute error = 4e-30 relative error = 2.1160400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.23 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.229 y[1] (analytic) = 19.068685404828191144502497997788 y[1] (numeric) = 19.068685404828191144502497997784 absolute error = 4e-30 relative error = 2.0976800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.229 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.228 y[1] (analytic) = 19.236318168702510339521015677599 y[1] (numeric) = 19.236318168702510339521015677595 absolute error = 4e-30 relative error = 2.0794000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.228 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.227 y[1] (analytic) = 19.406171162429652629536192509218 y[1] (numeric) = 19.406171162429652629536192509214 absolute error = 4e-30 relative error = 2.0612000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.227 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.226 y[1] (analytic) = 19.578283767644928245589991581338 y[1] (numeric) = 19.578283767644928245589991581334 absolute error = 4e-30 relative error = 2.0430800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.226 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.225 y[1] (analytic) = 19.752696243037174574329395962549 y[1] (numeric) = 19.752696243037174574329395962545 absolute error = 4e-30 relative error = 2.0250400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.225 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.224 y[1] (analytic) = 19.929449747892460689160372282121 y[1] (numeric) = 19.929449747892460689160372282117 absolute error = 4e-30 relative error = 2.0070800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.224 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.223 y[1] (analytic) = 20.108586366378443595415242308466 y[1] (numeric) = 20.108586366378443595415242308461 absolute error = 5e-30 relative error = 2.4865000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.223 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.222 y[1] (analytic) = 20.290149132596124581515674140205 y[1] (numeric) = 20.2901491325961245815156741402 absolute error = 5e-30 relative error = 2.4642500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.222 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.221 y[1] (analytic) = 20.474182056426845747512386880144 y[1] (numeric) = 20.474182056426845747512386880139 absolute error = 5e-30 relative error = 2.4421000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.221 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.22 y[1] (analytic) = 20.660730150203508191979504555691 y[1] (numeric) = 20.660730150203508191979504555686 absolute error = 5e-30 relative error = 2.4200500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.22 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.219 y[1] (analytic) = 20.849839456236186981360243526125 y[1] (numeric) = 20.84983945623618698136024352612 absolute error = 5e-30 relative error = 2.3981000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.219 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.218 y[1] (analytic) = 21.041557075223566543924250394529 y[1] (numeric) = 21.041557075223566543924250394524 absolute error = 5e-30 relative error = 2.3762500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.218 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.217 y[1] (analytic) = 21.235931195582926311318751327246 y[1] (numeric) = 21.23593119558292631131875132724 absolute error = 6e-30 relative error = 2.8254000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.217 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.216 y[1] (analytic) = 21.433011123732773217309299783527 y[1] (numeric) = 21.433011123732773217309299783521 absolute error = 6e-30 relative error = 2.7994199999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.216 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.215 y[1] (analytic) = 21.632847315363648163371262925626 y[1] (numeric) = 21.632847315363648163371262925621 absolute error = 5e-30 relative error = 2.3113000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.215 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.214 y[1] (analytic) = 21.835491407734131056619429220255 y[1] (numeric) = 21.835491407734131056619429220249 absolute error = 6e-30 relative error = 2.7478199999999999999999999999999e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.214 Order of pole = 1 TOP MAIN SOLVE Loop memory used=297.5MB, alloc=4.5MB, time=17.54 x[1] = -0.213 y[1] (analytic) = 22.040996253030636984791712585409 y[1] (numeric) = 22.040996253030636984791712585403 absolute error = 6e-30 relative error = 2.7222000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.213 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.212 y[1] (analytic) = 22.249415952831238179997775058405 y[1] (numeric) = 22.249415952831238179997775058399 absolute error = 6e-30 relative error = 2.6967000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.212 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.211 y[1] (analytic) = 22.460805893715466510938412470239 y[1] (numeric) = 22.460805893715466510938412470234 absolute error = 5e-30 relative error = 2.2261000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.211 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.21 y[1] (analytic) = 22.675222784063853427359923811251 y[1] (numeric) = 22.675222784063853427359923811246 absolute error = 5e-30 relative error = 2.2050500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.21 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.209 y[1] (analytic) = 22.892724692092852891351128611327 y[1] (numeric) = 22.892724692092852891351128611322 absolute error = 5e-30 relative error = 2.1841000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.209 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.208 y[1] (analytic) = 23.113371085172772448861666474055 y[1] (numeric) = 23.11337108517277244886166647405 absolute error = 5e-30 relative error = 2.1632500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.208 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.207 y[1] (analytic) = 23.337222870478413068844807467911 y[1] (numeric) = 23.337222870478413068844807467906 absolute error = 5e-30 relative error = 2.1425000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.207 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.206 y[1] (analytic) = 23.564342437024294837052572047977 y[1] (numeric) = 23.564342437024294837052572047972 absolute error = 5e-30 relative error = 2.1218500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.206 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.205 y[1] (analytic) = 23.794793699138628468091181649455 y[1] (numeric) = 23.79479369913862846809118164945 absolute error = 5e-30 relative error = 2.1013000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.205 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.204 y[1] (analytic) = 24.028642141432587644472210875363 y[1] (numeric) = 24.028642141432587644472210875358 absolute error = 5e-30 relative error = 2.0808500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.204 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.203 y[1] (analytic) = 24.265954865323950497452074739141 y[1] (numeric) = 24.265954865323950497452074739136 absolute error = 5e-30 relative error = 2.0605000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.203 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.202 y[1] (analytic) = 24.506800637176816566597230731528 y[1] (numeric) = 24.506800637176816566597230731523 absolute error = 5e-30 relative error = 2.0402500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.202 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.201 y[1] (analytic) = 24.751249938121875154695312113262 y[1] (numeric) = 24.751249938121875154695312113257 absolute error = 5e-30 relative error = 2.0201000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.201 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.2 y[1] (analytic) = 24.999375015624609384765380865478 y[1] (numeric) = 24.999375015624609384765380865474 absolute error = 4e-30 relative error = 1.6000400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.2 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.199 y[1] (analytic) = 25.251249936871875157820312105449 y[1] (numeric) = 25.251249936871875157820312105445 absolute error = 4e-30 relative error = 1.5840800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.199 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.198 y[1] (analytic) = 25.506950644050503762275219997449 y[1] (numeric) = 25.506950644050503762275219997445 absolute error = 4e-30 relative error = 1.5682000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.198 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.197 y[1] (analytic) = 25.766555011594949755217727389848 y[1] (numeric) = 25.766555011594949755217727389844 absolute error = 4e-30 relative error = 1.5524000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.197 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.196 y[1] (analytic) = 26.030142905484551110185594918916 y[1] (numeric) = 26.030142905484551110185594918912 absolute error = 4e-30 relative error = 1.5366800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.196 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.195 y[1] (analytic) = 26.297796244674696260453374007258 y[1] (numeric) = 26.297796244674696260453374007254 absolute error = 4e-30 relative error = 1.5210400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.195 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.194 y[1] (analytic) = 26.56959906475011292079602518798 y[1] (numeric) = 26.569599064750112920796025187976 absolute error = 4e-30 relative error = 1.5054800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.194 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.193 y[1] (analytic) = 26.845637583892617449664429530201 y[1] (numeric) = 26.845637583892617449664429530197 absolute error = 4e-30 relative error = 1.4900000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.193 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.192 y[1] (analytic) = 27.126000271260002712600027126 y[1] (numeric) = 27.126000271260002712600027125996 absolute error = 4e-30 relative error = 1.4746000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.192 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.191 y[1] (analytic) = 27.410777917877309358039581163313 y[1] (numeric) = 27.410777917877309358039581163309 absolute error = 4e-30 relative error = 1.4592800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.191 Order of pole = 1 TOP MAIN SOLVE Loop memory used=301.3MB, alloc=4.5MB, time=17.78 x[1] = -0.19 y[1] (analytic) = 27.700063710146533337026675161353 y[1] (numeric) = 27.700063710146533337026675161348 absolute error = 5e-30 relative error = 1.8050500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.19 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.189 y[1] (analytic) = 27.993953306085885448743071496557 y[1] (numeric) = 27.993953306085885448743071496552 absolute error = 5e-30 relative error = 1.7861000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.189 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.188 y[1] (analytic) = 28.292544914415051633894468807469 y[1] (numeric) = 28.292544914415051633894468807464 absolute error = 5e-30 relative error = 1.7672500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.188 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.187 y[1] (analytic) = 28.595939376608521589934229339434 y[1] (numeric) = 28.595939376608521589934229339429 absolute error = 5e-30 relative error = 1.7485000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.187 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.186 y[1] (analytic) = 28.904240252044974997832181981097 y[1] (numeric) = 28.904240252044974997832181981092 absolute error = 5e-30 relative error = 1.7298500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.186 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.185 y[1] (analytic) = 29.217553906386957283936188862268 y[1] (numeric) = 29.217553906386957283936188862264 absolute error = 4e-30 relative error = 1.3690400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.185 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.184 y[1] (analytic) = 29.535989603331659627255811205954 y[1] (numeric) = 29.53598960333165962725581120595 absolute error = 4e-30 relative error = 1.3542800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.184 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.183 y[1] (analytic) = 29.859659599880561361600477754554 y[1] (numeric) = 29.859659599880561361600477754549 absolute error = 5e-30 relative error = 1.6745000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.183 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.182 y[1] (analytic) = 30.188679245283018867924528301887 y[1] (numeric) = 30.188679245283018867924528301882 absolute error = 5e-30 relative error = 1.6562500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.182 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.181 y[1] (analytic) = 30.523167083816616812160429766193 y[1] (numeric) = 30.523167083816616812160429766188 absolute error = 5e-30 relative error = 1.6381000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.181 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.18 y[1] (analytic) = 30.863244961575260022838801271566 y[1] (numeric) = 30.863244961575260022838801271561 absolute error = 5e-30 relative error = 1.6200500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.18 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.179 y[1] (analytic) = 31.209038137444603957306035827976 y[1] (numeric) = 31.209038137444603957306035827971 absolute error = 5e-30 relative error = 1.6021000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.179 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.178 y[1] (analytic) = 31.560675398453526905475777181632 y[1] (numeric) = 31.560675398453526905475777181627 absolute error = 5e-30 relative error = 1.5842500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.178 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.177 y[1] (analytic) = 31.918289179699968081710820300032 y[1] (numeric) = 31.918289179699968081710820300027 absolute error = 5e-30 relative error = 1.5665000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.177 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.176 y[1] (analytic) = 32.282015689059624882977693127159 y[1] (numeric) = 32.282015689059624882977693127154 absolute error = 5e-30 relative error = 1.5488500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.176 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.175 y[1] (analytic) = 32.651995036896754391693332462613 y[1] (numeric) = 32.651995036896754391693332462609 absolute error = 4e-30 relative error = 1.2250400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.175 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.174 y[1] (analytic) = 33.028371371007695610529444793077 y[1] (numeric) = 33.028371371007695610529444793073 absolute error = 4e-30 relative error = 1.2110800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.174 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.173 y[1] (analytic) = 33.411293017039759438690277313732 y[1] (numeric) = 33.411293017039759438690277313728 absolute error = 4e-30 relative error = 1.1972000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.173 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.172 y[1] (analytic) = 33.800912624640865303363190806152 y[1] (numeric) = 33.800912624640865303363190806148 absolute error = 4e-30 relative error = 1.1834000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.172 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.171 y[1] (analytic) = 34.197387319608781889063675535189 y[1] (numeric) = 34.197387319608781889063675535185 absolute error = 4e-30 relative error = 1.1696800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.171 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.17 y[1] (analytic) = 34.600878862323103006816373135878 y[1] (numeric) = 34.600878862323103006816373135874 absolute error = 4e-30 relative error = 1.1560400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.17 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.169 y[1] (analytic) = 35.011553812758210209369091800294 y[1] (numeric) = 35.01155381275821020936909180029 absolute error = 4e-30 relative error = 1.1424800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.169 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.168 y[1] (analytic) = 35.429583702391496899911426040744 y[1] (numeric) = 35.42958370239149689991142604074 absolute error = 4e-30 relative error = 1.1290000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.168 Order of pole = 1 TOP MAIN SOLVE Loop memory used=305.1MB, alloc=4.6MB, time=18.03 x[1] = -0.167 y[1] (analytic) = 35.855145213338114019361778415203 y[1] (numeric) = 35.855145213338114019361778415199 absolute error = 4e-30 relative error = 1.1156000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.167 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.166 y[1] (analytic) = 36.288420365061508872518779257539 y[1] (numeric) = 36.288420365061508872518779257535 absolute error = 4e-30 relative error = 1.1022800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.166 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.165 y[1] (analytic) = 36.729596709028134871079115551311 y[1] (numeric) = 36.729596709028134871079115551307 absolute error = 4e-30 relative error = 1.0890400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.165 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.164 y[1] (analytic) = 37.178867531694984570769974346581 y[1] (numeric) = 37.178867531694984570769974346577 absolute error = 4e-30 relative error = 1.0758800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.164 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.163 y[1] (analytic) = 37.636432066240120436582611968385 y[1] (numeric) = 37.636432066240120436582611968381 absolute error = 4e-30 relative error = 1.0628000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.163 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.162 y[1] (analytic) = 38.10249571346923223471137359497 y[1] (numeric) = 38.102495713469232234711373594966 absolute error = 4e-30 relative error = 1.0498000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.162 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.161 y[1] (analytic) = 38.57727027235552812283002854718 y[1] (numeric) = 38.577270272355528122830028547176 absolute error = 4e-30 relative error = 1.0368800000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.161 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.16 y[1] (analytic) = 39.060974180696066559900003906097 y[1] (numeric) = 39.060974180696066559900003906093 absolute error = 4e-30 relative error = 1.0240400000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.16 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.159 y[1] (analytic) = 39.553832766395063681670753896053 y[1] (numeric) = 39.553832766395063681670753896048 absolute error = 5e-30 relative error = 1.2641000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.159 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.158 y[1] (analytic) = 40.056078509913879431203685159223 y[1] (numeric) = 40.056078509913879431203685159218 absolute error = 5e-30 relative error = 1.2482500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.158 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.157 y[1] (analytic) = 40.567951318458417849898580121704 y[1] (numeric) = 40.567951318458417849898580121699 absolute error = 5e-30 relative error = 1.2325000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.157 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.156 y[1] (analytic) = 41.08969881250770431852734519456 y[1] (numeric) = 41.089698812507704318527345194555 absolute error = 5e-30 relative error = 1.2168500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.156 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.155 y[1] (analytic) = 41.621576625322567218846249895946 y[1] (numeric) = 41.621576625322567218846249895941 absolute error = 5e-30 relative error = 1.2013000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.155 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.154 y[1] (analytic) = 42.16384871611080659442593919973 y[1] (numeric) = 42.163848716110806594425939199725 absolute error = 5e-30 relative error = 1.1858500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.154 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.153 y[1] (analytic) = 42.716787697565143101238786843229 y[1] (numeric) = 42.716787697565143101238786843224 absolute error = 5e-30 relative error = 1.1705000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.153 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.152 y[1] (analytic) = 43.280675178532785111447738584722 y[1] (numeric) = 43.280675178532785111447738584717 absolute error = 5e-30 relative error = 1.1552500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.152 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.151 y[1] (analytic) = 43.855802122620822734847820366634 y[1] (numeric) = 43.85580212262082273484782036663 absolute error = 4e-30 relative error = 9.1208000000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.151 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.15 y[1] (analytic) = 44.442469223590062663881605261988 y[1] (numeric) = 44.442469223590062663881605261984 absolute error = 4e-30 relative error = 9.0004000000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.15 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.149 y[1] (analytic) = 45.040987298441581839473921268354 y[1] (numeric) = 45.04098729844158183947392126835 absolute error = 4e-30 relative error = 8.8808000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.149 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.148 y[1] (analytic) = 45.651677699155443962565624286693 y[1] (numeric) = 45.651677699155443962565624286688 absolute error = 5e-30 relative error = 1.0952500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.148 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.147 y[1] (analytic) = 46.274872744099953725127255900046 y[1] (numeric) = 46.274872744099953725127255900042 absolute error = 4e-30 relative error = 8.6440000000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.147 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.146 y[1] (analytic) = 46.910916170192803865459492423887 y[1] (numeric) = 46.910916170192803865459492423883 absolute error = 4e-30 relative error = 8.5268000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.146 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.145 y[1] (analytic) = 47.560163606962807952059355084181 y[1] (numeric) = 47.560163606962807952059355084177 absolute error = 4e-30 relative error = 8.4104000000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.145 Order of pole = 1 TOP MAIN SOLVE Loop memory used=309.0MB, alloc=4.6MB, time=18.28 x[1] = -0.144 y[1] (analytic) = 48.222983073732941119737666972079 y[1] (numeric) = 48.222983073732941119737666972074 absolute error = 5e-30 relative error = 1.0368500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.144 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.143 y[1] (analytic) = 48.899755501222493887530562347188 y[1] (numeric) = 48.899755501222493887530562347183 absolute error = 5e-30 relative error = 1.0225000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.143 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.142 y[1] (analytic) = 49.590875278948673444086288122985 y[1] (numeric) = 49.59087527894867344408628812298 absolute error = 5e-30 relative error = 1.0082500000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.142 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.141 y[1] (analytic) = 50.296750829896388693290413439292 y[1] (numeric) = 50.296750829896388693290413439286 absolute error = 6e-30 relative error = 1.1929200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.141 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.14 y[1] (analytic) = 51.017805214019692872812611601449 y[1] (numeric) = 51.017805214019692872812611601443 absolute error = 6e-30 relative error = 1.1760600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.14 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.139 y[1] (analytic) = 51.754476762239933754269744332885 y[1] (numeric) = 51.754476762239933754269744332879 absolute error = 6e-30 relative error = 1.1593200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.139 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.138 y[1] (analytic) = 52.507219742714623260698346022578 y[1] (numeric) = 52.507219742714623260698346022572 absolute error = 6e-30 relative error = 1.1427000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.138 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.137 y[1] (analytic) = 53.276505061267980820458177943527 y[1] (numeric) = 53.276505061267980820458177943521 absolute error = 6e-30 relative error = 1.1262000000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.137 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.136 y[1] (analytic) = 54.062820997999675623074012001946 y[1] (numeric) = 54.06282099799967562307401200194 absolute error = 6e-30 relative error = 1.1098200000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.136 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.135 y[1] (analytic) = 54.866673982223197629759683967958 y[1] (numeric) = 54.866673982223197629759683967952 absolute error = 6e-30 relative error = 1.0935600000000000000000000000000e-29 % Correct digits = 30 h = 0.001 Complex estimate of poles used Radius of convergence = 0.135 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.134 y[1] (analytic) = 55.688589408030294592637968480258 y[1] (numeric) = 55.688589408030294592637968480253 absolute error = 5e-30 relative error = 8.9785000000000000000000000000001e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.134 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.133 y[1] (analytic) = 56.529112492933860938383267382702 y[1] (numeric) = 56.529112492933860938383267382697 absolute error = 5e-30 relative error = 8.8450000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.133 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.132 y[1] (analytic) = 57.38880918220946915351506456241 y[1] (numeric) = 57.388809182209469153515064562405 absolute error = 5e-30 relative error = 8.7125000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.132 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.131 y[1] (analytic) = 58.268267101736394359631744551917 y[1] (numeric) = 58.268267101736394359631744551912 absolute error = 5e-30 relative error = 8.5810000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.131 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.13 y[1] (analytic) = 59.168096562333589728418436778889 y[1] (numeric) = 59.168096562333589728418436778884 absolute error = 5e-30 relative error = 8.4505000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.13 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.129 y[1] (analytic) = 60.08893161879581781035933181108 y[1] (numeric) = 60.088931618795817810359331811076 absolute error = 4e-30 relative error = 6.6568000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.129 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.128 y[1] (analytic) = 61.031431187061336588342996643271 y[1] (numeric) = 61.031431187061336588342996643267 absolute error = 4e-30 relative error = 6.5540000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.128 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.127 y[1] (analytic) = 61.996280223186608803471791692498 y[1] (numeric) = 61.996280223186608803471791692494 absolute error = 4e-30 relative error = 6.4520000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.127 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.126 y[1] (analytic) = 62.984190968067015179190023304151 y[1] (numeric) = 62.984190968067015179190023304146 absolute error = 5e-30 relative error = 7.9385000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.126 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.125 y[1] (analytic) = 63.995904262127223857673108921029 y[1] (numeric) = 63.995904262127223857673108921024 absolute error = 5e-30 relative error = 7.8130000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.125 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.124 y[1] (analytic) = 65.032190934512583728945828184952 y[1] (numeric) = 65.032190934512583728945828184946 absolute error = 6e-30 relative error = 9.2261999999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.124 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.123 y[1] (analytic) = 66.093853271645736946463978849967 y[1] (numeric) = 66.093853271645736946463978849961 absolute error = 6e-30 relative error = 9.0780000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.123 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.122 y[1] (analytic) = 67.181726570372858582465569365133 y[1] (numeric) = 67.181726570372858582465569365127 absolute error = 6e-30 relative error = 8.9310000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.122 Order of pole = 1 TOP MAIN SOLVE Loop memory used=312.8MB, alloc=4.6MB, time=18.53 x[1] = -0.121 y[1] (analytic) = 68.29668078131402813823248190138 y[1] (numeric) = 68.296680781314028138232481901374 absolute error = 6e-30 relative error = 8.7851999999999999999999999999999e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.121 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.12 y[1] (analytic) = 69.439622248454968404971876952989 y[1] (numeric) = 69.439622248454968404971876952984 absolute error = 5e-30 relative error = 7.2005000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.12 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.119 y[1] (analytic) = 70.611495551475780257025843807372 y[1] (numeric) = 70.611495551475780257025843807366 absolute error = 6e-30 relative error = 8.4972000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.119 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.118 y[1] (analytic) = 71.813285457809694793536804308797 y[1] (numeric) = 71.813285457809694793536804308791 absolute error = 6e-30 relative error = 8.3550000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.118 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.117 y[1] (analytic) = 73.046018991964937910883856829803 y[1] (numeric) = 73.046018991964937910883856829797 absolute error = 6e-30 relative error = 8.2140000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.117 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.116 y[1] (analytic) = 74.31076763022962027197740952664 y[1] (numeric) = 74.310767630229620271977409526635 absolute error = 5e-30 relative error = 6.7285000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.116 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.115 y[1] (analytic) = 75.608649629517616815363677604718 y[1] (numeric) = 75.608649629517616815363677604713 absolute error = 5e-30 relative error = 6.6130000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.115 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.114 y[1] (analytic) = 76.940832499807647918750480880203 y[1] (numeric) = 76.940832499807647918750480880198 absolute error = 5e-30 relative error = 6.4985000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.114 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.113 y[1] (analytic) = 78.30853563038371182458888018794 y[1] (numeric) = 78.308535630383711824588880187935 absolute error = 5e-30 relative error = 6.3850000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.113 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.112 y[1] (analytic) = 79.713033080908728577122359505779 y[1] (numeric) = 79.713033080908728577122359505774 absolute error = 5e-30 relative error = 6.2725000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.112 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.111 y[1] (analytic) = 81.155656549261483525401720499919 y[1] (numeric) = 81.155656549261483525401720499914 absolute error = 5e-30 relative error = 6.1610000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.111 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.11 y[1] (analytic) = 82.63779852904718618296008594331 y[1] (numeric) = 82.637798529047186182960085943306 absolute error = 4e-30 relative error = 4.8404000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.11 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.109 y[1] (analytic) = 84.160915670762497895977108230938 y[1] (numeric) = 84.160915670762497895977108230933 absolute error = 5e-30 relative error = 5.9410000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.109 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.108 y[1] (analytic) = 85.726532361765966566652378911273 y[1] (numeric) = 85.726532361765966566652378911268 absolute error = 5e-30 relative error = 5.8325000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.108 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.107 y[1] (analytic) = 87.336244541484716157205240174672 y[1] (numeric) = 87.336244541484716157205240174668 absolute error = 4e-30 relative error = 4.5800000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.107 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.106 y[1] (analytic) = 88.991723769689418884043783928095 y[1] (numeric) = 88.99172376968941888404378392809 absolute error = 5e-30 relative error = 5.6185000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.106 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.105 y[1] (analytic) = 90.694721567204788681298748412842 y[1] (numeric) = 90.694721567204788681298748412838 absolute error = 4e-30 relative error = 4.4104000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.105 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.104 y[1] (analytic) = 92.447074050106314135157622261255 y[1] (numeric) = 92.447074050106314135157622261251 absolute error = 4e-30 relative error = 4.3268000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.104 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.103 y[1] (analytic) = 94.250706880301602262016965127238 y[1] (numeric) = 94.250706880301602262016965127234 absolute error = 4e-30 relative error = 4.2440000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.103 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.102 y[1] (analytic) = 96.107640557424315233061028351754 y[1] (numeric) = 96.10764055742431523306102835175 absolute error = 4e-30 relative error = 4.1620000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.102 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.101 y[1] (analytic) = 98.019996079200156831993726720251 y[1] (numeric) = 98.019996079200156831993726720247 absolute error = 4e-30 relative error = 4.0808000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.101 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.1 y[1] (analytic) = 99.990000999900009999000099990001 y[1] (numeric) = 99.990000999900009999000099989997 absolute error = 4e-30 relative error = 4.0004000000000000000000000000000e-30 % Correct digits = 31 h = 0.001 Complex estimate of poles used Radius of convergence = 0.1 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.099 y[1] (analytic) = 102.01999591920016323199347072026 y[1] (numeric) = 102.01999591920016323199347072026 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.001 Complex estimate of poles used Radius of convergence = 0.09901 Order of pole = 1 memory used=316.6MB, alloc=4.6MB, time=18.77 TOP MAIN SOLVE Loop x[1] = -0.097029798987374126469645396286037 y[1] (analytic) = 106.20466908855750153921261901801 y[1] (numeric) = 106.20466908855750153921261901801 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.00098015050886356545321862006290002 Complex estimate of poles used Radius of convergence = 0.09703 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.09605944946830740229330170565871 y[1] (analytic) = 108.36093664026888556204009360813 y[1] (numeric) = 108.36093664026888556204009360813 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.00097034951906672417634369062732678 Complex estimate of poles used Radius of convergence = 0.09606 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.095098802923934587549081187026178 y[1] (analytic) = 110.56098034089308282818269149123 y[1] (numeric) = 110.56098034089308282818269149124 absolute error = 1e-29 relative error = 9.0447823175653496582185962433461e-30 % Correct digits = 31 h = 0.00096064654437281474422051863253169 Complex estimate of poles used Radius of convergence = 0.0951 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.094147762319251204450668887883577 y[1] (analytic) = 112.80568882600773401172805842094 y[1] (numeric) = 112.80568882600773401172805842095 absolute error = 1e-29 relative error = 8.8648011497222169315911619377384e-30 % Correct digits = 31 h = 0.00095104060468338309841229914260074 Complex estimate of poles used Radius of convergence = 0.09415 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.093206231589549713670293611203683 y[1] (analytic) = 115.09596876598880115678209625775 y[1] (numeric) = 115.09596876598880115678209625775 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.00094153072970149078037527667989397 Complex estimate of poles used Radius of convergence = 0.09321 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.092274115630716008530718439043867 y[1] (analytic) = 117.43274523185766881636585946307 y[1] (numeric) = 117.43274523185766881636585946307 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.0009321159588337051395751721598158 Complex estimate of poles used Radius of convergence = 0.09228 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.091351320289622938837016709733364 y[1] (analytic) = 119.81696206854279286886526562072 y[1] (numeric) = 119.81696206854279286886526562073 absolute error = 1e-29 relative error = 8.3460637186572756139629292929899e-30 % Correct digits = 31 h = 0.00092279534109306969370172931050256 Complex estimate of poles used Radius of convergence = 0.09136 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.090437752354619893997009116293801 y[1] (analytic) = 122.24958227570588342742212345394 y[1] (numeric) = 122.24958227570588342742212345395 absolute error = 1e-29 relative error = 8.1799870509555561808908676206862e-30 % Correct digits = 31 h = 0.00091356793500304484000759343956279 Complex estimate of poles used Radius of convergence = 0.09044 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.089533319546117484782196184198874 y[1] (analytic) = 124.73158839628563067330132163487 y[1] (numeric) = 124.73158839628563067330132163488 absolute error = 1e-29 relative error = 8.0172153089471832512083401457536e-30 % Correct digits = 31 h = 0.00090443280850240921481293209492651 Complex estimate of poles used Radius of convergence = 0.08954 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.088637930507266372686943772309655 y[1] (analytic) = 127.26398291291506528789074832565 y[1] (numeric) = 127.26398291291506528789074832565 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.0008953890388511120952524118892192 Complex estimate of poles used Radius of convergence = 0.08864 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.087751494794729305353537804412089 y[1] (analytic) = 129.84778865237178961803434096501 y[1] (numeric) = 129.84778865237178961803434096502 absolute error = 1e-29 relative error = 7.7013248387094043723049498329981e-30 % Correct digits = 31 h = 0.0008864357125370673334059678975663 Complex estimate of poles used Radius of convergence = 0.08776 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.086873922869545425945478639503222 y[1] (analytic) = 132.48404919822352299686628162408 y[1] (numeric) = 132.48404919822352299686628162408 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.00087757192518387940805916490886666 Complex estimate of poles used Radius of convergence = 0.08688 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.085145016693100181894078619221096 y[1] (analytic) = 137.91821536190300501366939232551 y[1] (numeric) = 137.91821536190300501366939232551 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.00086010939498575177790790138592668 Complex estimate of poles used Radius of convergence = 0.08515 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.084293507804851309377687636735032 y[1] (analytic) = 140.71831576269880200632181044522 y[1] (numeric) = 140.71831576269880200632181044521 absolute error = 1e-29 relative error = 7.1063954580465286097601871088539e-30 % Correct digits = 31 h = 0.00085150888824887251639098248606378 Complex estimate of poles used Radius of convergence = 0.0843 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.08345051341234050930304425626015 y[1] (analytic) = 143.57526142118254507195248145144 y[1] (numeric) = 143.57526142118254507195248145143 absolute error = 1e-29 relative error = 6.9649881887832232340653269055197e-30 % Correct digits = 31 h = 0.00084299439251080007464338047488194 Complex estimate of poles used Radius of convergence = 0.08346 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.082615948364619049592854627317605 y[1] (analytic) = 146.49020619318047633951688375035 y[1] (numeric) = 146.49020619318047633951688375035 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.00083456504772145971018962894254538 Complex estimate of poles used Radius of convergence = 0.08262 Order of pole = 1 TOP MAIN SOLVE Loop memory used=320.4MB, alloc=4.6MB, time=18.99 x[1] = -0.081789728362187166985573762613074 y[1] (analytic) = 149.46432734880118434373533438935 y[1] (numeric) = 149.46432734880118434373533438935 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.00082622000243188260728086470453069 Complex estimate of poles used Radius of convergence = 0.0818 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.080971769948478966055201684157862 y[1] (analytic) = 152.49882604727995116629806446949 y[1] (numeric) = 152.49882604727995116629806446949 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.00081795841370820093037207845521169 Complex estimate of poles used Radius of convergence = 0.08098 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.079360308225143923154196182497726 y[1] (analytic) = 158.75388307197465736669972878192 y[1] (numeric) = 158.75388307197465736669972878191 absolute error = 1e-29 relative error = 6.2990585215898462223804672041501e-30 % Correct digits = 31 h = 0.00080168227628853991220144093787844 Complex estimate of poles used Radius of convergence = 0.07937 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.07856664214160564783208675382863 y[1] (analytic) = 161.97696757171968566800775444041 y[1] (numeric) = 161.9769675717196856680077544404 absolute error = 1e-29 relative error = 6.1737172574071244968554316999372e-30 % Correct digits = 31 h = 0.00079366608353827532210942866909591 Complex estimate of poles used Radius of convergence = 0.07857 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.077780912082526378261543786871816 y[1] (analytic) = 165.26548298016635885585006287459 y[1] (numeric) = 165.26548298016635885585006287458 absolute error = 1e-29 relative error = 6.0508702843896979372903036506143e-30 % Correct digits = 31 h = 0.00078573005907926957054296695681364 Complex estimate of poles used Radius of convergence = 0.07779 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.076232943364656147694800954434506 y[1] (analytic) = 172.04414575451620491660625749275 y[1] (numeric) = 172.04414575451620491660625749275 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.00077009531657734036632110234515278 Complex estimate of poles used Radius of convergence = 0.07624 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.075470548345388650658209399362546 y[1] (analytic) = 175.53703065028143897151574410127 y[1] (numeric) = 175.53703065028143897151574410127 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.00076239501926749703659155507196039 Complex estimate of poles used Radius of convergence = 0.07548 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.074715776613833099778514475927453 y[1] (analytic) = 179.10082261832225061323649731738 y[1] (numeric) = 179.10082261832225061323649731738 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.00075477173155555087969492343509301 Complex estimate of poles used Radius of convergence = 0.07472 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.073968551930420659959930199205619 y[1] (analytic) = 182.73696084100261470739313987298 y[1] (numeric) = 182.73696084100261470739313987298 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.0007472246834124398185842767218341 Complex estimate of poles used Radius of convergence = 0.07398 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.072496442553766287100905552318364 y[1] (analytic) = 190.23217937158903489706631163532 y[1] (numeric) = 190.23217937158903489706631163532 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.00073235626414430454190208143272432 Complex estimate of poles used Radius of convergence = 0.0725 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.071771409162607539479505492742392 y[1] (analytic) = 194.09428642407552010904213535963 y[1] (numeric) = 194.09428642407552010904213535963 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.00072503339115874762140005957597186 Complex estimate of poles used Radius of convergence = 0.07178 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.070343018788749043798347469164691 y[1] (analytic) = 202.05529464439231545460637504115 y[1] (numeric) = 202.05529464439231545460637504114 absolute error = 1e-29 relative error = 4.9491402923143009929049428802201e-30 % Correct digits = 31 h = 0.00071060661998923837896469869169687 Complex estimate of poles used Radius of convergence = 0.07035 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.069639517524193371447073824377015 y[1] (analytic) = 206.15741054115422589632931202005 y[1] (numeric) = 206.15741054115422589632931202004 absolute error = 1e-29 relative error = 4.8506624010024356791303150549662e-30 % Correct digits = 31 h = 0.00070350126455567235127364478767559 Complex estimate of poles used Radius of convergence = 0.06965 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.068943050554337482611532733516249 y[1] (analytic) = 210.34279857314125054654615394579 y[1] (numeric) = 210.34279857314125054654615394578 absolute error = 1e-29 relative error = 4.7541442197379338684121082749863e-30 % Correct digits = 31 h = 0.00069646696985588883554109086076595 Complex estimate of poles used Radius of convergence = 0.06895 Order of pole = 1 memory used=324.2MB, alloc=4.6MB, time=19.21 TOP MAIN SOLVE Loop x[1] = -0.067570938801357937228404194531692 y[1] (analytic) = 218.97018551467302141595409875863 y[1] (numeric) = 218.97018551467302141595409875861 absolute error = 2e-29 relative error = 9.1336635409937192534226537884895e-30 % Correct digits = 31 h = 0.0006826087276244760477074676027362 Complex estimate of poles used Radius of convergence = 0.06758 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.066895155421087538774244211138787 y[1] (analytic) = 223.41566806875466391276235452165 y[1] (numeric) = 223.41566806875466391276235452164 absolute error = 1e-29 relative error = 4.4759618188114575270578683349145e-30 % Correct digits = 31 h = 0.00067578338027039845415998339290471 Complex estimate of poles used Radius of convergence = 0.0669 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.065563792341352996843404306486138 y[1] (analytic) = 232.57918707616418135852735716928 y[1] (numeric) = 232.57918707616418135852735716926 absolute error = 2e-29 relative error = 8.5992217323601157675142029973920e-30 % Correct digits = 31 h = 0.00066233678587073140870275837312287 Complex estimate of poles used Radius of convergence = 0.06557 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.064908078160769714209471110682376 y[1] (analytic) = 237.30092350934678415354589634009 y[1] (numeric) = 237.30092350934678415354589634007 absolute error = 2e-29 relative error = 8.4281172210491806514780387776633e-30 % Correct digits = 31 h = 0.00065571418058328263393319580376201 Complex estimate of poles used Radius of convergence = 0.06492 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.063616253342702842771691853803427 y[1] (analytic) = 247.03388334712028194212528528592 y[1] (numeric) = 247.0338833471202819421252852859 absolute error = 2e-29 relative error = 8.0960553787259012332231577259893e-30 % Correct digits = 31 h = 0.00064266700901543667827591972553076 Complex estimate of poles used Radius of convergence = 0.06362 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.062980012217863922082122147583546 y[1] (analytic) = 252.04903648825533973042587734304 y[1] (numeric) = 252.04903648825533973042587734302 absolute error = 2e-29 relative error = 7.9349638779245778033258484511199e-30 % Correct digits = 31 h = 0.00063624112483892068956970621988132 Complex estimate of poles used Radius of convergence = 0.06299 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.061726551196182157297371375232584 y[1] (analytic) = 262.38681428495872457297045682607 y[1] (numeric) = 262.38681428495872457297045682605 absolute error = 2e-29 relative error = 7.6223342451497938277997431206380e-30 % Correct digits = 31 h = 0.00062358151423908818170776403344153 Complex estimate of poles used Radius of convergence = 0.06173 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.060498030824986346724874308841661 y[1] (analytic) = 273.1485372730771770754450351991 y[1] (numeric) = 273.14853727307717707544503519908 absolute error = 2e-29 relative error = 7.3220234674019963762123352950374e-30 % Correct digits = 31 h = 0.00061117386212858527100478250872245 Complex estimate of poles used Radius of convergence = 0.06051 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.059892967875062869904152794607409 y[1] (analytic) = 278.69378223966633392460558015544 y[1] (numeric) = 278.69378223966633392460558015542 absolute error = 2e-29 relative error = 7.1763352017666258918489185313018e-30 % Correct digits = 31 h = 0.0006050629499234768207215142342524 Complex estimate of poles used Radius of convergence = 0.0599 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.058700930853042931597912960592182 y[1] (analytic) = 290.12423349631331085834011296678 y[1] (numeric) = 290.12423349631331085834011296677 absolute error = 1e-29 relative error = 3.4467992830137275571299968407905e-30 % Correct digits = 31 h = 0.00059302386683189797050039038228829 Complex estimate of poles used Radius of convergence = 0.05871 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.057532611977772851645267707683369 y[1] (analytic) = 302.02342639347064808548093590854 y[1] (numeric) = 302.02342639347064808548093590853 absolute error = 1e-29 relative error = 3.3110014409849721961755434485367e-30 % Correct digits = 31 h = 0.00058122439539365260512724421816885 Complex estimate of poles used Radius of convergence = 0.05754 Order of pole = 1 memory used=328.0MB, alloc=4.6MB, time=19.42 TOP MAIN SOLVE Loop x[1] = -0.056957198957327105023633334381947 y[1] (analytic) = 308.154775659192655387714214165 y[1] (numeric) = 308.15477565919265538771421416498 absolute error = 2e-29 relative error = 6.4902450261290877193418860490323e-30 % Correct digits = 31 h = 0.00057541302044574662163437330142156 Complex estimate of poles used Radius of convergence = 0.05697 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.055823575132306747820501763113107 y[1] (analytic) = 320.79335630248849102229878562259 y[1] (numeric) = 320.79335630248849102229878562257 absolute error = 2e-29 relative error = 6.2345430811045926748656178807827e-30 % Correct digits = 31 h = 0.00056396405699521889815084958844522 Complex estimate of poles used Radius of convergence = 0.05583 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.054712506856710899959860729553203 y[1] (analytic) = 333.95020542415386308401127949309 y[1] (numeric) = 333.95020542415386308401127949307 absolute error = 2e-29 relative error = 5.9889168130912744851842519194450e-30 % Correct digits = 31 h = 0.00055274296356420654957838936663915 Complex estimate of poles used Radius of convergence = 0.05472 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.053623545202728477229531786210037 y[1] (analytic) = 347.64656830149001176967417522144 y[1] (numeric) = 347.64656830149001176967417522141 absolute error = 3e-29 relative error = 8.6294538003271928522921448400002e-30 % Correct digits = 31 h = 0.00054174520626309135875032664922267 Complex estimate of poles used Radius of convergence = 0.05363 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.05255625017474228993181273614845 y[1] (analytic) = 361.90456050541249308196675135482 y[1] (numeric) = 361.90456050541249308196675135479 absolute error = 3e-29 relative error = 8.2894782972902969429776023570530e-30 % Correct digits = 31 h = 0.00053096634144135364685509593410463 Complex estimate of poles used Radius of convergence = 0.05257 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.051510190531548547335001982573637 y[1] (analytic) = 376.74720350018259224813874165905 y[1] (numeric) = 376.74720350018259224813874165901 absolute error = 4e-29 relative error = 1.0617198914385734469774998877761e-29 % Correct digits = 30 h = 0.00052040201389211256281739892053552 Complex estimate of poles used Radius of convergence = 0.05152 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.050994991567205990293653749661725 y[1] (analytic) = 384.39522004439733368067721628377 y[1] (numeric) = 384.39522004439733368067721628373 absolute error = 4e-29 relative error = 1.0405956659757640248258224268945e-29 % Correct digits = 30 h = 0.00051519896434255704134823291191203 Complex estimate of poles used Radius of convergence = 0.051 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.049979995146275906064018136059951 y[1] (analytic) = 400.16007766503796788781911659791 y[1] (numeric) = 400.16007766503796788781911659788 absolute error = 3e-29 relative error = 7.4969997444652893863904988056624e-30 % Correct digits = 31 h = 0.00050494846583768215226828298247925 Complex estimate of poles used Radius of convergence = 0.04999 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.048985193172730579768275855352186 y[1] (analytic) = 416.57134990520610389534833973606 y[1] (numeric) = 416.57134990520610389534833973602 absolute error = 4e-29 relative error = 9.6021966006789224149505171616740e-30 % Correct digits = 31 h = 0.00049490199206685463157677615736672 Complex estimate of poles used Radius of convergence = 0.049 Order of pole = 1 memory used=331.8MB, alloc=4.6MB, time=19.64 TOP MAIN SOLVE Loop x[1] = -0.04752997772598848170017452263609 y[1] (analytic) = 442.45853662866179661387515557598 y[1] (numeric) = 442.45853662866179661387515557597 absolute error = 1e-29 relative error = 2.2600987826329612020077074750833e-30 % Correct digits = 31 h = 0.00048020597024044230298996789864542 Complex estimate of poles used Radius of convergence = 0.04754 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.046583920788361181911712028567266 y[1] (analytic) = 460.60414176482749086546427783051 y[1] (numeric) = 460.60414176482749086546427783049 absolute error = 2e-29 relative error = 4.3421233520326181601492670977240e-30 % Correct digits = 31 h = 0.00047065197523913106332190986949071 Complex estimate of poles used Radius of convergence = 0.04659 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.045656686112213573546249921934059 y[1] (analytic) = 479.49373438525191918555856304914 y[1] (numeric) = 479.4937343852519191855585630491 absolute error = 4e-29 relative error = 8.3421319469967831890798576582212e-30 % Correct digits = 31 h = 0.00046128814745399216200972267699955 Complex estimate of poles used Radius of convergence = 0.04567 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.044747899047812160037780139330678 y[1] (analytic) = 499.15780368446359245743106647937 y[1] (numeric) = 499.15780368446359245743106647934 absolute error = 3e-29 relative error = 6.0101234075795652569125390962855e-30 % Correct digits = 31 h = 0.0004521107034247152852761657623765 Complex estimate of poles used Radius of convergence = 0.04476 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.043857192399192189164399319558549 y[1] (analytic) = 519.62808707110430522913317257053 y[1] (numeric) = 519.6280870711043052291331725705 absolute error = 3e-29 relative error = 5.7733599754192833885634948048884e-30 % Correct digits = 31 h = 0.00044311593499945925821684515525136 Complex estimate of poles used Radius of convergence = 0.04387 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.042984206275791901759506833490974 y[1] (analytic) = 540.93762116399870925031993225889 y[1] (numeric) = 540.93762116399870925031993225886 absolute error = 3e-29 relative error = 5.5459259674794837383579443634787e-30 % Correct digits = 31 h = 0.00043430020783657100698358535560341 Complex estimate of poles used Radius of convergence = 0.043 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.041707183400028019566430358203375 y[1] (analytic) = 574.55112640585690864571525921881 y[1] (numeric) = 574.55112640585690864571525921879 absolute error = 2e-29 relative error = 3.4809782943271455887835993018556e-30 % Correct digits = 31 h = 0.00042140454701051344463769905965231 Complex estimate of poles used Radius of convergence = 0.04172 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.040876970705860684384497616720323 y[1] (analytic) = 598.11233328092126816285029735545 y[1] (numeric) = 598.11233328092126816285029735543 absolute error = 2e-29 relative error = 3.3438534681755850755369216944952e-30 % Correct digits = 31 h = 0.00041302099396662735457316519132663 Complex estimate of poles used Radius of convergence = 0.04089 Order of pole = 1 memory used=335.7MB, alloc=4.6MB, time=19.86 TOP MAIN SOLVE Loop x[1] = -0.039662516849617636690925409639254 y[1] (analytic) = 635.27750242216783620782603692156 y[1] (numeric) = 635.27750242216783620782603692156 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.00040075752691236195315337762479285 Complex estimate of poles used Radius of convergence = 0.03968 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.038872980664418856814599031397604 y[1] (analytic) = 661.32814996216014859541446284528 y[1] (numeric) = 661.32814996216014859541446284525 absolute error = 3e-29 relative error = 4.5363258772088469198178830056865e-30 % Correct digits = 31 h = 0.00039278497312171476832328396921678 Complex estimate of poles used Radius of convergence = 0.03889 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.037718028405433797603627255092516 y[1] (analytic) = 702.42000073837203002659557912083 y[1] (numeric) = 702.42000073837203002659557912077 absolute error = 6e-29 relative error = 8.5418980007586649481787339455058e-30 % Correct digits = 31 h = 0.0003811227252312906720300668378937 Complex estimate of poles used Radius of convergence = 0.03773 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.036967174548149274292332443091077 y[1] (analytic) = 731.22292964005769148677143428515 y[1] (numeric) = 731.22292964005769148677143428509 absolute error = 6e-29 relative error = 8.2054319644400130116663249183796e-30 % Correct digits = 31 h = 0.0003735410339146952318859221726459 Complex estimate of poles used Radius of convergence = 0.03698 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.035868806751075802108914761869986 y[1] (analytic) = 776.65602033111978360482730819085 y[1] (numeric) = 776.65602033111978360482730819076 absolute error = 9e-29 relative error = 1.1588141679714189345536724974860e-29 % Correct digits = 30 h = 0.00036245054911708721753055907594548 Complex estimate of poles used Radius of convergence = 0.03588 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.034803049156026343108064373634874 y[1] (analytic) = 824.91083521512782387084866856741 y[1] (numeric) = 824.91083521512782387084866856736 absolute error = 5e-29 relative error = 6.0612611527839297665288656260655e-30 % Correct digits = 31 h = 0.00035168958700691201591350211367134 Complex estimate of poles used Radius of convergence = 0.03482 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.033768932827217344703708703827801 y[1] (analytic) = 876.16247374910892582871228930259 y[1] (numeric) = 876.16247374910892582871228930248 absolute error = 1.1e-28 relative error = 1.2554749067180289302616075247320e-29 % Correct digits = 30 h = 0.00034124836423249539631170345384538 Complex estimate of poles used Radius of convergence = 0.03378 Order of pole = 1 memory used=339.5MB, alloc=4.6MB, time=20.07 TOP MAIN SOLVE Loop x[1] = -0.032765517595590019355009426191512 y[1] (analytic) = 930.59688179187187501421673803107 y[1] (numeric) = 930.59688179187187501421673803098 absolute error = 9e-29 relative error = 9.6712122897622724682712674003930e-30 % Correct digits = 31 h = 0.00033111738813385427111207495011409 Complex estimate of poles used Radius of convergence = 0.03278 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.031791891204053664412648491603031 y[1] (analytic) = 988.41152101072785773392693102082 y[1] (numeric) = 988.4115210107278577339269310207 absolute error = 1.2e-28 relative error = 1.2140692155964617071434772315348e-29 % Correct digits = 30 h = 0.00032128744811242405496064920020975 Complex estimate of poles used Radius of convergence = 0.03181 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.030847168478105209111330991197034 y[1] (analytic) = 1049.8160792856118965498302366007 y[1] (numeric) = 1049.8160792856118965498302366006 absolute error = 1e-28 relative error = 9.5254780311660764284930655751238e-30 % Correct digits = 31 h = 0.0003117496072572227048723191471305 Complex estimate of poles used Radius of convergence = 0.03086 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.029930490521070955889279527951218 y[1] (analytic) = 1115.0332245807792411378102983397 y[1] (numeric) = 1115.0332245807792411378102983397 absolute error = 0 relative error = 0 % Correct digits = 32 h = 0.00030249519421983834503597526389679 Complex estimate of poles used Radius of convergence = 0.02995 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.028750441574674045701968214978463 y[1] (analytic) = 1208.3308748117986795391271824486 y[1] (numeric) = 1208.3308748117986795391271824485 absolute error = 1e-28 relative error = 8.2758789073874582062174030069511e-30 % Correct digits = 31 h = 0.0002905823585648228513665096867117 Complex estimate of poles used Radius of convergence = 0.02877 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.027896003065817851181891462677838 y[1] (analytic) = 1283.3889895779851702355578924958 y[1] (numeric) = 1283.3889895779851702355578924959 absolute error = 1e-28 relative error = 7.7918698704811895237918511127236e-30 % Correct digits = 31 h = 0.00028195698835362878700719975255433 Complex estimate of poles used Radius of convergence = 0.02791 Order of pole = 1 memory used=343.3MB, alloc=4.6MB, time=20.28 TOP MAIN SOLVE Loop x[1] = -0.026796072340599250839314296647705 y[1] (analytic) = 1390.7635359864666929914904142127 y[1] (numeric) = 1390.7635359864666929914904142128 absolute error = 1e-28 relative error = 7.1902949288262821328050231950464e-30 % Correct digits = 31 h = 0.00027085392697435010313038840143402 Complex estimate of poles used Radius of convergence = 0.02681 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.025999642531899767362538065185401 y[1] (analytic) = 1477.1454320451344416073412710194 y[1] (numeric) = 1477.1454320451344416073412710196 absolute error = 2e-28 relative error = 1.3539628235731426910718206654166e-29 % Correct digits = 30 h = 0.00026281489111072817560662989079625 Complex estimate of poles used Radius of convergence = 0.02602 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.024974383726356169374244315913491 y[1] (analytic) = 1600.7175248030283600755402609944 y[1] (numeric) = 1600.7175248030283600755402609946 absolute error = 2e-28 relative error = 1.2494396850225677286475611008378e-29 % Correct digits = 30 h = 0.00025246662725266765560537382559215 Complex estimate of poles used Radius of convergence = 0.02499 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.023989492657805639007843772602115 y[1] (analytic) = 1734.618141000409492460020699487 y[1] (numeric) = 1734.6181410004094924600206994873 absolute error = 3e-28 relative error = 1.7294872739367319853261128520825e-29 % Correct digits = 30 h = 0.00024252644178374961774221116402849 Complex estimate of poles used Radius of convergence = 0.02401 Order of pole = 1 memory used=347.1MB, alloc=4.6MB, time=20.49 TOP MAIN SOLVE Loop x[1] = -0.022812726728296132587178216324035 y[1] (analytic) = 1917.8379033893873713331378526064 y[1] (numeric) = 1917.8379033893873713331378526066 absolute error = 2e-28 relative error = 1.0428410015598335391143845315571e-29 % Correct digits = 30 h = 0.00023065065384160896303345409191931 Complex estimate of poles used Radius of convergence = 0.02283 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.021912937768322985301881921909104 y[1] (analytic) = 2078.2380062079116228899259942589 y[1] (numeric) = 2078.238006207911622889925994259 absolute error = 1e-28 relative error = 4.8117684163839593546433881566210e-30 % Correct digits = 31 h = 0.00022157086278219656561852502442714 Complex estimate of poles used Radius of convergence = 0.02194 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.020837845035960398888983425266169 y[1] (analytic) = 2297.7107741932924149011914322742 y[1] (numeric) = 2297.7107741932924149011914322744 absolute error = 2e-28 relative error = 8.7043157148539887533353586957167e-30 % Correct digits = 31 h = 0.0002107230932503666495653105078041 Complex estimate of poles used Radius of convergence = 0.02086 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.019815383755961489215685663051045 y[1] (analytic) = 2540.3313587243798653968959893357 y[1] (numeric) = 2540.3313587243798653968959893358 absolute error = 1e-28 relative error = 3.9364943339602245559613521912804e-30 % Correct digits = 31 h = 0.00020040756024005913517977310094841 Complex estimate of poles used Radius of convergence = 0.01984 Order of pole = 1 memory used=350.9MB, alloc=4.6MB, time=20.70 TOP MAIN SOLVE Loop x[1] = -0.018842971433805546641421002874652 y[1] (analytic) = 2808.5345667681005280208499163657 y[1] (numeric) = 2808.5345667681005280208499163658 absolute error = 1e-28 relative error = 3.5605757245521185819413900877806e-30 % Correct digits = 31 h = 0.00019059820916096148028175444203815 Complex estimate of poles used Radius of convergence = 0.01887 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.017918151986772553474770630792387 y[1] (analytic) = 3105.00984356909686697010263909 y[1] (numeric) = 3105.0098435690968669701026390903 absolute error = 3e-28 relative error = 9.6618051186324361605930599077662e-30 % Correct digits = 31 h = 0.00018127026391793830760122415380112 Complex estimate of poles used Radius of convergence = 0.01795 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.016867910445805797483730731248952 y[1] (analytic) = 3502.3030800882104223933719184576 y[1] (numeric) = 3502.3030800882104223933719184583 absolute error = 7e-28 relative error = 1.9986848196540703632728136359171e-29 % Correct digits = 30 h = 0.00017067909465671492415992106400271 Complex estimate of poles used Radius of convergence = 0.0169 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.015879024834807049585316861555067 y[1] (analytic) = 3950.3296655482711986178315415015 y[1] (numeric) = 3950.3296655482711986178315415026 absolute error = 1.1e-27 relative error = 2.7845777267486095320885132399854e-29 % Correct digits = 30 h = 0.00016070875949247468943327256415914 Complex estimate of poles used memory used=354.7MB, alloc=4.6MB, time=20.92 Radius of convergence = 0.01591 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.014947898146759304491354035508692 y[1] (analytic) = 4455.540542296741564717709600187 y[1] (numeric) = 4455.5405422967415647177096001881 absolute error = 1.1e-27 relative error = 2.4688362490647927468506721054364e-29 % Correct digits = 30 h = 0.00015132299197291130467709081637697 Complex estimate of poles used Radius of convergence = 0.01498 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.013930077144710637856752251458778 y[1] (analytic) = 5126.9681023440961784384651547361 y[1] (numeric) = 5126.9681023440961784384651547376 absolute error = 1.5e-27 relative error = 2.9257057388638451560277456159457e-29 % Correct digits = 30 h = 0.00014106632430370653059023703099942 Complex estimate of poles used Radius of convergence = 0.01397 Order of pole = 1 memory used=358.5MB, alloc=4.6MB, time=21.13 TOP MAIN SOLVE Loop x[1] = -0.012981230852932014355072190287088 y[1] (analytic) = 5899.2750304403099706450479246632 y[1] (numeric) = 5899.2750304403099706450479246659 absolute error = 2.7e-27 relative error = 4.5768335703420788884622335295335e-29 % Correct digits = 30 h = 0.0001315081457736272058466214331921 Complex estimate of poles used Radius of convergence = 0.01302 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.011975281820172123910576426937751 y[1] (analytic) = 6924.854096043074370524477009845 y[1] (numeric) = 6924.854096043074370524477009848 absolute error = 3.0e-27 relative error = 4.3322212401763493122276802729103e-29 % Correct digits = 30 h = 0.00012137924406713117583235292746368 Complex estimate of poles used Radius of convergence = 0.01202 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.010935870222683770317605782983887 y[1] (analytic) = 8292.3375693118060685587361883775 y[1] (numeric) = 8292.3375693118060685587361883784 absolute error = 9e-28 relative error = 1.0853393177464341857500740370579e-29 % Correct digits = 30 h = 0.00011091959487544568961066758740312 Complex estimate of poles used Radius of convergence = 0.01098 Order of pole = 1 memory used=362.4MB, alloc=4.6MB, time=21.34 TOP MAIN SOLVE Loop x[1] = -0.009985994203098079791908089403387 y[1] (analytic) = 9928.5067860644272274962162265567 y[1] (numeric) = 9928.5067860644272274962162265574 absolute error = 7e-28 relative error = 7.0504056157015917573102611679348e-30 % Correct digits = 31 h = 0.000101368080698293575528522685182 Complex estimate of poles used Radius of convergence = 0.01004 Order of pole = 1 memory used=366.2MB, alloc=4.6MB, time=21.55 TOP MAIN SOLVE Loop x[1] = -0.0089353375442192170613821313340239 y[1] (analytic) = 12370.074474647159103738007383897 y[1] (numeric) = 12370.074474647159103738007383897 absolute error = 0 relative error = 0 % Correct digits = 32 h = 9.0813769627995156422920863130168e-05 Complex estimate of poles used Radius of convergence = 0.008991 Order of pole = 1 TOP MAIN SOLVE Loop x[1] = -0.0079940009438609422476133220522266 y[1] (analytic) = 15407.358758028986755883813916627 y[1] (numeric) = 15407.358758028986755883813916626 absolute error = 1e-27 relative error = 6.4904051090449635528320093523449e-30 % Correct digits = 31 h = 8.1370525603463888454691277819998e-05 Complex estimate of poles used Radius of convergence = 0.008056 Order of pole = 1 memory used=370.0MB, alloc=4.6MB, time=21.76 TOP MAIN SOLVE Loop x[1] = -0.0069360036352528584822031103550975 y[1] (analytic) = 20363.220213600344470534327238918 y[1] (numeric) = 20363.220213600344470534327238917 absolute error = 1e-27 relative error = 4.9108146428240867928466649874547e-30 % Correct digits = 31 h = 7.0777811667861288382791370327815e-05 Complex estimate of poles used Radius of convergence = 0.007008 Order of pole = 1 memory used=373.8MB, alloc=4.6MB, time=21.97 TOP MAIN SOLVE Loop x[1] = -0.0059545697796451090900789445847347 y[1] (analytic) = 27429.648857156312954134507047973 y[1] (numeric) = 27429.648857156312954134507047973 absolute error = 0 relative error = 0 % Correct digits = 32 h = 6.0981022832674018976335908231936e-05 Complex estimate of poles used Radius of convergence = 0.006038 Order of pole = 1 memory used=377.6MB, alloc=4.6MB, time=22.18 TOP MAIN SOLVE Loop x[1] = -0.0049540794339578843130023198013392 y[1] (analytic) = 39149.817799241451151514643944331 y[1] (numeric) = 39149.817799241451151514643944328 absolute error = 3e-27 relative error = 7.6628709113893414315181389125905e-30 % Correct digits = 31 h = 5.1040400228214394577625602033665e-05 Complex estimate of poles used Radius of convergence = 0.005054 Order of pole = 1 memory used=381.4MB, alloc=4.6MB, time=22.40 TOP MAIN SOLVE Loop x[1] = -0.0039903176180191615871088518701173 y[1] (analytic) = 59092.453282874710044532491741931 y[1] (numeric) = 59092.45328287471004453249174192 absolute error = 1.1e-26 relative error = 1.8614898161941527117384849145441e-29 % Correct digits = 30 h = 4.1540194292636230127032730270681e-05 Complex estimate of poles used Radius of convergence = 0.004114 Order of pole = 1 memory used=385.2MB, alloc=4.6MB, time=22.61 TOP MAIN SOLVE Loop x[1] = -0.002976562677726215407271547154997 y[1] (analytic) = 101420.64589992297220954998335523 y[1] (numeric) = 101420.64589992297220954998335522 absolute error = 1e-26 relative error = 9.8599253744326576830210721489778e-30 % Correct digits = 31 h = 3.1701185260733008674365829235318e-05 Complex estimate of poles used Radius of convergence = 0.00314 Order of pole = 1 memory used=389.1MB, alloc=4.6MB, time=22.82 memory used=392.9MB, alloc=4.6MB, time=23.03 TOP MAIN SOLVE Loop x[1] = -0.0019902989766577181303764592678396 y[1] (analytic) = 201560.4805760848183331625215245 y[1] (numeric) = 201560.4805760848183331625215245 absolute error = 0 relative error = 0 % Correct digits = 32 h = 2.2475006355269325968837454245756e-05 Complex estimate of poles used Radius of convergence = 0.002227 Order of pole = 1 memory used=396.7MB, alloc=4.6MB, time=23.24 memory used=400.5MB, alloc=4.6MB, time=23.45 memory used=404.3MB, alloc=4.6MB, time=23.66 TOP MAIN SOLVE Loop x[1] = -0.00099382034349367629113161461438492 y[1] (analytic) = 503099.37510837401639793560093965 y[1] (numeric) = 503099.37510837401639793560093979 absolute error = 1.4e-25 relative error = 2.7827504251986442236946922563887e-29 % Correct digits = 30 h = 1.4198953848130750214164317221884e-05 Complex estimate of poles used Radius of convergence = 0.00141 Order of pole = 1 memory used=408.1MB, alloc=4.6MB, time=23.86 memory used=412.0MB, alloc=4.6MB, time=24.08 memory used=415.8MB, alloc=4.6MB, time=24.29 memory used=419.6MB, alloc=4.6MB, time=24.50 memory used=423.4MB, alloc=4.6MB, time=24.71 TOP MAIN SOLVE Loop x[1] = 4.7276008618284204133183017723040e-06 y[1] (analytic) = 999977.65028961195774931638605818 y[1] (numeric) = 999977.65028961195774931638605828 absolute error = 1.0e-25 relative error = 1.0000223502099087608234402334390e-29 % Correct digits = 30 h = 1.0000138997325938547321132080879e-05 Complex estimate of poles used Radius of convergence = 0.001 Order of pole = 1 memory used=427.2MB, alloc=4.6MB, time=24.91 memory used=431.0MB, alloc=4.6MB, time=25.12 memory used=434.8MB, alloc=4.6MB, time=25.33 memory used=438.7MB, alloc=4.6MB, time=25.54 memory used=442.5MB, alloc=4.6MB, time=25.75 TOP MAIN SOLVE Loop x[1] = 0.0010047387759043420132347349363743 y[1] (analytic) = 497636.22598436090708622688584034 y[1] (numeric) = 497636.22598436090708622688584067 absolute error = 3.3e-25 relative error = 6.6313500257589934764849627987627e-29 % Correct digits = 30 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.001418 Order of pole = 1 memory used=446.3MB, alloc=4.6MB, time=25.96 memory used=450.1MB, alloc=4.6MB, time=26.17 memory used=453.9MB, alloc=4.6MB, time=26.39 memory used=457.7MB, alloc=4.6MB, time=26.60 TOP MAIN SOLVE Loop x[1] = 0.0020047499509468556060561515709743 y[1] (analytic) = 199241.98919889424590406468369944 y[1] (numeric) = 199241.98919889424590406468369927 absolute error = 1.7e-25 relative error = 8.5323380218964139297782949167747e-29 % Correct digits = 30 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.00224 Order of pole = 1 memory used=461.5MB, alloc=4.6MB, time=26.83 memory used=465.4MB, alloc=4.6MB, time=27.05 memory used=469.2MB, alloc=4.6MB, time=27.28 memory used=473.0MB, alloc=4.6MB, time=27.49 memory used=476.8MB, alloc=4.6MB, time=27.72 TOP MAIN SOLVE Loop x[1] = 0.0030047611259893691988775682055743 y[1] (analytic) = 99714.920782500573269627367835409 y[1] (numeric) = 99714.920782500573269627367835067 absolute error = 3.42e-25 relative error = 3.4297775830958604293136092185908e-28 % Correct digits = 29 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.003167 Order of pole = 1 memory used=480.6MB, alloc=4.6MB, time=27.94 memory used=484.4MB, alloc=4.6MB, time=28.16 memory used=488.2MB, alloc=4.6MB, time=28.38 memory used=492.1MB, alloc=4.6MB, time=28.60 memory used=495.9MB, alloc=4.6MB, time=28.83 TOP MAIN SOLVE Loop x[1] = 0.0040047723010318827916989848401743 y[1] (analytic) = 58691.641755655088442001688770128 y[1] (numeric) = 58691.641755655088442001688769715 absolute error = 4.13e-25 relative error = 7.0367770886253391134210784214844e-28 % Correct digits = 29 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.004128 Order of pole = 1 memory used=499.7MB, alloc=4.6MB, time=29.06 memory used=503.5MB, alloc=4.6MB, time=29.28 memory used=507.3MB, alloc=4.6MB, time=29.52 memory used=511.1MB, alloc=4.6MB, time=30.05 TOP MAIN SOLVE Loop x[1] = 0.0050047834760743963845204014747743 y[1] (analytic) = 38390.873204586078616141249514015 y[1] (numeric) = 38390.873204586078616141249513569 absolute error = 4.46e-25 relative error = 1.1617344508504743902860756487992e-27 % Correct digits = 28 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.005104 Order of pole = 1 memory used=515.0MB, alloc=4.6MB, time=30.58 memory used=518.8MB, alloc=4.6MB, time=31.11 memory used=522.6MB, alloc=4.6MB, time=31.65 memory used=526.4MB, alloc=4.6MB, time=32.18 memory used=530.2MB, alloc=4.6MB, time=32.72 TOP MAIN SOLVE Loop x[1] = 0.0060047946511169099773418181093743 y[1] (analytic) = 26985.047918046083311577189360652 y[1] (numeric) = 26985.047918046083311577189360193 absolute error = 4.59e-25 relative error = 1.7009419490155753949915518359826e-27 % Correct digits = 28 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.006087 Order of pole = 1 memory used=534.0MB, alloc=4.6MB, time=33.25 memory used=537.8MB, alloc=4.6MB, time=33.78 memory used=541.7MB, alloc=4.6MB, time=34.31 memory used=545.5MB, alloc=4.6MB, time=34.84 memory used=549.3MB, alloc=4.6MB, time=35.37 TOP MAIN SOLVE Loop x[1] = 0.0070048058261594235701632347439743 y[1] (analytic) = 19973.114325745670693865104698459 y[1] (numeric) = 19973.114325745670693865104697987 absolute error = 4.72e-25 relative error = 2.3631767800556986162792598594153e-27 % Correct digits = 28 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.007076 Order of pole = 1 memory used=553.1MB, alloc=4.6MB, time=35.91 memory used=556.9MB, alloc=4.6MB, time=36.44 memory used=560.7MB, alloc=4.6MB, time=36.97 memory used=564.5MB, alloc=4.6MB, time=37.50 memory used=568.4MB, alloc=4.6MB, time=38.03 TOP MAIN SOLVE Loop x[1] = 0.0080048170012019371629846513785743 y[1] (analytic) = 15366.389611850680396098244707503 y[1] (numeric) = 15366.389611850680396098244707023 absolute error = 4.80e-25 relative error = 3.1237005706911155554477089183520e-27 % Correct digits = 28 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.008067 Order of pole = 1 memory used=572.2MB, alloc=4.6MB, time=38.56 memory used=576.0MB, alloc=4.6MB, time=39.10 memory used=579.8MB, alloc=4.6MB, time=39.62 memory used=583.6MB, alloc=4.6MB, time=40.15 TOP MAIN SOLVE Loop x[1] = 0.0090048281762444507558060680131743 y[1] (analytic) = 12182.207254037121088794227260076 y[1] (numeric) = 12182.20725403712108879422725959 absolute error = 4.86e-25 relative error = 3.9894248215071377086393262984971e-27 % Correct digits = 28 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.00906 Order of pole = 1 memory used=587.4MB, alloc=4.6MB, time=40.70 memory used=591.2MB, alloc=4.6MB, time=41.26 memory used=595.1MB, alloc=4.6MB, time=41.81 memory used=598.9MB, alloc=4.6MB, time=42.31 memory used=602.7MB, alloc=4.6MB, time=42.84 TOP MAIN SOLVE Loop x[1] = 0.010004839351286964348627484647774 y[1] (analytic) = 9891.5088972410050524968647186741 y[1] (numeric) = 9891.5088972410050524968647181832 absolute error = 4.909e-25 relative error = 4.9628424247480035300917487530556e-27 % Correct digits = 28 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.01005 Order of pole = 1 memory used=606.5MB, alloc=4.6MB, time=43.38 memory used=610.3MB, alloc=4.6MB, time=43.90 memory used=614.1MB, alloc=4.6MB, time=44.43 memory used=617.9MB, alloc=4.6MB, time=44.92 memory used=621.8MB, alloc=4.6MB, time=45.42 TOP MAIN SOLVE Loop x[1] = 0.011004850526329477941448901282374 y[1] (analytic) = 8189.5564493220754631179299553727 y[1] (numeric) = 8189.5564493220754631179299548791 absolute error = 4.936e-25 relative error = 6.0271884448743227034221602047299e-27 % Correct digits = 28 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.01105 Order of pole = 1 memory used=625.6MB, alloc=4.6MB, time=45.92 memory used=629.4MB, alloc=4.6MB, time=46.41 memory used=633.2MB, alloc=4.6MB, time=46.92 memory used=637.0MB, alloc=4.6MB, time=47.43 TOP MAIN SOLVE Loop x[1] = 0.012004861701371991534270317916974 y[1] (analytic) = 6891.0054404739627513145414408643 y[1] (numeric) = 6891.0054404739627513145414403687 absolute error = 4.956e-25 relative error = 7.1919838734870114303540998408298e-27 % Correct digits = 28 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.01205 Order of pole = 1 memory used=640.8MB, alloc=4.6MB, time=47.95 memory used=644.7MB, alloc=4.6MB, time=48.46 memory used=648.5MB, alloc=4.6MB, time=48.97 memory used=652.3MB, alloc=4.6MB, time=49.48 memory used=656.1MB, alloc=4.6MB, time=49.99 TOP MAIN SOLVE Loop x[1] = 0.013004872876414505127091734551574 y[1] (analytic) = 5877.9714828488765770404870961046 y[1] (numeric) = 5877.9714828488765770404870956075 absolute error = 4.971e-25 relative error = 8.4569991782108907287764426679385e-27 % Correct digits = 28 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.01304 Order of pole = 1 memory used=659.9MB, alloc=4.6MB, time=50.48 memory used=663.7MB, alloc=4.6MB, time=50.97 memory used=667.5MB, alloc=4.6MB, time=51.46 memory used=671.4MB, alloc=4.6MB, time=51.96 memory used=675.2MB, alloc=4.6MB, time=52.45 TOP MAIN SOLVE Loop x[1] = 0.014004884051457018719913151186174 y[1] (analytic) = 5072.6202067553281780221607406176 y[1] (numeric) = 5072.620206755328178022160740119 absolute error = 4.986e-25 relative error = 9.8292397159164922259574611438994e-27 % Correct digits = 28 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.01404 Order of pole = 1 memory used=679.0MB, alloc=4.6MB, time=52.95 memory used=682.8MB, alloc=4.6MB, time=53.44 memory used=686.6MB, alloc=4.6MB, time=53.94 memory used=690.4MB, alloc=4.6MB, time=54.42 TOP MAIN SOLVE Loop x[1] = 0.015004895226499532312734567820774 y[1] (analytic) = 4421.9048993609193158982162324004 y[1] (numeric) = 4421.904899360919315898216231901 absolute error = 4.994e-25 relative error = 1.1293775225065928848204517185848e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.01504 Order of pole = 1 memory used=694.2MB, alloc=4.6MB, time=54.91 memory used=698.1MB, alloc=4.6MB, time=55.39 memory used=701.9MB, alloc=4.6MB, time=55.88 memory used=705.7MB, alloc=4.6MB, time=56.37 memory used=709.5MB, alloc=4.6MB, time=56.86 TOP MAIN SOLVE Loop x[1] = 0.016004906401542045905555984455374 y[1] (analytic) = 3888.6745744089456972814478821648 y[1] (numeric) = 3888.6745744089456972814478816647 absolute error = 5.001e-25 relative error = 1.2860423016395299254019254710033e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.01604 Order of pole = 1 memory used=713.3MB, alloc=4.6MB, time=57.35 memory used=717.1MB, alloc=4.6MB, time=57.84 memory used=720.9MB, alloc=4.6MB, time=58.33 memory used=724.8MB, alloc=4.6MB, time=58.83 memory used=728.6MB, alloc=4.6MB, time=59.32 TOP MAIN SOLVE Loop x[1] = 0.017004917576584559498377401089974 y[1] (analytic) = 3446.2886395073541351242123530118 y[1] (numeric) = 3446.2886395073541351242123525116 absolute error = 5.002e-25 relative error = 1.4514164433757453087393700476614e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.01703 Order of pole = 1 memory used=732.4MB, alloc=4.6MB, time=59.80 memory used=736.2MB, alloc=4.6MB, time=60.29 memory used=740.0MB, alloc=4.6MB, time=60.77 memory used=743.8MB, alloc=4.6MB, time=61.26 TOP MAIN SOLVE Loop x[1] = 0.018004928751627073091198817724574 y[1] (analytic) = 3075.2439052673546724418501760011 y[1] (numeric) = 3075.2439052673546724418501755 absolute error = 5.011e-25 relative error = 1.6294642488086990028532533006424e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.01803 Order of pole = 1 memory used=747.7MB, alloc=4.6MB, time=61.75 memory used=751.5MB, alloc=4.6MB, time=62.24 memory used=755.3MB, alloc=4.6MB, time=62.73 memory used=759.1MB, alloc=4.6MB, time=63.22 memory used=762.9MB, alloc=4.6MB, time=63.71 TOP MAIN SOLVE Loop x[1] = 0.019004939926669586684020234359174 y[1] (analytic) = 2760.9990209424058053107684335506 y[1] (numeric) = 2760.9990209424058053107684330487 absolute error = 5.019e-25 relative error = 1.8178202751723090505356272875929e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.01903 Order of pole = 1 memory used=766.7MB, alloc=4.6MB, time=64.21 memory used=770.5MB, alloc=4.6MB, time=64.70 memory used=774.4MB, alloc=4.6MB, time=65.19 memory used=778.2MB, alloc=4.6MB, time=65.68 memory used=782.0MB, alloc=4.6MB, time=66.16 TOP MAIN SOLVE Loop x[1] = 0.020004951101712100276841650993774 y[1] (analytic) = 2492.5344320192831013266376638104 y[1] (numeric) = 2492.5344320192831013266376633078 absolute error = 5.026e-25 relative error = 2.0164214926925900697203282679081e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.02003 Order of pole = 1 memory used=785.8MB, alloc=4.6MB, time=66.65 memory used=789.6MB, alloc=4.6MB, time=67.14 memory used=793.4MB, alloc=4.6MB, time=67.63 memory used=797.2MB, alloc=4.6MB, time=68.12 TOP MAIN SOLVE Loop x[1] = 0.021004962276754613869663067628374 y[1] (analytic) = 2261.377009085217777521304665548 y[1] (numeric) = 2261.3770090852177775213046650448 absolute error = 5.032e-25 relative error = 2.2251928713273541594360626197001e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.02103 Order of pole = 1 memory used=801.1MB, alloc=4.6MB, time=68.61 memory used=804.9MB, alloc=4.6MB, time=69.11 memory used=808.7MB, alloc=4.6MB, time=69.59 memory used=812.5MB, alloc=4.6MB, time=70.08 memory used=816.3MB, alloc=4.6MB, time=70.58 TOP MAIN SOLVE Loop x[1] = 0.022004973451797127462484484262974 y[1] (analytic) = 2060.9256758438522102126984351152 y[1] (numeric) = 2060.925675843852210212698434612 absolute error = 5.032e-25 relative error = 2.4416212864831394178729083219903e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.02203 Order of pole = 1 memory used=820.1MB, alloc=4.6MB, time=71.07 memory used=824.0MB, alloc=4.6MB, time=71.56 memory used=827.8MB, alloc=4.6MB, time=72.05 memory used=831.6MB, alloc=4.6MB, time=72.54 memory used=835.4MB, alloc=4.6MB, time=73.03 TOP MAIN SOLVE Loop x[1] = 0.023004984626839641055305900897574 y[1] (analytic) = 1885.9764382198584231298799658047 y[1] (numeric) = 1885.9764382198584231298799653014 absolute error = 5.033e-25 relative error = 2.6686441558891183262976951731186e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.02303 Order of pole = 1 memory used=839.2MB, alloc=4.6MB, time=73.52 memory used=843.0MB, alloc=4.6MB, time=74.03 memory used=846.8MB, alloc=4.6MB, time=74.53 memory used=850.7MB, alloc=4.6MB, time=75.03 TOP MAIN SOLVE Loop x[1] = 0.024004995801882154648127317532174 y[1] (analytic) = 1732.3822081887699087146723539871 y[1] (numeric) = 1732.3822081887699087146723534837 absolute error = 5.034e-25 relative error = 2.9058252712391442597910811060516e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.02403 Order of pole = 1 memory used=854.5MB, alloc=4.6MB, time=75.54 memory used=858.3MB, alloc=4.6MB, time=76.05 memory used=862.1MB, alloc=4.6MB, time=76.58 memory used=865.9MB, alloc=4.6MB, time=77.07 memory used=869.7MB, alloc=4.6MB, time=77.55 TOP MAIN SOLVE Loop x[1] = 0.025005006976924668240948734166774 y[1] (analytic) = 1596.8054338184709531293445119665 y[1] (numeric) = 1596.8054338184709531293445114628 absolute error = 5.037e-25 relative error = 3.1544231334151505804780464064404e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.02502 Order of pole = 1 memory used=873.5MB, alloc=4.6MB, time=78.04 memory used=877.4MB, alloc=4.6MB, time=78.53 memory used=881.2MB, alloc=4.6MB, time=79.01 memory used=885.0MB, alloc=4.6MB, time=79.51 memory used=888.8MB, alloc=4.6MB, time=79.99 TOP MAIN SOLVE Loop x[1] = 0.026005018151967181833770150801374 y[1] (analytic) = 1476.5357013741632229775094187536 y[1] (numeric) = 1476.5357013741632229775094182491 absolute error = 5.045e-25 relative error = 3.4167815890294995233836925831183e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.02602 Order of pole = 1 memory used=892.6MB, alloc=4.6MB, time=80.47 memory used=896.4MB, alloc=4.6MB, time=80.96 memory used=900.2MB, alloc=4.6MB, time=81.45 memory used=904.1MB, alloc=4.6MB, time=81.94 TOP MAIN SOLVE Loop x[1] = 0.027005029327009695426591567435974 y[1] (analytic) = 1369.3535223616146229129523918973 y[1] (numeric) = 1369.353522361614622912952391392 absolute error = 5.053e-25 relative error = 3.6900624400377592647842889813338e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.02702 Order of pole = 1 memory used=907.9MB, alloc=4.6MB, time=82.43 memory used=911.7MB, alloc=4.6MB, time=82.92 memory used=915.5MB, alloc=4.6MB, time=83.41 memory used=919.3MB, alloc=4.6MB, time=83.89 memory used=923.1MB, alloc=4.6MB, time=84.38 TOP MAIN SOLVE Loop x[1] = 0.028005040502052209019412984070574 y[1] (analytic) = 1273.427413619015367965793698298 y[1] (numeric) = 1273.4274136190153679657936977926 absolute error = 5.054e-25 relative error = 3.9688167114580887877964818826133e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.02802 Order of pole = 1 memory used=927.0MB, alloc=4.6MB, time=84.87 memory used=930.8MB, alloc=4.6MB, time=85.35 memory used=934.6MB, alloc=4.6MB, time=85.84 memory used=938.4MB, alloc=4.6MB, time=86.32 memory used=942.2MB, alloc=4.6MB, time=86.81 TOP MAIN SOLVE Loop x[1] = 0.029005051677094722612234400705174 y[1] (analytic) = 1187.2352886012317039545177016307 y[1] (numeric) = 1187.2352886012317039545177011255 absolute error = 5.052e-25 relative error = 4.2552643511398055440778808567255e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.02902 Order of pole = 1 memory used=946.0MB, alloc=4.6MB, time=87.30 memory used=949.8MB, alloc=4.6MB, time=87.78 memory used=953.7MB, alloc=4.6MB, time=88.27 memory used=957.5MB, alloc=4.6MB, time=88.75 TOP MAIN SOLVE Loop x[1] = 0.030005062852137236205055817339774 y[1] (analytic) = 1109.5038139126997118972093350189 y[1] (numeric) = 1109.5038139126997118972093345134 absolute error = 5.055e-25 relative error = 4.5560906926253685055729224727584e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.03002 Order of pole = 1 memory used=961.3MB, alloc=4.6MB, time=89.24 memory used=965.1MB, alloc=4.6MB, time=89.73 memory used=968.9MB, alloc=4.6MB, time=90.22 memory used=972.7MB, alloc=4.6MB, time=90.70 memory used=976.5MB, alloc=4.6MB, time=91.18 TOP MAIN SOLVE Loop x[1] = 0.031005074027179749797877233974374 y[1] (analytic) = 1039.1611890381912987016335669513 y[1] (numeric) = 1039.1611890381912987016335664459 absolute error = 5.054e-25 relative error = 4.8635380663877499421890169311215e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.03102 Order of pole = 1 memory used=980.4MB, alloc=4.6MB, time=91.67 memory used=984.2MB, alloc=4.6MB, time=92.15 memory used=988.0MB, alloc=4.6MB, time=92.64 memory used=991.8MB, alloc=4.6MB, time=93.13 memory used=995.6MB, alloc=4.6MB, time=93.61 TOP MAIN SOLVE Loop x[1] = 0.032005085202222263390698650608974 y[1] (analytic) = 975.30005902992948438010326811944 y[1] (numeric) = 975.30005902992948438010326761404 absolute error = 5.0540e-25 relative error = 5.1819949698628138424953352817163e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.03202 Order of pole = 1 memory used=999.4MB, alloc=4.6MB, time=94.10 memory used=1003.2MB, alloc=4.6MB, time=94.60 memory used=1007.1MB, alloc=4.6MB, time=95.08 memory used=1010.9MB, alloc=4.6MB, time=95.57 TOP MAIN SOLVE Loop x[1] = 0.033005096377264776983520067243574 y[1] (analytic) = 917.14814991027434897718202121718 y[1] (numeric) = 917.14814991027434897718202071174 absolute error = 5.0544e-25 relative error = 5.5109962338085485151583961871623e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.03302 Order of pole = 1 memory used=1014.7MB, alloc=4.6MB, time=96.05 memory used=1018.5MB, alloc=4.6MB, time=96.54 memory used=1022.3MB, alloc=4.6MB, time=97.02 memory used=1026.1MB, alloc=4.6MB, time=97.51 memory used=1030.0MB, alloc=4.6MB, time=98.00 TOP MAIN SOLVE Loop x[1] = 0.034005107552307290576341483878174 y[1] (analytic) = 864.04484267239234740565371339076 y[1] (numeric) = 864.0448426723923474056537128852 absolute error = 5.0556e-25 relative error = 5.8510852103041372945006228019528e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.03402 Order of pole = 1 memory used=1033.8MB, alloc=4.6MB, time=98.48 memory used=1037.6MB, alloc=4.6MB, time=98.97 memory used=1041.4MB, alloc=4.6MB, time=99.45 memory used=1045.2MB, alloc=4.6MB, time=99.93 memory used=1049.0MB, alloc=4.6MB, time=100.43 TOP MAIN SOLVE Loop x[1] = 0.035005118727349804169162900512774 y[1] (analytic) = 815.42235228880614653710216400342 y[1] (numeric) = 815.4223522888061465371021634977 absolute error = 5.0572e-25 relative error = 6.2019393824623068290558291086585e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.03502 Order of pole = 1 memory used=1052.8MB, alloc=4.6MB, time=100.92 memory used=1056.7MB, alloc=4.6MB, time=101.40 memory used=1060.5MB, alloc=4.6MB, time=101.89 memory used=1064.3MB, alloc=4.6MB, time=102.37 TOP MAIN SOLVE Loop memory used=1068.1MB, alloc=4.6MB, time=102.85 x[1] = 0.036005129902392317761984317147374 y[1] (analytic) = 770.79050574531883994010278542782 y[1] (numeric) = 770.79050574531883994010278492202 absolute error = 5.0580e-25 relative error = 6.5620943204394396029989234965953e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.03602 Order of pole = 1 memory used=1071.9MB, alloc=4.6MB, time=103.34 memory used=1075.7MB, alloc=4.6MB, time=103.82 memory used=1079.5MB, alloc=4.6MB, time=104.30 memory used=1083.4MB, alloc=4.6MB, time=104.79 TOP MAIN SOLVE Loop x[1] = 0.037005141077434831354805733781974 y[1] (analytic) = 729.72435370559375722888216167832 y[1] (numeric) = 729.72435370559375722888216117242 absolute error = 5.0590e-25 relative error = 6.9327547783077639838989158804827e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.03702 Order of pole = 1 memory used=1087.2MB, alloc=4.6MB, time=105.27 memory used=1091.0MB, alloc=4.6MB, time=105.76 memory used=1094.8MB, alloc=4.6MB, time=106.25 memory used=1098.6MB, alloc=4.6MB, time=106.73 memory used=1102.4MB, alloc=4.6MB, time=107.22 TOP MAIN SOLVE Loop x[1] = 0.038005152252477344947627150416574 y[1] (analytic) = 691.85402874055199489475724967707 y[1] (numeric) = 691.85402874055199489475724917109 absolute error = 5.0598e-25 relative error = 7.3133924062144112632524109150215e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.03802 Order of pole = 1 memory used=1106.2MB, alloc=4.6MB, time=107.70 memory used=1110.1MB, alloc=4.6MB, time=108.19 memory used=1113.9MB, alloc=4.6MB, time=108.68 memory used=1117.7MB, alloc=4.6MB, time=109.17 memory used=1121.5MB, alloc=4.6MB, time=109.65 TOP MAIN SOLVE Loop x[1] = 0.039005163427519858540448567051174 y[1] (analytic) = 656.85639639740441339395002654646 y[1] (numeric) = 656.85639639740441339395002604046 absolute error = 5.0600e-25 relative error = 7.7033580364781155580767821226009e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.03902 Order of pole = 1 memory used=1125.3MB, alloc=4.6MB, time=110.13 memory used=1129.1MB, alloc=4.6MB, time=110.62 memory used=1133.0MB, alloc=4.6MB, time=111.10 memory used=1136.8MB, alloc=4.6MB, time=111.58 TOP MAIN SOLVE Loop x[1] = 0.040005174602562372133269983685774 y[1] (analytic) = 624.44814590967239908997138764219 y[1] (numeric) = 624.4481459096723990899713871361 absolute error = 5.0609e-25 relative error = 8.1045960872018806841036740441188e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.04002 Order of pole = 1 memory used=1140.6MB, alloc=4.6MB, time=112.08 memory used=1144.4MB, alloc=4.6MB, time=112.57 memory used=1148.2MB, alloc=4.6MB, time=113.05 memory used=1152.0MB, alloc=4.6MB, time=113.54 memory used=1155.8MB, alloc=4.6MB, time=114.02 TOP MAIN SOLVE Loop x[1] = 0.041005185777604885726091400320374 y[1] (analytic) = 594.38004372934348059924656711144 y[1] (numeric) = 594.3800437293434805992465666053 absolute error = 5.0614e-25 relative error = 8.5154272142837216301772168236281e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.04102 Order of pole = 1 memory used=1159.7MB, alloc=4.6MB, time=114.51 memory used=1163.5MB, alloc=4.6MB, time=114.99 memory used=1167.3MB, alloc=4.6MB, time=115.48 memory used=1171.1MB, alloc=4.6MB, time=115.97 memory used=1174.9MB, alloc=4.6MB, time=116.46 TOP MAIN SOLVE Loop x[1] = 0.042005196952647399318912816954974 y[1] (analytic) = 566.4321315243737869309677468142 y[1] (numeric) = 566.43213152437378693096774630797 absolute error = 5.0623e-25 relative error = 8.9371695535287043184561277204656e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.04202 Order of pole = 1 memory used=1178.7MB, alloc=4.6MB, time=116.94 memory used=1182.5MB, alloc=4.6MB, time=117.43 memory used=1186.4MB, alloc=4.6MB, time=117.92 memory used=1190.2MB, alloc=4.6MB, time=118.40 TOP MAIN SOLVE Loop x[1] = 0.043005208127689912911734233589574 y[1] (analytic) = 540.40969534570748475650228265678 y[1] (numeric) = 540.40969534570748475650228215054 absolute error = 5.0624e-25 relative error = 9.3677075811186425406321698455192e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.04302 Order of pole = 1 memory used=1194.0MB, alloc=4.6MB, time=118.89 memory used=1197.8MB, alloc=4.6MB, time=119.38 memory used=1201.6MB, alloc=4.6MB, time=119.86 memory used=1205.4MB, alloc=4.6MB, time=120.35 memory used=1209.2MB, alloc=4.6MB, time=120.84 TOP MAIN SOLVE Loop x[1] = 0.044005219302732426504555650224174 y[1] (analytic) = 516.13986763050327829595853299143 y[1] (numeric) = 516.13986763050327829595853248517 absolute error = 5.0626e-25 relative error = 9.8085815832080592921026103263942e-26 % Correct digits = 27 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.04402 Order of pole = 1 memory used=1213.1MB, alloc=4.6MB, time=121.33 memory used=1216.9MB, alloc=4.6MB, time=121.81 memory used=1220.7MB, alloc=4.6MB, time=122.30 memory used=1224.5MB, alloc=4.6MB, time=122.78 memory used=1228.3MB, alloc=4.6MB, time=123.27 TOP MAIN SOLVE Loop x[1] = 0.045005230477774940097377066858774 y[1] (analytic) = 493.46875100671433315051652875349 y[1] (numeric) = 493.4687510067143331505165282472 absolute error = 5.0629e-25 relative error = 1.0259818863243707519158042829396e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.04502 Order of pole = 1 memory used=1232.1MB, alloc=4.6MB, time=123.76 memory used=1236.0MB, alloc=4.6MB, time=124.26 memory used=1239.8MB, alloc=4.6MB, time=124.75 memory used=1243.6MB, alloc=4.6MB, time=125.23 TOP MAIN SOLVE Loop x[1] = 0.046005241652817453690198483493374 y[1] (analytic) = 472.25897430659527187800739799794 y[1] (numeric) = 472.25897430659527187800739749166 absolute error = 5.0628e-25 relative error = 1.0720389183569393354980464774467e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.04602 Order of pole = 1 memory used=1247.4MB, alloc=4.6MB, time=125.72 memory used=1251.2MB, alloc=4.6MB, time=126.20 memory used=1255.0MB, alloc=4.6MB, time=126.69 memory used=1258.8MB, alloc=4.6MB, time=127.18 memory used=1262.7MB, alloc=4.6MB, time=127.66 TOP MAIN SOLVE Loop x[1] = 0.047005252827859967283019900127974 y[1] (analytic) = 452.38760813568669933118600695316 y[1] (numeric) = 452.38760813568669933118600644684 absolute error = 5.0632e-25 relative error = 1.1192172174798764822168192105516e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.04702 Order of pole = 1 memory used=1266.5MB, alloc=4.6MB, time=128.14 memory used=1270.3MB, alloc=4.6MB, time=128.63 memory used=1274.1MB, alloc=4.6MB, time=129.11 memory used=1277.9MB, alloc=4.6MB, time=129.60 memory used=1281.7MB, alloc=4.6MB, time=130.09 TOP MAIN SOLVE Loop x[1] = 0.048005264002902480875841316762574 y[1] (analytic) = 433.74438079819262147803221311731 y[1] (numeric) = 433.74438079819262147803221261099 absolute error = 5.0632e-25 relative error = 1.1673234799451488257432234534150e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.04802 Order of pole = 1 memory used=1285.5MB, alloc=4.6MB, time=130.58 memory used=1289.4MB, alloc=4.6MB, time=131.08 memory used=1293.2MB, alloc=4.6MB, time=131.56 memory used=1297.0MB, alloc=4.6MB, time=132.05 TOP MAIN SOLVE Loop x[1] = 0.049005275177944994468662733397174 y[1] (analytic) = 416.23014612191587961546615173667 y[1] (numeric) = 416.23014612191587961546615123039 absolute error = 5.0628e-25 relative error = 1.2163463043633270868048165442636e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.04902 Order of pole = 1 memory used=1300.8MB, alloc=4.6MB, time=132.53 memory used=1304.6MB, alloc=4.6MB, time=133.02 memory used=1308.4MB, alloc=4.6MB, time=133.51 memory used=1312.2MB, alloc=4.6MB, time=133.99 memory used=1316.1MB, alloc=4.6MB, time=134.48 TOP MAIN SOLVE Loop x[1] = 0.050005286352987508061484150031774 y[1] (analytic) = 399.7555633454471534065596426515 y[1] (numeric) = 399.75556334544715340655964214518 absolute error = 5.0632e-25 relative error = 1.2665739927738431988187126846959e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.05002 Order of pole = 1 memory used=1319.9MB, alloc=4.6MB, time=134.97 memory used=1323.7MB, alloc=4.6MB, time=135.45 memory used=1327.5MB, alloc=4.6MB, time=135.94 memory used=1331.3MB, alloc=4.6MB, time=136.43 memory used=1335.1MB, alloc=4.6MB, time=136.92 TOP MAIN SOLVE Loop x[1] = 0.051005297528030021654305566666374 y[1] (analytic) = 384.23995617950719580876848651149 y[1] (numeric) = 384.23995617950719580876848600513 absolute error = 5.0636e-25 relative error = 1.3178223447523021429853018442046e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.05102 Order of pole = 1 memory used=1339.0MB, alloc=4.6MB, time=137.41 memory used=1342.8MB, alloc=4.6MB, time=137.89 memory used=1346.6MB, alloc=4.6MB, time=138.38 memory used=1350.4MB, alloc=4.6MB, time=138.87 TOP MAIN SOLVE Loop x[1] = 0.052005308703072535247126983300974 y[1] (analytic) = 369.61032378244880800211487340752 y[1] (numeric) = 369.61032378244880800211487290114 absolute error = 5.0638e-25 relative error = 1.3700374892614019322431256928236e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.05201 Order of pole = 1 memory used=1354.2MB, alloc=4.6MB, time=139.35 memory used=1358.0MB, alloc=4.6MB, time=139.83 memory used=1361.8MB, alloc=4.6MB, time=140.32 memory used=1365.7MB, alloc=4.6MB, time=140.81 memory used=1369.5MB, alloc=4.6MB, time=141.29 TOP MAIN SOLVE Loop x[1] = 0.053005319878115048839948399935574 y[1] (analytic) = 355.80048096800682410211583029926 y[1] (numeric) = 355.80048096800682410211582979286 absolute error = 5.0640e-25 relative error = 1.4232695768770894773555292058031e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.05301 Order of pole = 1 memory used=1373.3MB, alloc=4.6MB, time=141.79 memory used=1377.1MB, alloc=4.6MB, time=142.28 memory used=1380.9MB, alloc=4.6MB, time=142.77 memory used=1384.7MB, alloc=4.6MB, time=143.25 memory used=1388.5MB, alloc=4.6MB, time=143.74 TOP MAIN SOLVE Loop x[1] = 0.054005331053157562432769816570174 y[1] (analytic) = 342.75030870295579830087918409918 y[1] (numeric) = 342.75030870295579830087918359274 absolute error = 5.0644e-25 relative error = 1.4775770791176900264017935924525e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.05401 Order of pole = 1 memory used=1392.4MB, alloc=4.6MB, time=144.23 memory used=1396.2MB, alloc=4.6MB, time=144.72 memory used=1400.0MB, alloc=4.6MB, time=145.20 memory used=1403.8MB, alloc=4.6MB, time=145.68 TOP MAIN SOLVE Loop x[1] = 0.055005342228200076025591233204774 y[1] (analytic) = 330.40509901927255313572657012731 y[1] (numeric) = 330.40509901927255313572656962091 absolute error = 5.0640e-25 relative error = 1.5326639979320102794801003173842e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.05501 Order of pole = 1 memory used=1407.6MB, alloc=4.6MB, time=146.17 memory used=1411.4MB, alloc=4.6MB, time=146.66 memory used=1415.2MB, alloc=4.6MB, time=147.14 memory used=1419.1MB, alloc=4.6MB, time=147.64 memory used=1422.9MB, alloc=4.6MB, time=148.12 TOP MAIN SOLVE Loop x[1] = 0.056005353403242589618412649839374 y[1] (analytic) = 318.7149809904204346752001549441 y[1] (numeric) = 318.71498099042043467520015443768 absolute error = 5.0642e-25 relative error = 1.5889431944061060158581294687291e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.05601 Order of pole = 1 memory used=1426.7MB, alloc=4.6MB, time=148.61 memory used=1430.5MB, alloc=4.6MB, time=149.10 memory used=1434.3MB, alloc=4.6MB, time=149.59 memory used=1438.1MB, alloc=4.6MB, time=150.07 memory used=1442.0MB, alloc=4.6MB, time=150.55 TOP MAIN SOLVE Loop x[1] = 0.057005364578285103211234066473974 y[1] (analytic) = 307.63441650796270019846577286485 y[1] (numeric) = 307.63441650796270019846577235838 absolute error = 5.0647e-25 relative error = 1.6463372523434506881125350616394e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.05701 Order of pole = 1 memory used=1445.8MB, alloc=4.6MB, time=151.04 memory used=1449.6MB, alloc=4.6MB, time=151.53 memory used=1453.4MB, alloc=4.6MB, time=152.01 memory used=1457.2MB, alloc=4.6MB, time=152.50 TOP MAIN SOLVE Loop x[1] = 0.058005375753327616804055483108574 y[1] (analytic) = 297.1217563251734974186040013834 y[1] (numeric) = 297.12175632517349741860400087691 absolute error = 5.0649e-25 relative error = 1.7046547054120515750791506587778e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.05801 Order of pole = 1 memory used=1461.0MB, alloc=4.6MB, time=152.98 memory used=1464.8MB, alloc=4.6MB, time=153.46 memory used=1468.7MB, alloc=4.6MB, time=153.95 memory used=1472.5MB, alloc=4.6MB, time=154.43 memory used=1476.3MB, alloc=4.6MB, time=154.92 TOP MAIN SOLVE Loop x[1] = 0.059005386928370130396876899743174 y[1] (analytic) = 287.13884827437740423725711474716 y[1] (numeric) = 287.13884827437740423725711424066 absolute error = 5.0650e-25 relative error = 1.7639549752460196981099610246014e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.05901 Order of pole = 1 memory used=1480.1MB, alloc=4.6MB, time=155.41 memory used=1483.9MB, alloc=4.6MB, time=155.90 memory used=1487.7MB, alloc=4.6MB, time=156.39 memory used=1491.5MB, alloc=4.6MB, time=156.88 memory used=1495.4MB, alloc=4.6MB, time=157.38 TOP MAIN SOLVE Loop x[1] = 0.060005398103412643989698316377774 y[1] (analytic) = 277.65069076712848035424495358032 y[1] (numeric) = 277.65069076712848035424495307383 absolute error = 5.0649e-25 relative error = 1.8241985950065721210642753747459e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.06001 Order of pole = 1 memory used=1499.2MB, alloc=4.6MB, time=157.87 memory used=1503.0MB, alloc=4.6MB, time=158.35 memory used=1506.8MB, alloc=4.6MB, time=158.84 memory used=1510.6MB, alloc=4.6MB, time=159.33 TOP MAIN SOLVE Loop x[1] = 0.061005409278455157582519733012374 y[1] (analytic) = 268.62512569348436837889901218808 y[1] (numeric) = 268.62512569348436837889901168161 absolute error = 5.0647e-25 relative error = 1.8854155905650812076690361372632e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.06101 Order of pole = 1 memory used=1514.4MB, alloc=4.6MB, time=159.82 memory used=1518.2MB, alloc=4.6MB, time=160.31 memory used=1522.1MB, alloc=4.6MB, time=160.79 memory used=1525.9MB, alloc=4.6MB, time=161.28 memory used=1529.7MB, alloc=4.6MB, time=161.77 TOP MAIN SOLVE Loop x[1] = 0.062005420453497671175341149646974 y[1] (analytic) = 260.03256568285062364732941149455 y[1] (numeric) = 260.03256568285062364732941098806 absolute error = 5.0649e-25 relative error = 1.9477944951623552005555558046646e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.06201 Order of pole = 1 memory used=1533.5MB, alloc=4.6MB, time=162.26 memory used=1537.3MB, alloc=4.6MB, time=162.74 memory used=1541.1MB, alloc=4.6MB, time=163.23 memory used=1544.9MB, alloc=4.6MB, time=163.72 memory used=1548.8MB, alloc=4.6MB, time=164.20 TOP MAIN SOLVE Loop x[1] = 0.063005431628540184768162566281574 y[1] (analytic) = 251.84575140200187475278173143268 y[1] (numeric) = 251.84575140200187475278173092615 absolute error = 5.0653e-25 relative error = 2.0112707765773081364411779403155e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.06301 Order of pole = 1 memory used=1552.6MB, alloc=4.6MB, time=164.69 memory used=1556.4MB, alloc=4.6MB, time=165.18 memory used=1560.2MB, alloc=4.6MB, time=165.67 memory used=1564.0MB, alloc=4.6MB, time=166.16 TOP MAIN SOLVE Loop x[1] = 0.064005442803582698360983982916174 y[1] (analytic) = 244.03953516859526354027797514455 y[1] (numeric) = 244.03953516859526354027797463794 absolute error = 5.0661e-25 relative error = 2.0759341294844187371005967561981e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.06401 Order of pole = 1 memory used=1567.8MB, alloc=4.6MB, time=166.64 memory used=1571.7MB, alloc=4.6MB, time=167.13 memory used=1575.5MB, alloc=4.6MB, time=167.61 memory used=1579.3MB, alloc=4.6MB, time=168.10 memory used=1583.1MB, alloc=4.6MB, time=168.59 TOP MAIN SOLVE Loop x[1] = 0.065005453978625211953805399550774 y[1] (analytic) = 236.59068766929713483957404024772 y[1] (numeric) = 236.59068766929713483957403974113 absolute error = 5.0659e-25 relative error = 2.1412085361030937861563447707617e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.06501 Order of pole = 1 memory used=1586.9MB, alloc=4.6MB, time=168.97 memory used=1590.7MB, alloc=4.6MB, time=169.17 memory used=1594.5MB, alloc=4.6MB, time=169.38 memory used=1598.4MB, alloc=4.6MB, time=169.59 memory used=1602.2MB, alloc=4.6MB, time=169.79 TOP MAIN SOLVE Loop x[1] = 0.066005465153667725546626816185374 y[1] (analytic) = 229.47772500572832638771458277986 y[1] (numeric) = 229.47772500572832638771458227324 absolute error = 5.0662e-25 relative error = 2.2077088309436287258265049418055e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.06601 Order of pole = 1 memory used=1606.0MB, alloc=4.6MB, time=170.00 memory used=1609.8MB, alloc=4.6MB, time=170.20 memory used=1613.6MB, alloc=4.6MB, time=170.41 memory used=1617.4MB, alloc=4.6MB, time=170.61 TOP MAIN SOLVE Loop memory used=1621.2MB, alloc=4.6MB, time=170.82 x[1] = 0.067005476328710239139448232819974 y[1] (analytic) = 222.6807536612835000718940512145 y[1] (numeric) = 222.68075366128350007189405070781 absolute error = 5.0669e-25 relative error = 2.2754099385289439530106432359455e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.06701 Order of pole = 1 memory used=1625.1MB, alloc=4.6MB, time=171.02 memory used=1628.9MB, alloc=4.6MB, time=171.23 memory used=1632.7MB, alloc=4.6MB, time=171.44 memory used=1636.5MB, alloc=4.6MB, time=171.64 TOP MAIN SOLVE Loop x[1] = 0.068005487503752752732269649454574 y[1] (analytic) = 216.18133129779805868399188061568 y[1] (numeric) = 216.18133129779805868399188010895 absolute error = 5.0673e-25 relative error = 2.3440044381166291773002667362380e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.06801 Order of pole = 1 memory used=1640.3MB, alloc=4.6MB, time=171.84 memory used=1644.1MB, alloc=4.6MB, time=172.05 memory used=1647.9MB, alloc=4.6MB, time=172.25 memory used=1651.8MB, alloc=4.6MB, time=172.46 memory used=1655.6MB, alloc=4.6MB, time=172.66 TOP MAIN SOLVE Loop x[1] = 0.069005498678795266325091066089174 y[1] (analytic) = 209.96234156154810621421242550088 y[1] (numeric) = 209.96234156154810621421242499416 absolute error = 5.0672e-25 relative error = 2.4133851634125575496426795977652e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.06901 Order of pole = 1 memory used=1659.4MB, alloc=4.6MB, time=172.87 memory used=1663.2MB, alloc=4.6MB, time=173.08 memory used=1667.0MB, alloc=4.6MB, time=173.28 memory used=1670.8MB, alloc=4.6MB, time=173.49 memory used=1674.7MB, alloc=4.6MB, time=173.69 TOP MAIN SOLVE Loop x[1] = 0.070005509853837779917912482723774 y[1] (analytic) = 204.00788131025106430900825808631 y[1] (numeric) = 204.00788131025106430900825757953 absolute error = 5.0678e-25 relative error = 2.4841197151069826293478743567374e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.07001 Order of pole = 1 memory used=1678.5MB, alloc=4.6MB, time=173.90 memory used=1682.3MB, alloc=4.6MB, time=174.11 memory used=1686.1MB, alloc=4.6MB, time=174.32 memory used=1689.9MB, alloc=4.6MB, time=174.52 TOP MAIN SOLVE Loop x[1] = 0.071005521028880293510733899358374 y[1] (analytic) = 198.30315887247718655755784780246 y[1] (numeric) = 198.30315887247718655755784729571 absolute error = 5.0675e-25 relative error = 2.5554308004033144284146400993907e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.07101 Order of pole = 1 memory used=1693.7MB, alloc=4.6MB, time=174.73 memory used=1697.5MB, alloc=4.6MB, time=174.94 memory used=1701.4MB, alloc=4.6MB, time=175.14 memory used=1705.2MB, alloc=4.6MB, time=175.34 memory used=1709.0MB, alloc=4.6MB, time=175.55 TOP MAIN SOLVE Loop x[1] = 0.072005532203922807103555315992974 y[1] (analytic) = 192.83440212310177628375366601941 y[1] (numeric) = 192.83440212310177628375366551263 absolute error = 5.0678e-25 relative error = 2.6280580353939199482995596019620e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.07201 Order of pole = 1 memory used=1712.8MB, alloc=4.6MB, time=175.75 memory used=1716.6MB, alloc=4.6MB, time=175.96 memory used=1720.4MB, alloc=4.6MB, time=176.16 memory used=1724.2MB, alloc=4.6MB, time=176.37 memory used=1728.1MB, alloc=4.6MB, time=176.58 TOP MAIN SOLVE Loop x[1] = 0.073005543378965320696376732627574 y[1] (analytic) = 187.58877530723911606191400135632 y[1] (numeric) = 187.58877530723911606191400084953 absolute error = 5.0679e-25 relative error = 2.7016008776109473203325808432717e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.07301 Order of pole = 1 memory used=1731.9MB, alloc=4.6MB, time=176.78 memory used=1735.7MB, alloc=4.6MB, time=176.99 memory used=1739.5MB, alloc=4.6MB, time=177.20 memory used=1743.3MB, alloc=4.6MB, time=177.41 TOP MAIN SOLVE Loop x[1] = 0.074005554554007834289198149262174 y[1] (analytic) = 182.55430367395463820113391905766 y[1] (numeric) = 182.5543036739546382011339185509 absolute error = 5.0676e-25 relative error = 2.7759411298518753631517106856994e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.07401 Order of pole = 1 memory used=1747.1MB, alloc=4.6MB, time=177.61 memory used=1750.9MB, alloc=4.6MB, time=177.82 memory used=1754.8MB, alloc=4.6MB, time=178.02 memory used=1758.6MB, alloc=4.6MB, time=178.23 memory used=1762.4MB, alloc=4.6MB, time=178.43 TOP MAIN SOLVE Loop x[1] = 0.075005565729050347882019565896774 y[1] (analytic) = 177.71980509285621693078228495756 y[1] (numeric) = 177.71980509285621693078228445079 absolute error = 5.0677e-25 relative error = 2.8515111173750132412337971227064e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.07501 Order of pole = 1 memory used=1766.2MB, alloc=4.6MB, time=178.64 memory used=1770.0MB, alloc=4.6MB, time=178.85 memory used=1773.8MB, alloc=4.6MB, time=179.05 memory used=1777.7MB, alloc=4.6MB, time=179.26 memory used=1781.5MB, alloc=4.6MB, time=179.46 TOP MAIN SOLVE Loop x[1] = 0.076005576904092861474840982531374 y[1] (analytic) = 173.07482792386803413485647178186 y[1] (numeric) = 173.07482792386803413485647127506 absolute error = 5.0680e-25 relative error = 2.9282132247615501271704755833859e-25 % Correct digits = 26 h = 1.0000111750425135928214166346017e-05 Complex estimate of poles used Radius of convergence = 0.07601 Order of pole = 1 memory used=1785.3MB, alloc=4.6MB, time=179.67 memory used=1789.1MB, alloc=4.6MB, time=179.88 Finished! Maximum Time Reached before Solution Completed! diff ( y , x , 1 ) = m1 * 2.0 * x / (x * x + 0.000001) /( x * x + 0.000001); Iterations = 10088 Total Elapsed Time = 3 Minutes 0 Seconds Elapsed Time(since restart) = 2 Minutes 59 Seconds Expected Time Remaining = 1 Minutes 20 Seconds Optimized Time Remaining = 1 Minutes 20 Seconds Expected Total Time = 4 Minutes 20 Seconds Time to Timeout Unknown Percent Done = 69.22 % > quit memory used=1792.6MB, alloc=4.6MB, time=180.05