|\^/| Maple 12 (IBM INTEL LINUX) ._|\| |/|_. Copyright (c) Maplesoft, a division of Waterloo Maple Inc. 2008 \ MAPLE / All rights reserved. Maple is a trademark of <____ ____> Waterloo Maple Inc. | Type ? for help. > #BEGIN OUTFILE1 > # Begin Function number 3 > check_sign := proc( x0 ,xf) > local ret; > if (xf > x0) then # if number 1 > ret := 1.0; > else > ret := -1.0; > fi;# end if 1; > ret;; > end; check_sign := proc(x0, xf) local ret; if x0 < xf then ret := 1.0 else ret := -1.0 end if; ret end proc > # End Function number 3 > # Begin Function number 4 > est_size_answer := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4_a1, > array_tmp4_a2, > array_tmp4, > array_tmp5, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local min_size; > min_size := glob_large_float; > if (omniabs(array_y[1]) < min_size) then # if number 1 > min_size := omniabs(array_y[1]); > omniout_float(ALWAYS,"min_size",32,min_size,32,""); > fi;# end if 1; > if (min_size < 1.0) then # if number 1 > min_size := 1.0; > omniout_float(ALWAYS,"min_size",32,min_size,32,""); > fi;# end if 1; > min_size; > end; est_size_answer := proc() local min_size; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4_a1, array_tmp4_a2, array_tmp4, array_tmp5, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; min_size := glob_large_float; if omniabs(array_y[1]) < min_size then min_size := omniabs(array_y[1]); omniout_float(ALWAYS, "min_size", 32, min_size, 32, "") end if; if min_size < 1.0 then min_size := 1.0; omniout_float(ALWAYS, "min_size", 32, min_size, 32, "") end if; min_size end proc > # End Function number 4 > # Begin Function number 5 > test_suggested_h := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4_a1, > array_tmp4_a2, > array_tmp4, > array_tmp5, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local max_value3,hn_div_ho,hn_div_ho_2,hn_div_ho_3,value3,no_terms; > max_value3 := 0.0; > no_terms := glob_max_terms; > hn_div_ho := 0.5; > hn_div_ho_2 := 0.25; > hn_div_ho_3 := 0.125; > omniout_float(ALWAYS,"hn_div_ho",32,hn_div_ho,32,""); > omniout_float(ALWAYS,"hn_div_ho_2",32,hn_div_ho_2,32,""); > omniout_float(ALWAYS,"hn_div_ho_3",32,hn_div_ho_3,32,""); > value3 := omniabs(array_y[no_terms-3] + array_y[no_terms - 2] * hn_div_ho + array_y[no_terms - 1] * hn_div_ho_2 + array_y[no_terms] * hn_div_ho_3); > if (value3 > max_value3) then # if number 1 > max_value3 := value3; > omniout_float(ALWAYS,"value3",32,value3,32,""); > fi;# end if 1; > omniout_float(ALWAYS,"max_value3",32,max_value3,32,""); > max_value3; > end; test_suggested_h := proc() local max_value3, hn_div_ho, hn_div_ho_2, hn_div_ho_3, value3, no_terms; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4_a1, array_tmp4_a2, array_tmp4, array_tmp5, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; max_value3 := 0.; no_terms := glob_max_terms; hn_div_ho := 0.5; hn_div_ho_2 := 0.25; hn_div_ho_3 := 0.125; omniout_float(ALWAYS, "hn_div_ho", 32, hn_div_ho, 32, ""); omniout_float(ALWAYS, "hn_div_ho_2", 32, hn_div_ho_2, 32, ""); omniout_float(ALWAYS, "hn_div_ho_3", 32, hn_div_ho_3, 32, ""); value3 := omniabs(array_y[no_terms - 3] + array_y[no_terms - 2]*hn_div_ho + array_y[no_terms - 1]*hn_div_ho_2 + array_y[no_terms]*hn_div_ho_3); if max_value3 < value3 then max_value3 := value3; omniout_float(ALWAYS, "value3", 32, value3, 32, "") end if; omniout_float(ALWAYS, "max_value3", 32, max_value3, 32, ""); max_value3 end proc > # End Function number 5 > # Begin Function number 6 > reached_interval := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4_a1, > array_tmp4_a2, > array_tmp4, > array_tmp5, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local ret; > if (glob_check_sign * (array_x[1]) >= glob_check_sign * glob_next_display) then # if number 1 > ret := true; > else > ret := false; > fi;# end if 1; > return(ret); > end; reached_interval := proc() local ret; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4_a1, array_tmp4_a2, array_tmp4, array_tmp5, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; if glob_check_sign*glob_next_display <= glob_check_sign*array_x[1] then ret := true else ret := false end if; return ret end proc > # End Function number 6 > # Begin Function number 7 > display_alot := proc(iter) > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4_a1, > array_tmp4_a2, > array_tmp4, > array_tmp5, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local abserr, analytic_val_y, ind_var, numeric_val, relerr, term_no; > #TOP DISPLAY ALOT > if (reached_interval()) then # if number 1 > if (iter >= 0) then # if number 2 > ind_var := array_x[1]; > omniout_float(ALWAYS,"x[1] ",33,ind_var,20," "); > analytic_val_y := exact_soln_y(ind_var); > omniout_float(ALWAYS,"y[1] (analytic) ",33,analytic_val_y,20," "); > term_no := 1; > numeric_val := array_y[term_no]; > abserr := omniabs(numeric_val - analytic_val_y); > omniout_float(ALWAYS,"y[1] (numeric) ",33,numeric_val,20," "); > if (omniabs(analytic_val_y) <> 0.0) then # if number 3 > relerr := abserr*100.0/omniabs(analytic_val_y); > if (relerr <> 0.0) then # if number 4 > glob_good_digits := -trunc(log10(relerr)) + 2; > else > glob_good_digits := Digits; > fi;# end if 4; > else > relerr := -1.0 ; > glob_good_digits := -1; > fi;# end if 3; > if (glob_iter = 1) then # if number 3 > array_1st_rel_error[1] := relerr; > else > array_last_rel_error[1] := relerr; > fi;# end if 3; > omniout_float(ALWAYS,"absolute error ",4,abserr,20," "); > omniout_float(ALWAYS,"relative error ",4,relerr,20,"%"); > omniout_int(INFO,"Correct digits ",32,glob_good_digits,4," ") > ; > omniout_float(ALWAYS,"h ",4,glob_h,20," "); > fi;# end if 2; > #BOTTOM DISPLAY ALOT > fi;# end if 1; > end; display_alot := proc(iter) local abserr, analytic_val_y, ind_var, numeric_val, relerr, term_no; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4_a1, array_tmp4_a2, array_tmp4, array_tmp5, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; if reached_interval() then if 0 <= iter then ind_var := array_x[1]; omniout_float(ALWAYS, "x[1] ", 33, ind_var, 20, " "); analytic_val_y := exact_soln_y(ind_var); omniout_float(ALWAYS, "y[1] (analytic) ", 33, analytic_val_y, 20, " "); term_no := 1; numeric_val := array_y[term_no]; abserr := omniabs(numeric_val - analytic_val_y); omniout_float(ALWAYS, "y[1] (numeric) ", 33, numeric_val, 20, " "); if omniabs(analytic_val_y) <> 0. then relerr := abserr*100.0/omniabs(analytic_val_y); if relerr <> 0. then glob_good_digits := -trunc(log10(relerr)) + 2 else glob_good_digits := Digits end if else relerr := -1.0; glob_good_digits := -1 end if; if glob_iter = 1 then array_1st_rel_error[1] := relerr else array_last_rel_error[1] := relerr end if; omniout_float(ALWAYS, "absolute error ", 4, abserr, 20, " "); omniout_float(ALWAYS, "relative error ", 4, relerr, 20, "%"); omniout_int(INFO, "Correct digits ", 32, glob_good_digits, 4, " "); omniout_float(ALWAYS, "h ", 4, glob_h, 20, " ") end if end if end proc > # End Function number 7 > # Begin Function number 8 > adjust_for_pole := proc(h_param) > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4_a1, > array_tmp4_a2, > array_tmp4, > array_tmp5, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local hnew, sz2, tmp; > #TOP ADJUST FOR POLE > hnew := h_param; > glob_normmax := glob_small_float; > if (omniabs(array_y_higher[1,1]) > glob_small_float) then # if number 1 > tmp := omniabs(array_y_higher[1,1]); > if (tmp < glob_normmax) then # if number 2 > glob_normmax := tmp; > fi;# end if 2 > fi;# end if 1; > if (glob_look_poles and (omniabs(array_pole[1]) > glob_small_float) and (array_pole[1] <> glob_large_float)) then # if number 1 > sz2 := array_pole[1]/10.0; > if (sz2 < hnew) then # if number 2 > omniout_float(INFO,"glob_h adjusted to ",20,h_param,12,"due to singularity."); > omniout_str(INFO,"Reached Optimal"); > return(hnew); > fi;# end if 2 > fi;# end if 1; > if ( not glob_reached_optimal_h) then # if number 1 > glob_reached_optimal_h := true; > glob_curr_iter_when_opt := glob_current_iter; > glob_optimal_clock_start_sec := elapsed_time_seconds(); > glob_optimal_start := array_x[1]; > fi;# end if 1; > hnew := sz2; > ;#END block > return(hnew); > #BOTTOM ADJUST FOR POLE > end; adjust_for_pole := proc(h_param) local hnew, sz2, tmp; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4_a1, array_tmp4_a2, array_tmp4, array_tmp5, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; hnew := h_param; glob_normmax := glob_small_float; if glob_small_float < omniabs(array_y_higher[1, 1]) then tmp := omniabs(array_y_higher[1, 1]); if tmp < glob_normmax then glob_normmax := tmp end if end if; if glob_look_poles and glob_small_float < omniabs(array_pole[1]) and array_pole[1] <> glob_large_float then sz2 := array_pole[1]/10.0; if sz2 < hnew then omniout_float(INFO, "glob_h adjusted to ", 20, h_param, 12, "due to singularity."); omniout_str(INFO, "Reached Optimal"); return hnew end if end if; if not glob_reached_optimal_h then glob_reached_optimal_h := true; glob_curr_iter_when_opt := glob_current_iter; glob_optimal_clock_start_sec := elapsed_time_seconds(); glob_optimal_start := array_x[1] end if; hnew := sz2; return hnew end proc > # End Function number 8 > # Begin Function number 9 > prog_report := proc(x_start,x_end) > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4_a1, > array_tmp4_a2, > array_tmp4, > array_tmp5, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local clock_sec, opt_clock_sec, clock_sec1, expect_sec, left_sec, percent_done, total_clock_sec; > #TOP PROGRESS REPORT > clock_sec1 := elapsed_time_seconds(); > total_clock_sec := convfloat(clock_sec1) - convfloat(glob_orig_start_sec); > glob_clock_sec := convfloat(clock_sec1) - convfloat(glob_clock_start_sec); > left_sec := convfloat(glob_max_sec) + convfloat(glob_orig_start_sec) - convfloat(clock_sec1); > expect_sec := comp_expect_sec(convfloat(x_end),convfloat(x_start),convfloat(array_x[1]) + convfloat(glob_h) ,convfloat( clock_sec1) - convfloat(glob_orig_start_sec)); > opt_clock_sec := convfloat( clock_sec1) - convfloat(glob_optimal_clock_start_sec); > glob_optimal_expect_sec := comp_expect_sec(convfloat(x_end),convfloat(x_start),convfloat(array_x[1]) +convfloat( glob_h) ,convfloat( opt_clock_sec)); > glob_total_exp_sec := glob_optimal_expect_sec + total_clock_sec; > percent_done := comp_percent(convfloat(x_end),convfloat(x_start),convfloat(array_x[1]) + convfloat(glob_h)); > glob_percent_done := percent_done; > omniout_str_noeol(INFO,"Total Elapsed Time "); > omniout_timestr(convfloat(total_clock_sec)); > omniout_str_noeol(INFO,"Elapsed Time(since restart) "); > omniout_timestr(convfloat(glob_clock_sec)); > if (convfloat(percent_done) < convfloat(100.0)) then # if number 1 > omniout_str_noeol(INFO,"Expected Time Remaining "); > omniout_timestr(convfloat(expect_sec)); > omniout_str_noeol(INFO,"Optimized Time Remaining "); > omniout_timestr(convfloat(glob_optimal_expect_sec)); > omniout_str_noeol(INFO,"Expected Total Time "); > omniout_timestr(convfloat(glob_total_exp_sec)); > fi;# end if 1; > omniout_str_noeol(INFO,"Time to Timeout "); > omniout_timestr(convfloat(left_sec)); > omniout_float(INFO, "Percent Done ",33,percent_done,4,"%"); > #BOTTOM PROGRESS REPORT > end; prog_report := proc(x_start, x_end) local clock_sec, opt_clock_sec, clock_sec1, expect_sec, left_sec, percent_done, total_clock_sec; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4_a1, array_tmp4_a2, array_tmp4, array_tmp5, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; clock_sec1 := elapsed_time_seconds(); total_clock_sec := convfloat(clock_sec1) - convfloat(glob_orig_start_sec); glob_clock_sec := convfloat(clock_sec1) - convfloat(glob_clock_start_sec); left_sec := convfloat(glob_max_sec) + convfloat(glob_orig_start_sec) - convfloat(clock_sec1); expect_sec := comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(array_x[1]) + convfloat(glob_h), convfloat(clock_sec1) - convfloat(glob_orig_start_sec)); opt_clock_sec := convfloat(clock_sec1) - convfloat(glob_optimal_clock_start_sec); glob_optimal_expect_sec := comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(array_x[1]) + convfloat(glob_h), convfloat(opt_clock_sec)); glob_total_exp_sec := glob_optimal_expect_sec + total_clock_sec; percent_done := comp_percent(convfloat(x_end), convfloat(x_start), convfloat(array_x[1]) + convfloat(glob_h)); glob_percent_done := percent_done; omniout_str_noeol(INFO, "Total Elapsed Time "); omniout_timestr(convfloat(total_clock_sec)); omniout_str_noeol(INFO, "Elapsed Time(since restart) "); omniout_timestr(convfloat(glob_clock_sec)); if convfloat(percent_done) < convfloat(100.0) then omniout_str_noeol(INFO, "Expected Time Remaining "); omniout_timestr(convfloat(expect_sec)); omniout_str_noeol(INFO, "Optimized Time Remaining "); omniout_timestr(convfloat(glob_optimal_expect_sec)); omniout_str_noeol(INFO, "Expected Total Time "); omniout_timestr(convfloat(glob_total_exp_sec)) end if; omniout_str_noeol(INFO, "Time to Timeout "); omniout_timestr(convfloat(left_sec)); omniout_float(INFO, "Percent Done ", 33, percent_done, 4, "%") end proc > # End Function number 9 > # Begin Function number 10 > check_for_pole := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4_a1, > array_tmp4_a2, > array_tmp4, > array_tmp5, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local cnt, dr1, dr2, ds1, ds2, hdrc, m, n, nr1, nr2, ord_no, rad_c, rcs, rm0, rm1, rm2, rm3, rm4, found, h_new, ratio, term; > #TOP CHECK FOR POLE > #IN RADII REAL EQ = 1 > #Computes radius of convergence and r_order of pole from 3 adjacent Taylor series terms. EQUATUON NUMBER 1 > #Applies to pole of arbitrary r_order on the real axis, > #Due to Prof. George Corliss. > n := glob_max_terms; > m := n - 1 - 1; > while ((m >= 10) and ((omniabs(array_y_higher[1,m]) < glob_small_float) or (omniabs(array_y_higher[1,m-1]) < glob_small_float) or (omniabs(array_y_higher[1,m-2]) < glob_small_float ))) do # do number 2 > m := m - 1; > od;# end do number 2; > if (m > 10) then # if number 1 > rm0 := array_y_higher[1,m]/array_y_higher[1,m-1]; > rm1 := array_y_higher[1,m-1]/array_y_higher[1,m-2]; > hdrc := convfloat(m-1)*rm0-convfloat(m-2)*rm1; > if (omniabs(hdrc) > glob_small_float) then # if number 2 > rcs := glob_h/hdrc; > ord_no := convfloat(m-1)*rm0/hdrc - convfloat(m) + 2.0; > array_real_pole[1,1] := rcs; > array_real_pole[1,2] := ord_no; > else > array_real_pole[1,1] := glob_large_float; > array_real_pole[1,2] := glob_large_float; > fi;# end if 2 > else > array_real_pole[1,1] := glob_large_float; > array_real_pole[1,2] := glob_large_float; > fi;# end if 1; > #BOTTOM RADII REAL EQ = 1 > #TOP RADII COMPLEX EQ = 1 > #Computes radius of convergence for complex conjugate pair of poles. > #from 6 adjacent Taylor series terms > #Also computes r_order of poles. > #Due to Manuel Prieto. > #With a correction by Dennis J. Darland > n := glob_max_terms - 1 - 1; > cnt := 0; > while ((cnt < 5) and (n >= 10)) do # do number 2 > if (omniabs(array_y_higher[1,n]) > glob_small_float) then # if number 1 > cnt := cnt + 1; > else > cnt := 0; > fi;# end if 1; > n := n - 1; > od;# end do number 2; > m := n + cnt; > if (m <= 10) then # if number 1 > array_complex_pole[1,1] := glob_large_float; > array_complex_pole[1,2] := glob_large_float; > elif > ((omniabs(array_y_higher[1,m]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-1]) >=(glob_large_float)) or (omniabs(array_y_higher[1,m-2]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-3]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-4]) >= (glob_large_float)) or (omniabs(array_y_higher[1,m-5]) >= (glob_large_float))) then # if number 2 > array_complex_pole[1,1] := glob_large_float; > array_complex_pole[1,2] := glob_large_float; > else > rm0 := (array_y_higher[1,m])/(array_y_higher[1,m-1]); > rm1 := (array_y_higher[1,m-1])/(array_y_higher[1,m-2]); > rm2 := (array_y_higher[1,m-2])/(array_y_higher[1,m-3]); > rm3 := (array_y_higher[1,m-3])/(array_y_higher[1,m-4]); > rm4 := (array_y_higher[1,m-4])/(array_y_higher[1,m-5]); > nr1 := convfloat(m-1)*rm0 - 2.0*convfloat(m-2)*rm1 + convfloat(m-3)*rm2; > nr2 := convfloat(m-2)*rm1 - 2.0*convfloat(m-3)*rm2 + convfloat(m-4)*rm3; > dr1 := (-1.0)/rm1 + 2.0/rm2 - 1.0/rm3; > dr2 := (-1.0)/rm2 + 2.0/rm3 - 1.0/rm4; > ds1 := 3.0/rm1 - 8.0/rm2 + 5.0/rm3; > ds2 := 3.0/rm2 - 8.0/rm3 + 5.0/rm4; > if ((omniabs(nr1 * dr2 - nr2 * dr1) <= glob_small_float) or (omniabs(dr1) <= glob_small_float)) then # if number 3 > array_complex_pole[1,1] := glob_large_float; > array_complex_pole[1,2] := glob_large_float; > else > if (omniabs(nr1*dr2 - nr2 * dr1) > glob_small_float) then # if number 4 > rcs := ((ds1*dr2 - ds2*dr1 +dr1*dr2)/(nr1*dr2 - nr2 * dr1)); > #(Manuels) rcs := (ds1*dr2 - ds2*dr1)/(nr1*dr2 - nr2 * dr1) > ord_no := (rcs*nr1 - ds1)/(2.0*dr1) -convfloat(m)/2.0; > if (omniabs(rcs) > glob_small_float) then # if number 5 > if (rcs > 0.0) then # if number 6 > rad_c := sqrt(rcs) * omniabs(glob_h); > else > rad_c := glob_large_float; > fi;# end if 6 > else > rad_c := glob_large_float; > ord_no := glob_large_float; > fi;# end if 5 > else > rad_c := glob_large_float; > ord_no := glob_large_float; > fi;# end if 4 > fi;# end if 3; > array_complex_pole[1,1] := rad_c; > array_complex_pole[1,2] := ord_no; > fi;# end if 2; > #BOTTOM RADII COMPLEX EQ = 1 > found := false; > #TOP WHICH RADII EQ = 1 > if ( not found and ((array_real_pole[1,1] = glob_large_float) or (array_real_pole[1,2] = glob_large_float)) and ((array_complex_pole[1,1] <> glob_large_float) and (array_complex_pole[1,2] <> glob_large_float)) and ((array_complex_pole[1,1] > 0.0) and (array_complex_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_complex_pole[1,1]; > array_poles[1,2] := array_complex_pole[1,2]; > found := true; > array_type_pole[1] := 2; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Complex estimate of poles used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found and ((array_real_pole[1,1] <> glob_large_float) and (array_real_pole[1,2] <> glob_large_float) and (array_real_pole[1,1] > 0.0) and (array_real_pole[1,2] > 0.0) and ((array_complex_pole[1,1] = glob_large_float) or (array_complex_pole[1,2] = glob_large_float) or (array_complex_pole[1,1] <= 0.0 ) or (array_complex_pole[1,2] <= 0.0)))) then # if number 2 > array_poles[1,1] := array_real_pole[1,1]; > array_poles[1,2] := array_real_pole[1,2]; > found := true; > array_type_pole[1] := 1; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Real estimate of pole used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found and (((array_real_pole[1,1] = glob_large_float) or (array_real_pole[1,2] = glob_large_float)) and ((array_complex_pole[1,1] = glob_large_float) or (array_complex_pole[1,2] = glob_large_float)))) then # if number 2 > array_poles[1,1] := glob_large_float; > array_poles[1,2] := glob_large_float; > found := true; > array_type_pole[1] := 3; > if (reached_interval()) then # if number 3 > omniout_str(ALWAYS,"NO POLE"); > fi;# end if 3; > fi;# end if 2; > if ( not found and ((array_real_pole[1,1] < array_complex_pole[1,1]) and (array_real_pole[1,1] > 0.0) and (array_real_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_real_pole[1,1]; > array_poles[1,2] := array_real_pole[1,2]; > found := true; > array_type_pole[1] := 1; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Real estimate of pole used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found and ((array_complex_pole[1,1] <> glob_large_float) and (array_complex_pole[1,2] <> glob_large_float) and (array_complex_pole[1,1] > 0.0) and (array_complex_pole[1,2] > 0.0))) then # if number 2 > array_poles[1,1] := array_complex_pole[1,1]; > array_poles[1,2] := array_complex_pole[1,2]; > array_type_pole[1] := 2; > found := true; > if (glob_display_flag) then # if number 3 > if (reached_interval()) then # if number 4 > omniout_str(ALWAYS,"Complex estimate of poles used"); > fi;# end if 4; > fi;# end if 3; > fi;# end if 2; > if ( not found ) then # if number 2 > array_poles[1,1] := glob_large_float; > array_poles[1,2] := glob_large_float; > array_type_pole[1] := 3; > if (reached_interval()) then # if number 3 > omniout_str(ALWAYS,"NO POLE"); > fi;# end if 3; > fi;# end if 2; > #BOTTOM WHICH RADII EQ = 1 > array_pole[1] := glob_large_float; > array_pole[2] := glob_large_float; > #TOP WHICH RADIUS EQ = 1 > if (array_pole[1] > array_poles[1,1]) then # if number 2 > array_pole[1] := array_poles[1,1]; > array_pole[2] := array_poles[1,2]; > fi;# end if 2; > #BOTTOM WHICH RADIUS EQ = 1 > #START ADJUST ALL SERIES > if (array_pole[1] * glob_ratio_of_radius < omniabs(glob_h)) then # if number 2 > h_new := array_pole[1] * glob_ratio_of_radius; > term := 1; > ratio := 1.0; > while (term <= glob_max_terms) do # do number 2 > array_y[term] := array_y[term]* ratio; > array_y_higher[1,term] := array_y_higher[1,term]* ratio; > array_x[term] := array_x[term]* ratio; > ratio := ratio * h_new / omniabs(glob_h); > term := term + 1; > od;# end do number 2; > glob_h := h_new; > fi;# end if 2; > #BOTTOM ADJUST ALL SERIES > if (reached_interval()) then # if number 2 > display_pole(); > fi;# end if 2 > end; check_for_pole := proc() local cnt, dr1, dr2, ds1, ds2, hdrc, m, n, nr1, nr2, ord_no, rad_c, rcs, rm0, rm1, rm2, rm3, rm4, found, h_new, ratio, term; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4_a1, array_tmp4_a2, array_tmp4, array_tmp5, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; n := glob_max_terms; m := n - 2; while 10 <= m and (omniabs(array_y_higher[1, m]) < glob_small_float or omniabs(array_y_higher[1, m - 1]) < glob_small_float or omniabs(array_y_higher[1, m - 2]) < glob_small_float) do m := m - 1 end do; if 10 < m then rm0 := array_y_higher[1, m]/array_y_higher[1, m - 1]; rm1 := array_y_higher[1, m - 1]/array_y_higher[1, m - 2]; hdrc := convfloat(m - 1)*rm0 - convfloat(m - 2)*rm1; if glob_small_float < omniabs(hdrc) then rcs := glob_h/hdrc; ord_no := convfloat(m - 1)*rm0/hdrc - convfloat(m) + 2.0; array_real_pole[1, 1] := rcs; array_real_pole[1, 2] := ord_no else array_real_pole[1, 1] := glob_large_float; array_real_pole[1, 2] := glob_large_float end if else array_real_pole[1, 1] := glob_large_float; array_real_pole[1, 2] := glob_large_float end if; n := glob_max_terms - 2; cnt := 0; while cnt < 5 and 10 <= n do if glob_small_float < omniabs(array_y_higher[1, n]) then cnt := cnt + 1 else cnt := 0 end if; n := n - 1 end do; m := n + cnt; if m <= 10 then array_complex_pole[1, 1] := glob_large_float; array_complex_pole[1, 2] := glob_large_float elif glob_large_float <= omniabs(array_y_higher[1, m]) or glob_large_float <= omniabs(array_y_higher[1, m - 1]) or glob_large_float <= omniabs(array_y_higher[1, m - 2]) or glob_large_float <= omniabs(array_y_higher[1, m - 3]) or glob_large_float <= omniabs(array_y_higher[1, m - 4]) or glob_large_float <= omniabs(array_y_higher[1, m - 5]) then array_complex_pole[1, 1] := glob_large_float; array_complex_pole[1, 2] := glob_large_float else rm0 := array_y_higher[1, m]/array_y_higher[1, m - 1]; rm1 := array_y_higher[1, m - 1]/array_y_higher[1, m - 2]; rm2 := array_y_higher[1, m - 2]/array_y_higher[1, m - 3]; rm3 := array_y_higher[1, m - 3]/array_y_higher[1, m - 4]; rm4 := array_y_higher[1, m - 4]/array_y_higher[1, m - 5]; nr1 := convfloat(m - 1)*rm0 - 2.0*convfloat(m - 2)*rm1 + convfloat(m - 3)*rm2; nr2 := convfloat(m - 2)*rm1 - 2.0*convfloat(m - 3)*rm2 + convfloat(m - 4)*rm3; dr1 := (-1)*(1.0)/rm1 + 2.0/rm2 - 1.0/rm3; dr2 := (-1)*(1.0)/rm2 + 2.0/rm3 - 1.0/rm4; ds1 := 3.0/rm1 - 8.0/rm2 + 5.0/rm3; ds2 := 3.0/rm2 - 8.0/rm3 + 5.0/rm4; if omniabs(nr1*dr2 - nr2*dr1) <= glob_small_float or omniabs(dr1) <= glob_small_float then array_complex_pole[1, 1] := glob_large_float; array_complex_pole[1, 2] := glob_large_float else if glob_small_float < omniabs(nr1*dr2 - nr2*dr1) then rcs := (ds1*dr2 - ds2*dr1 + dr1*dr2)/(nr1*dr2 - nr2*dr1); ord_no := (rcs*nr1 - ds1)/(2.0*dr1) - convfloat(m)/2.0; if glob_small_float < omniabs(rcs) then if 0. < rcs then rad_c := sqrt(rcs)*omniabs(glob_h) else rad_c := glob_large_float end if else rad_c := glob_large_float; ord_no := glob_large_float end if else rad_c := glob_large_float; ord_no := glob_large_float end if end if; array_complex_pole[1, 1] := rad_c; array_complex_pole[1, 2] := ord_no end if; found := false; if not found and (array_real_pole[1, 1] = glob_large_float or array_real_pole[1, 2] = glob_large_float) and array_complex_pole[1, 1] <> glob_large_float and array_complex_pole[1, 2] <> glob_large_float and 0. < array_complex_pole[1, 1] and 0. < array_complex_pole[1, 2] then array_poles[1, 1] := array_complex_pole[1, 1]; array_poles[1, 2] := array_complex_pole[1, 2]; found := true; array_type_pole[1] := 2; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Complex estimate of poles used") end if end if end if; if not found and array_real_pole[1, 1] <> glob_large_float and array_real_pole[1, 2] <> glob_large_float and 0. < array_real_pole[1, 1] and 0. < array_real_pole[1, 2] and ( array_complex_pole[1, 1] = glob_large_float or array_complex_pole[1, 2] = glob_large_float or array_complex_pole[1, 1] <= 0. or array_complex_pole[1, 2] <= 0.) then array_poles[1, 1] := array_real_pole[1, 1]; array_poles[1, 2] := array_real_pole[1, 2]; found := true; array_type_pole[1] := 1; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Real estimate of pole used") end if end if end if; if not found and (array_real_pole[1, 1] = glob_large_float or array_real_pole[1, 2] = glob_large_float) and ( array_complex_pole[1, 1] = glob_large_float or array_complex_pole[1, 2] = glob_large_float) then array_poles[1, 1] := glob_large_float; array_poles[1, 2] := glob_large_float; found := true; array_type_pole[1] := 3; if reached_interval() then omniout_str(ALWAYS, "NO POLE") end if end if; if not found and array_real_pole[1, 1] < array_complex_pole[1, 1] and 0. < array_real_pole[1, 1] and 0. < array_real_pole[1, 2] then array_poles[1, 1] := array_real_pole[1, 1]; array_poles[1, 2] := array_real_pole[1, 2]; found := true; array_type_pole[1] := 1; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Real estimate of pole used") end if end if end if; if not found and array_complex_pole[1, 1] <> glob_large_float and array_complex_pole[1, 2] <> glob_large_float and 0. < array_complex_pole[1, 1] and 0. < array_complex_pole[1, 2] then array_poles[1, 1] := array_complex_pole[1, 1]; array_poles[1, 2] := array_complex_pole[1, 2]; array_type_pole[1] := 2; found := true; if glob_display_flag then if reached_interval() then omniout_str(ALWAYS, "Complex estimate of poles used") end if end if end if; if not found then array_poles[1, 1] := glob_large_float; array_poles[1, 2] := glob_large_float; array_type_pole[1] := 3; if reached_interval() then omniout_str(ALWAYS, "NO POLE") end if end if; array_pole[1] := glob_large_float; array_pole[2] := glob_large_float; if array_poles[1, 1] < array_pole[1] then array_pole[1] := array_poles[1, 1]; array_pole[2] := array_poles[1, 2] end if; if array_pole[1]*glob_ratio_of_radius < omniabs(glob_h) then h_new := array_pole[1]*glob_ratio_of_radius; term := 1; ratio := 1.0; while term <= glob_max_terms do array_y[term] := array_y[term]*ratio; array_y_higher[1, term] := array_y_higher[1, term]*ratio; array_x[term] := array_x[term]*ratio; ratio := ratio*h_new/omniabs(glob_h); term := term + 1 end do; glob_h := h_new end if; if reached_interval() then display_pole() end if end proc > # End Function number 10 > # Begin Function number 11 > get_norms := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4_a1, > array_tmp4_a2, > array_tmp4, > array_tmp5, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local iii; > if ( not glob_initial_pass) then # if number 2 > iii := 1; > while (iii <= glob_max_terms) do # do number 2 > array_norms[iii] := 0.0; > iii := iii + 1; > od;# end do number 2; > #TOP GET NORMS > iii := 1; > while (iii <= glob_max_terms) do # do number 2 > if (omniabs(array_y[iii]) > array_norms[iii]) then # if number 3 > array_norms[iii] := omniabs(array_y[iii]); > fi;# end if 3; > iii := iii + 1; > od;# end do number 2 > #BOTTOM GET NORMS > ; > fi;# end if 2; > end; get_norms := proc() local iii; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4_a1, array_tmp4_a2, array_tmp4, array_tmp5, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; if not glob_initial_pass then iii := 1; while iii <= glob_max_terms do array_norms[iii] := 0.; iii := iii + 1 end do; iii := 1; while iii <= glob_max_terms do if array_norms[iii] < omniabs(array_y[iii]) then array_norms[iii] := omniabs(array_y[iii]) end if; iii := iii + 1 end do end if end proc > # End Function number 11 > # Begin Function number 12 > atomall := proc() > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4_a1, > array_tmp4_a2, > array_tmp4, > array_tmp5, > array_m1, > array_y_higher, > array_y_higher_work, > array_y_higher_work2, > array_y_set_initial, > array_poles, > array_real_pole, > array_complex_pole, > array_fact_2, > glob_last; > local kkk, order_d, adj2, adj3 , temporary, term; > #TOP ATOMALL > #END OUTFILE1 > #BEGIN ATOMHDR1 > #emit pre mult CONST - LINEAR $eq_no = 1 i = 1 > array_tmp1[1] := array_const_2D0[1] * array_x[1]; > #emit pre add LINEAR - CONST $eq_no = 1 i = 1 > array_tmp2[1] := array_tmp1[1] + array_const_3D0[1]; > #emit pre sqrt 1 $eq_no = 1 > array_tmp3[1] := sqrt(array_tmp2[1]); > #emit pre tanh $eq_no = 1 > array_tmp4_a1[1] := sinh(array_tmp3[1]); > array_tmp4_a2[1] := cosh(array_tmp3[1]); > array_tmp4[1] := (array_tmp4_a1[1] / array_tmp4_a2[1]); > #emit pre add CONST FULL $eq_no = 1 i = 1 > array_tmp5[1] := array_const_0D0[1] + array_tmp4[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_tmp5[1] * expt(glob_h , (1)) * factorial_3(0,1); > array_y[2] := temporary; > array_y_higher[1,2] := temporary; > temporary := temporary / glob_h; > array_y_higher[2,1] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 2; > #END ATOMHDR1 > #BEGIN ATOMHDR2 > #emit pre mult CONST - LINEAR $eq_no = 1 i = 2 > array_tmp1[2] := array_const_2D0[1] * array_x[2]; > #emit pre add LINEAR - CONST $eq_no = 1 i = 2 > array_tmp2[2] := array_tmp1[2]; > #emit pre sqrt 2 $eq_no = 1 > array_tmp3[2] := array_tmp2[2] / array_tmp3[1]/2.0; > #emit pre tanh $eq_no = 1 > array_tmp4_a1[2] := att(1,array_tmp4_a2,array_tmp3,1); > array_tmp4_a2[2] := att(1,array_tmp4_a1,array_tmp3,1); > array_tmp4[2] := (array_tmp4_a1[2] - ats(2,array_tmp4_a2,array_tmp4,2)) / array_tmp4_a2[1]; > #emit pre add CONST FULL $eq_no = 1 i = 2 > array_tmp5[2] := array_tmp4[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_tmp5[2] * expt(glob_h , (1)) * factorial_3(1,2); > array_y[3] := temporary; > array_y_higher[1,3] := temporary; > temporary := temporary / glob_h; > array_y_higher[2,2] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 3; > #END ATOMHDR2 > #BEGIN ATOMHDR3 > #emit pre sqrt ID_LINEAR iii = 3 $eq_no = 1 > array_tmp3[3] := 0.0; > array_tmp3[3] := -ats(3,array_tmp3,array_tmp3,2) / array_tmp3[1] / 2.0; > #emit pre tanh $eq_no = 1 > array_tmp4_a1[3] := att(2,array_tmp4_a2,array_tmp3,1); > array_tmp4_a2[3] := att(2,array_tmp4_a1,array_tmp3,1); > array_tmp4[3] := (array_tmp4_a1[3] - ats(3,array_tmp4_a2,array_tmp4,2)) / array_tmp4_a2[1]; > #emit pre add CONST FULL $eq_no = 1 i = 3 > array_tmp5[3] := array_tmp4[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_tmp5[3] * expt(glob_h , (1)) * factorial_3(2,3); > array_y[4] := temporary; > array_y_higher[1,4] := temporary; > temporary := temporary / glob_h * (2.0); > array_y_higher[2,3] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 4; > #END ATOMHDR3 > #BEGIN ATOMHDR4 > #emit pre sqrt ID_LINEAR iii = 4 $eq_no = 1 > array_tmp3[4] := 0.0; > array_tmp3[4] := -ats(4,array_tmp3,array_tmp3,2) / array_tmp3[1] / 2.0; > #emit pre tanh $eq_no = 1 > array_tmp4_a1[4] := att(3,array_tmp4_a2,array_tmp3,1); > array_tmp4_a2[4] := att(3,array_tmp4_a1,array_tmp3,1); > array_tmp4[4] := (array_tmp4_a1[4] - ats(4,array_tmp4_a2,array_tmp4,2)) / array_tmp4_a2[1]; > #emit pre add CONST FULL $eq_no = 1 i = 4 > array_tmp5[4] := array_tmp4[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_tmp5[4] * expt(glob_h , (1)) * factorial_3(3,4); > array_y[5] := temporary; > array_y_higher[1,5] := temporary; > temporary := temporary / glob_h * (3.0); > array_y_higher[2,4] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 5; > #END ATOMHDR4 > #BEGIN ATOMHDR5 > #emit pre sqrt ID_LINEAR iii = 5 $eq_no = 1 > array_tmp3[5] := 0.0; > array_tmp3[5] := -ats(5,array_tmp3,array_tmp3,2) / array_tmp3[1] / 2.0; > #emit pre tanh $eq_no = 1 > array_tmp4_a1[5] := att(4,array_tmp4_a2,array_tmp3,1); > array_tmp4_a2[5] := att(4,array_tmp4_a1,array_tmp3,1); > array_tmp4[5] := (array_tmp4_a1[5] - ats(5,array_tmp4_a2,array_tmp4,2)) / array_tmp4_a2[1]; > #emit pre add CONST FULL $eq_no = 1 i = 5 > array_tmp5[5] := array_tmp4[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_tmp5[5] * expt(glob_h , (1)) * factorial_3(4,5); > array_y[6] := temporary; > array_y_higher[1,6] := temporary; > temporary := temporary / glob_h * (4.0); > array_y_higher[2,5] := temporary; > fi;# end if 2; > fi;# end if 1; > kkk := 6; > #END ATOMHDR5 > #BEGIN OUTFILE3 > #Top Atomall While Loop-- outfile3 > while (kkk <= glob_max_terms) do # do number 1 > #END OUTFILE3 > #BEGIN OUTFILE4 > #emit sqrt LINEAR $eq_no = 1 > array_tmp3[kkk] := 0.0; > array_tmp3[kkk] := -ats(kkk,array_tmp3,array_tmp3,2) /array_tmp3[1] / 2.0; > array_tmp4_a1[kkk] := att(kkk-1 ,array_tmp4_a2,array_tmp3,1); > array_tmp4_a2[kkk] := att(kkk-1,array_tmp4_a1,array_tmp3,1); > array_tmp4[kkk] := (array_tmp4_a1[kkk] - ats(kkk ,array_tmp4_a2,array_tmp4,2)) / array_tmp4_a2[1]; > #emit NOT FULL - FULL add $eq_no = 1 > array_tmp5[kkk] := array_tmp4[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_tmp5[kkk] * expt(glob_h , (order_d)) / factorial_3((kkk - 1),(kkk + order_d - 1)); > array_y[kkk + order_d] := temporary; > array_y_higher[1,kkk + order_d] := temporary; > term := kkk + order_d - 1; > adj2 := kkk + order_d - 2; > adj3 := 2; > while (term >= 1) do # do number 2 > if (adj3 <= order_d + 1) then # if number 3 > if (adj2 > 1) then # if number 4 > temporary := temporary / glob_h * convfp(adj2); > else > temporary := temporary / glob_h; > fi;# end if 4; > array_y_higher[adj3,term] := temporary; > fi;# end if 3; > term := term - 1; > adj2 := adj2 - 1; > adj3 := adj3 + 1; > od;# end do number 2 > fi;# end if 2 > fi;# end if 1; > kkk := kkk + 1; > od;# end do number 1; > #BOTTOM ATOMALL > #END OUTFILE4 > #BEGIN OUTFILE5 > #BOTTOM ATOMALL ??? > end; atomall := proc() local kkk, order_d, adj2, adj3, temporary, term; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4_a1, array_tmp4_a2, array_tmp4, array_tmp5, array_m1, array_y_higher, array_y_higher_work, array_y_higher_work2, array_y_set_initial, array_poles, array_real_pole, array_complex_pole, array_fact_2, glob_last; array_tmp1[1] := array_const_2D0[1]*array_x[1]; array_tmp2[1] := array_tmp1[1] + array_const_3D0[1]; array_tmp3[1] := sqrt(array_tmp2[1]); array_tmp4_a1[1] := sinh(array_tmp3[1]); array_tmp4_a2[1] := cosh(array_tmp3[1]); array_tmp4[1] := array_tmp4_a1[1]/array_tmp4_a2[1]; array_tmp5[1] := array_const_0D0[1] + array_tmp4[1]; if not array_y_set_initial[1, 2] then if 1 <= glob_max_terms then temporary := array_tmp5[1]*expt(glob_h, 1)*factorial_3(0, 1); array_y[2] := temporary; array_y_higher[1, 2] := temporary; temporary := temporary/glob_h; array_y_higher[2, 1] := temporary end if end if; kkk := 2; array_tmp1[2] := array_const_2D0[1]*array_x[2]; array_tmp2[2] := array_tmp1[2]; array_tmp3[2] := array_tmp2[2]/(array_tmp3[1]*2.0); array_tmp4_a1[2] := att(1, array_tmp4_a2, array_tmp3, 1); array_tmp4_a2[2] := att(1, array_tmp4_a1, array_tmp3, 1); array_tmp4[2] := ( array_tmp4_a1[2] - ats(2, array_tmp4_a2, array_tmp4, 2))/ array_tmp4_a2[1]; array_tmp5[2] := array_tmp4[2]; if not array_y_set_initial[1, 3] then if 2 <= glob_max_terms then temporary := array_tmp5[2]*expt(glob_h, 1)*factorial_3(1, 2); array_y[3] := temporary; array_y_higher[1, 3] := temporary; temporary := temporary/glob_h; array_y_higher[2, 2] := temporary end if end if; kkk := 3; array_tmp3[3] := 0.; array_tmp3[3] := -ats(3, array_tmp3, array_tmp3, 2)/(array_tmp3[1]*2.0) ; array_tmp4_a1[3] := att(2, array_tmp4_a2, array_tmp3, 1); array_tmp4_a2[3] := att(2, array_tmp4_a1, array_tmp3, 1); array_tmp4[3] := ( array_tmp4_a1[3] - ats(3, array_tmp4_a2, array_tmp4, 2))/ array_tmp4_a2[1]; array_tmp5[3] := array_tmp4[3]; if not array_y_set_initial[1, 4] then if 3 <= glob_max_terms then temporary := array_tmp5[3]*expt(glob_h, 1)*factorial_3(2, 3); array_y[4] := temporary; array_y_higher[1, 4] := temporary; temporary := temporary*2.0/glob_h; array_y_higher[2, 3] := temporary end if end if; kkk := 4; array_tmp3[4] := 0.; array_tmp3[4] := -ats(4, array_tmp3, array_tmp3, 2)/(array_tmp3[1]*2.0) ; array_tmp4_a1[4] := att(3, array_tmp4_a2, array_tmp3, 1); array_tmp4_a2[4] := att(3, array_tmp4_a1, array_tmp3, 1); array_tmp4[4] := ( array_tmp4_a1[4] - ats(4, array_tmp4_a2, array_tmp4, 2))/ array_tmp4_a2[1]; array_tmp5[4] := array_tmp4[4]; if not array_y_set_initial[1, 5] then if 4 <= glob_max_terms then temporary := array_tmp5[4]*expt(glob_h, 1)*factorial_3(3, 4); array_y[5] := temporary; array_y_higher[1, 5] := temporary; temporary := temporary*3.0/glob_h; array_y_higher[2, 4] := temporary end if end if; kkk := 5; array_tmp3[5] := 0.; array_tmp3[5] := -ats(5, array_tmp3, array_tmp3, 2)/(array_tmp3[1]*2.0) ; array_tmp4_a1[5] := att(4, array_tmp4_a2, array_tmp3, 1); array_tmp4_a2[5] := att(4, array_tmp4_a1, array_tmp3, 1); array_tmp4[5] := ( array_tmp4_a1[5] - ats(5, array_tmp4_a2, array_tmp4, 2))/ array_tmp4_a2[1]; array_tmp5[5] := array_tmp4[5]; if not array_y_set_initial[1, 6] then if 5 <= glob_max_terms then temporary := array_tmp5[5]*expt(glob_h, 1)*factorial_3(4, 5); array_y[6] := temporary; array_y_higher[1, 6] := temporary; temporary := temporary*4.0/glob_h; array_y_higher[2, 5] := temporary end if end if; kkk := 6; while kkk <= glob_max_terms do array_tmp3[kkk] := 0.; array_tmp3[kkk] := -ats(kkk, array_tmp3, array_tmp3, 2)/(array_tmp3[1]*2.0); array_tmp4_a1[kkk] := att(kkk - 1, array_tmp4_a2, array_tmp3, 1); array_tmp4_a2[kkk] := att(kkk - 1, array_tmp4_a1, array_tmp3, 1); array_tmp4[kkk] := ( array_tmp4_a1[kkk] - ats(kkk, array_tmp4_a2, array_tmp4, 2))/ array_tmp4_a2[1]; array_tmp5[kkk] := array_tmp4[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_tmp5[kkk]*expt(glob_h, order_d)/ factorial_3(kkk - 1, kkk + order_d - 1); array_y[kkk + order_d] := temporary; array_y_higher[1, kkk + order_d] := temporary; term := kkk + order_d - 1; adj2 := kkk + order_d - 2; adj3 := 2; while 1 <= term do if adj3 <= order_d + 1 then if 1 < adj2 then temporary := temporary*convfp(adj2)/glob_h else temporary := temporary/glob_h end if; array_y_higher[adj3, term] := temporary end if; term := term - 1; adj2 := adj2 - 1; adj3 := adj3 + 1 end do end if end if; kkk := kkk + 1 end do end proc > # End Function number 12 > #BEGIN ATS LIBRARY BLOCK > # Begin Function number 2 > omniout_str := proc(iolevel,str) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > printf("%s\n",str); > fi;# end if 1; > end; omniout_str := proc(iolevel, str) global glob_iolevel; if iolevel <= glob_iolevel then printf("%s\n", str) end if end proc > # End Function number 2 > # Begin Function number 3 > omniout_str_noeol := proc(iolevel,str) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > printf("%s",str); > fi;# end if 1; > end; omniout_str_noeol := proc(iolevel, str) global glob_iolevel; if iolevel <= glob_iolevel then printf("%s", str) end if end proc > # End Function number 3 > # Begin Function number 4 > omniout_labstr := proc(iolevel,label,str) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > print(label,str); > fi;# end if 1; > end; omniout_labstr := proc(iolevel, label, str) global glob_iolevel; if iolevel <= glob_iolevel then print(label, str) end if end proc > # End Function number 4 > # Begin Function number 5 > omniout_float := proc(iolevel,prelabel,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 1 > if vallen = 4 then > printf("%-30s = %-42.4g %s \n",prelabel,value, postlabel); > else > printf("%-30s = %-42.32g %s \n",prelabel,value, postlabel); > fi;# end if 1; > fi;# end if 0; > end; omniout_float := proc(iolevel, prelabel, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then if vallen = 4 then printf("%-30s = %-42.4g %s \n", prelabel, value, postlabel) else printf("%-30s = %-42.32g %s \n", prelabel, value, postlabel) end if end if end proc > # End Function number 5 > # Begin Function number 6 > omniout_int := proc(iolevel,prelabel,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 0 > if vallen = 5 then # if number 1 > printf("%-30s = %-32d %s\n",prelabel,value, postlabel); > else > printf("%-30s = %-32d %s \n",prelabel,value, postlabel); > fi;# end if 1; > fi;# end if 0; > end; omniout_int := proc(iolevel, prelabel, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then if vallen = 5 then printf("%-30s = %-32d %s\n", prelabel, value, postlabel) else printf("%-30s = %-32d %s \n", prelabel, value, postlabel) end if end if end proc > # End Function number 6 > # Begin Function number 7 > omniout_float_arr := proc(iolevel,prelabel,elemnt,prelen,value,vallen,postlabel) > global glob_iolevel; > if (glob_iolevel >= iolevel) then # if number 0 > print(prelabel,"[",elemnt,"]",value, postlabel); > fi;# end if 0; > end; omniout_float_arr := proc( iolevel, prelabel, elemnt, prelen, value, vallen, postlabel) global glob_iolevel; if iolevel <= glob_iolevel then print(prelabel, "[", elemnt, "]", value, postlabel) end if end proc > # End Function number 7 > # Begin Function number 8 > dump_series := proc(iolevel,dump_label,series_name,arr_series,numb) > global glob_iolevel; > local i; > if (glob_iolevel >= iolevel) then # if number 0 > i := 1; > while (i <= numb) do # do number 1 > print(dump_label,series_name > ,i,arr_series[i]); > i := i + 1; > od;# end do number 1 > fi;# end if 0 > end; dump_series := proc(iolevel, dump_label, series_name, arr_series, numb) local i; global glob_iolevel; if iolevel <= glob_iolevel then i := 1; while i <= numb do print(dump_label, series_name, i, arr_series[i]); i := i + 1 end do end if end proc > # End Function number 8 > # Begin Function number 9 > dump_series_2 := proc(iolevel,dump_label,series_name2,arr_series2,numb,subnum,arr_x) > global glob_iolevel; > local i,sub,ts_term; > if (glob_iolevel >= iolevel) then # if number 0 > sub := 1; > while (sub <= subnum) do # do number 1 > i := 1; > while (i <= numb) do # do number 2 > print(dump_label,series_name2,sub,i,arr_series2[sub,i]); > od;# end do number 2; > sub := sub + 1; > od;# end do number 1; > fi;# end if 0; > end; dump_series_2 := proc( iolevel, dump_label, series_name2, arr_series2, numb, subnum, arr_x) local i, sub, ts_term; global glob_iolevel; if iolevel <= glob_iolevel then sub := 1; while sub <= subnum do i := 1; while i <= numb do print(dump_label, series_name2, sub, i, arr_series2[sub, i]) end do; sub := sub + 1 end do end if end proc > # End Function number 9 > # Begin Function number 10 > cs_info := proc(iolevel,str) > global glob_iolevel,glob_correct_start_flag,glob_h,glob_reached_optimal_h; > if (glob_iolevel >= iolevel) then # if number 0 > print("cs_info " , str , " glob_correct_start_flag = " , glob_correct_start_flag , "glob_h := " , glob_h , "glob_reached_optimal_h := " , glob_reached_optimal_h) > fi;# end if 0; > end; cs_info := proc(iolevel, str) global glob_iolevel, glob_correct_start_flag, glob_h, glob_reached_optimal_h; if iolevel <= glob_iolevel then print("cs_info ", str, " glob_correct_start_flag = ", glob_correct_start_flag, "glob_h := ", glob_h, "glob_reached_optimal_h := ", glob_reached_optimal_h) end if end proc > # End Function number 10 > # Begin Function number 11 > logitem_time := proc(fd,secs_in) > global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; > local days_int, hours_int,minutes_int, sec_int, sec_temp, years_int; > fprintf(fd,""); > if (secs_in >= 0) then # if number 0 > years_int := trunc(secs_in / glob_sec_in_year); > sec_temp := (trunc(secs_in) mod trunc(glob_sec_in_year)); > days_int := trunc(sec_temp / glob_sec_in_day) ; > sec_temp := (sec_temp mod trunc(glob_sec_in_day)) ; > hours_int := trunc(sec_temp / glob_sec_in_hour); > sec_temp := (sec_temp mod trunc(glob_sec_in_hour)); > minutes_int := trunc(sec_temp / glob_sec_in_minute); > sec_int := (sec_temp mod trunc(glob_sec_in_minute)); > if (years_int > 0) then # if number 1 > fprintf(fd,"%d Years %d Days %d Hours %d Minutes %d Seconds",years_int,days_int,hours_int,minutes_int,sec_int); > elif > (days_int > 0) then # if number 2 > fprintf(fd,"%d Days %d Hours %d Minutes %d Seconds",days_int,hours_int,minutes_int,sec_int); > elif > (hours_int > 0) then # if number 3 > fprintf(fd,"%d Hours %d Minutes %d Seconds",hours_int,minutes_int,sec_int); > elif > (minutes_int > 0) then # if number 4 > fprintf(fd,"%d Minutes %d Seconds",minutes_int,sec_int); > else > fprintf(fd,"%d Seconds",sec_int); > fi;# end if 4 > else > fprintf(fd," Unknown"); > fi;# end if 3 > fprintf(fd,"\n"); > end; logitem_time := proc(fd, secs_in) local days_int, hours_int, minutes_int, sec_int, sec_temp, years_int; global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; fprintf(fd, ""); if 0 <= secs_in then years_int := trunc(secs_in/glob_sec_in_year); sec_temp := trunc(secs_in) mod trunc(glob_sec_in_year); days_int := trunc(sec_temp/glob_sec_in_day); sec_temp := sec_temp mod trunc(glob_sec_in_day); hours_int := trunc(sec_temp/glob_sec_in_hour); sec_temp := sec_temp mod trunc(glob_sec_in_hour); minutes_int := trunc(sec_temp/glob_sec_in_minute); sec_int := sec_temp mod trunc(glob_sec_in_minute); if 0 < years_int then fprintf(fd, "%d Years %d Days %d Hours %d Minutes %d Seconds", years_int, days_int, hours_int, minutes_int, sec_int) elif 0 < days_int then fprintf(fd, "%d Days %d Hours %d Minutes %d Seconds", days_int, hours_int, minutes_int, sec_int) elif 0 < hours_int then fprintf(fd, "%d Hours %d Minutes %d Seconds", hours_int, minutes_int, sec_int) elif 0 < minutes_int then fprintf(fd, "%d Minutes %d Seconds", minutes_int, sec_int) else fprintf(fd, "%d Seconds", sec_int) end if else fprintf(fd, " Unknown") end if; fprintf(fd, "\n") end proc > # End Function number 11 > # Begin Function number 12 > omniout_timestr := proc(secs_in) > global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; > local days_int, hours_int,minutes_int, sec_int, sec_temp, years_int; > if (secs_in >= 0) then # if number 3 > years_int := trunc(secs_in / glob_sec_in_year); > sec_temp := (trunc(secs_in) mod trunc(glob_sec_in_year)); > days_int := trunc(sec_temp / glob_sec_in_day) ; > sec_temp := (sec_temp mod trunc(glob_sec_in_day)) ; > hours_int := trunc(sec_temp / glob_sec_in_hour); > sec_temp := (sec_temp mod trunc(glob_sec_in_hour)); > minutes_int := trunc(sec_temp / glob_sec_in_minute); > sec_int := (sec_temp mod trunc(glob_sec_in_minute)); > if (years_int > 0) then # if number 4 > printf(" = %d Years %d Days %d Hours %d Minutes %d Seconds\n",years_int,days_int,hours_int,minutes_int,sec_int); > elif > (days_int > 0) then # if number 5 > printf(" = %d Days %d Hours %d Minutes %d Seconds\n",days_int,hours_int,minutes_int,sec_int); > elif > (hours_int > 0) then # if number 6 > printf(" = %d Hours %d Minutes %d Seconds\n",hours_int,minutes_int,sec_int); > elif > (minutes_int > 0) then # if number 7 > printf(" = %d Minutes %d Seconds\n",minutes_int,sec_int); > else > printf(" = %d Seconds\n",sec_int); > fi;# end if 7 > else > printf(" Unknown\n"); > fi;# end if 6 > end; omniout_timestr := proc(secs_in) local days_int, hours_int, minutes_int, sec_int, sec_temp, years_int; global glob_sec_in_day, glob_sec_in_hour, glob_sec_in_minute, glob_sec_in_year; if 0 <= secs_in then years_int := trunc(secs_in/glob_sec_in_year); sec_temp := trunc(secs_in) mod trunc(glob_sec_in_year); days_int := trunc(sec_temp/glob_sec_in_day); sec_temp := sec_temp mod trunc(glob_sec_in_day); hours_int := trunc(sec_temp/glob_sec_in_hour); sec_temp := sec_temp mod trunc(glob_sec_in_hour); minutes_int := trunc(sec_temp/glob_sec_in_minute); sec_int := sec_temp mod trunc(glob_sec_in_minute); if 0 < years_int then printf( " = %d Years %d Days %d Hours %d Minutes %d Seconds\n", years_int, days_int, hours_int, minutes_int, sec_int) elif 0 < days_int then printf( " = %d Days %d Hours %d Minutes %d Seconds\n", days_int, hours_int, minutes_int, sec_int) elif 0 < hours_int then printf( " = %d Hours %d Minutes %d Seconds\n", hours_int, minutes_int, sec_int) elif 0 < minutes_int then printf(" = %d Minutes %d Seconds\n", minutes_int, sec_int) else printf(" = %d Seconds\n", sec_int) end if else printf(" Unknown\n") end if end proc > # End Function number 12 > # Begin Function number 13 > ats := proc(mmm_ats,arr_a,arr_b,jjj_ats) > local iii_ats, lll_ats,ma_ats, ret_ats; > ret_ats := 0.0; > if (jjj_ats <= mmm_ats) then # if number 6 > ma_ats := mmm_ats + 1; > iii_ats := jjj_ats; > while (iii_ats <= mmm_ats) do # do number 1 > lll_ats := ma_ats - iii_ats; > ret_ats := ret_ats + arr_a[iii_ats]*arr_b[lll_ats]; > iii_ats := iii_ats + 1; > od;# end do number 1 > fi;# end if 6; > ret_ats; > end; ats := proc(mmm_ats, arr_a, arr_b, jjj_ats) local iii_ats, lll_ats, ma_ats, ret_ats; ret_ats := 0.; if jjj_ats <= mmm_ats then ma_ats := mmm_ats + 1; iii_ats := jjj_ats; while iii_ats <= mmm_ats do lll_ats := ma_ats - iii_ats; ret_ats := ret_ats + arr_a[iii_ats]*arr_b[lll_ats]; iii_ats := iii_ats + 1 end do end if; ret_ats end proc > # End Function number 13 > # Begin Function number 14 > att := proc(mmm_att,arr_aa,arr_bb,jjj_att) > global glob_max_terms; > local al_att, iii_att,lll_att, ma_att, ret_att; > ret_att := 0.0; > if (jjj_att <= mmm_att) then # if number 6 > ma_att := mmm_att + 2; > iii_att := jjj_att; > while (iii_att <= mmm_att) do # do number 1 > lll_att := ma_att - iii_att; > al_att := (lll_att - 1); > if (lll_att <= glob_max_terms) then # if number 7 > ret_att := ret_att + arr_aa[iii_att]*arr_bb[lll_att]* convfp(al_att); > fi;# end if 7; > iii_att := iii_att + 1; > od;# end do number 1; > ret_att := ret_att / convfp(mmm_att) ; > fi;# end if 6; > ret_att; > end; att := proc(mmm_att, arr_aa, arr_bb, jjj_att) local al_att, iii_att, lll_att, ma_att, ret_att; global glob_max_terms; ret_att := 0.; if jjj_att <= mmm_att then ma_att := mmm_att + 2; iii_att := jjj_att; while iii_att <= mmm_att do lll_att := ma_att - iii_att; al_att := lll_att - 1; if lll_att <= glob_max_terms then ret_att := ret_att + arr_aa[iii_att]*arr_bb[lll_att]*convfp(al_att) end if; iii_att := iii_att + 1 end do; ret_att := ret_att/convfp(mmm_att) end if; ret_att end proc > # End Function number 14 > # Begin Function number 15 > display_pole := proc() > global ALWAYS,glob_display_flag, glob_large_float, array_pole; > if ((array_pole[1] <> glob_large_float) and (array_pole[1] > 0.0) and (array_pole[2] <> glob_large_float) and (array_pole[2]> 0.0) and glob_display_flag) then # if number 6 > omniout_float(ALWAYS,"Radius of convergence ",4, array_pole[1],4," "); > omniout_float(ALWAYS,"Order of pole ",4, array_pole[2],4," "); > fi;# end if 6 > end; display_pole := proc() global ALWAYS, glob_display_flag, glob_large_float, array_pole; if array_pole[1] <> glob_large_float and 0. < array_pole[1] and array_pole[2] <> glob_large_float and 0. < array_pole[2] and glob_display_flag then omniout_float(ALWAYS, "Radius of convergence ", 4, array_pole[1], 4, " "); omniout_float(ALWAYS, "Order of pole ", 4, array_pole[2], 4, " ") end if end proc > # End Function number 15 > # Begin Function number 16 > logditto := proc(file) > fprintf(file,""); > fprintf(file,"ditto"); > fprintf(file,""); > end; logditto := proc(file) fprintf(file, ""); fprintf(file, "ditto"); fprintf(file, "") end proc > # End Function number 16 > # Begin Function number 17 > logitem_integer := proc(file,n) > fprintf(file,""); > fprintf(file,"%d",n); > fprintf(file,""); > end; logitem_integer := proc(file, n) fprintf(file, ""); fprintf(file, "%d", n); fprintf(file, "") end proc > # End Function number 17 > # Begin Function number 18 > logitem_str := proc(file,str) > fprintf(file,""); > fprintf(file,str); > fprintf(file,""); > end; logitem_str := proc(file, str) fprintf(file, ""); fprintf(file, str); fprintf(file, "") end proc > # End Function number 18 > # Begin Function number 19 > logitem_good_digits := proc(file,rel_error) > global glob_small_float; > local good_digits; > fprintf(file,""); > if (rel_error <> -1.0) then # if number 6 > if (rel_error <> 0.0) then # if number 7 > good_digits := 1-trunc(log10(rel_error)); > fprintf(file,"%d",good_digits); > else > good_digits := Digits; > fprintf(file,"%d",good_digits); > fi;# end if 7; > else > fprintf(file,"Unknown"); > fi;# end if 6; > fprintf(file,""); > end; logitem_good_digits := proc(file, rel_error) local good_digits; global glob_small_float; fprintf(file, ""); if rel_error <> -1.0 then if rel_error <> 0. then good_digits := 1 - trunc(log10(rel_error)); fprintf(file, "%d", good_digits) else good_digits := Digits; fprintf(file, "%d", good_digits) end if else fprintf(file, "Unknown") end if; fprintf(file, "") end proc > # End Function number 19 > # Begin Function number 20 > log_revs := proc(file,revs) > fprintf(file,revs); > end; log_revs := proc(file, revs) fprintf(file, revs) end proc > # End Function number 20 > # Begin Function number 21 > logitem_float := proc(file,x) > fprintf(file,""); > fprintf(file,"%g",x); > fprintf(file,""); > end; logitem_float := proc(file, x) fprintf(file, ""); fprintf(file, "%g", x); fprintf(file, "") end proc > # End Function number 21 > # Begin Function number 22 > logitem_pole := proc(file,pole) > fprintf(file,""); > if (pole = 0) then # if number 6 > fprintf(file,"NA"); > elif > (pole = 1) then # if number 7 > fprintf(file,"Real"); > elif > (pole = 2) then # if number 8 > fprintf(file,"Complex"); > else > fprintf(file,"No Pole"); > fi;# end if 8 > fprintf(file,""); > end; logitem_pole := proc(file, pole) fprintf(file, ""); if pole = 0 then fprintf(file, "NA") elif pole = 1 then fprintf(file, "Real") elif pole = 2 then fprintf(file, "Complex") else fprintf(file, "No Pole") end if; fprintf(file, "") end proc > # End Function number 22 > # Begin Function number 23 > logstart := proc(file) > fprintf(file,""); > end; logstart := proc(file) fprintf(file, "") end proc > # End Function number 23 > # Begin Function number 24 > logend := proc(file) > fprintf(file,"\n"); > end; logend := proc(file) fprintf(file, "\n") end proc > # End Function number 24 > # Begin Function number 25 > chk_data := proc() > global glob_max_iter,ALWAYS, glob_max_terms; > local errflag; > errflag := false; > if ((glob_max_terms < 15) or (glob_max_terms > 512)) then # if number 8 > omniout_str(ALWAYS,"Illegal max_terms = -- Using 30"); > glob_max_terms := 30; > fi;# end if 8; > if (glob_max_iter < 2) then # if number 8 > omniout_str(ALWAYS,"Illegal max_iter"); > errflag := true; > fi;# end if 8; > if (errflag) then # if number 8 > quit; > fi;# end if 8 > end; chk_data := proc() local errflag; global glob_max_iter, ALWAYS, glob_max_terms; errflag := false; if glob_max_terms < 15 or 512 < glob_max_terms then omniout_str(ALWAYS, "Illegal max_terms = -- Using 30"); glob_max_terms := 30 end if; if glob_max_iter < 2 then omniout_str(ALWAYS, "Illegal max_iter"); errflag := true end if; if errflag then quit end if end proc > # End Function number 25 > # Begin Function number 26 > comp_expect_sec := proc(t_end2,t_start2,t2,clock_sec2) > global glob_small_float; > local ms2, rrr, sec_left, sub1, sub2; > ; > ms2 := clock_sec2; > sub1 := (t_end2-t_start2); > sub2 := (t2-t_start2); > if (sub1 = 0.0) then # if number 8 > sec_left := 0.0; > else > if (sub2 > 0.0) then # if number 9 > rrr := (sub1/sub2); > sec_left := rrr * ms2 - ms2; > else > sec_left := 0.0; > fi;# end if 9 > fi;# end if 8; > sec_left; > end; comp_expect_sec := proc(t_end2, t_start2, t2, clock_sec2) local ms2, rrr, sec_left, sub1, sub2; global glob_small_float; ms2 := clock_sec2; sub1 := t_end2 - t_start2; sub2 := t2 - t_start2; if sub1 = 0. then sec_left := 0. else if 0. < sub2 then rrr := sub1/sub2; sec_left := rrr*ms2 - ms2 else sec_left := 0. end if end if; sec_left end proc > # End Function number 26 > # Begin Function number 27 > comp_percent := proc(t_end2,t_start2, t2) > global glob_small_float; > local rrr, sub1, sub2; > sub1 := (t_end2-t_start2); > sub2 := (t2-t_start2); > if (sub2 > glob_small_float) then # if number 8 > rrr := (100.0*sub2)/sub1; > else > rrr := 0.0; > fi;# end if 8; > rrr; > end; comp_percent := proc(t_end2, t_start2, t2) local rrr, sub1, sub2; global glob_small_float; sub1 := t_end2 - t_start2; sub2 := t2 - t_start2; if glob_small_float < sub2 then rrr := 100.0*sub2/sub1 else rrr := 0. end if; rrr end proc > # End Function number 27 > # Begin Function number 28 > factorial_2 := proc(nnn) > nnn!; > end; factorial_2 := proc(nnn) nnn! end proc > # End Function number 28 > # Begin Function number 29 > factorial_1 := proc(nnn) > global glob_max_terms,array_fact_1; > local ret; > if (nnn <= glob_max_terms) then # if number 8 > if (array_fact_1[nnn] = 0) then # if number 9 > ret := factorial_2(nnn); > array_fact_1[nnn] := ret; > else > ret := array_fact_1[nnn]; > fi;# end if 9; > else > ret := factorial_2(nnn); > fi;# end if 8; > ret; > end; factorial_1 := proc(nnn) local ret; global glob_max_terms, array_fact_1; if nnn <= glob_max_terms then if array_fact_1[nnn] = 0 then ret := factorial_2(nnn); array_fact_1[nnn] := ret else ret := array_fact_1[nnn] end if else ret := factorial_2(nnn) end if; ret end proc > # End Function number 29 > # Begin Function number 30 > factorial_3 := proc(mmm,nnn) > global glob_max_terms,array_fact_2; > local ret; > if ((nnn <= glob_max_terms) and (mmm <= glob_max_terms)) then # if number 8 > if (array_fact_2[mmm,nnn] = 0) then # if number 9 > ret := factorial_1(mmm)/factorial_1(nnn); > array_fact_2[mmm,nnn] := ret; > else > ret := array_fact_2[mmm,nnn]; > fi;# end if 9; > else > ret := factorial_2(mmm)/factorial_2(nnn); > fi;# end if 8; > ret; > end; factorial_3 := proc(mmm, nnn) local ret; global glob_max_terms, array_fact_2; if nnn <= glob_max_terms and mmm <= glob_max_terms then if array_fact_2[mmm, nnn] = 0 then ret := factorial_1(mmm)/factorial_1(nnn); array_fact_2[mmm, nnn] := ret else ret := array_fact_2[mmm, nnn] end if else ret := factorial_2(mmm)/factorial_2(nnn) end if; ret end proc > # End Function number 30 > # Begin Function number 31 > convfp := proc(mmm) > (mmm); > end; convfp := proc(mmm) mmm end proc > # End Function number 31 > # Begin Function number 32 > convfloat := proc(mmm) > (mmm); > end; convfloat := proc(mmm) mmm end proc > # End Function number 32 > # Begin Function number 33 > elapsed_time_seconds := proc() > time(); > end; elapsed_time_seconds := proc() time() end proc > # End Function number 33 > # Begin Function number 34 > omniabs := proc(x) > abs(x); > end; omniabs := proc(x) abs(x) end proc > # End Function number 34 > # Begin Function number 35 > expt := proc(x,y) > (x^y); > end; expt := proc(x, y) x^y end proc > # End Function number 35 > # Begin Function number 36 > estimated_needed_step_error := proc(x_start,x_end,estimated_h,estimated_answer) > local desired_abs_gbl_error,range,estimated_steps,step_error; > global glob_desired_digits_correct,ALWAYS; > omniout_float(ALWAYS,"glob_desired_digits_correct",32,glob_desired_digits_correct,32,""); > desired_abs_gbl_error := expt(10.0,- glob_desired_digits_correct) * omniabs(estimated_answer); > omniout_float(ALWAYS,"desired_abs_gbl_error",32,desired_abs_gbl_error,32,""); > range := (x_end - x_start); > omniout_float(ALWAYS,"range",32,range,32,""); > estimated_steps := range / estimated_h; > omniout_float(ALWAYS,"estimated_steps",32,estimated_steps,32,""); > step_error := omniabs(desired_abs_gbl_error / estimated_steps); > omniout_float(ALWAYS,"step_error",32,step_error,32,""); > (step_error);; > end; estimated_needed_step_error := proc( x_start, x_end, estimated_h, estimated_answer) local desired_abs_gbl_error, range, estimated_steps, step_error; global glob_desired_digits_correct, ALWAYS; omniout_float(ALWAYS, "glob_desired_digits_correct", 32, glob_desired_digits_correct, 32, ""); desired_abs_gbl_error := expt(10.0, -glob_desired_digits_correct)*omniabs(estimated_answer); omniout_float(ALWAYS, "desired_abs_gbl_error", 32, desired_abs_gbl_error, 32, ""); range := x_end - x_start; omniout_float(ALWAYS, "range", 32, range, 32, ""); estimated_steps := range/estimated_h; omniout_float(ALWAYS, "estimated_steps", 32, estimated_steps, 32, ""); step_error := omniabs(desired_abs_gbl_error/estimated_steps); omniout_float(ALWAYS, "step_error", 32, step_error, 32, ""); step_error end proc > # End Function number 36 > #END ATS LIBRARY BLOCK > #BEGIN USER DEF BLOCK > #BEGIN USER DEF BLOCK > exact_soln_y := proc(x) > return(0.0); > end; exact_soln_y := proc(x) return 0. end proc > #END USER DEF BLOCK > #END USER DEF BLOCK > #END OUTFILE5 > # Begin Function number 2 > main := proc() > #BEGIN OUTFIEMAIN > local d1,d2,d3,d4,est_err_2,niii,done_once, > term,ord,order_diff,term_no,html_log_file,iiif,jjjf, > rows,r_order,sub_iter,calc_term,iii,temp_sum,current_iter, > x_start,x_end > ,it, log10norm, max_terms, opt_iter, tmp,subiter, est_needed_step_err,value3,min_value,est_answer,best_h,found_h; > global > glob_max_terms, > glob_iolevel, > ALWAYS, > INFO, > DEBUGL, > DEBUGMASSIVE, > #Top Generate Globals Decl > MAX_UNCHANGED, > glob_check_sign, > glob_desired_digits_correct, > glob_max_value3, > glob_ratio_of_radius, > glob_percent_done, > glob_subiter_method, > glob_log10normmin, > glob_total_exp_sec, > glob_optimal_expect_sec, > glob_html_log, > glob_good_digits, > glob_max_opt_iter, > glob_dump, > glob_djd_debug, > glob_display_flag, > glob_djd_debug2, > glob_sec_in_minute, > glob_min_in_hour, > glob_hours_in_day, > glob_days_in_year, > glob_sec_in_hour, > glob_sec_in_day, > glob_sec_in_year, > glob_almost_1, > glob_clock_sec, > glob_clock_start_sec, > glob_not_yet_finished, > glob_initial_pass, > glob_not_yet_start_msg, > glob_reached_optimal_h, > glob_optimal_done, > glob_disp_incr, > glob_h, > glob_hmax, > glob_hmin, > glob_hmin_init, > glob_large_float, > glob_last_good_h, > glob_look_poles, > glob_neg_h, > glob_display_interval, > glob_next_display, > glob_dump_analytic, > glob_log10_abserr, > glob_log10_relerr, > glob_abserr, > glob_relerr, > glob_max_hours, > glob_max_iter, > glob_max_rel_trunc_err, > glob_max_trunc_err, > glob_no_eqs, > glob_optimal_clock_start_sec, > glob_optimal_start, > glob_small_float, > glob_smallish_float, > glob_unchanged_h_cnt, > glob_warned, > glob_warned2, > glob_max_sec, > glob_orig_start_sec, > glob_start, > glob_curr_iter_when_opt, > glob_current_iter, > glob_iter, > glob_normmax, > glob_log10abserr, > glob_log10relerr, > glob_max_minutes, > #Bottom Generate Globals Decl > #BEGIN CONST > array_const_1, > array_const_0D0, > array_const_2D0, > array_const_3D0, > #END CONST > array_y_init, > array_norms, > array_fact_1, > array_pole, > array_1st_rel_error, > array_last_rel_error, > array_type_pole, > array_y, > array_x, > array_tmp0, > array_tmp1, > array_tmp2, > array_tmp3, > array_tmp4_g, > array_tmp4_a1, > array_tmp4_a2, > array_tmp4, > array_tmp5, > 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/tanh_sqrtpostode.ode#################"); > omniout_str(ALWAYS,"diff ( y , x , 1 ) = tanh(sqrt(2.0*x + 3.0));"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#BEGIN FIRST INPUT BLOCK"); > omniout_str(ALWAYS,"Digits:=32;"); > omniout_str(ALWAYS,"max_terms:=30;"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#END FIRST INPUT BLOCK"); > omniout_str(ALWAYS,"#BEGIN SECOND INPUT BLOCK"); > omniout_str(ALWAYS,"x_start := 0.1;"); > omniout_str(ALWAYS,"x_end := 5.0 ;"); > omniout_str(ALWAYS,"array_y_init[0 + 1] := exact_soln_y(x_start);"); > omniout_str(ALWAYS,"glob_h := 0.05;"); > omniout_str(ALWAYS,"glob_look_poles := true;"); > omniout_str(ALWAYS,"glob_max_iter := 1000000;"); > omniout_str(ALWAYS,"#END SECOND INPUT BLOCK"); > omniout_str(ALWAYS,"#BEGIN OVERRIDE BLOCK"); > omniout_str(ALWAYS,"glob_desired_digits_correct:=10;"); > omniout_str(ALWAYS,"glob_display_interval:=0.001;"); > omniout_str(ALWAYS,"glob_look_poles:=true;"); > omniout_str(ALWAYS,"glob_max_iter:=10000000;"); > omniout_str(ALWAYS,"glob_max_minutes:=3;"); > omniout_str(ALWAYS,"#END OVERRIDE BLOCK"); > omniout_str(ALWAYS,"!"); > omniout_str(ALWAYS,"#BEGIN USER DEF BLOCK"); > omniout_str(ALWAYS,"exact_soln_y := proc(x)"); > omniout_str(ALWAYS,"return(0.0);"); > omniout_str(ALWAYS,"end;"); > omniout_str(ALWAYS,"#END USER DEF BLOCK"); > omniout_str(ALWAYS,"#######END OF ECHO OF PROBLEM#################"); > glob_unchanged_h_cnt := 0; > glob_warned := false; > glob_warned2 := false; > glob_small_float := 1.0e-200; > glob_smallish_float := 1.0e-64; > glob_large_float := 1.0e100; > glob_almost_1 := 0.99; > glob_log10_abserr := -8.0; > glob_log10_relerr := -8.0; > glob_hmax := 0.01; > #BEGIN FIRST INPUT BLOCK > #BEGIN FIRST INPUT BLOCK > Digits:=32; > max_terms:=30; > #END FIRST INPUT BLOCK > #START OF INITS AFTER INPUT BLOCK > glob_max_terms := max_terms; > glob_html_log := true; > #END OF INITS AFTER INPUT BLOCK > array_y_init:= Array(0..(max_terms + 1),[]); > array_norms:= Array(0..(max_terms + 1),[]); > array_fact_1:= Array(0..(max_terms + 1),[]); > array_pole:= Array(0..(max_terms + 1),[]); > array_1st_rel_error:= Array(0..(max_terms + 1),[]); > array_last_rel_error:= Array(0..(max_terms + 1),[]); > array_type_pole:= Array(0..(max_terms + 1),[]); > array_y:= Array(0..(max_terms + 1),[]); > array_x:= Array(0..(max_terms + 1),[]); > array_tmp0:= Array(0..(max_terms + 1),[]); > array_tmp1:= Array(0..(max_terms + 1),[]); > array_tmp2:= Array(0..(max_terms + 1),[]); > array_tmp3:= Array(0..(max_terms + 1),[]); > array_tmp4_g:= Array(0..(max_terms + 1),[]); > array_tmp4_a1:= Array(0..(max_terms + 1),[]); > array_tmp4_a2:= Array(0..(max_terms + 1),[]); > array_tmp4:= Array(0..(max_terms + 1),[]); > array_tmp5:= 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_g[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp4_a1[term] := 0.0; > term := term + 1; > od;# end do number 2; > term := 1; > while (term <= max_terms) do # do number 2 > array_tmp4_a2[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_m1[term] := 0.0; > term := term + 1; > od;# end do number 2; > ord := 1; > while (ord <=2) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_y_higher[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=2) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_y_higher_work[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=2) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_y_higher_work2[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=2) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_y_set_initial[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=1) do # do number 2 > term := 1; > while (term <= 3) do # do number 3 > array_poles[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=1) do # do number 2 > term := 1; > while (term <= 3) do # do number 3 > array_real_pole[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=1) do # do number 2 > term := 1; > while (term <= 3) do # do number 3 > array_complex_pole[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > ord := 1; > while (ord <=max_terms) do # do number 2 > term := 1; > while (term <= max_terms) do # do number 3 > array_fact_2[ord,term] := 0.0; > term := term + 1; > od;# end do number 3; > ord := ord + 1; > od;# end do number 2; > #BEGIN ARRAYS DEFINED AND INITIALIZATED > array_y := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_y[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_x := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_x[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp0 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp0[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp2 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp2[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp3 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp3[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp4_g := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp4_g[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp4_a1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp4_a1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_tmp4_a2 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_tmp4_a2[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_m1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_m1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_1[1] := 1; > array_const_0D0 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_0D0[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_0D0[1] := 0.0; > array_const_2D0 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_2D0[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_2D0[1] := 2.0; > array_const_3D0 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms + 1) do # do number 2 > array_const_3D0[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_const_3D0[1] := 3.0; > array_m1 := Array(1..(max_terms+1 + 1),[]); > term := 1; > while (term <= max_terms) do # do number 2 > array_m1[term] := 0.0; > term := term + 1; > od;# end do number 2; > array_m1[1] := -1.0; > #END ARRAYS DEFINED AND INITIALIZATED > #Initing Factorial Tables > iiif := 0; > while (iiif <= glob_max_terms) do # do number 2 > jjjf := 0; > while (jjjf <= glob_max_terms) do # do number 3 > array_fact_1[iiif] := 0; > array_fact_2[iiif,jjjf] := 0; > jjjf := jjjf + 1; > od;# end do number 3; > iiif := iiif + 1; > od;# end do number 2; > #Done Initing Factorial Tables > #TOP SECOND INPUT BLOCK > #BEGIN SECOND INPUT BLOCK > #END FIRST INPUT BLOCK > #BEGIN SECOND INPUT BLOCK > x_start := 0.1; > x_end := 5.0 ; > array_y_init[0 + 1] := exact_soln_y(x_start); > glob_h := 0.05; > glob_look_poles := true; > glob_max_iter := 1000000; > #END SECOND INPUT BLOCK > #BEGIN OVERRIDE BLOCK > glob_desired_digits_correct:=10; > glob_display_interval:=0.001; > glob_look_poles:=true; > glob_max_iter:=10000000; > glob_max_minutes:=3; > #END OVERRIDE BLOCK > #END SECOND INPUT BLOCK > #BEGIN INITS AFTER SECOND INPUT BLOCK > glob_last_good_h := glob_h; > glob_max_terms := max_terms; > glob_max_sec := convfloat(60.0) * convfloat(glob_max_minutes) + convfloat(3600.0) * convfloat(glob_max_hours); > glob_abserr := expt(10.0 , (glob_log10_abserr)); > glob_relerr := expt(10.0 , (glob_log10_relerr)); > if (glob_h > 0.0) then # if number 1 > glob_neg_h := false; > glob_display_interval := omniabs(glob_display_interval); > else > glob_neg_h := true; > glob_display_interval := -omniabs(glob_display_interval); > fi;# end if 1; > chk_data(); > #AFTER INITS AFTER SECOND INPUT BLOCK > array_y_set_initial[1,1] := true; > array_y_set_initial[1,2] := false; > array_y_set_initial[1,3] := false; > array_y_set_initial[1,4] := false; > array_y_set_initial[1,5] := false; > array_y_set_initial[1,6] := false; > array_y_set_initial[1,7] := false; > array_y_set_initial[1,8] := false; > array_y_set_initial[1,9] := false; > array_y_set_initial[1,10] := false; > array_y_set_initial[1,11] := false; > array_y_set_initial[1,12] := false; > array_y_set_initial[1,13] := false; > array_y_set_initial[1,14] := false; > array_y_set_initial[1,15] := false; > array_y_set_initial[1,16] := false; > array_y_set_initial[1,17] := false; > array_y_set_initial[1,18] := false; > array_y_set_initial[1,19] := false; > array_y_set_initial[1,20] := false; > array_y_set_initial[1,21] := false; > array_y_set_initial[1,22] := false; > array_y_set_initial[1,23] := false; > array_y_set_initial[1,24] := false; > array_y_set_initial[1,25] := false; > array_y_set_initial[1,26] := false; > array_y_set_initial[1,27] := false; > array_y_set_initial[1,28] := false; > array_y_set_initial[1,29] := false; > array_y_set_initial[1,30] := false; > #BEGIN OPTIMIZE CODE > omniout_str(ALWAYS,"START of Optimize"); > #Start Series -- INITIALIZE FOR OPTIMIZE > glob_check_sign := check_sign(x_start,x_end); > glob_h := check_sign(x_start,x_end); > if (glob_display_interval < glob_h) then # if number 2 > glob_h := glob_display_interval; > fi;# end if 2; > found_h := -1.0; > best_h := 0.0; > min_value := glob_large_float; > est_answer := est_size_answer(); > opt_iter := 1; > while ((opt_iter <= 20) and (found_h < 0.0)) do # do number 2 > omniout_int(ALWAYS,"opt_iter",32,opt_iter,4,""); > array_x[1] := x_start; > array_x[2] := glob_h; > glob_next_display := x_start; > order_diff := 1; > #Start Series array_y > term_no := 1; > while (term_no <= order_diff) do # do number 3 > array_y[term_no] := array_y_init[term_no] * expt(glob_h , (term_no - 1)) / factorial_1(term_no - 1); > term_no := term_no + 1; > od;# end do number 3; > rows := order_diff; > r_order := 1; > while (r_order <= rows) do # do number 3 > term_no := 1; > while (term_no <= (rows - r_order + 1)) do # do number 4 > it := term_no + r_order - 1; > array_y_higher[r_order,term_no] := array_y_init[it]* expt(glob_h , (term_no - 1)) / ((factorial_1(term_no - 1))); > term_no := term_no + 1; > od;# end do number 4; > r_order := r_order + 1; > od;# end do number 3 > ; > atomall(); > est_needed_step_err := estimated_needed_step_error(x_start,x_end,glob_h,est_answer); > omniout_float(ALWAYS,"est_needed_step_err",32,est_needed_step_err,16,""); > value3 := test_suggested_h(); > omniout_float(ALWAYS,"value3",32,value3,32,""); > if ((value3 < est_needed_step_err) and (found_h < 0.0)) then # if number 2 > best_h := glob_h; > found_h := 1.0; > fi;# end if 2; > omniout_float(ALWAYS,"best_h",32,best_h,32,""); > opt_iter := opt_iter + 1; > glob_h := glob_h * 0.5; > od;# end do number 2; > if (found_h > 0.0) then # if number 2 > glob_h := best_h ; > else > omniout_str(ALWAYS,"No increment to obtain desired accuracy found"); > fi;# end if 2; > #END OPTIMIZE CODE > if (glob_html_log) then # if number 2 > html_log_file := fopen("html/entry.html",WRITE,TEXT); > fi;# end if 2; > #BEGIN SOLUTION CODE > if (found_h > 0.0) then # if number 2 > omniout_str(ALWAYS,"START of Soultion"); > #Start Series -- INITIALIZE FOR SOLUTION > array_x[1] := x_start; > array_x[2] := glob_h; > glob_next_display := x_start; > order_diff := 1; > #Start Series array_y > term_no := 1; > while (term_no <= order_diff) do # do number 2 > array_y[term_no] := array_y_init[term_no] * expt(glob_h , (term_no - 1)) / factorial_1(term_no - 1); > term_no := term_no + 1; > od;# end do number 2; > rows := order_diff; > r_order := 1; > while (r_order <= rows) do # do number 2 > term_no := 1; > while (term_no <= (rows - r_order + 1)) do # do number 3 > it := term_no + r_order - 1; > array_y_higher[r_order,term_no] := array_y_init[it]* expt(glob_h , (term_no - 1)) / ((factorial_1(term_no - 1))); > term_no := term_no + 1; > od;# end do number 3; > r_order := r_order + 1; > od;# end do number 2 > ; > current_iter := 1; > glob_clock_start_sec := elapsed_time_seconds(); > glob_log10normmin := -glob_large_float ; > if (omniabs(array_y_higher[1,1]) > glob_small_float) then # if number 3 > tmp := omniabs(array_y_higher[1,1]); > log10norm := (log10(tmp)); > if (log10norm < glob_log10normmin) then # if number 4 > glob_log10normmin := log10norm; > fi;# end if 4 > fi;# end if 3; > display_alot(current_iter) > ; > glob_clock_sec := elapsed_time_seconds(); > glob_current_iter := 0; > glob_iter := 0; > omniout_str(DEBUGL," "); > glob_reached_optimal_h := true; > glob_optimal_clock_start_sec := elapsed_time_seconds(); > while ((glob_current_iter < glob_max_iter) and ((glob_check_sign * array_x[1]) < (glob_check_sign * x_end )) and ((convfloat(glob_clock_sec) - convfloat(glob_orig_start_sec)) < convfloat(glob_max_sec))) do # do number 2 > #left paren 0001C > if (reached_interval()) then # if number 3 > omniout_str(INFO," "); > omniout_str(INFO,"TOP MAIN SOLVE Loop"); > fi;# end if 3; > glob_iter := glob_iter + 1; > glob_clock_sec := elapsed_time_seconds(); > glob_current_iter := glob_current_iter + 1; > atomall(); > if (glob_look_poles) then # if number 3 > #left paren 0004C > check_for_pole(); > fi;# end if 3;#was right paren 0004C > if (reached_interval()) then # if number 3 > glob_next_display := glob_next_display + glob_display_interval; > fi;# end if 3; > array_x[1] := array_x[1] + glob_h; > array_x[2] := glob_h; > #Jump Series array_y > order_diff := 1; > #START PART 1 SUM AND ADJUST > #START SUM AND ADJUST EQ =1 > #sum_and_adjust array_y > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 2; > calc_term := 1; > #adjust_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > array_y_higher_work[2,iii] := array_y_higher[2,iii] / expt(glob_h , (calc_term - 1)) / factorial_3(iii - calc_term , iii - 1); > iii := iii - 1; > od;# end do number 3; > #AFTER ADJUST SUBSERIES EQ =1 > #BEFORE SUM SUBSERIES EQ =1 > temp_sum := 0.0; > ord := 2; > calc_term := 1; > #sum_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > temp_sum := temp_sum + array_y_higher_work[ord,iii]; > iii := iii - 1; > od;# end do number 3; > array_y_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , (calc_term - 1)) / (factorial_1(calc_term - 1)); > #AFTER SUM SUBSERIES EQ =1 > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 1; > calc_term := 2; > #adjust_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > array_y_higher_work[1,iii] := array_y_higher[1,iii] / expt(glob_h , (calc_term - 1)) / factorial_3(iii - calc_term , iii - 1); > iii := iii - 1; > od;# end do number 3; > #AFTER ADJUST SUBSERIES EQ =1 > #BEFORE SUM SUBSERIES EQ =1 > temp_sum := 0.0; > ord := 1; > calc_term := 2; > #sum_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > temp_sum := temp_sum + array_y_higher_work[ord,iii]; > iii := iii - 1; > od;# end do number 3; > array_y_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , (calc_term - 1)) / (factorial_1(calc_term - 1)); > #AFTER SUM SUBSERIES EQ =1 > #BEFORE ADJUST SUBSERIES EQ =1 > ord := 1; > calc_term := 1; > #adjust_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > array_y_higher_work[1,iii] := array_y_higher[1,iii] / expt(glob_h , (calc_term - 1)) / factorial_3(iii - calc_term , iii - 1); > iii := iii - 1; > od;# end do number 3; > #AFTER ADJUST SUBSERIES EQ =1 > #BEFORE SUM SUBSERIES EQ =1 > temp_sum := 0.0; > ord := 1; > calc_term := 1; > #sum_subseriesarray_y > iii := glob_max_terms; > while (iii >= calc_term) do # do number 3 > temp_sum := temp_sum + array_y_higher_work[ord,iii]; > iii := iii - 1; > od;# end do number 3; > array_y_higher_work2[ord,calc_term] := temp_sum * expt(glob_h , (calc_term - 1)) / (factorial_1(calc_term - 1)); > #AFTER SUM SUBSERIES EQ =1 > #END SUM AND ADJUST EQ =1 > #END PART 1 > #START PART 2 MOVE TERMS to REGULAR Array > term_no := glob_max_terms; > while (term_no >= 1) do # do number 3 > array_y[term_no] := array_y_higher_work2[1,term_no]; > ord := 1; > while (ord <= order_diff) do # do number 4 > array_y_higher[ord,term_no] := array_y_higher_work2[ord,term_no]; > ord := ord + 1; > od;# end do number 4; > term_no := term_no - 1; > od;# end do number 3; > #END PART 2 HEVE MOVED TERMS to REGULAR Array > display_alot(current_iter) > ; > od;# end do number 2;#right paren 0001C > omniout_str(ALWAYS,"Finished!"); > if (glob_iter >= glob_max_iter) then # if number 3 > omniout_str(ALWAYS,"Maximum Iterations Reached before Solution Completed!"); > fi;# end if 3; > if (elapsed_time_seconds() - convfloat(glob_orig_start_sec) >= convfloat(glob_max_sec )) then # if number 3 > omniout_str(ALWAYS,"Maximum Time Reached before Solution Completed!"); > fi;# end if 3; > glob_clock_sec := elapsed_time_seconds(); > omniout_str(INFO,"diff ( y , x , 1 ) = tanh(sqrt(2.0*x + 3.0));"); > omniout_int(INFO,"Iterations ",32,glob_iter,4," ") > ; > prog_report(x_start,x_end); > if (glob_html_log) then # if number 3 > logstart(html_log_file); > logitem_str(html_log_file,"2012-12-15T04:27:35-06:00") > ; > logitem_str(html_log_file,"Maple") > ; > logitem_str(html_log_file,"tanh_sqrt") > ; > logitem_str(html_log_file,"diff ( y , x , 1 ) = tanh(sqrt(2.0*x + 3.0));") > ; > logitem_float(html_log_file,x_start) > ; > logitem_float(html_log_file,x_end) > ; > logitem_float(html_log_file,array_x[1]) > ; > logitem_float(html_log_file,glob_h) > ; > logitem_integer(html_log_file,Digits) > ; > ; > logitem_good_digits(html_log_file,array_last_rel_error[1]) > ; > logitem_integer(html_log_file,glob_max_terms) > ; > logitem_float(html_log_file,array_1st_rel_error[1]) > ; > logitem_float(html_log_file,array_last_rel_error[1]) > ; > logitem_integer(html_log_file,glob_iter) > ; > logitem_pole(html_log_file,array_type_pole[1]) > ; > if (array_type_pole[1] = 1 or array_type_pole[1] = 2) then # if number 4 > logitem_float(html_log_file,array_pole[1]) > ; > logitem_float(html_log_file,array_pole[2]) > ; > 0; > else > logitem_str(html_log_file,"NA") > ; > logitem_str(html_log_file,"NA") > ; > 0; > fi;# end if 4; > logitem_time(html_log_file,convfloat(glob_clock_sec)) > ; > if (glob_percent_done < 100.0) then # if number 4 > logitem_time(html_log_file,convfloat(glob_total_exp_sec)) > ; > 0; > else > logitem_str(html_log_file,"Done") > ; > 0; > fi;# end if 4; > log_revs(html_log_file," 151 ") > ; > logitem_str(html_log_file,"tanh_sqrt diffeq.mxt") > ; > logitem_str(html_log_file,"tanh_sqrt maple results") > ; > logitem_str(html_log_file,"Languages compared") > ; > logend(html_log_file) > ; > ; > fi;# end if 3; > if (glob_html_log) then # if number 3 > fclose(html_log_file); > fi;# end if 3 > ; > ;; > fi;# end if 2 > #END OUTFILEMAIN > end; main := proc() local d1, d2, d3, d4, est_err_2, niii, done_once, term, ord, order_diff, term_no, html_log_file, iiif, jjjf, rows, r_order, sub_iter, calc_term, iii, temp_sum, current_iter, x_start, x_end, it, log10norm, max_terms, opt_iter, tmp, subiter, est_needed_step_err, value3, min_value, est_answer, best_h, found_h; global glob_max_terms, glob_iolevel, ALWAYS, INFO, DEBUGL, DEBUGMASSIVE, MAX_UNCHANGED, glob_check_sign, glob_desired_digits_correct, glob_max_value3, glob_ratio_of_radius, glob_percent_done, glob_subiter_method, glob_log10normmin, glob_total_exp_sec, glob_optimal_expect_sec, glob_html_log, glob_good_digits, glob_max_opt_iter, glob_dump, glob_djd_debug, glob_display_flag, glob_djd_debug2, glob_sec_in_minute, glob_min_in_hour, glob_hours_in_day, glob_days_in_year, glob_sec_in_hour, glob_sec_in_day, glob_sec_in_year, glob_almost_1, glob_clock_sec, glob_clock_start_sec, glob_not_yet_finished, glob_initial_pass, glob_not_yet_start_msg, glob_reached_optimal_h, glob_optimal_done, glob_disp_incr, glob_h, glob_hmax, glob_hmin, glob_hmin_init, glob_large_float, glob_last_good_h, glob_look_poles, glob_neg_h, glob_display_interval, glob_next_display, glob_dump_analytic, glob_log10_abserr, glob_log10_relerr, glob_abserr, glob_relerr, glob_max_hours, glob_max_iter, glob_max_rel_trunc_err, glob_max_trunc_err, glob_no_eqs, glob_optimal_clock_start_sec, glob_optimal_start, glob_small_float, glob_smallish_float, glob_unchanged_h_cnt, glob_warned, glob_warned2, glob_max_sec, glob_orig_start_sec, glob_start, glob_curr_iter_when_opt, glob_current_iter, glob_iter, glob_normmax, glob_log10abserr, glob_log10relerr, glob_max_minutes, array_const_1, array_const_0D0, array_const_2D0, array_const_3D0, array_y_init, array_norms, array_fact_1, array_pole, array_1st_rel_error, array_last_rel_error, array_type_pole, array_y, array_x, array_tmp0, array_tmp1, array_tmp2, array_tmp3, array_tmp4_g, array_tmp4_a1, array_tmp4_a2, array_tmp4, array_tmp5, 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/tanh_sqrtpostode.ode#################"); omniout_str(ALWAYS, "diff ( y , x , 1 ) = tanh(sqrt(2.0*x + 3.0));"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#BEGIN FIRST INPUT BLOCK"); omniout_str(ALWAYS, "Digits:=32;"); omniout_str(ALWAYS, "max_terms:=30;"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#END FIRST INPUT BLOCK"); omniout_str(ALWAYS, "#BEGIN SECOND INPUT BLOCK"); omniout_str(ALWAYS, "x_start := 0.1;"); omniout_str(ALWAYS, "x_end := 5.0 ;"); omniout_str(ALWAYS, "array_y_init[0 + 1] := exact_soln_y(x_start);"); omniout_str(ALWAYS, "glob_h := 0.05;"); omniout_str(ALWAYS, "glob_look_poles := true;"); omniout_str(ALWAYS, "glob_max_iter := 1000000;"); omniout_str(ALWAYS, "#END SECOND INPUT BLOCK"); omniout_str(ALWAYS, "#BEGIN OVERRIDE BLOCK"); omniout_str(ALWAYS, "glob_desired_digits_correct:=10;"); omniout_str(ALWAYS, "glob_display_interval:=0.001;"); omniout_str(ALWAYS, "glob_look_poles:=true;"); omniout_str(ALWAYS, "glob_max_iter:=10000000;"); omniout_str(ALWAYS, "glob_max_minutes:=3;"); omniout_str(ALWAYS, "#END OVERRIDE BLOCK"); omniout_str(ALWAYS, "!"); omniout_str(ALWAYS, "#BEGIN USER DEF BLOCK"); omniout_str(ALWAYS, "exact_soln_y := proc(x)"); omniout_str(ALWAYS, "return(0.0);"); omniout_str(ALWAYS, "end;"); omniout_str(ALWAYS, "#END USER DEF BLOCK"); omniout_str(ALWAYS, "#######END OF ECHO OF PROBLEM#################"); glob_unchanged_h_cnt := 0; glob_warned := false; glob_warned2 := false; glob_small_float := 0.10*10^(-199); glob_smallish_float := 0.10*10^(-63); glob_large_float := 0.10*10^101; glob_almost_1 := 0.99; glob_log10_abserr := -8.0; glob_log10_relerr := -8.0; glob_hmax := 0.01; Digits := 32; max_terms := 30; glob_max_terms := max_terms; glob_html_log := true; array_y_init := Array(0 .. max_terms + 1, []); array_norms := Array(0 .. max_terms + 1, []); array_fact_1 := Array(0 .. max_terms + 1, []); array_pole := Array(0 .. max_terms + 1, []); array_1st_rel_error := Array(0 .. max_terms + 1, []); array_last_rel_error := Array(0 .. max_terms + 1, []); array_type_pole := Array(0 .. max_terms + 1, []); array_y := Array(0 .. max_terms + 1, []); array_x := Array(0 .. max_terms + 1, []); array_tmp0 := Array(0 .. max_terms + 1, []); array_tmp1 := Array(0 .. max_terms + 1, []); array_tmp2 := Array(0 .. max_terms + 1, []); array_tmp3 := Array(0 .. max_terms + 1, []); array_tmp4_g := Array(0 .. max_terms + 1, []); array_tmp4_a1 := Array(0 .. max_terms + 1, []); array_tmp4_a2 := Array(0 .. max_terms + 1, []); array_tmp4 := Array(0 .. max_terms + 1, []); array_tmp5 := 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_g[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp4_a1[term] := 0.; term := term + 1 end do; term := 1; while term <= max_terms do array_tmp4_a2[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_m1[term] := 0.; term := term + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= max_terms do array_y_higher[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= max_terms do array_y_higher_work[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= max_terms do array_y_higher_work2[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 2 do term := 1; while term <= max_terms do array_y_set_initial[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 1 do term := 1; while term <= 3 do array_poles[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 1 do term := 1; while term <= 3 do array_real_pole[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= 1 do term := 1; while term <= 3 do array_complex_pole[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; ord := 1; while ord <= max_terms do term := 1; while term <= max_terms do array_fact_2[ord, term] := 0.; term := term + 1 end do; ord := ord + 1 end do; array_y := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_y[term] := 0.; term := term + 1 end do; array_x := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_x[term] := 0.; term := term + 1 end do; array_tmp0 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp0[term] := 0.; term := term + 1 end do; array_tmp1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp1[term] := 0.; term := term + 1 end do; array_tmp2 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp2[term] := 0.; term := term + 1 end do; array_tmp3 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp3[term] := 0.; term := term + 1 end do; array_tmp4_g := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp4_g[term] := 0.; term := term + 1 end do; array_tmp4_a1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp4_a1[term] := 0.; term := term + 1 end do; array_tmp4_a2 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_tmp4_a2[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_m1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_m1[term] := 0.; term := term + 1 end do; array_const_1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_1[term] := 0.; term := term + 1 end do; array_const_1[1] := 1; array_const_0D0 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_0D0[term] := 0.; term := term + 1 end do; array_const_0D0[1] := 0.; array_const_2D0 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_2D0[term] := 0.; term := term + 1 end do; array_const_2D0[1] := 2.0; array_const_3D0 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms + 1 do array_const_3D0[term] := 0.; term := term + 1 end do; array_const_3D0[1] := 3.0; array_m1 := Array(1 .. max_terms + 2, []); term := 1; while term <= max_terms do array_m1[term] := 0.; term := term + 1 end do; array_m1[1] := -1.0; iiif := 0; while iiif <= glob_max_terms do jjjf := 0; while jjjf <= glob_max_terms do array_fact_1[iiif] := 0; array_fact_2[iiif, jjjf] := 0; jjjf := jjjf + 1 end do; iiif := iiif + 1 end do; x_start := 0.1; x_end := 5.0; array_y_init[1] := exact_soln_y(x_start); glob_h := 0.05; glob_look_poles := true; glob_max_iter := 1000000; glob_desired_digits_correct := 10; glob_display_interval := 0.001; glob_look_poles := true; glob_max_iter := 10000000; glob_max_minutes := 3; glob_last_good_h := glob_h; glob_max_terms := max_terms; glob_max_sec := convfloat(60.0)*convfloat(glob_max_minutes) + convfloat(3600.0)*convfloat(glob_max_hours); glob_abserr := expt(10.0, glob_log10_abserr); glob_relerr := expt(10.0, glob_log10_relerr); if 0. < glob_h then glob_neg_h := false; glob_display_interval := omniabs(glob_display_interval) else glob_neg_h := true; glob_display_interval := -omniabs(glob_display_interval) end if; chk_data(); array_y_set_initial[1, 1] := true; array_y_set_initial[1, 2] := false; array_y_set_initial[1, 3] := false; array_y_set_initial[1, 4] := false; array_y_set_initial[1, 5] := false; array_y_set_initial[1, 6] := false; array_y_set_initial[1, 7] := false; array_y_set_initial[1, 8] := false; array_y_set_initial[1, 9] := false; array_y_set_initial[1, 10] := false; array_y_set_initial[1, 11] := false; array_y_set_initial[1, 12] := false; array_y_set_initial[1, 13] := false; array_y_set_initial[1, 14] := false; array_y_set_initial[1, 15] := false; array_y_set_initial[1, 16] := false; array_y_set_initial[1, 17] := false; array_y_set_initial[1, 18] := false; array_y_set_initial[1, 19] := false; array_y_set_initial[1, 20] := false; array_y_set_initial[1, 21] := false; array_y_set_initial[1, 22] := false; array_y_set_initial[1, 23] := false; array_y_set_initial[1, 24] := false; array_y_set_initial[1, 25] := false; array_y_set_initial[1, 26] := false; array_y_set_initial[1, 27] := false; array_y_set_initial[1, 28] := false; array_y_set_initial[1, 29] := false; array_y_set_initial[1, 30] := false; omniout_str(ALWAYS, "START of Optimize"); glob_check_sign := check_sign(x_start, x_end); glob_h := check_sign(x_start, x_end); if glob_display_interval < glob_h then glob_h := glob_display_interval end if; found_h := -1.0; best_h := 0.; min_value := glob_large_float; est_answer := est_size_answer(); opt_iter := 1; while opt_iter <= 20 and found_h < 0. do omniout_int(ALWAYS, "opt_iter", 32, opt_iter, 4, ""); array_x[1] := x_start; array_x[2] := glob_h; glob_next_display := x_start; order_diff := 1; term_no := 1; while term_no <= order_diff do array_y[term_no] := array_y_init[term_no]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; rows := order_diff; r_order := 1; while r_order <= rows do term_no := 1; while term_no <= rows - r_order + 1 do it := term_no + r_order - 1; array_y_higher[r_order, term_no] := array_y_init[it]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; r_order := r_order + 1 end do; atomall(); est_needed_step_err := estimated_needed_step_error(x_start, x_end, glob_h, est_answer) ; omniout_float(ALWAYS, "est_needed_step_err", 32, est_needed_step_err, 16, ""); value3 := test_suggested_h(); omniout_float(ALWAYS, "value3", 32, value3, 32, ""); if value3 < est_needed_step_err and found_h < 0. then best_h := glob_h; found_h := 1.0 end if; omniout_float(ALWAYS, "best_h", 32, best_h, 32, ""); opt_iter := opt_iter + 1; glob_h := glob_h*0.5 end do; if 0. < found_h then glob_h := best_h else omniout_str(ALWAYS, "No increment to obtain desired accuracy found") end if; if glob_html_log then html_log_file := fopen("html/entry.html", WRITE, TEXT) end if; if 0. < found_h then omniout_str(ALWAYS, "START of Soultion"); array_x[1] := x_start; array_x[2] := glob_h; glob_next_display := x_start; order_diff := 1; term_no := 1; while term_no <= order_diff do array_y[term_no] := array_y_init[term_no]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; rows := order_diff; r_order := 1; while r_order <= rows do term_no := 1; while term_no <= rows - r_order + 1 do it := term_no + r_order - 1; array_y_higher[r_order, term_no] := array_y_init[it]* expt(glob_h, term_no - 1)/factorial_1(term_no - 1); term_no := term_no + 1 end do; r_order := r_order + 1 end do; current_iter := 1; glob_clock_start_sec := elapsed_time_seconds(); glob_log10normmin := -glob_large_float; if glob_small_float < omniabs(array_y_higher[1, 1]) then tmp := omniabs(array_y_higher[1, 1]); log10norm := log10(tmp); if log10norm < glob_log10normmin then glob_log10normmin := log10norm end if end if; display_alot(current_iter); glob_clock_sec := elapsed_time_seconds(); glob_current_iter := 0; glob_iter := 0; omniout_str(DEBUGL, " "); glob_reached_optimal_h := true; glob_optimal_clock_start_sec := elapsed_time_seconds(); while glob_current_iter < glob_max_iter and glob_check_sign*array_x[1] < glob_check_sign*x_end and convfloat(glob_clock_sec) - convfloat(glob_orig_start_sec) < convfloat(glob_max_sec) do if reached_interval() then omniout_str(INFO, " "); omniout_str(INFO, "TOP MAIN SOLVE Loop") end if; glob_iter := glob_iter + 1; glob_clock_sec := elapsed_time_seconds(); glob_current_iter := glob_current_iter + 1; atomall(); if glob_look_poles then check_for_pole() end if; if reached_interval() then glob_next_display := glob_next_display + glob_display_interval end if; array_x[1] := array_x[1] + glob_h; array_x[2] := glob_h; order_diff := 1; ord := 2; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do array_y_higher_work[2, iii] := array_y_higher[2, iii]/( expt(glob_h, calc_term - 1)* factorial_3(iii - calc_term, iii - 1)); iii := iii - 1 end do; temp_sum := 0.; ord := 2; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do temp_sum := temp_sum + array_y_higher_work[ord, iii]; iii := iii - 1 end do; array_y_higher_work2[ord, calc_term] := temp_sum* expt(glob_h, calc_term - 1)/factorial_1(calc_term - 1); ord := 1; calc_term := 2; iii := glob_max_terms; while calc_term <= iii do array_y_higher_work[1, iii] := array_y_higher[1, iii]/( expt(glob_h, calc_term - 1)* factorial_3(iii - calc_term, iii - 1)); iii := iii - 1 end do; temp_sum := 0.; ord := 1; calc_term := 2; iii := glob_max_terms; while calc_term <= iii do temp_sum := temp_sum + array_y_higher_work[ord, iii]; iii := iii - 1 end do; array_y_higher_work2[ord, calc_term] := temp_sum* expt(glob_h, calc_term - 1)/factorial_1(calc_term - 1); ord := 1; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do array_y_higher_work[1, iii] := array_y_higher[1, iii]/( expt(glob_h, calc_term - 1)* factorial_3(iii - calc_term, iii - 1)); iii := iii - 1 end do; temp_sum := 0.; ord := 1; calc_term := 1; iii := glob_max_terms; while calc_term <= iii do temp_sum := temp_sum + array_y_higher_work[ord, iii]; iii := iii - 1 end do; array_y_higher_work2[ord, calc_term] := temp_sum* expt(glob_h, calc_term - 1)/factorial_1(calc_term - 1); term_no := glob_max_terms; while 1 <= term_no do array_y[term_no] := array_y_higher_work2[1, term_no]; ord := 1; while ord <= order_diff do array_y_higher[ord, term_no] := array_y_higher_work2[ord, term_no]; ord := ord + 1 end do; term_no := term_no - 1 end do; display_alot(current_iter) end do; omniout_str(ALWAYS, "Finished!"); if glob_max_iter <= glob_iter then omniout_str(ALWAYS, "Maximum Iterations Reached before Solution Completed!") end if; if convfloat(glob_max_sec) <= elapsed_time_seconds() - convfloat(glob_orig_start_sec) then omniout_str(ALWAYS, "Maximum Time Reached before Solution Completed!") end if; glob_clock_sec := elapsed_time_seconds(); omniout_str(INFO, "diff ( y , x , 1 ) = tanh(sqrt(2.0*x + 3.0));"); omniout_int(INFO, "Iterations ", 32, glob_iter, 4, " "); prog_report(x_start, x_end); if glob_html_log then logstart(html_log_file); logitem_str(html_log_file, "2012-12-15T04:27:35-06:00"); logitem_str(html_log_file, "Maple"); logitem_str(html_log_file, "tanh_sqrt"); logitem_str(html_log_file, "diff ( y , x , 1 ) = tanh(sqrt(2.0*x + 3.0));"); logitem_float(html_log_file, x_start); logitem_float(html_log_file, x_end); logitem_float(html_log_file, array_x[1]); logitem_float(html_log_file, glob_h); logitem_integer(html_log_file, Digits); logitem_good_digits(html_log_file, array_last_rel_error[1]); logitem_integer(html_log_file, glob_max_terms); logitem_float(html_log_file, array_1st_rel_error[1]); logitem_float(html_log_file, array_last_rel_error[1]); logitem_integer(html_log_file, glob_iter); logitem_pole(html_log_file, array_type_pole[1]); if array_type_pole[1] = 1 or array_type_pole[1] = 2 then logitem_float(html_log_file, array_pole[1]); logitem_float(html_log_file, array_pole[2]); 0 else logitem_str(html_log_file, "NA"); logitem_str(html_log_file, "NA"); 0 end if; logitem_time(html_log_file, convfloat(glob_clock_sec)); if glob_percent_done < 100.0 then logitem_time(html_log_file, convfloat(glob_total_exp_sec)); 0 else logitem_str(html_log_file, "Done"); 0 end if; log_revs(html_log_file, " 151 "); logitem_str(html_log_file, "tanh_sqrt diffeq.mxt"); logitem_str(html_log_file, "tanh_sqrt maple results"); logitem_str(html_log_file, "Languages compared"); logend(html_log_file) end if; if glob_html_log then fclose(html_log_file) end if end if end proc > # End Function number 12 > main(); ##############ECHO OF PROBLEM################# ##############temp/tanh_sqrtpostode.ode################# diff ( y , x , 1 ) = tanh(sqrt(2.0*x + 3.0)); ! #BEGIN FIRST INPUT BLOCK Digits:=32; max_terms:=30; ! #END FIRST INPUT BLOCK #BEGIN SECOND INPUT BLOCK x_start := 0.1; x_end := 5.0 ; array_y_init[0 + 1] := exact_soln_y(x_start); glob_h := 0.05; glob_look_poles := true; glob_max_iter := 1000000; #END SECOND INPUT BLOCK #BEGIN OVERRIDE BLOCK glob_desired_digits_correct:=10; glob_display_interval:=0.001; glob_look_poles:=true; glob_max_iter:=10000000; glob_max_minutes:=3; #END OVERRIDE BLOCK ! #BEGIN USER DEF BLOCK exact_soln_y := proc(x) return(0.0); end; #END USER DEF BLOCK #######END OF ECHO OF PROBLEM################# START of Optimize min_size = 0 min_size = 1 opt_iter = 1 glob_desired_digits_correct = 10 desired_abs_gbl_error = 1.0000000000000000000000000000000e-10 range = 4.9 estimated_steps = 4900 step_error = 2.0408163265306122448979591836735e-14 est_needed_step_err = 2.0408163265306122448979591836735e-14 hn_div_ho = 0.5 hn_div_ho_2 = 0.25 hn_div_ho_3 = 0.125 value3 = 9.0836585856959790996584587460647e-85 max_value3 = 9.0836585856959790996584587460647e-85 value3 = 9.0836585856959790996584587460647e-85 best_h = 0.001 START of Soultion x[1] = 0.1 y[1] (analytic) = 0 y[1] (numeric) = 0 absolute error = 0 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.101 y[1] (analytic) = 0 y[1] (numeric) = 0.00094566907844683945456441147128926 absolute error = 0.00094566907844683945456441147128926 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=3.8MB, alloc=2.8MB, time=0.31 NO POLE x[1] = 0.102 y[1] (analytic) = 0 y[1] (numeric) = 0.0018913972009118893583093558945881 absolute error = 0.0018913972009118893583093558945881 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.103 y[1] (analytic) = 0 y[1] (numeric) = 0.002837184286615161557940150358752 absolute error = 0.002837184286615161557940150358752 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.104 y[1] (analytic) = 0 y[1] (numeric) = 0.0037830302549141984798962655386921 absolute error = 0.0037830302549141984798962655386921 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.105 y[1] (analytic) = 0 y[1] (numeric) = 0.0047289350253037863716620119795534 absolute error = 0.0047289350253037863716620119795534 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=7.6MB, alloc=3.8MB, time=0.66 NO POLE x[1] = 0.106 y[1] (analytic) = 0 y[1] (numeric) = 0.0056748985174156692629321279907399 absolute error = 0.0056748985174156692629321279907399 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.107 y[1] (analytic) = 0 y[1] (numeric) = 0.0066209206510182636444914855284643 absolute error = 0.0066209206510182636444914855284643 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.108 y[1] (analytic) = 0 y[1] (numeric) = 0.0075670013460163738626755639206447 absolute error = 0.0075670013460163738626755639206447 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.109 y[1] (analytic) = 0 y[1] (numeric) = 0.0085131405224509082272857450133964 absolute error = 0.0085131405224509082272857450133964 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=11.4MB, alloc=3.9MB, time=1.03 NO POLE x[1] = 0.11 y[1] (analytic) = 0 y[1] (numeric) = 0.0094593381004985958308408574297087 absolute error = 0.0094593381004985958308408574297087 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.111 y[1] (analytic) = 0 y[1] (numeric) = 0.010405594000471704077053742263107 absolute error = 0.010405594000471704077053742263107 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.112 y[1] (analytic) = 0 y[1] (numeric) = 0.01135190814281775691642892781642 absolute error = 0.01135190814281775691642892781642 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.113 y[1] (analytic) = 0 y[1] (numeric) = 0.012298280448119253786884787071778 absolute error = 0.012298280448119253786884787071778 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.114 y[1] (analytic) = 0 y[1] (numeric) = 0.013244710837093389257310808575519 absolute error = 0.013244710837093389257310808575519 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=15.2MB, alloc=4.1MB, time=1.40 NO POLE x[1] = 0.115 y[1] (analytic) = 0 y[1] (numeric) = 0.014191199230591773371977839472987 absolute error = 0.014191199230591773371977839472987 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.116 y[1] (analytic) = 0 y[1] (numeric) = 0.015137745549600152693726358664777 absolute error = 0.015137745549600152693726358664777 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.117 y[1] (analytic) = 0 y[1] (numeric) = 0.016084349715238132043865008608674 absolute error = 0.016084349715238132043865008608674 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.118 y[1] (analytic) = 0 y[1] (numeric) = 0.017031011648758896936718756290499 absolute error = 0.017031011648758896936718756290499 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=19.0MB, alloc=4.1MB, time=1.76 NO POLE x[1] = 0.119 y[1] (analytic) = 0 y[1] (numeric) = 0.017977731271548936706773167461855 absolute error = 0.017977731271548936706773167461855 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.12 y[1] (analytic) = 0 y[1] (numeric) = 0.018924508505127768326368363522168 absolute error = 0.018924508505127768326368363522168 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.121 y[1] (analytic) = 0 y[1] (numeric) = 0.019871343271147660911903287534682 absolute error = 0.019871343271147660911903287534682 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.122 y[1] (analytic) = 0 y[1] (numeric) = 0.020818235491393360916517934938667 absolute error = 0.020818235491393360916517934938667 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.123 y[1] (analytic) = 0 y[1] (numeric) = 0.021765185087781818007228205679977 absolute error = 0.021765185087781818007228205679977 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=22.8MB, alloc=4.1MB, time=2.13 NO POLE x[1] = 0.124 y[1] (analytic) = 0 y[1] (numeric) = 0.022712191982361911624495007855441 absolute error = 0.022712191982361911624495007855441 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.125 y[1] (analytic) = 0 y[1] (numeric) = 0.023659256097314178222216188679001 absolute error = 0.023659256097314178222216188679001 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.126 y[1] (analytic) = 0 y[1] (numeric) = 0.024606377354950539186136786753992 absolute error = 0.024606377354950539186136786753992 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.127 y[1] (analytic) = 0 y[1] (numeric) = 0.02555355567771402942867999040076 absolute error = 0.02555355567771402942867999040076 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=26.7MB, alloc=4.1MB, time=2.51 NO POLE x[1] = 0.128 y[1] (analytic) = 0 y[1] (numeric) = 0.02650079098817852665820805026568 absolute error = 0.02650079098817852665820805026568 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.129 y[1] (analytic) = 0 y[1] (numeric) = 0.027448083209048481320729230749581 absolute error = 0.027448083209048481320729230749581 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.13 y[1] (analytic) = 0 y[1] (numeric) = 0.02839543226315864721207369406305 absolute error = 0.02839543226315864721207369406305 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.131 y[1] (analytic) = 0 y[1] (numeric) = 0.029342838073473812758567993064882 absolute error = 0.029342838073473812758567993064882 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.132 y[1] (analytic) = 0 y[1] (numeric) = 0.030290300563088532964244604589286 absolute error = 0.030290300563088532964244604589286 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=30.5MB, alloc=4.1MB, time=2.90 NO POLE x[1] = 0.133 y[1] (analytic) = 0 y[1] (numeric) = 0.031237819655226862022629663837843 absolute error = 0.031237819655226862022629663837843 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.134 y[1] (analytic) = 0 y[1] (numeric) = 0.032185395273242086591158762723725 absolute error = 0.032185395273242086591158762723725 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.135 y[1] (analytic) = 0 y[1] (numeric) = 0.033133027340616459726277350927567 absolute error = 0.033133027340616459726277350927567 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.136 y[1] (analytic) = 0 y[1] (numeric) = 0.034080715780960935477288927975457 absolute error = 0.034080715780960935477288927975457 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=34.3MB, alloc=4.1MB, time=3.27 NO POLE x[1] = 0.137 y[1] (analytic) = 0 y[1] (numeric) = 0.035028460518014904137020837997912 absolute error = 0.035028460518014904137020837997912 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.138 y[1] (analytic) = 0 y[1] (numeric) = 0.035976261475645928147384076091969 absolute error = 0.035976261475645928147384076091969 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.139 y[1] (analytic) = 0 y[1] (numeric) = 0.036924118577849478657910086503638 absolute error = 0.036924118577849478657910086503638 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.14 y[1] (analytic) = 0 y[1] (numeric) = 0.037872031748748672735354078291269 absolute error = 0.037872031748748672735354078291269 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.141 y[1] (analytic) = 0 y[1] (numeric) = 0.038820000912594011222460903837688 absolute error = 0.038820000912594011222460903837688 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=38.1MB, alloc=4.2MB, time=3.65 NO POLE x[1] = 0.142 y[1] (analytic) = 0 y[1] (numeric) = 0.039768025993763117243996039665443 absolute error = 0.039768025993763117243996039665443 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.143 y[1] (analytic) = 0 y[1] (numeric) = 0.040716106916760475358150677589777 absolute error = 0.040716106916760475358150677589777 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.144 y[1] (analytic) = 0 y[1] (numeric) = 0.041664243606217171351436377432076 absolute error = 0.041664243606217171351436377432076 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.145 y[1] (analytic) = 0 y[1] (numeric) = 0.042612435986890632675191150425963 absolute error = 0.042612435986890632675191150425963 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=41.9MB, alloc=4.2MB, time=4.04 NO POLE x[1] = 0.146 y[1] (analytic) = 0 y[1] (numeric) = 0.043560683983664369521825235191821 absolute error = 0.043560683983664369521825235191821 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.147 y[1] (analytic) = 0 y[1] (numeric) = 0.044508987521547716538941195845684 absolute error = 0.044508987521547716538941195845684 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.148 y[1] (analytic) = 0 y[1] (numeric) = 0.045457346525675575179469314556844 absolute error = 0.045457346525675575179469314556844 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.149 y[1] (analytic) = 0 y[1] (numeric) = 0.046405760921308156685965568786443 absolute error = 0.046405760921308156685965568786443 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.15 y[1] (analytic) = 0 y[1] (numeric) = 0.04735423063383072570722577663732 absolute error = 0.04735423063383072570722577663732 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=45.7MB, alloc=4.2MB, time=4.42 NO POLE x[1] = 0.151 y[1] (analytic) = 0 y[1] (numeric) = 0.04830275558875334454537576233363 absolute error = 0.04830275558875334454537576233363 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.152 y[1] (analytic) = 0 y[1] (numeric) = 0.049251335711710618031603637936717 absolute error = 0.049251335711710618031603637936717 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.153 y[1] (analytic) = 0 y[1] (numeric) = 0.050199970928461439028706517100403 absolute error = 0.050199970928461439028706517100403 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.154 y[1] (analytic) = 0 y[1] (numeric) = 0.051148661164888734558630172082709 absolute error = 0.051148661164888734558630172082709 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=49.5MB, alloc=4.2MB, time=4.81 NO POLE x[1] = 0.155 y[1] (analytic) = 0 y[1] (numeric) = 0.052097406346999212553186316469929 absolute error = 0.052097406346999212553186316469929 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.156 y[1] (analytic) = 0 y[1] (numeric) = 0.053046206400923109226138343240286 absolute error = 0.053046206400923109226138343240286 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.157 y[1] (analytic) = 0 y[1] (numeric) = 0.053995061252913937064852471004931 absolute error = 0.053995061252913937064852471004931 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.158 y[1] (analytic) = 0 y[1] (numeric) = 0.054943970829348233439717350620106 absolute error = 0.054943970829348233439717350620106 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.159 y[1] (analytic) = 0 y[1] (numeric) = 0.055892935056725309829541259971588 absolute error = 0.055892935056725309829541259971588 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=53.4MB, alloc=4.2MB, time=5.19 NO POLE x[1] = 0.16 y[1] (analytic) = 0 y[1] (numeric) = 0.056841953861667001661142066696341 absolute error = 0.056841953861667001661142066696341 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.161 y[1] (analytic) = 0 y[1] (numeric) = 0.057791027170917418761351167031279 absolute error = 0.057791027170917418761351167031279 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.162 y[1] (analytic) = 0 y[1] (numeric) = 0.058740154911342696419658613969397 absolute error = 0.058740154911342696419658613969397 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.163 y[1] (analytic) = 0 y[1] (numeric) = 0.0596893370099307470597326295629 absolute error = 0.0596893370099307470597326295629 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=57.2MB, alloc=4.3MB, time=5.57 NO POLE x[1] = 0.164 y[1] (analytic) = 0 y[1] (numeric) = 0.060638573393791012518052654644499 absolute error = 0.060638573393791012518052654644499 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.165 y[1] (analytic) = 0 y[1] (numeric) = 0.061587863990154216927901024544369 absolute error = 0.061587863990154216927901024544369 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.166 y[1] (analytic) = 0 y[1] (numeric) = 0.062537208726372120206964271663517 absolute error = 0.062537208726372120206964271663517 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.167 y[1] (analytic) = 0 y[1] (numeric) = 0.063486607529917272146800945126063 absolute error = 0.063486607529917272146800945126063 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.168 y[1] (analytic) = 0 y[1] (numeric) = 0.064436060328382767102438704274331 absolute error = 0.064436060328382767102438704274331 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=61.0MB, alloc=4.3MB, time=5.95 NO POLE x[1] = 0.169 y[1] (analytic) = 0 y[1] (numeric) = 0.065385567049481999280369286592268 absolute error = 0.065385567049481999280369286592268 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.17 y[1] (analytic) = 0 y[1] (numeric) = 0.066335127621048418623215771844666 absolute error = 0.066335127621048418623215771844666 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.171 y[1] (analytic) = 0 y[1] (numeric) = 0.067284741971035287289352362901543 absolute error = 0.067284741971035287289352362901543 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.172 y[1] (analytic) = 0 y[1] (numeric) = 0.068234410027515436725762679977991 absolute error = 0.068234410027515436725762679977991 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=64.8MB, alloc=4.3MB, time=6.33 NO POLE x[1] = 0.173 y[1] (analytic) = 0 y[1] (numeric) = 0.069184131718681025332428318958422 absolute error = 0.069184131718681025332428318958422 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.174 y[1] (analytic) = 0 y[1] (numeric) = 0.070133906972843296716545156188563 absolute error = 0.070133906972843296716545156188563 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.175 y[1] (analytic) = 0 y[1] (numeric) = 0.071083735718432338534870591706427 absolute error = 0.071083735718432338534870591706427 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.176 y[1] (analytic) = 0 y[1] (numeric) = 0.072033617883996841922510610442007 absolute error = 0.072033617883996841922510610442007 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.177 y[1] (analytic) = 0 y[1] (numeric) = 0.072983553398203861506461206541223 absolute error = 0.072983553398203861506461206541223 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=68.6MB, alloc=4.3MB, time=6.71 NO POLE x[1] = 0.178 y[1] (analytic) = 0 y[1] (numeric) = 0.073933542189838576002224359758981 absolute error = 0.073933542189838576002224359758981 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.179 y[1] (analytic) = 0 y[1] (numeric) = 0.074883584187804049391824374914759 absolute error = 0.074883584187804049391824374914759 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.18 y[1] (analytic) = 0 y[1] (numeric) = 0.075833679321120992681555995807175 absolute error = 0.075833679321120992681555995807175 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop NO POLE x[1] = 0.181 y[1] (analytic) = 0 y[1] (numeric) = 0.076783827518927526237801283836368 absolute error = 0.076783827518927526237801283836368 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=72.4MB, alloc=4.3MB, time=7.10 NO POLE x[1] = 0.182 y[1] (analytic) = 0 y[1] (numeric) = 0.077734028710478942699257808978943 absolute error = 0.077734028710478942699257808978943 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.844 Order of pole = 0.005519 x[1] = 0.183 y[1] (analytic) = 0 y[1] (numeric) = 0.078684282825147470463926236793681 absolute error = 0.078684282825147470463926236793681 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.848 Order of pole = 0.0149 x[1] = 0.184 y[1] (analytic) = 0 y[1] (numeric) = 0.079634589792422037749210909900491 absolute error = 0.079634589792422037749210909900491 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.851 Order of pole = 0.02422 x[1] = 0.185 y[1] (analytic) = 0 y[1] (numeric) = 0.080584949541908037223492515963157 absolute error = 0.080584949541908037223492515963157 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.854 Order of pole = 0.03346 x[1] = 0.186 y[1] (analytic) = 0 y[1] (numeric) = 0.081535362003327091207537406710802 absolute error = 0.081535362003327091207537406710802 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=76.2MB, alloc=4.3MB, time=7.49 Complex estimate of poles used Radius of convergence = 1.857 Order of pole = 0.04265 x[1] = 0.187 y[1] (analytic) = 0 y[1] (numeric) = 0.082485827106516817444113584045632 absolute error = 0.082485827106516817444113584045632 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.861 Order of pole = 0.05176 x[1] = 0.188 y[1] (analytic) = 0 y[1] (numeric) = 0.083436344781430595434188799897057 absolute error = 0.083436344781430595434188799897057 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.864 Order of pole = 0.06081 x[1] = 0.189 y[1] (analytic) = 0 y[1] (numeric) = 0.084386914958137333338091626285798 absolute error = 0.084386914958137333338091626285798 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.867 Order of pole = 0.0698 x[1] = 0.19 y[1] (analytic) = 0 y[1] (numeric) = 0.085337537566821235440021741146763 absolute error = 0.085337537566821235440021741146763 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.87 Order of pole = 0.07872 memory used=80.1MB, alloc=4.3MB, time=7.87 x[1] = 0.191 y[1] (analytic) = 0 y[1] (numeric) = 0.086288212537781570174301043916551 absolute error = 0.086288212537781570174301043916551 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.873 Order of pole = 0.08758 x[1] = 0.192 y[1] (analytic) = 0 y[1] (numeric) = 0.087238939801432438711762562810202 absolute error = 0.087238939801432438711762562810202 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.876 Order of pole = 0.09638 x[1] = 0.193 y[1] (analytic) = 0 y[1] (numeric) = 0.088189719288302544104679443181586 absolute error = 0.088189719288302544104679443181586 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.879 Order of pole = 0.1051 x[1] = 0.194 y[1] (analytic) = 0 y[1] (numeric) = 0.089140550929034960988641613471554 absolute error = 0.089140550929034960988641613471554 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.882 Order of pole = 0.1138 x[1] = 0.195 y[1] (analytic) = 0 y[1] (numeric) = 0.090091434654386905839793012086099 absolute error = 0.090091434654386905839793012086099 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=83.9MB, alloc=4.3MB, time=8.26 Complex estimate of poles used Radius of convergence = 1.885 Order of pole = 0.1224 x[1] = 0.196 y[1] (analytic) = 0 y[1] (numeric) = 0.091042370395229507785847525201382 absolute error = 0.091042370395229507785847525201382 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.888 Order of pole = 0.1309 x[1] = 0.197 y[1] (analytic) = 0 y[1] (numeric) = 0.091993358082547579969307032051116 absolute error = 0.091993358082547579969307032051116 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.892 Order of pole = 0.1394 x[1] = 0.198 y[1] (analytic) = 0 y[1] (numeric) = 0.092944397647439391461310180801722 absolute error = 0.092944397647439391461310180801722 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.895 Order of pole = 0.1479 x[1] = 0.199 y[1] (analytic) = 0 y[1] (numeric) = 0.093895489021116439724545724748591 absolute error = 0.093895489021116439724545724748591 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.898 Order of pole = 0.1562 x[1] = 0.2 y[1] (analytic) = 0 y[1] (numeric) = 0.094846632134903223623669435359028 memory used=87.7MB, alloc=4.3MB, time=8.64 absolute error = 0.094846632134903223623669435359028 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.901 Order of pole = 0.1645 x[1] = 0.201 y[1] (analytic) = 0 y[1] (numeric) = 0.095797826920237016981668775729992 absolute error = 0.095797826920237016981668775729992 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.903 Order of pole = 0.1728 x[1] = 0.202 y[1] (analytic) = 0 y[1] (numeric) = 0.096749073308667642680624665406996 absolute error = 0.096749073308667642680624665406996 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.906 Order of pole = 0.181 x[1] = 0.203 y[1] (analytic) = 0 y[1] (numeric) = 0.097700371231857247305324795309647 absolute error = 0.097700371231857247305324795309647 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.909 Order of pole = 0.1891 x[1] = 0.204 y[1] (analytic) = 0 y[1] (numeric) = 0.098651720621580076328188059813875 absolute error = 0.098651720621580076328188059813875 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=91.5MB, alloc=4.3MB, time=9.03 Complex estimate of poles used Radius of convergence = 1.912 Order of pole = 0.1972 x[1] = 0.205 y[1] (analytic) = 0 y[1] (numeric) = 0.099603121409722249833964761935255 absolute error = 0.099603121409722249833964761935255 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.915 Order of pole = 0.2053 x[1] = 0.206 y[1] (analytic) = 0 y[1] (numeric) = 0.10055457352828153878268231712574 absolute error = 0.10055457352828153878268231712574 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.918 Order of pole = 0.2132 x[1] = 0.207 y[1] (analytic) = 0 y[1] (numeric) = 0.1015060769093671418093112315211 absolute error = 0.1015060769093671418093112315211 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.921 Order of pole = 0.2211 x[1] = 0.208 y[1] (analytic) = 0 y[1] (numeric) = 0.10245763148519946255863116164126 absolute error = 0.10245763148519946255863116164126 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.924 Order of pole = 0.229 x[1] = 0.209 y[1] (analytic) = 0 y[1] (numeric) = 0.10340923718810988755378187463359 absolute error = 0.10340923718810988755378187463359 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=95.3MB, alloc=4.3MB, time=9.41 Complex estimate of poles used Radius of convergence = 1.927 Order of pole = 0.2368 x[1] = 0.21 y[1] (analytic) = 0 y[1] (numeric) = 0.10436089395054056459698892124159 absolute error = 0.10436089395054056459698892124159 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.93 Order of pole = 0.2446 x[1] = 0.211 y[1] (analytic) = 0 y[1] (numeric) = 0.10531260170504418170095880786084 absolute error = 0.10531260170504418170095880786084 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.932 Order of pole = 0.2523 x[1] = 0.212 y[1] (analytic) = 0 y[1] (numeric) = 0.10626436038428374654944340939152 absolute error = 0.10626436038428374654944340939152 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.935 Order of pole = 0.2599 x[1] = 0.213 y[1] (analytic) = 0 y[1] (numeric) = 0.10721616992103236648547830119348 absolute error = 0.10721616992103236648547830119348 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=99.1MB, alloc=4.3MB, time=9.79 Complex estimate of poles used Radius of convergence = 1.938 Order of pole = 0.2675 x[1] = 0.214 y[1] (analytic) = 0 y[1] (numeric) = 0.10816803024817302902580460637633 absolute error = 0.10816803024817302902580460637633 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.941 Order of pole = 0.2751 x[1] = 0.215 y[1] (analytic) = 0 y[1] (numeric) = 0.10911994129869838289998885399364 absolute error = 0.10911994129869838289998885399364 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.944 Order of pole = 0.2825 x[1] = 0.216 y[1] (analytic) = 0 y[1] (numeric) = 0.11007190300571051961276022453685 absolute error = 0.11007190300571051961276022453685 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.946 Order of pole = 0.29 x[1] = 0.217 y[1] (analytic) = 0 y[1] (numeric) = 0.11102391530242075552808942152057 absolute error = 0.11102391530242075552808942152057 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.949 Order of pole = 0.2974 x[1] = 0.218 y[1] (analytic) = 0 y[1] (numeric) = 0.11197597812214941447353825199533 absolute error = 0.11197597812214941447353825199533 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=103.0MB, alloc=4.3MB, time=10.17 Complex estimate of poles used Radius of convergence = 1.952 Order of pole = 0.3047 x[1] = 0.219 y[1] (analytic) = 0 y[1] (numeric) = 0.11292809139832561086341382459575 absolute error = 0.11292809139832561086341382459575 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.954 Order of pole = 0.312 x[1] = 0.22 y[1] (analytic) = 0 y[1] (numeric) = 0.11388025506448703333926608130927 absolute error = 0.11388025506448703333926608130927 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.957 Order of pole = 0.3192 x[1] = 0.221 y[1] (analytic) = 0 y[1] (numeric) = 0.11483246905427972892627216861167 absolute error = 0.11483246905427972892627216861167 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.96 Order of pole = 0.3264 x[1] = 0.222 y[1] (analytic) = 0 y[1] (numeric) = 0.1157847333014578877040559250373 absolute error = 0.1157847333014578877040559250373 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=106.8MB, alloc=4.3MB, time=10.55 Complex estimate of poles used Radius of convergence = 1.963 Order of pole = 0.3336 x[1] = 0.223 y[1] (analytic) = 0 y[1] (numeric) = 0.11673704773988362799049551571254 absolute error = 0.11673704773988362799049551571254 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.965 Order of pole = 0.3407 x[1] = 0.224 y[1] (analytic) = 0 y[1] (numeric) = 0.11768941230352678203707697995617 absolute error = 0.11768941230352678203707697995617 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.968 Order of pole = 0.3477 x[1] = 0.225 y[1] (analytic) = 0 y[1] (numeric) = 0.11864182692646468223435617581764 absolute error = 0.11864182692646468223435617581764 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.971 Order of pole = 0.3547 x[1] = 0.226 y[1] (analytic) = 0 y[1] (numeric) = 0.1195942915428819478260963054588 absolute error = 0.1195942915428819478260963054588 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.973 Order of pole = 0.3617 x[1] = 0.227 y[1] (analytic) = 0 y[1] (numeric) = 0.12054680608707027213065288766294 absolute error = 0.12054680608707027213065288766294 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=110.6MB, alloc=4.3MB, time=10.93 Complex estimate of poles used Radius of convergence = 1.976 Order of pole = 0.3686 x[1] = 0.228 y[1] (analytic) = 0 y[1] (numeric) = 0.12149937049342821026818270855212 absolute error = 0.12149937049342821026818270855212 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.978 Order of pole = 0.3755 x[1] = 0.229 y[1] (analytic) = 0 y[1] (numeric) = 0.12245198469646096739225792888436 absolute error = 0.12245198469646096739225792888436 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.981 Order of pole = 0.3823 x[1] = 0.23 y[1] (analytic) = 0 y[1] (numeric) = 0.12340464863078018742447115616176 absolute error = 0.12340464863078018742447115616176 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.984 Order of pole = 0.389 x[1] = 0.231 y[1] (analytic) = 0 y[1] (numeric) = 0.12435736223110374229062190228262 absolute error = 0.12435736223110374229062190228262 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=114.4MB, alloc=4.3MB, time=11.32 Complex estimate of poles used Radius of convergence = 1.986 Order of pole = 0.3958 x[1] = 0.232 y[1] (analytic) = 0 y[1] (numeric) = 0.12531012543225552165707944268926 absolute error = 0.12531012543225552165707944268926 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.989 Order of pole = 0.4024 x[1] = 0.233 y[1] (analytic) = 0 y[1] (numeric) = 0.1262629381691652231659216709723 absolute error = 0.1262629381691652231659216709723 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.991 Order of pole = 0.4091 x[1] = 0.234 y[1] (analytic) = 0 y[1] (numeric) = 0.12721580037686814316745410376461 absolute error = 0.12721580037686814316745410376461 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.994 Order of pole = 0.4157 x[1] = 0.235 y[1] (analytic) = 0 y[1] (numeric) = 0.12816871199050496794871773456684 absolute error = 0.12816871199050496794871773456684 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 1.996 Order of pole = 0.4222 x[1] = 0.236 y[1] (analytic) = 0 y[1] (numeric) = 0.12912167294532156545659896196431 absolute error = 0.12912167294532156545659896196431 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=118.2MB, alloc=4.3MB, time=11.70 Complex estimate of poles used Radius of convergence = 1.999 Order of pole = 0.4287 x[1] = 0.237 y[1] (analytic) = 0 y[1] (numeric) = 0.13007468317666877751415932759356 absolute error = 0.13007468317666877751415932759356 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.002 Order of pole = 0.4352 x[1] = 0.238 y[1] (analytic) = 0 y[1] (numeric) = 0.13102774262000221252880729226868 absolute error = 0.13102774262000221252880729226868 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.004 Order of pole = 0.4416 x[1] = 0.239 y[1] (analytic) = 0 y[1] (numeric) = 0.13198085121088203869093875495342 absolute error = 0.13198085121088203869093875495342 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.007 Order of pole = 0.448 x[1] = 0.24 y[1] (analytic) = 0 y[1] (numeric) = 0.13293400888497277766167747883672 absolute error = 0.13293400888497277766167747883672 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=122.0MB, alloc=4.3MB, time=12.09 Complex estimate of poles used Radius of convergence = 2.009 Order of pole = 0.4543 x[1] = 0.241 y[1] (analytic) = 0 y[1] (numeric) = 0.13388721557804309874835103170716 absolute error = 0.13388721557804309874835103170716 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.011 Order of pole = 0.4606 x[1] = 0.242 y[1] (analytic) = 0 y[1] (numeric) = 0.13484047122596561356634227419644 absolute error = 0.13484047122596561356634227419644 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.014 Order of pole = 0.4669 x[1] = 0.243 y[1] (analytic) = 0 y[1] (numeric) = 0.1357937757647166711859608393439 absolute error = 0.1357937757647166711859608393439 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.016 Order of pole = 0.4731 x[1] = 0.244 y[1] (analytic) = 0 y[1] (numeric) = 0.13674712913037615376298344039216 absolute error = 0.13674712913037615376298344039216 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.019 Order of pole = 0.4793 x[1] = 0.245 y[1] (analytic) = 0 y[1] (numeric) = 0.13770053125912727265151622082897 absolute error = 0.13770053125912727265151622082897 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=125.8MB, alloc=4.3MB, time=12.48 Complex estimate of poles used Radius of convergence = 2.021 Order of pole = 0.4854 x[1] = 0.246 y[1] (analytic) = 0 y[1] (numeric) = 0.13865398208725636499783672151007 absolute error = 0.13865398208725636499783672151007 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.024 Order of pole = 0.4915 x[1] = 0.247 y[1] (analytic) = 0 y[1] (numeric) = 0.13960748155115269081387738430219 absolute error = 0.13960748155115269081387738430219 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.026 Order of pole = 0.4975 x[1] = 0.248 y[1] (analytic) = 0 y[1] (numeric) = 0.1405610295873082305290168401422 absolute error = 0.1405610295873082305290168401422 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.029 Order of pole = 0.5035 x[1] = 0.249 y[1] (analytic) = 0 y[1] (numeric) = 0.141514626132317483018849541786 absolute error = 0.141514626132317483018849541786 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=129.7MB, alloc=4.3MB, time=12.86 Complex estimate of poles used Radius of convergence = 2.031 Order of pole = 0.5095 x[1] = 0.25 y[1] (analytic) = 0 y[1] (numeric) = 0.14246827112287726410960859788714 absolute error = 0.14246827112287726410960859788714 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.033 Order of pole = 0.5155 x[1] = 0.251 y[1] (analytic) = 0 y[1] (numeric) = 0.14342196449578650555692094546759 absolute error = 0.14342196449578650555692094546759 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.036 Order of pole = 0.5214 x[1] = 0.252 y[1] (analytic) = 0 y[1] (numeric) = 0.14437570618794605449757826238916 absolute error = 0.14437570618794605449757826238916 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.038 Order of pole = 0.5272 x[1] = 0.253 y[1] (analytic) = 0 y[1] (numeric) = 0.1453294961363584733730112701699 absolute error = 0.1453294961363584733730112701699 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.041 Order of pole = 0.533 x[1] = 0.254 y[1] (analytic) = 0 y[1] (numeric) = 0.14628333427812784032315931048293 absolute error = 0.14628333427812784032315931048293 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=133.5MB, alloc=4.3MB, time=13.25 Complex estimate of poles used Radius of convergence = 2.043 Order of pole = 0.5388 x[1] = 0.255 y[1] (analytic) = 0 y[1] (numeric) = 0.14723722055045955004943129599117 absolute error = 0.14723722055045955004943129599117 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.045 Order of pole = 0.5446 x[1] = 0.256 y[1] (analytic) = 0 y[1] (numeric) = 0.14819115489066011514545833787611 absolute error = 0.14819115489066011514545833787611 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.048 Order of pole = 0.5503 x[1] = 0.257 y[1] (analytic) = 0 y[1] (numeric) = 0.14914513723613696789434253857866 absolute error = 0.14914513723613696789434253857866 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.05 Order of pole = 0.556 x[1] = 0.258 y[1] (analytic) = 0 y[1] (numeric) = 0.15009916752439826253111060894929 absolute error = 0.15009916752439826253111060894929 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=137.3MB, alloc=4.3MB, time=13.64 Complex estimate of poles used Radius of convergence = 2.052 Order of pole = 0.5616 x[1] = 0.259 y[1] (analytic) = 0 y[1] (numeric) = 0.15105324569305267796908512426919 absolute error = 0.15105324569305267796908512426919 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.055 Order of pole = 0.5672 x[1] = 0.26 y[1] (analytic) = 0 y[1] (numeric) = 0.15200737167980922098889037351802 absolute error = 0.15200737167980922098889037351802 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.057 Order of pole = 0.5728 x[1] = 0.261 y[1] (analytic) = 0 y[1] (numeric) = 0.15296154542247702988881388089186 absolute error = 0.15296154542247702988881388089186 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.059 Order of pole = 0.5783 x[1] = 0.262 y[1] (analytic) = 0 y[1] (numeric) = 0.15391576685896517859524878798089 absolute error = 0.15391576685896517859524878798089 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.061 Order of pole = 0.5838 x[1] = 0.263 y[1] (analytic) = 0 y[1] (numeric) = 0.15487003592728248123194637926431 absolute error = 0.15487003592728248123194637926431 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=141.1MB, alloc=4.3MB, time=14.02 Complex estimate of poles used Radius of convergence = 2.064 Order of pole = 0.5893 x[1] = 0.264 y[1] (analytic) = 0 y[1] (numeric) = 0.15582435256553729714681211273304 absolute error = 0.15582435256553729714681211273304 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.066 Order of pole = 0.5947 x[1] = 0.265 y[1] (analytic) = 0 y[1] (numeric) = 0.15677871671193733639498258157261 absolute error = 0.15677871671193733639498258157261 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.068 Order of pole = 0.6001 x[1] = 0.266 y[1] (analytic) = 0 y[1] (numeric) = 0.15773312830478946567692488199176 absolute error = 0.15773312830478946567692488199176 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.071 Order of pole = 0.6054 x[1] = 0.267 y[1] (analytic) = 0 y[1] (numeric) = 0.15868758728249951473030389652925 absolute error = 0.15868758728249951473030389652925 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=144.9MB, alloc=4.3MB, time=14.40 Complex estimate of poles used Radius of convergence = 2.073 Order of pole = 0.6108 x[1] = 0.268 y[1] (analytic) = 0 y[1] (numeric) = 0.15964209358357208317436702157501 absolute error = 0.15964209358357208317436702157501 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.075 Order of pole = 0.6161 x[1] = 0.269 y[1] (analytic) = 0 y[1] (numeric) = 0.16059664714661034780559987246321 absolute error = 0.16059664714661034780559987246321 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.077 Order of pole = 0.6213 x[1] = 0.27 y[1] (analytic) = 0 y[1] (numeric) = 0.16155124791031587034341048939682 absolute error = 0.16155124791031587034341048939682 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.079 Order of pole = 0.6265 x[1] = 0.271 y[1] (analytic) = 0 y[1] (numeric) = 0.16250589581348840562460354270609 absolute error = 0.16250589581348840562460354270609 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.082 Order of pole = 0.6317 x[1] = 0.272 y[1] (analytic) = 0 y[1] (numeric) = 0.1634605907950257102454099965893 absolute error = 0.1634605907950257102454099965893 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=148.7MB, alloc=4.3MB, time=14.78 Complex estimate of poles used Radius of convergence = 2.084 Order of pole = 0.6369 x[1] = 0.273 y[1] (analytic) = 0 y[1] (numeric) = 0.16441533279392335164984163659318 absolute error = 0.16441533279392335164984163659318 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.086 Order of pole = 0.642 x[1] = 0.274 y[1] (analytic) = 0 y[1] (numeric) = 0.16537012174927451766314379772338 absolute error = 0.16537012174927451766314379772338 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.088 Order of pole = 0.6471 x[1] = 0.275 y[1] (analytic) = 0 y[1] (numeric) = 0.16632495760026982646912354729288 absolute error = 0.16632495760026982646912354729288 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.091 Order of pole = 0.6522 x[1] = 0.276 y[1] (analytic) = 0 y[1] (numeric) = 0.16727984028619713703013447947774 absolute error = 0.16727984028619713703013447947774 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.093 Order of pole = 0.6572 x[1] = 0.277 y[1] (analytic) = 0 y[1] (numeric) = 0.16823476974644135994850316711514 absolute error = 0.16823476974644135994850316711514 relative error = -1 % memory used=152.5MB, alloc=4.3MB, time=15.17 Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.095 Order of pole = 0.6622 x[1] = 0.278 y[1] (analytic) = 0 y[1] (numeric) = 0.16918974592048426876818619060763 absolute error = 0.16918974592048426876818619060763 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.097 Order of pole = 0.6672 x[1] = 0.279 y[1] (analytic) = 0 y[1] (numeric) = 0.17014476874790431171545052394909 absolute error = 0.17014476874790431171545052394909 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.099 Order of pole = 0.6721 x[1] = 0.28 y[1] (analytic) = 0 y[1] (numeric) = 0.17109983816837642387737390392083 absolute error = 0.17109983816837642387737390392083 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.101 Order of pole = 0.677 x[1] = 0.281 y[1] (analytic) = 0 y[1] (numeric) = 0.17205495412167183981696564047926 absolute error = 0.17205495412167183981696564047926 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=156.4MB, alloc=4.3MB, time=15.56 Complex estimate of poles used Radius of convergence = 2.103 Order of pole = 0.6819 x[1] = 0.282 y[1] (analytic) = 0 y[1] (numeric) = 0.17301011654765790662371214432806 absolute error = 0.17301011654765790662371214432806 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.106 Order of pole = 0.6868 x[1] = 0.283 y[1] (analytic) = 0 y[1] (numeric) = 0.17396532538629789739835525169564 absolute error = 0.17396532538629789739835525169564 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.108 Order of pole = 0.6916 x[1] = 0.284 y[1] (analytic) = 0 y[1] (numeric) = 0.1749205805776508251707152164807 absolute error = 0.1749205805776508251707152164807 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.11 Order of pole = 0.6964 x[1] = 0.285 y[1] (analytic) = 0 y[1] (numeric) = 0.17587588206187125724937401624275 absolute error = 0.17587588206187125724937401624275 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.112 Order of pole = 0.7012 x[1] = 0.286 y[1] (analytic) = 0 y[1] (numeric) = 0.17683122977920913000203838105726 absolute error = 0.17683122977920913000203838105726 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=160.2MB, alloc=4.3MB, time=15.94 Complex estimate of poles used Radius of convergence = 2.114 Order of pole = 0.7059 x[1] = 0.287 y[1] (analytic) = 0 y[1] (numeric) = 0.17778662367000956406540570308405 absolute error = 0.17778662367000956406540570308405 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.116 Order of pole = 0.7106 x[1] = 0.288 y[1] (analytic) = 0 y[1] (numeric) = 0.17874206367471267998335971986925 absolute error = 0.17874206367471267998335971986925 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.118 Order of pole = 0.7153 x[1] = 0.289 y[1] (analytic) = 0 y[1] (numeric) = 0.17969754973385341427232658597198 absolute error = 0.17969754973385341427232658597198 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.12 Order of pole = 0.7199 x[1] = 0.29 y[1] (analytic) = 0 y[1] (numeric) = 0.18065308178806133591262565553317 absolute error = 0.18065308178806133591262565553317 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=164.0MB, alloc=4.3MB, time=16.32 Complex estimate of poles used Radius of convergence = 2.123 Order of pole = 0.7245 x[1] = 0.291 y[1] (analytic) = 0 y[1] (numeric) = 0.18160865977806046326465299294155 absolute error = 0.18160865977806046326465299294155 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.125 Order of pole = 0.7291 x[1] = 0.292 y[1] (analytic) = 0 y[1] (numeric) = 0.18256428364466908140873930985641 absolute error = 0.18256428364466908140873930985641 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.127 Order of pole = 0.7337 x[1] = 0.293 y[1] (analytic) = 0 y[1] (numeric) = 0.1835199533287995599075276945739 absolute error = 0.1835199533287995599075276945739 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.129 Order of pole = 0.7382 x[1] = 0.294 y[1] (analytic) = 0 y[1] (numeric) = 0.18447566877145817098972015412801 absolute error = 0.18447566877145817098972015412801 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.131 Order of pole = 0.7427 x[1] = 0.295 y[1] (analytic) = 0 y[1] (numeric) = 0.18543142991374490815404563065482 absolute error = 0.18543142991374490815404563065482 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=167.8MB, alloc=4.3MB, time=16.71 Complex estimate of poles used Radius of convergence = 2.133 Order of pole = 0.7472 x[1] = 0.296 y[1] (analytic) = 0 y[1] (numeric) = 0.18638723669685330519230578147266 absolute error = 0.18638723669685330519230578147266 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.135 Order of pole = 0.7517 x[1] = 0.297 y[1] (analytic) = 0 y[1] (numeric) = 0.18734308906207025563035842709675 absolute error = 0.18734308906207025563035842709675 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.137 Order of pole = 0.7561 x[1] = 0.298 y[1] (analytic) = 0 y[1] (numeric) = 0.18829898695077583258590217306838 absolute error = 0.18829898695077583258590217306838 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.139 Order of pole = 0.7605 x[1] = 0.299 y[1] (analytic) = 0 y[1] (numeric) = 0.18925493030444310904192930008995 absolute error = 0.18925493030444310904192930008995 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=171.6MB, alloc=4.3MB, time=17.09 Complex estimate of poles used Radius of convergence = 2.141 Order of pole = 0.7649 x[1] = 0.3 y[1] (analytic) = 0 y[1] (numeric) = 0.19021091906463797853471759257142 absolute error = 0.19021091906463797853471759257142 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.143 Order of pole = 0.7692 x[1] = 0.301 y[1] (analytic) = 0 y[1] (numeric) = 0.19116695317301897625523533836481 absolute error = 0.19116695317301897625523533836481 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.145 Order of pole = 0.7735 x[1] = 0.302 y[1] (analytic) = 0 y[1] (numeric) = 0.19212303257133710056283728224424 absolute error = 0.19212303257133710056283728224424 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.147 Order of pole = 0.7778 x[1] = 0.303 y[1] (analytic) = 0 y[1] (numeric) = 0.19307915720143563491013285263262 absolute error = 0.19307915720143563491013285263262 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.149 Order of pole = 0.7821 x[1] = 0.304 y[1] (analytic) = 0 y[1] (numeric) = 0.19403532700524997017791150523478 absolute error = 0.19403532700524997017791150523478 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=175.4MB, alloc=4.3MB, time=17.48 Complex estimate of poles used Radius of convergence = 2.151 Order of pole = 0.7863 x[1] = 0.305 y[1] (analytic) = 0 y[1] (numeric) = 0.19499154192480742741901353866386 absolute error = 0.19499154192480742741901353866386 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.153 Order of pole = 0.7906 x[1] = 0.306 y[1] (analytic) = 0 y[1] (numeric) = 0.19594780190222708101003823589428 absolute error = 0.19594780190222708101003823589428 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.155 Order of pole = 0.7948 x[1] = 0.307 y[1] (analytic) = 0 y[1] (numeric) = 0.19690410687971958220978467149325 absolute error = 0.19690410687971958220978467149325 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.157 Order of pole = 0.7989 x[1] = 0.308 y[1] (analytic) = 0 y[1] (numeric) = 0.19786045679958698312332399812516 absolute error = 0.19786045679958698312332399812516 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=179.2MB, alloc=4.3MB, time=17.86 Complex estimate of poles used Radius of convergence = 2.159 Order of pole = 0.8031 x[1] = 0.309 y[1] (analytic) = 0 y[1] (numeric) = 0.19881685160422256107060548684036 absolute error = 0.19881685160422256107060548684036 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.161 Order of pole = 0.8072 x[1] = 0.31 y[1] (analytic) = 0 y[1] (numeric) = 0.19977329123611064335850204420358 absolute error = 0.19977329123611064335850204420358 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.163 Order of pole = 0.8113 x[1] = 0.311 y[1] (analytic) = 0 y[1] (numeric) = 0.20072977563782643245520436543819 absolute error = 0.20072977563782643245520436543819 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.165 Order of pole = 0.8154 x[1] = 0.312 y[1] (analytic) = 0 y[1] (numeric) = 0.20168630475203583156587630651151 absolute error = 0.20168630475203583156587630651151 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.167 Order of pole = 0.8194 x[1] = 0.313 y[1] (analytic) = 0 y[1] (numeric) = 0.20264287852149527060848746951399 absolute error = 0.20264287852149527060848746951399 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=183.1MB, alloc=4.3MB, time=18.25 Complex estimate of poles used Radius of convergence = 2.169 Order of pole = 0.8234 x[1] = 0.314 y[1] (analytic) = 0 y[1] (numeric) = 0.20359949688905153258874239484153 absolute error = 0.20359949688905153258874239484153 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.171 Order of pole = 0.8274 x[1] = 0.315 y[1] (analytic) = 0 y[1] (numeric) = 0.2045561597976415803730291406258 absolute error = 0.2045561597976415803730291406258 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.173 Order of pole = 0.8314 x[1] = 0.316 y[1] (analytic) = 0 y[1] (numeric) = 0.20551286719029238385831340462138 absolute error = 0.20551286719029238385831340462138 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.175 Order of pole = 0.8354 x[1] = 0.317 y[1] (analytic) = 0 y[1] (numeric) = 0.20646961901012074753790770640145 absolute error = 0.20646961901012074753790770640145 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=186.9MB, alloc=4.3MB, time=18.63 Complex estimate of poles used Radius of convergence = 2.177 Order of pole = 0.8393 x[1] = 0.318 y[1] (analytic) = 0 y[1] (numeric) = 0.20742641520033313846204849828386 absolute error = 0.20742641520033313846204849828386 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.179 Order of pole = 0.8432 x[1] = 0.319 y[1] (analytic) = 0 y[1] (numeric) = 0.20838325570422551459221741195681 absolute error = 0.20838325570422551459221741195681 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.18 Order of pole = 0.8471 x[1] = 0.32 y[1] (analytic) = 0 y[1] (numeric) = 0.20934014046518315354814617434656 absolute error = 0.20934014046518315354814617434656 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.182 Order of pole = 0.8509 x[1] = 0.321 y[1] (analytic) = 0 y[1] (numeric) = 0.21029706942668048174644804091705 absolute error = 0.21029706942668048174644804091705 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.184 Order of pole = 0.8548 x[1] = 0.322 y[1] (analytic) = 0 y[1] (numeric) = 0.21125404253228090392982189736222 absolute error = 0.21125404253228090392982189736222 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=190.7MB, alloc=4.3MB, time=19.02 Complex estimate of poles used Radius of convergence = 2.186 Order of pole = 0.8586 x[1] = 0.323 y[1] (analytic) = 0 y[1] (numeric) = 0.21221105972563663308577847159367 absolute error = 0.21221105972563663308577847159367 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.188 Order of pole = 0.8624 x[1] = 0.324 y[1] (analytic) = 0 y[1] (numeric) = 0.2131681209504885207538413770876 absolute error = 0.2131681209504885207538413770876 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.19 Order of pole = 0.8662 x[1] = 0.325 y[1] (analytic) = 0 y[1] (numeric) = 0.21412522615066588772017897608354 absolute error = 0.21412522615066588772017897608354 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.192 Order of pole = 0.8699 x[1] = 0.326 y[1] (analytic) = 0 y[1] (numeric) = 0.2150823752700863550986263068704 absolute error = 0.2150823752700863550986263068704 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=194.5MB, alloc=4.3MB, time=19.40 Complex estimate of poles used Radius of convergence = 2.194 Order of pole = 0.8737 x[1] = 0.327 y[1] (analytic) = 0 y[1] (numeric) = 0.21603956825275567579705956350088 absolute error = 0.21603956825275567579705956350088 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.196 Order of pole = 0.8774 x[1] = 0.328 y[1] (analytic) = 0 y[1] (numeric) = 0.2169968050427675663680888487898 absolute error = 0.2169968050427675663680888487898 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.198 Order of pole = 0.881 x[1] = 0.329 y[1] (analytic) = 0 y[1] (numeric) = 0.21795408558430353924303814242289 absolute error = 0.21795408558430353924303814242289 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.199 Order of pole = 0.8847 x[1] = 0.33 y[1] (analytic) = 0 y[1] (numeric) = 0.21891140982163273534818463547636 absolute error = 0.21891140982163273534818463547636 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.201 Order of pole = 0.8884 x[1] = 0.331 y[1] (analytic) = 0 y[1] (numeric) = 0.2198687776991117571022327806712 absolute error = 0.2198687776991117571022327806712 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=198.3MB, alloc=4.3MB, time=19.79 Complex estimate of poles used Radius of convergence = 2.203 Order of pole = 0.892 x[1] = 0.332 y[1] (analytic) = 0 y[1] (numeric) = 0.22082618916118450179400159430523 absolute error = 0.22082618916118450179400159430523 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.205 Order of pole = 0.8956 x[1] = 0.333 y[1] (analytic) = 0 y[1] (numeric) = 0.22178364415238199533930692106731 absolute error = 0.22178364415238199533930692106731 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.207 Order of pole = 0.8992 x[1] = 0.334 y[1] (analytic) = 0 y[1] (numeric) = 0.22274114261732222641602353688714 absolute error = 0.22274114261732222641602353688714 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.209 Order of pole = 0.9027 x[1] = 0.335 y[1] (analytic) = 0 y[1] (numeric) = 0.2236986845007099809763151176567 absolute error = 0.2236986845007099809763151176567 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=202.1MB, alloc=4.3MB, time=20.18 Complex estimate of poles used Radius of convergence = 2.211 Order of pole = 0.9063 x[1] = 0.336 y[1] (analytic) = 0 y[1] (numeric) = 0.22465626974733667713502324312111 absolute error = 0.22465626974733667713502324312111 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.212 Order of pole = 0.9098 x[1] = 0.337 y[1] (analytic) = 0 y[1] (numeric) = 0.22561389830208020043320973552259 absolute error = 0.22561389830208020043320973552259 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.214 Order of pole = 0.9133 x[1] = 0.338 y[1] (analytic) = 0 y[1] (numeric) = 0.22657157010990473947584975173655 absolute error = 0.22657157010990473947584975173655 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.216 Order of pole = 0.9168 x[1] = 0.339 y[1] (analytic) = 0 y[1] (numeric) = 0.22752928511586062194267615570846 absolute error = 0.22752928511586062194267615570846 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.218 Order of pole = 0.9202 x[1] = 0.34 y[1] (analytic) = 0 y[1] (numeric) = 0.22848704326508415097117879502852 absolute error = 0.22848704326508415097117879502852 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=206.0MB, alloc=4.3MB, time=20.57 Complex estimate of poles used Radius of convergence = 2.22 Order of pole = 0.9237 x[1] = 0.341 y[1] (analytic) = 0 y[1] (numeric) = 0.2294448445027974419107653915132 absolute error = 0.2294448445027974419107653915132 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.222 Order of pole = 0.9271 x[1] = 0.342 y[1] (analytic) = 0 y[1] (numeric) = 0.23040268877430825944709383074193 absolute error = 0.23040268877430825944709383074193 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.223 Order of pole = 0.9305 x[1] = 0.343 y[1] (analytic) = 0 y[1] (numeric) = 0.23136057602500985509558869966865 absolute error = 0.23136057602500985509558869966865 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.225 Order of pole = 0.9339 x[1] = 0.344 y[1] (analytic) = 0 y[1] (numeric) = 0.23231850620038080506315797473448 absolute error = 0.23231850620038080506315797473448 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.227 Order of pole = 0.9372 memory used=209.8MB, alloc=4.3MB, time=20.95 x[1] = 0.345 y[1] (analytic) = 0 y[1] (numeric) = 0.23327647924598484847712880539376 absolute error = 0.23327647924598484847712880539376 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.229 Order of pole = 0.9406 x[1] = 0.346 y[1] (analytic) = 0 y[1] (numeric) = 0.23423449510747072598042436967431 absolute error = 0.23423449510747072598042436967431 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.231 Order of pole = 0.9439 x[1] = 0.347 y[1] (analytic) = 0 y[1] (numeric) = 0.23519255373057201869200679936735 absolute error = 0.23519255373057201869200679936735 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.232 Order of pole = 0.9472 x[1] = 0.348 y[1] (analytic) = 0 y[1] (numeric) = 0.23615065506110698753161418272614 absolute error = 0.23615065506110698753161418272614 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.234 Order of pole = 0.9505 x[1] = 0.349 y[1] (analytic) = 0 y[1] (numeric) = 0.23710879904497841290782265218785 absolute error = 0.23710879904497841290782265218785 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=213.6MB, alloc=4.3MB, time=21.33 Complex estimate of poles used Radius of convergence = 2.236 Order of pole = 0.9538 x[1] = 0.35 y[1] (analytic) = 0 y[1] (numeric) = 0.23806698562817343476846755366332 absolute error = 0.23806698562817343476846755366332 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.238 Order of pole = 0.957 x[1] = 0.351 y[1] (analytic) = 0 y[1] (numeric) = 0.23902521475676339301246067240659 absolute error = 0.23902521475676339301246067240659 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.24 Order of pole = 0.9603 x[1] = 0.352 y[1] (analytic) = 0 y[1] (numeric) = 0.23998348637690366826204345842268 absolute error = 0.23998348637690366826204345842268 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.241 Order of pole = 0.9635 x[1] = 0.353 y[1] (analytic) = 0 y[1] (numeric) = 0.2409418004348335229945191518402 absolute error = 0.2409418004348335229945191518402 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.243 Order of pole = 0.9667 x[1] = 0.354 y[1] (analytic) = 0 y[1] (numeric) = 0.24190015687687594303250965570706 absolute error = 0.24190015687687594303250965570706 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=217.4MB, alloc=4.3MB, time=21.71 Complex estimate of poles used Radius of convergence = 2.245 Order of pole = 0.9699 x[1] = 0.355 y[1] (analytic) = 0 y[1] (numeric) = 0.24285855564943747939178594030412 absolute error = 0.24285855564943747939178594030412 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.247 Order of pole = 0.973 x[1] = 0.356 y[1] (analytic) = 0 y[1] (numeric) = 0.24381699669900809048572368935529 absolute error = 0.24381699669900809048572368935529 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.248 Order of pole = 0.9762 x[1] = 0.357 y[1] (analytic) = 0 y[1] (numeric) = 0.24477547997216098468543881448412 absolute error = 0.24477547997216098468543881448412 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.25 Order of pole = 0.9793 x[1] = 0.358 y[1] (analytic) = 0 y[1] (numeric) = 0.24573400541555246323466036996774 absolute error = 0.24573400541555246323466036996774 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=221.2MB, alloc=4.3MB, time=22.10 Complex estimate of poles used Radius of convergence = 2.252 Order of pole = 0.9824 x[1] = 0.359 y[1] (analytic) = 0 y[1] (numeric) = 0.24669257297592176351840129531019 absolute error = 0.24669257297592176351840129531019 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.254 Order of pole = 0.9855 x[1] = 0.36 y[1] (analytic) = 0 y[1] (numeric) = 0.24765118260009090268449029843943 absolute error = 0.24765118260009090268449029843943 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.255 Order of pole = 0.9886 x[1] = 0.361 y[1] (analytic) = 0 y[1] (numeric) = 0.24860983423496452161703106746616 absolute error = 0.24860983423496452161703106746616 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.257 Order of pole = 0.9917 x[1] = 0.362 y[1] (analytic) = 0 y[1] (numeric) = 0.24956852782752972926085786396876 absolute error = 0.24956852782752972926085786396876 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.259 Order of pole = 0.9947 x[1] = 0.363 y[1] (analytic) = 0 y[1] (numeric) = 0.25052726332485594729605940572706 absolute error = 0.25052726332485594729605940572706 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=225.0MB, alloc=4.3MB, time=22.49 Complex estimate of poles used Radius of convergence = 2.261 Order of pole = 0.9977 x[1] = 0.364 y[1] (analytic) = 0 y[1] (numeric) = 0.25148604067409475516164579175876 absolute error = 0.25148604067409475516164579175876 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.262 Order of pole = 1.001 x[1] = 0.365 y[1] (analytic) = 0 y[1] (numeric) = 0.25244485982247973542743605745564 absolute error = 0.25244485982247973542743605745564 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.264 Order of pole = 1.004 x[1] = 0.366 y[1] (analytic) = 0 y[1] (numeric) = 0.25340372071732631951324677261231 absolute error = 0.25340372071732631951324677261231 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.266 Order of pole = 1.007 x[1] = 0.367 y[1] (analytic) = 0 y[1] (numeric) = 0.25436262330603163375446491022751 absolute error = 0.25436262330603163375446491022751 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=228.8MB, alloc=4.3MB, time=22.87 Complex estimate of poles used Radius of convergence = 2.267 Order of pole = 1.01 x[1] = 0.368 y[1] (analytic) = 0 y[1] (numeric) = 0.25532156753607434581309101917617 absolute error = 0.25532156753607434581309101917617 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.269 Order of pole = 1.013 x[1] = 0.369 y[1] (analytic) = 0 y[1] (numeric) = 0.25628055335501451143334152923912 absolute error = 0.25628055335501451143334152923912 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.271 Order of pole = 1.016 x[1] = 0.37 y[1] (analytic) = 0 y[1] (numeric) = 0.25723958071049342154090180257519 absolute error = 0.25723958071049342154090180257519 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.273 Order of pole = 1.018 x[1] = 0.371 y[1] (analytic) = 0 y[1] (numeric) = 0.2581986495502334496849243215663 absolute error = 0.2581986495502334496849243215663 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.274 Order of pole = 1.021 x[1] = 0.372 y[1] (analytic) = 0 y[1] (numeric) = 0.25915775982203789982186916909908 absolute error = 0.25915775982203789982186916909908 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=232.7MB, alloc=4.3MB, time=23.26 Complex estimate of poles used Radius of convergence = 2.276 Order of pole = 1.024 x[1] = 0.373 y[1] (analytic) = 0 y[1] (numeric) = 0.26011691147379085444028671380456 absolute error = 0.26011691147379085444028671380456 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.278 Order of pole = 1.027 x[1] = 0.374 y[1] (analytic) = 0 y[1] (numeric) = 0.26107610445345702302564515959927 absolute error = 0.26107610445345702302564515959927 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.279 Order of pole = 1.03 x[1] = 0.375 y[1] (analytic) = 0 y[1] (numeric) = 0.26203533870908159086430835609475 absolute error = 0.26203533870908159086430835609475 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.281 Order of pole = 1.033 x[1] = 0.376 y[1] (analytic) = 0 y[1] (numeric) = 0.26299461418879006818577199410563 absolute error = 0.26299461418879006818577199410563 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=236.5MB, alloc=4.3MB, time=23.65 Complex estimate of poles used Radius of convergence = 2.283 Order of pole = 1.036 x[1] = 0.377 y[1] (analytic) = 0 y[1] (numeric) = 0.26395393084078813964226902862768 absolute error = 0.26395393084078813964226902862768 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.284 Order of pole = 1.038 x[1] = 0.378 y[1] (analytic) = 0 y[1] (numeric) = 0.26491328861336151412485788031334 absolute error = 0.26491328861336151412485788031334 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.286 Order of pole = 1.041 x[1] = 0.379 y[1] (analytic) = 0 y[1] (numeric) = 0.26587268745487577491510966568146 absolute error = 0.26587268745487577491510966568146 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.288 Order of pole = 1.044 x[1] = 0.38 y[1] (analytic) = 0 y[1] (numeric) = 0.266832127313776230171513396097 absolute error = 0.266832127313776230171513396097 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.289 Order of pole = 1.047 x[1] = 0.381 y[1] (analytic) = 0 y[1] (numeric) = 0.26779160813858776374972076598293 absolute error = 0.26779160813858776374972076598293 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=240.3MB, alloc=4.3MB, time=24.04 Complex estimate of poles used Radius of convergence = 2.291 Order of pole = 1.049 x[1] = 0.382 y[1] (analytic) = 0 y[1] (numeric) = 0.26875112987791468635575482181735 absolute error = 0.26875112987791468635575482181735 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.293 Order of pole = 1.052 x[1] = 0.383 y[1] (analytic) = 0 y[1] (numeric) = 0.26971069248044058703130946526037 absolute error = 0.26971069248044058703130946526037 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.294 Order of pole = 1.055 x[1] = 0.384 y[1] (analytic) = 0 y[1] (numeric) = 0.27067029589492818497026939628502 absolute error = 0.27067029589492818497026939628502 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.296 Order of pole = 1.058 x[1] = 0.385 y[1] (analytic) = 0 y[1] (numeric) = 0.27162994007021918166558274549005 absolute error = 0.27162994007021918166558274549005 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=244.1MB, alloc=4.3MB, time=24.42 Complex estimate of poles used Radius of convergence = 2.298 Order of pole = 1.06 x[1] = 0.386 y[1] (analytic) = 0 y[1] (numeric) = 0.27258962495523411338562127888696 absolute error = 0.27258962495523411338562127888696 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.299 Order of pole = 1.063 x[1] = 0.387 y[1] (analytic) = 0 y[1] (numeric) = 0.27354935049897220397916568341457 absolute error = 0.27354935049897220397916568341457 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.301 Order of pole = 1.066 x[1] = 0.388 y[1] (analytic) = 0 y[1] (numeric) = 0.27450911665051121800815605727853 absolute error = 0.27450911665051121800815605727853 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.303 Order of pole = 1.068 x[1] = 0.389 y[1] (analytic) = 0 y[1] (numeric) = 0.27546892335900731420735033597557 absolute error = 0.27546892335900731420735033597557 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.304 Order of pole = 1.071 x[1] = 0.39 y[1] (analytic) = 0 y[1] (numeric) = 0.27642877057369489927003598257944 absolute error = 0.27642877057369489927003598257944 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=247.9MB, alloc=4.3MB, time=24.80 Complex estimate of poles used Radius of convergence = 2.306 Order of pole = 1.073 x[1] = 0.391 y[1] (analytic) = 0 y[1] (numeric) = 0.27738865824388648195894285957217 absolute error = 0.27738865824388648195894285957217 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.308 Order of pole = 1.076 x[1] = 0.392 y[1] (analytic) = 0 y[1] (numeric) = 0.27834858631897252754150777923652 absolute error = 0.27834858631897252754150777923652 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.309 Order of pole = 1.079 x[1] = 0.393 y[1] (analytic) = 0 y[1] (numeric) = 0.27930855474842131254864380041827 absolute error = 0.27930855474842131254864380041827 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.311 Order of pole = 1.081 x[1] = 0.394 y[1] (analytic) = 0 y[1] (numeric) = 0.28026856348177877985616990135519 absolute error = 0.28026856348177877985616990135519 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=251.7MB, alloc=4.3MB, time=25.18 Complex estimate of poles used Radius of convergence = 2.313 Order of pole = 1.084 x[1] = 0.395 y[1] (analytic) = 0 y[1] (numeric) = 0.28122861246866839408805921128855 absolute error = 0.28122861246866839408805921128855 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.314 Order of pole = 1.086 x[1] = 0.396 y[1] (analytic) = 0 y[1] (numeric) = 0.2821887016587909973406665277571 absolute error = 0.2821887016587909973406665277571 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.316 Order of pole = 1.089 x[1] = 0.397 y[1] (analytic) = 0 y[1] (numeric) = 0.28314883100192466522709838185766 absolute error = 0.28314883100192466522709838185766 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.317 Order of pole = 1.091 x[1] = 0.398 y[1] (analytic) = 0 y[1] (numeric) = 0.28410900044792456324089144037497 absolute error = 0.28410900044792456324089144037497 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.319 Order of pole = 1.094 x[1] = 0.399 y[1] (analytic) = 0 y[1] (numeric) = 0.28506920994672280343816755157069 absolute error = 0.28506920994672280343816755157069 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=255.5MB, alloc=4.3MB, time=25.58 Complex estimate of poles used Radius of convergence = 2.321 Order of pole = 1.096 x[1] = 0.4 y[1] (analytic) = 0 y[1] (numeric) = 0.28602945944832830143743625061162 absolute error = 0.28602945944832830143743625061162 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.322 Order of pole = 1.099 x[1] = 0.401 y[1] (analytic) = 0 y[1] (numeric) = 0.28698974890282663373621804114412 absolute error = 0.28698974890282663373621804114412 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.324 Order of pole = 1.101 x[1] = 0.402 y[1] (analytic) = 0 y[1] (numeric) = 0.28795007826037989534366426141973 absolute error = 0.28795007826037989534366426141973 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.325 Order of pole = 1.104 x[1] = 0.403 y[1] (analytic) = 0 y[1] (numeric) = 0.28891044747122655772835182667905 absolute error = 0.28891044747122655772835182667905 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.327 Order of pole = 1.106 x[1] = 0.404 memory used=259.4MB, alloc=4.3MB, time=25.97 y[1] (analytic) = 0 y[1] (numeric) = 0.28987085648568132708043361424135 absolute error = 0.28987085648568132708043361424135 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.329 Order of pole = 1.109 x[1] = 0.405 y[1] (analytic) = 0 y[1] (numeric) = 0.29083130525413500288732772395923 absolute error = 0.29083130525413500288732772395923 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.33 Order of pole = 1.111 x[1] = 0.406 y[1] (analytic) = 0 y[1] (numeric) = 0.29179179372705433682213130441412 absolute error = 0.29179179372705433682213130441412 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.332 Order of pole = 1.113 x[1] = 0.407 y[1] (analytic) = 0 y[1] (numeric) = 0.29275232185498189194394708448288 absolute error = 0.29275232185498189194394708448288 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.333 Order of pole = 1.116 x[1] = 0.408 y[1] (analytic) = 0 y[1] (numeric) = 0.29371288958853590220931319073102 absolute error = 0.29371288958853590220931319073102 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=263.2MB, alloc=4.3MB, time=26.36 Complex estimate of poles used Radius of convergence = 2.335 Order of pole = 1.118 x[1] = 0.409 y[1] (analytic) = 0 y[1] (numeric) = 0.29467349687841013229392926351709 absolute error = 0.29467349687841013229392926351709 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.337 Order of pole = 1.121 x[1] = 0.41 y[1] (analytic) = 0 y[1] (numeric) = 0.29563414367537373772387430875819 absolute error = 0.29563414367537373772387430875819 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.338 Order of pole = 1.123 x[1] = 0.411 y[1] (analytic) = 0 y[1] (numeric) = 0.29659482993027112531551413804081 absolute error = 0.29659482993027112531551413804081 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.34 Order of pole = 1.125 x[1] = 0.412 y[1] (analytic) = 0 y[1] (numeric) = 0.29755555559402181392329865719707 absolute error = 0.29755555559402181392329865719707 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.341 Order of pole = 1.128 x[1] = 0.413 y[1] (analytic) = 0 y[1] (numeric) = 0.29851632061762029549465166263575 absolute error = 0.29851632061762029549465166263575 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=267.0MB, alloc=4.3MB, time=26.74 Complex estimate of poles used Radius of convergence = 2.343 Order of pole = 1.13 x[1] = 0.414 y[1] (analytic) = 0 y[1] (numeric) = 0.29947712495213589643115819565258 absolute error = 0.29947712495213589643115819565258 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.345 Order of pole = 1.132 x[1] = 0.415 y[1] (analytic) = 0 y[1] (numeric) = 0.30043796854871263925525688767718 absolute error = 0.30043796854871263925525688767718 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.346 Order of pole = 1.135 x[1] = 0.416 y[1] (analytic) = 0 y[1] (numeric) = 0.30139885135856910458164710397671 absolute error = 0.30139885135856910458164710397671 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.348 Order of pole = 1.137 x[1] = 0.417 y[1] (analytic) = 0 y[1] (numeric) = 0.30235977333299829339262305975984 absolute error = 0.30235977333299829339262305975984 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=270.8MB, alloc=4.3MB, time=27.13 Complex estimate of poles used Radius of convergence = 2.349 Order of pole = 1.139 x[1] = 0.418 y[1] (analytic) = 0 y[1] (numeric) = 0.30332073442336748961654944094172 absolute error = 0.30332073442336748961654944094172 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.351 Order of pole = 1.141 x[1] = 0.419 y[1] (analytic) = 0 y[1] (numeric) = 0.30428173458111812300869541207144 absolute error = 0.30428173458111812300869541207144 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.352 Order of pole = 1.144 x[1] = 0.42 y[1] (analytic) = 0 y[1] (numeric) = 0.30524277375776563233364623612035 absolute error = 0.30524277375776563233364623612035 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.354 Order of pole = 1.146 x[1] = 0.421 y[1] (analytic) = 0 y[1] (numeric) = 0.30620385190489932884851406501316 absolute error = 0.30620385190489932884851406501316 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.355 Order of pole = 1.148 x[1] = 0.422 y[1] (analytic) = 0 y[1] (numeric) = 0.30716496897418226008617178598491 absolute error = 0.30716496897418226008617178598491 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=274.6MB, alloc=4.3MB, time=27.51 Complex estimate of poles used Radius of convergence = 2.357 Order of pole = 1.15 x[1] = 0.423 y[1] (analytic) = 0 y[1] (numeric) = 0.30812612491735107393773612709723 absolute error = 0.30812612491735107393773612709723 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.359 Order of pole = 1.152 x[1] = 0.424 y[1] (analytic) = 0 y[1] (numeric) = 0.30908731968621588303352853557671 absolute error = 0.30908731968621588303352853557671 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.36 Order of pole = 1.155 x[1] = 0.425 y[1] (analytic) = 0 y[1] (numeric) = 0.31004855323266012942174464507798 absolute error = 0.31004855323266012942174464507798 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.362 Order of pole = 1.157 x[1] = 0.426 y[1] (analytic) = 0 y[1] (numeric) = 0.31100982550864044954406544255433 absolute error = 0.31100982550864044954406544255433 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=278.4MB, alloc=4.3MB, time=27.91 Complex estimate of poles used Radius of convergence = 2.363 Order of pole = 1.159 x[1] = 0.427 y[1] (analytic) = 0 y[1] (numeric) = 0.31197113646618653950744553217005 absolute error = 0.31197113646618653950744553217005 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.365 Order of pole = 1.161 x[1] = 0.428 y[1] (analytic) = 0 y[1] (numeric) = 0.31293248605740102065131617264105 absolute error = 0.31293248605740102065131617264105 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.366 Order of pole = 1.163 x[1] = 0.429 y[1] (analytic) = 0 y[1] (numeric) = 0.31389387423445930540944303557421 absolute error = 0.31389387423445930540944303557421 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.368 Order of pole = 1.165 x[1] = 0.43 y[1] (analytic) = 0 y[1] (numeric) = 0.31485530094960946346568089582082 absolute error = 0.31485530094960946346568089582082 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.369 Order of pole = 1.168 x[1] = 0.431 y[1] (analytic) = 0 y[1] (numeric) = 0.31581676615517208820286972059566 absolute error = 0.31581676615517208820286972059566 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=282.2MB, alloc=4.3MB, time=28.29 Complex estimate of poles used Radius of convergence = 2.371 Order of pole = 1.17 x[1] = 0.432 y[1] (analytic) = 0 y[1] (numeric) = 0.31677826980354016344411887217039 absolute error = 0.31677826980354016344411887217039 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.372 Order of pole = 1.172 x[1] = 0.433 y[1] (analytic) = 0 y[1] (numeric) = 0.31773981184717893048572837935701 absolute error = 0.31773981184717893048572837935701 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.374 Order of pole = 1.174 x[1] = 0.434 y[1] (analytic) = 0 y[1] (numeric) = 0.3187013922386257554209984657847 absolute error = 0.3187013922386257554209984657847 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.375 Order of pole = 1.176 x[1] = 0.435 y[1] (analytic) = 0 y[1] (numeric) = 0.31966301093048999675418074816949 absolute error = 0.31966301093048999675418074816949 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=286.1MB, alloc=4.3MB, time=28.67 Complex estimate of poles used Radius of convergence = 2.377 Order of pole = 1.178 x[1] = 0.436 y[1] (analytic) = 0 y[1] (numeric) = 0.32062466787545287330382673541124 absolute error = 0.32062466787545287330382673541124 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.379 Order of pole = 1.18 x[1] = 0.437 y[1] (analytic) = 0 y[1] (numeric) = 0.32158636302626733239479146945457 absolute error = 0.32158636302626733239479146945457 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.38 Order of pole = 1.182 x[1] = 0.438 y[1] (analytic) = 0 y[1] (numeric) = 0.32254809633575791833815235144901 absolute error = 0.32254809633575791833815235144901 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.382 Order of pole = 1.184 x[1] = 0.439 y[1] (analytic) = 0 y[1] (numeric) = 0.32350986775682064119830539186772 absolute error = 0.32350986775682064119830539186772 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.383 Order of pole = 1.186 x[1] = 0.44 y[1] (analytic) = 0 y[1] (numeric) = 0.32447167724242284584650331092182 absolute error = 0.32447167724242284584650331092182 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=289.9MB, alloc=4.3MB, time=29.05 Complex estimate of poles used Radius of convergence = 2.385 Order of pole = 1.188 x[1] = 0.441 y[1] (analytic) = 0 y[1] (numeric) = 0.32543352474560308130010209586788 absolute error = 0.32543352474560308130010209586788 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.386 Order of pole = 1.19 x[1] = 0.442 y[1] (analytic) = 0 y[1] (numeric) = 0.32639541021947097034678479467734 absolute error = 0.32639541021947097034678479467734 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.388 Order of pole = 1.192 x[1] = 0.443 y[1] (analytic) = 0 y[1] (numeric) = 0.32735733361720707945303349104734 absolute error = 0.32735733361720707945303349104734 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.389 Order of pole = 1.194 x[1] = 0.444 y[1] (analytic) = 0 y[1] (numeric) = 0.32831929489206278895612256391061 absolute error = 0.32831929489206278895612256391061 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=293.7MB, alloc=4.3MB, time=29.44 Complex estimate of poles used Radius of convergence = 2.391 Order of pole = 1.196 x[1] = 0.445 y[1] (analytic) = 0 y[1] (numeric) = 0.32928129399736016353890848547578 absolute error = 0.32928129399736016353890848547578 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.392 Order of pole = 1.198 x[1] = 0.446 y[1] (analytic) = 0 y[1] (numeric) = 0.33024333088649182298669355542684 absolute error = 0.33024333088649182298669355542684 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.394 Order of pole = 1.2 x[1] = 0.447 y[1] (analytic) = 0 y[1] (numeric) = 0.33120540551292081322544310525916 absolute error = 0.33120540551292081322544310525916 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.395 Order of pole = 1.202 x[1] = 0.448 y[1] (analytic) = 0 y[1] (numeric) = 0.33216751783018047764063783585749 absolute error = 0.33216751783018047764063783585749 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.397 Order of pole = 1.204 x[1] = 0.449 y[1] (analytic) = 0 y[1] (numeric) = 0.3331296677918743286760450733559 absolute error = 0.3331296677918743286760450733559 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=297.5MB, alloc=4.3MB, time=29.83 Complex estimate of poles used Radius of convergence = 2.398 Order of pole = 1.206 x[1] = 0.45 y[1] (analytic) = 0 y[1] (numeric) = 0.33409185535167591971169484308857 absolute error = 0.33409185535167591971169484308857 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.4 Order of pole = 1.208 x[1] = 0.451 y[1] (analytic) = 0 y[1] (numeric) = 0.33505408046332871722034876907088 absolute error = 0.33505408046332871722034876907088 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.401 Order of pole = 1.21 x[1] = 0.452 y[1] (analytic) = 0 y[1] (numeric) = 0.33601634308064597320175190696962 absolute error = 0.33601634308064597320175190696962 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.403 Order of pole = 1.212 x[1] = 0.453 y[1] (analytic) = 0 y[1] (numeric) = 0.33697864315751059789395971195663 absolute error = 0.33697864315751059789395971195663 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=301.3MB, alloc=4.3MB, time=30.22 Complex estimate of poles used Radius of convergence = 2.404 Order of pole = 1.213 x[1] = 0.454 y[1] (analytic) = 0 y[1] (numeric) = 0.3379409806478750327610344292186 absolute error = 0.3379409806478750327610344292186 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.406 Order of pole = 1.215 x[1] = 0.455 y[1] (analytic) = 0 y[1] (numeric) = 0.33890335550576112375640727424421 absolute error = 0.33890335550576112375640727424421 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.407 Order of pole = 1.217 x[1] = 0.456 y[1] (analytic) = 0 y[1] (numeric) = 0.33986576768525999486120484235496 absolute error = 0.33986576768525999486120484235496 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.408 Order of pole = 1.219 x[1] = 0.457 y[1] (analytic) = 0 y[1] (numeric) = 0.34082821714053192189684025231473 absolute error = 0.34082821714053192189684025231473 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.41 Order of pole = 1.221 x[1] = 0.458 y[1] (analytic) = 0 y[1] (numeric) = 0.34179070382580620661117158727154 absolute error = 0.34179070382580620661117158727154 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=305.1MB, alloc=4.3MB, time=30.61 Complex estimate of poles used Radius of convergence = 2.411 Order of pole = 1.223 x[1] = 0.459 y[1] (analytic) = 0 y[1] (numeric) = 0.34275322769538105103753224778023 absolute error = 0.34275322769538105103753224778023 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.413 Order of pole = 1.225 x[1] = 0.46 y[1] (analytic) = 0 y[1] (numeric) = 0.34371578870362343212593987625242 absolute error = 0.34371578870362343212593987625242 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.414 Order of pole = 1.226 x[1] = 0.461 y[1] (analytic) = 0 y[1] (numeric) = 0.34467838680496897664579254990712 absolute error = 0.34467838680496897664579254990712 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.416 Order of pole = 1.228 x[1] = 0.462 y[1] (analytic) = 0 y[1] (numeric) = 0.34564102195392183635936297017723 absolute error = 0.34564102195392183635936297017723 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.417 Order of pole = 1.23 x[1] = 0.463 y[1] (analytic) = 0 y[1] (numeric) = 0.34660369410505456346540340059025 absolute error = 0.34660369410505456346540340059025 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=309.0MB, alloc=4.3MB, time=31.00 Complex estimate of poles used Radius of convergence = 2.419 Order of pole = 1.232 x[1] = 0.464 y[1] (analytic) = 0 y[1] (numeric) = 0.34756640321300798631217612241176 absolute error = 0.34756640321300798631217612241176 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.42 Order of pole = 1.234 x[1] = 0.465 y[1] (analytic) = 0 y[1] (numeric) = 0.34852914923249108537922618784308 absolute error = 0.34852914923249108537922618784308 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.422 Order of pole = 1.235 x[1] = 0.466 y[1] (analytic) = 0 y[1] (numeric) = 0.34949193211828086952721525432587 absolute error = 0.34949193211828086952721525432587 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.423 Order of pole = 1.237 x[1] = 0.467 y[1] (analytic) = 0 y[1] (numeric) = 0.35045475182522225251513728055212 absolute error = 0.35045475182522225251513728055212 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=312.8MB, alloc=4.3MB, time=31.39 Complex estimate of poles used Radius of convergence = 2.425 Order of pole = 1.239 x[1] = 0.468 y[1] (analytic) = 0 y[1] (numeric) = 0.35141760830822792978423885513259 absolute error = 0.35141760830822792978423885513259 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.426 Order of pole = 1.241 x[1] = 0.469 y[1] (analytic) = 0 y[1] (numeric) = 0.35238050152227825550796891256698 absolute error = 0.35238050152227825550796891256698 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.428 Order of pole = 1.243 x[1] = 0.47 y[1] (analytic) = 0 y[1] (numeric) = 0.35334343142242111990728456820861 absolute error = 0.35334343142242111990728456820861 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.429 Order of pole = 1.244 x[1] = 0.471 y[1] (analytic) = 0 y[1] (numeric) = 0.35430639796377182683064177435179 absolute error = 0.35430639796377182683064177435179 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.43 Order of pole = 1.246 x[1] = 0.472 y[1] (analytic) = 0 y[1] (numeric) = 0.35526940110151297159800146341534 absolute error = 0.35526940110151297159800146341534 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=316.6MB, alloc=4.3MB, time=31.78 Complex estimate of poles used Radius of convergence = 2.432 Order of pole = 1.248 x[1] = 0.473 y[1] (analytic) = 0 y[1] (numeric) = 0.35623244079089431910818380147618 absolute error = 0.35623244079089431910818380147618 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.433 Order of pole = 1.249 x[1] = 0.474 y[1] (analytic) = 0 y[1] (numeric) = 0.35719551698723268220890512614759 absolute error = 0.35719551698723268220890512614759 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.435 Order of pole = 1.251 x[1] = 0.475 y[1] (analytic) = 0 y[1] (numeric) = 0.35815862964591180032883408702177 absolute error = 0.35815862964591180032883408702177 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.436 Order of pole = 1.253 x[1] = 0.476 y[1] (analytic) = 0 y[1] (numeric) = 0.359121778722382218371005444631 absolute error = 0.359121778722382218371005444631 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=320.4MB, alloc=4.3MB, time=32.17 Complex estimate of poles used Radius of convergence = 2.438 Order of pole = 1.254 x[1] = 0.477 y[1] (analytic) = 0 y[1] (numeric) = 0.36008496417216116586693191514992 absolute error = 0.36008496417216116586693191514992 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.439 Order of pole = 1.256 x[1] = 0.478 y[1] (analytic) = 0 y[1] (numeric) = 0.36104818595083243639075637288799 absolute error = 0.36104818595083243639075637288799 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.441 Order of pole = 1.258 x[1] = 0.479 y[1] (analytic) = 0 y[1] (numeric) = 0.36201144401404626723278864103014 absolute error = 0.36201144401404626723278864103014 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.442 Order of pole = 1.26 x[1] = 0.48 y[1] (analytic) = 0 y[1] (numeric) = 0.36297473831751921933177301309943 absolute error = 0.36297473831751921933177301309943 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.443 Order of pole = 1.261 x[1] = 0.481 y[1] (analytic) = 0 y[1] (numeric) = 0.36393806881703405746523455326177 absolute error = 0.36393806881703405746523455326177 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=324.2MB, alloc=4.3MB, time=32.56 Complex estimate of poles used Radius of convergence = 2.445 Order of pole = 1.263 x[1] = 0.482 y[1] (analytic) = 0 y[1] (numeric) = 0.36490143546843963069725412289424 absolute error = 0.36490143546843963069725412289424 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.446 Order of pole = 1.264 x[1] = 0.483 y[1] (analytic) = 0 y[1] (numeric) = 0.3658648382276507530830239738181 absolute error = 0.3658648382276507530830239738181 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.448 Order of pole = 1.266 x[1] = 0.484 y[1] (analytic) = 0 y[1] (numeric) = 0.36682827705064808462953763528021 absolute error = 0.36682827705064808462953763528021 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.449 Order of pole = 1.268 x[1] = 0.485 y[1] (analytic) = 0 y[1] (numeric) = 0.36779175189347801251176970217465 absolute error = 0.36779175189347801251176970217465 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=328.0MB, alloc=4.3MB, time=32.94 Complex estimate of poles used Radius of convergence = 2.451 Order of pole = 1.269 x[1] = 0.486 y[1] (analytic) = 0 y[1] (numeric) = 0.36875526271225253254370300615467 absolute error = 0.36875526271225253254370300615467 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.452 Order of pole = 1.271 x[1] = 0.487 y[1] (analytic) = 0 y[1] (numeric) = 0.3697188094631491309035625192164 absolute error = 0.3697188094631491309035625192164 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.453 Order of pole = 1.273 x[1] = 0.488 y[1] (analytic) = 0 y[1] (numeric) = 0.37068239210241066611261720106338 absolute error = 0.37068239210241066611261720106338 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.455 Order of pole = 1.274 x[1] = 0.489 y[1] (analytic) = 0 y[1] (numeric) = 0.37164601058634525126691285710911 absolute error = 0.37164601058634525126691285710911 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.456 Order of pole = 1.276 x[1] = 0.49 y[1] (analytic) = 0 y[1] (numeric) = 0.37260966487132613652130092336529 absolute error = 0.37260966487132613652130092336529 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=331.8MB, alloc=4.3MB, time=33.32 Complex estimate of poles used Radius of convergence = 2.458 Order of pole = 1.277 x[1] = 0.491 y[1] (analytic) = 0 y[1] (numeric) = 0.37357335491379159182512993772051 absolute error = 0.37357335491379159182512993772051 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.459 Order of pole = 1.279 x[1] = 0.492 y[1] (analytic) = 0 y[1] (numeric) = 0.37453708067024478990896829426029 absolute error = 0.37453708067024478990896829426029 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.46 Order of pole = 1.28 x[1] = 0.493 y[1] (analytic) = 0 y[1] (numeric) = 0.37550084209725368952172870833748 absolute error = 0.37550084209725368952172870833748 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.462 Order of pole = 1.282 x[1] = 0.494 y[1] (analytic) = 0 y[1] (numeric) = 0.37646463915145091891756664509506 absolute error = 0.37646463915145091891756664509506 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=335.7MB, alloc=4.3MB, time=33.71 Complex estimate of poles used Radius of convergence = 2.463 Order of pole = 1.284 x[1] = 0.495 y[1] (analytic) = 0 y[1] (numeric) = 0.37742847178953365959192678309386 absolute error = 0.37742847178953365959192678309386 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.465 Order of pole = 1.285 x[1] = 0.496 y[1] (analytic) = 0 y[1] (numeric) = 0.37839233996826353026611339762869 absolute error = 0.37839233996826353026611339762869 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.466 Order of pole = 1.287 x[1] = 0.497 y[1] (analytic) = 0 y[1] (numeric) = 0.37935624364446647111976235524958 absolute error = 0.37935624364446647111976235524958 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.468 Order of pole = 1.288 x[1] = 0.498 y[1] (analytic) = 0 y[1] (numeric) = 0.38032018277503262827059421196349 absolute error = 0.38032018277503262827059421196349 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.469 Order of pole = 1.29 x[1] = 0.499 y[1] (analytic) = 0 y[1] (numeric) = 0.3812841573169162385008297025979 absolute error = 0.3812841573169162385008297025979 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=339.5MB, alloc=4.3MB, time=34.09 Complex estimate of poles used Radius of convergence = 2.47 Order of pole = 1.291 x[1] = 0.5 y[1] (analytic) = 0 y[1] (numeric) = 0.38224816722713551422965069788333 absolute error = 0.38224816722713551422965069788333 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.472 Order of pole = 1.293 x[1] = 0.501 y[1] (analytic) = 0 y[1] (numeric) = 0.38321221246277252873109148897936 absolute error = 0.38321221246277252873109148897936 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.473 Order of pole = 1.294 x[1] = 0.502 y[1] (analytic) = 0 y[1] (numeric) = 0.38417629298097310159674703645016 absolute error = 0.38417629298097310159674703645016 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.475 Order of pole = 1.296 x[1] = 0.503 y[1] (analytic) = 0 y[1] (numeric) = 0.38514040873894668444268659211279 absolute error = 0.38514040873894668444268659211279 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=343.3MB, alloc=4.3MB, time=34.47 Complex estimate of poles used Radius of convergence = 2.476 Order of pole = 1.297 x[1] = 0.504 y[1] (analytic) = 0 y[1] (numeric) = 0.38610455969396624685996286775645 absolute error = 0.38610455969396624685996286775645 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.477 Order of pole = 1.299 x[1] = 0.505 y[1] (analytic) = 0 y[1] (numeric) = 0.38706874580336816260810868448529 absolute error = 0.38706874580336816260810868448529 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.479 Order of pole = 1.3 x[1] = 0.506 y[1] (analytic) = 0 y[1] (numeric) = 0.38803296702455209605101479039309 absolute error = 0.38803296702455209605101479039309 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.48 Order of pole = 1.302 x[1] = 0.507 y[1] (analytic) = 0 y[1] (numeric) = 0.38899722331498088883458428245633 absolute error = 0.38899722331498088883458428245633 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.482 Order of pole = 1.303 x[1] = 0.508 y[1] (analytic) = 0 y[1] (numeric) = 0.38996151463218044680556081095495 absolute error = 0.38996151463218044680556081095495 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=347.1MB, alloc=4.3MB, time=34.86 Complex estimate of poles used Radius of convergence = 2.483 Order of pole = 1.304 x[1] = 0.509 y[1] (analytic) = 0 y[1] (numeric) = 0.39092584093373962717092948141832 absolute error = 0.39092584093373962717092948141832 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.484 Order of pole = 1.306 x[1] = 0.51 y[1] (analytic) = 0 y[1] (numeric) = 0.39189020217731012589729110006936 absolute error = 0.39189020217731012589729110006936 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.486 Order of pole = 1.307 x[1] = 0.511 y[1] (analytic) = 0 y[1] (numeric) = 0.39285459832060636534961213402321 absolute error = 0.39285459832060636534961213402321 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.487 Order of pole = 1.309 x[1] = 0.512 y[1] (analytic) = 0 y[1] (numeric) = 0.39381902932140538216875447710992 absolute error = 0.39381902932140538216875447710992 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=350.9MB, alloc=4.3MB, time=35.25 Complex estimate of poles used Radius of convergence = 2.488 Order of pole = 1.31 x[1] = 0.513 y[1] (analytic) = 0 y[1] (numeric) = 0.39478349513754671538719082615395 absolute error = 0.39478349513754671538719082615395 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.49 Order of pole = 1.312 x[1] = 0.514 y[1] (analytic) = 0 y[1] (numeric) = 0.39574799572693229478231318087823 absolute error = 0.39574799572693229478231318087823 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.491 Order of pole = 1.313 x[1] = 0.515 y[1] (analytic) = 0 y[1] (numeric) = 0.39671253104752632946674368332759 absolute error = 0.39671253104752632946674368332759 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.493 Order of pole = 1.314 x[1] = 0.516 y[1] (analytic) = 0 y[1] (numeric) = 0.39767710105735519671505870984674 absolute error = 0.39767710105735519671505870984674 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.494 Order of pole = 1.316 x[1] = 0.517 y[1] (analytic) = 0 y[1] (numeric) = 0.39864170571450733102633882022195 absolute error = 0.39864170571450733102633882022195 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=354.7MB, alloc=4.3MB, time=35.64 Complex estimate of poles used Radius of convergence = 2.495 Order of pole = 1.317 x[1] = 0.518 y[1] (analytic) = 0 y[1] (numeric) = 0.39960634497713311342195885462427 absolute error = 0.39960634497713311342195885462427 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.497 Order of pole = 1.319 x[1] = 0.519 y[1] (analytic) = 0 y[1] (numeric) = 0.40057101880344476097803414949559 absolute error = 0.40057101880344476097803414949559 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.498 Order of pole = 1.32 x[1] = 0.52 y[1] (analytic) = 0 y[1] (numeric) = 0.40153572715171621659194051851788 absolute error = 0.40153572715171621659194051851788 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.499 Order of pole = 1.321 x[1] = 0.521 y[1] (analytic) = 0 y[1] (numeric) = 0.40250046998028303898232731432069 absolute error = 0.40250046998028303898232731432069 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.501 Order of pole = 1.323 memory used=358.5MB, alloc=4.3MB, time=36.02 x[1] = 0.522 y[1] (analytic) = 0 y[1] (numeric) = 0.40346524724754229292204455063304 absolute error = 0.40346524724754229292204455063304 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.502 Order of pole = 1.324 x[1] = 0.523 y[1] (analytic) = 0 y[1] (numeric) = 0.4044300589119524397034067231929 absolute error = 0.4044300589119524397034067231929 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.504 Order of pole = 1.325 x[1] = 0.524 y[1] (analytic) = 0 y[1] (numeric) = 0.40539490493203322783521762091128 absolute error = 0.40539490493203322783521762091128 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.505 Order of pole = 1.327 x[1] = 0.525 y[1] (analytic) = 0 y[1] (numeric) = 0.40635978526636558397098206656797 absolute error = 0.40635978526636558397098206656797 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.506 Order of pole = 1.328 x[1] = 0.526 y[1] (analytic) = 0 y[1] (numeric) = 0.40732469987359150406773216871256 absolute error = 0.40732469987359150406773216871256 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=362.4MB, alloc=4.3MB, time=36.40 Complex estimate of poles used Radius of convergence = 2.508 Order of pole = 1.329 x[1] = 0.527 y[1] (analytic) = 0 y[1] (numeric) = 0.40828964871241394477489730347717 absolute error = 0.40828964871241394477489730347717 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.509 Order of pole = 1.331 x[1] = 0.528 y[1] (analytic) = 0 y[1] (numeric) = 0.40925463174159671505264867669629 absolute error = 0.40925463174159671505264867669629 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.51 Order of pole = 1.332 x[1] = 0.529 y[1] (analytic) = 0 y[1] (numeric) = 0.41021964891996436801915094309377 absolute error = 0.41021964891996436801915094309377 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.512 Order of pole = 1.333 x[1] = 0.53 y[1] (analytic) = 0 y[1] (numeric) = 0.41118470020640209302615498035713 absolute error = 0.41118470020640209302615498035713 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.513 Order of pole = 1.335 x[1] = 0.531 y[1] (analytic) = 0 y[1] (numeric) = 0.41214978555985560796236753169442 absolute error = 0.41214978555985560796236753169442 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=366.2MB, alloc=4.3MB, time=36.78 Complex estimate of poles used Radius of convergence = 2.514 Order of pole = 1.336 x[1] = 0.532 y[1] (analytic) = 0 y[1] (numeric) = 0.41311490493933105178403504097831 absolute error = 0.41311490493933105178403504097831 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.516 Order of pole = 1.337 x[1] = 0.533 y[1] (analytic) = 0 y[1] (numeric) = 0.41408005830389487727218060984547 absolute error = 0.41408005830389487727218060984547 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.517 Order of pole = 1.339 x[1] = 0.534 y[1] (analytic) = 0 y[1] (numeric) = 0.41504524561267374401593460615548 absolute error = 0.41504524561267374401593460615548 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.519 Order of pole = 1.34 x[1] = 0.535 y[1] (analytic) = 0 y[1] (numeric) = 0.41601046682485441162140104804247 absolute error = 0.41601046682485441162140104804247 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=370.0MB, alloc=4.3MB, time=37.17 Complex estimate of poles used Radius of convergence = 2.52 Order of pole = 1.341 x[1] = 0.536 y[1] (analytic) = 0 y[1] (numeric) = 0.41697572189968363314550347743274 absolute error = 0.41697572189968363314550347743274 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.521 Order of pole = 1.342 x[1] = 0.537 y[1] (analytic) = 0 y[1] (numeric) = 0.41794101079646804875425562137229 absolute error = 0.41794101079646804875425562137229 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.523 Order of pole = 1.344 x[1] = 0.538 y[1] (analytic) = 0 y[1] (numeric) = 0.41890633347457407960490371882867 absolute error = 0.41890633347457407960490371882867 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.524 Order of pole = 1.345 x[1] = 0.539 y[1] (analytic) = 0 y[1] (numeric) = 0.41987168989342782195138896481993 absolute error = 0.41987168989342782195138896481993 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.525 Order of pole = 1.346 x[1] = 0.54 y[1] (analytic) = 0 y[1] (numeric) = 0.42083708001251494147258009279979 absolute error = 0.42083708001251494147258009279979 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=373.8MB, alloc=4.3MB, time=37.55 Complex estimate of poles used Radius of convergence = 2.527 Order of pole = 1.347 x[1] = 0.541 y[1] (analytic) = 0 y[1] (numeric) = 0.42180250379138056782272768020985 absolute error = 0.42180250379138056782272768020985 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.528 Order of pole = 1.349 x[1] = 0.542 y[1] (analytic) = 0 y[1] (numeric) = 0.42276796118962918940359332101651 absolute error = 0.42276796118962918940359332101651 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.529 Order of pole = 1.35 x[1] = 0.543 y[1] (analytic) = 0 y[1] (numeric) = 0.42373345216692454835770836290022 absolute error = 0.42373345216692454835770836290022 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.531 Order of pole = 1.351 x[1] = 0.544 y[1] (analytic) = 0 y[1] (numeric) = 0.4246989766829895357822184555766 absolute error = 0.4246989766829895357822184555766 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=377.6MB, alloc=4.3MB, time=37.94 Complex estimate of poles used Radius of convergence = 2.532 Order of pole = 1.352 x[1] = 0.545 y[1] (analytic) = 0 y[1] (numeric) = 0.42566453469760608716277170052096 absolute error = 0.42566453469760608716277170052096 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.533 Order of pole = 1.354 x[1] = 0.546 y[1] (analytic) = 0 y[1] (numeric) = 0.4266301261706150780269097311586 absolute error = 0.4266301261706150780269097311586 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.535 Order of pole = 1.355 x[1] = 0.547 y[1] (analytic) = 0 y[1] (numeric) = 0.42759575106191621981642258639098 absolute error = 0.42759575106191621981642258639098 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.536 Order of pole = 1.356 x[1] = 0.548 y[1] (analytic) = 0 y[1] (numeric) = 0.42856140933146795597812976917073 absolute error = 0.42856140933146795597812976917073 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.537 Order of pole = 1.357 x[1] = 0.549 y[1] (analytic) = 0 y[1] (numeric) = 0.42952710093928735827255140573469 absolute error = 0.42952710093928735827255140573469 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=381.4MB, alloc=4.3MB, time=38.33 Complex estimate of poles used Radius of convergence = 2.539 Order of pole = 1.358 x[1] = 0.55 y[1] (analytic) = 0 y[1] (numeric) = 0.43049282584545002329993494007176 absolute error = 0.43049282584545002329993494007176 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.54 Order of pole = 1.36 x[1] = 0.551 y[1] (analytic) = 0 y[1] (numeric) = 0.43145858401008996924310431225941 absolute error = 0.43145858401008996924310431225941 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.541 Order of pole = 1.361 x[1] = 0.552 y[1] (analytic) = 0 y[1] (numeric) = 0.43242437539339953282660007846691 absolute error = 0.43242437539339953282660007846691 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.543 Order of pole = 1.362 x[1] = 0.553 y[1] (analytic) = 0 y[1] (numeric) = 0.43339019995562926649158043471306 absolute error = 0.43339019995562926649158043471306 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=385.3MB, alloc=4.3MB, time=38.71 Complex estimate of poles used Radius of convergence = 2.544 Order of pole = 1.363 x[1] = 0.554 y[1] (analytic) = 0 y[1] (numeric) = 0.43435605765708783578595460589835 absolute error = 0.43435605765708783578595460589835 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.545 Order of pole = 1.364 x[1] = 0.555 y[1] (analytic) = 0 y[1] (numeric) = 0.43532194845814191696922155622501 absolute error = 0.43532194845814191696922155622501 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.547 Order of pole = 1.366 x[1] = 0.556 y[1] (analytic) = 0 y[1] (numeric) = 0.43628787231921609483148846688948 absolute error = 0.43628787231921609483148846688948 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.548 Order of pole = 1.367 x[1] = 0.557 y[1] (analytic) = 0 y[1] (numeric) = 0.43725382920079276072614491189939 absolute error = 0.43725382920079276072614491189939 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.549 Order of pole = 1.368 x[1] = 0.558 y[1] (analytic) = 0 y[1] (numeric) = 0.43821981906341201081567014304765 absolute error = 0.43821981906341201081567014304765 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=389.1MB, alloc=4.3MB, time=39.10 Complex estimate of poles used Radius of convergence = 2.551 Order of pole = 1.369 x[1] = 0.559 y[1] (analytic) = 0 y[1] (numeric) = 0.43918584186767154453005237048779 absolute error = 0.43918584186767154453005237048779 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.552 Order of pole = 1.37 x[1] = 0.56 y[1] (analytic) = 0 y[1] (numeric) = 0.44015189757422656323730039601421 absolute error = 0.44015189757422656323730039601421 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.553 Order of pole = 1.371 x[1] = 0.561 y[1] (analytic) = 0 y[1] (numeric) = 0.44111798614378966912552942207602 absolute error = 0.44111798614378966912552942207602 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.555 Order of pole = 1.372 x[1] = 0.562 y[1] (analytic) = 0 y[1] (numeric) = 0.44208410753713076429610432076072 absolute error = 0.44208410753713076429610432076072 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=392.9MB, alloc=4.3MB, time=39.48 Complex estimate of poles used Radius of convergence = 2.556 Order of pole = 1.374 x[1] = 0.563 y[1] (analytic) = 0 y[1] (numeric) = 0.44305026171507695006732510349133 absolute error = 0.44305026171507695006732510349133 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.557 Order of pole = 1.375 x[1] = 0.564 y[1] (analytic) = 0 y[1] (numeric) = 0.44401644863851242648814078400487 absolute error = 0.44401644863851242648814078400487 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.559 Order of pole = 1.376 x[1] = 0.565 y[1] (analytic) = 0 y[1] (numeric) = 0.44498266826837839206137927433793 absolute error = 0.44498266826837839206137927433793 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.56 Order of pole = 1.377 x[1] = 0.566 y[1] (analytic) = 0 y[1] (numeric) = 0.44594892056567294367598239605403 absolute error = 0.44594892056567294367598239605403 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.561 Order of pole = 1.378 x[1] = 0.567 y[1] (analytic) = 0 y[1] (numeric) = 0.44691520549145097674773652682379 absolute error = 0.44691520549145097674773652682379 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=396.7MB, alloc=4.3MB, time=39.87 Complex estimate of poles used Radius of convergence = 2.563 Order of pole = 1.379 x[1] = 0.568 y[1] (analytic) = 0 y[1] (numeric) = 0.44788152300682408556799083572971 absolute error = 0.44788152300682408556799083572971 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.564 Order of pole = 1.38 x[1] = 0.569 y[1] (analytic) = 0 y[1] (numeric) = 0.44884787307296046385985648932944 absolute error = 0.44884787307296046385985648932944 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.565 Order of pole = 1.381 x[1] = 0.57 y[1] (analytic) = 0 y[1] (numeric) = 0.44981425565108480554138163459108 absolute error = 0.44981425565108480554138163459108 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.567 Order of pole = 1.383 x[1] = 0.571 y[1] (analytic) = 0 y[1] (numeric) = 0.45078067070247820569519838432826 absolute error = 0.45078067070247820569519838432826 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=400.5MB, alloc=4.3MB, time=40.25 Complex estimate of poles used Radius of convergence = 2.568 Order of pole = 1.384 x[1] = 0.572 y[1] (analytic) = 0 y[1] (numeric) = 0.45174711818847806174413944572778 absolute error = 0.45174711818847806174413944572778 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.569 Order of pole = 1.385 x[1] = 0.573 y[1] (analytic) = 0 y[1] (numeric) = 0.45271359807047797483232344299514 absolute error = 0.45271359807047797483232344299514 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.57 Order of pole = 1.386 x[1] = 0.574 y[1] (analytic) = 0 y[1] (numeric) = 0.45368011030992765141120939105934 absolute error = 0.45368011030992765141120939105934 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.572 Order of pole = 1.387 x[1] = 0.575 y[1] (analytic) = 0 y[1] (numeric) = 0.45464665486833280503012217869473 absolute error = 0.45464665486833280503012217869473 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.573 Order of pole = 1.388 x[1] = 0.576 y[1] (analytic) = 0 y[1] (numeric) = 0.45561323170725505833075231635032 absolute error = 0.45561323170725505833075231635032 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=404.3MB, alloc=4.3MB, time=40.64 Complex estimate of poles used Radius of convergence = 2.574 Order of pole = 1.389 x[1] = 0.577 y[1] (analytic) = 0 y[1] (numeric) = 0.45657984078831184524513459644209 absolute error = 0.45657984078831184524513459644209 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.576 Order of pole = 1.39 x[1] = 0.578 y[1] (analytic) = 0 y[1] (numeric) = 0.45754648207317631339661170187771 absolute error = 0.45754648207317631339661170187771 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.577 Order of pole = 1.391 x[1] = 0.579 y[1] (analytic) = 0 y[1] (numeric) = 0.4585131555235772267032901821616 absolute error = 0.4585131555235772267032901821616 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.578 Order of pole = 1.392 x[1] = 0.58 y[1] (analytic) = 0 y[1] (numeric) = 0.4594798611012988681834975955876 absolute error = 0.4594798611012988681834975955876 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.58 Order of pole = 1.393 memory used=408.1MB, alloc=4.3MB, time=41.03 x[1] = 0.581 y[1] (analytic) = 0 y[1] (numeric) = 0.46044659876818094296275099078238 absolute error = 0.46044659876818094296275099078238 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.581 Order of pole = 1.394 x[1] = 0.582 y[1] (analytic) = 0 y[1] (numeric) = 0.46141336848611848148174827123121 absolute error = 0.46141336848611848148174827123121 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.582 Order of pole = 1.395 x[1] = 0.583 y[1] (analytic) = 0 y[1] (numeric) = 0.46238017021706174290489535241448 absolute error = 0.46238017021706174290489535241448 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.583 Order of pole = 1.396 x[1] = 0.584 y[1] (analytic) = 0 y[1] (numeric) = 0.46334700392301611872888338282425 absolute error = 0.46334700392301611872888338282425 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.585 Order of pole = 1.397 x[1] = 0.585 y[1] (analytic) = 0 y[1] (numeric) = 0.46431386956604203659083165743051 absolute error = 0.46431386956604203659083165743051 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=412.0MB, alloc=4.3MB, time=41.43 Complex estimate of poles used Radius of convergence = 2.586 Order of pole = 1.398 x[1] = 0.586 y[1] (analytic) = 0 y[1] (numeric) = 0.46528076710825486427551320514309 absolute error = 0.46528076710825486427551320514309 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.587 Order of pole = 1.399 x[1] = 0.587 y[1] (analytic) = 0 y[1] (numeric) = 0.46624769651182481392118138048162 absolute error = 0.46624769651182481392118138048162 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.589 Order of pole = 1.4 x[1] = 0.588 y[1] (analytic) = 0 y[1] (numeric) = 0.46721465773897684642351713403953 absolute error = 0.46721465773897684642351713403953 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.59 Order of pole = 1.401 x[1] = 0.589 y[1] (analytic) = 0 y[1] (numeric) = 0.46818165075199057603721797642287 absolute error = 0.46818165075199057603721797642287 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.591 Order of pole = 1.402 x[1] = 0.59 y[1] (analytic) = 0 y[1] (numeric) = 0.46914867551320017517475098617716 absolute error = 0.46914867551320017517475098617716 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=415.8MB, alloc=4.3MB, time=41.81 Complex estimate of poles used Radius of convergence = 2.593 Order of pole = 1.403 x[1] = 0.591 y[1] (analytic) = 0 y[1] (numeric) = 0.47011573198499427940179354380011 absolute error = 0.47011573198499427940179354380011 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.594 Order of pole = 1.404 x[1] = 0.592 y[1] (analytic) = 0 y[1] (numeric) = 0.47108282012981589262888680129052 absolute error = 0.47108282012981589262888680129052 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.595 Order of pole = 1.405 x[1] = 0.593 y[1] (analytic) = 0 y[1] (numeric) = 0.47204993991016229249882821981913 absolute error = 0.47204993991016229249882821981913 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.596 Order of pole = 1.406 x[1] = 0.594 y[1] (analytic) = 0 y[1] (numeric) = 0.47301709128858493596933082704042 absolute error = 0.47301709128858493596933082704042 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=419.6MB, alloc=4.3MB, time=42.20 Complex estimate of poles used Radius of convergence = 2.598 Order of pole = 1.407 x[1] = 0.595 y[1] (analytic) = 0 y[1] (numeric) = 0.47398427422768936509047816031105 absolute error = 0.47398427422768936509047816031105 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.599 Order of pole = 1.408 x[1] = 0.596 y[1] (analytic) = 0 y[1] (numeric) = 0.47495148869013511297650517265499 absolute error = 0.47495148869013511297650517265499 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.6 Order of pole = 1.409 x[1] = 0.597 y[1] (analytic) = 0 y[1] (numeric) = 0.47591873463863560997143668473318 absolute error = 0.47591873463863560997143668473318 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.602 Order of pole = 1.41 x[1] = 0.598 y[1] (analytic) = 0 y[1] (numeric) = 0.47688601203595809000811626835082 absolute error = 0.47688601203595809000811626835082 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.603 Order of pole = 1.411 x[1] = 0.599 y[1] (analytic) = 0 y[1] (numeric) = 0.4778533208449234971601597451839 absolute error = 0.4778533208449234971601597451839 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=423.4MB, alloc=4.3MB, time=42.58 Complex estimate of poles used Radius of convergence = 2.604 Order of pole = 1.412 x[1] = 0.6 y[1] (analytic) = 0 y[1] (numeric) = 0.47882066102840639238636877844191 absolute error = 0.47882066102840639238636877844191 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.605 Order of pole = 1.413 x[1] = 0.601 y[1] (analytic) = 0 y[1] (numeric) = 0.47978803254933486046714132512186 absolute error = 0.47978803254933486046714132512186 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.607 Order of pole = 1.414 x[1] = 0.602 y[1] (analytic) = 0 y[1] (numeric) = 0.48075543537069041713241700236323 absolute error = 0.48075543537069041713241700236323 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.608 Order of pole = 1.415 x[1] = 0.603 y[1] (analytic) = 0 y[1] (numeric) = 0.4817228694555079163806967031996 absolute error = 0.4817228694555079163806967031996 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=427.2MB, alloc=4.3MB, time=42.97 Complex estimate of poles used Radius of convergence = 2.609 Order of pole = 1.416 x[1] = 0.604 y[1] (analytic) = 0 y[1] (numeric) = 0.48269033476687545798867707473477 absolute error = 0.48269033476687545798867707473477 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.611 Order of pole = 1.417 x[1] = 0.605 y[1] (analytic) = 0 y[1] (numeric) = 0.48365783126793429521104174546352 absolute error = 0.48365783126793429521104174546352 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.612 Order of pole = 1.418 x[1] = 0.606 y[1] (analytic) = 0 y[1] (numeric) = 0.48462535892187874266995245812448 absolute error = 0.48462535892187874266995245812448 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.613 Order of pole = 1.419 x[1] = 0.607 y[1] (analytic) = 0 y[1] (numeric) = 0.48559291769195608443378453012881 absolute error = 0.48559291769195608443378453012881 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.614 Order of pole = 1.42 x[1] = 0.608 y[1] (analytic) = 0 y[1] (numeric) = 0.4865605075414664822846523252683 absolute error = 0.4865605075414664822846523252683 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=431.0MB, alloc=4.3MB, time=43.35 Complex estimate of poles used Radius of convergence = 2.616 Order of pole = 1.421 x[1] = 0.609 y[1] (analytic) = 0 y[1] (numeric) = 0.48752812843376288417427167808404 absolute error = 0.48752812843376288417427167808404 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.617 Order of pole = 1.422 x[1] = 0.61 y[1] (analytic) = 0 y[1] (numeric) = 0.48849578033225093286770746598607 absolute error = 0.48849578033225093286770746598607 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.618 Order of pole = 1.423 x[1] = 0.611 y[1] (analytic) = 0 y[1] (numeric) = 0.4894634632003888747745557739699 absolute error = 0.4894634632003888747745557739699 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.62 Order of pole = 1.423 x[1] = 0.612 y[1] (analytic) = 0 y[1] (numeric) = 0.49043117700168746896711134259111 absolute error = 0.49043117700168746896711134259111 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=434.8MB, alloc=4.3MB, time=43.74 Complex estimate of poles used Radius of convergence = 2.621 Order of pole = 1.424 x[1] = 0.613 y[1] (analytic) = 0 y[1] (numeric) = 0.49139892169970989638507223174887 absolute error = 0.49139892169970989638507223174887 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.622 Order of pole = 1.425 x[1] = 0.614 y[1] (analytic) = 0 y[1] (numeric) = 0.49236669725807166922633487080665 absolute error = 0.49236669725807166922633487080665 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.623 Order of pole = 1.426 x[1] = 0.615 y[1] (analytic) = 0 y[1] (numeric) = 0.49333450364044054052343389965786 absolute error = 0.49333450364044054052343389965786 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.625 Order of pole = 1.427 x[1] = 0.616 y[1] (analytic) = 0 y[1] (numeric) = 0.49430234081053641390518243553942 absolute error = 0.49430234081053641390518243553942 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.626 Order of pole = 1.428 x[1] = 0.617 y[1] (analytic) = 0 y[1] (numeric) = 0.49527020873213125354306962672112 absolute error = 0.49527020873213125354306962672112 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=438.7MB, alloc=4.4MB, time=44.13 Complex estimate of poles used Radius of convergence = 2.627 Order of pole = 1.429 x[1] = 0.618 y[1] (analytic) = 0 y[1] (numeric) = 0.49623810736904899428197357666656 absolute error = 0.49623810736904899428197357666656 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.628 Order of pole = 1.43 x[1] = 0.619 y[1] (analytic) = 0 y[1] (numeric) = 0.49720603668516545195474894088678 absolute error = 0.49720603668516545195474894088678 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.63 Order of pole = 1.431 x[1] = 0.62 y[1] (analytic) = 0 y[1] (numeric) = 0.49817399664440823388024971350318 absolute error = 0.49817399664440823388024971350318 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.631 Order of pole = 1.431 x[1] = 0.621 y[1] (analytic) = 0 y[1] (numeric) = 0.49914198721075664954434893151633 absolute error = 0.49914198721075664954434893151633 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=442.5MB, alloc=4.4MB, time=44.51 Complex estimate of poles used Radius of convergence = 2.632 Order of pole = 1.432 x[1] = 0.622 y[1] (analytic) = 0 y[1] (numeric) = 0.5001100083482416214635182319549 absolute error = 0.5001100083482416214635182319549 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.633 Order of pole = 1.433 x[1] = 0.623 y[1] (analytic) = 0 y[1] (numeric) = 0.50107806002094559623053140046753 absolute error = 0.50107806002094559623053140046753 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.635 Order of pole = 1.434 x[1] = 0.624 y[1] (analytic) = 0 y[1] (numeric) = 0.502046142193002455741857249534 absolute error = 0.502046142193002455741857249534 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.636 Order of pole = 1.435 x[1] = 0.625 y[1] (analytic) = 0 y[1] (numeric) = 0.50301425482859742860630836032317 absolute error = 0.50301425482859742860630836032317 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.637 Order of pole = 1.436 x[1] = 0.626 y[1] (analytic) = 0 y[1] (numeric) = 0.50398239789196700173451341432785 absolute error = 0.50398239789196700173451341432785 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=446.3MB, alloc=4.4MB, time=44.90 Complex estimate of poles used Radius of convergence = 2.639 Order of pole = 1.437 x[1] = 0.627 y[1] (analytic) = 0 y[1] (numeric) = 0.50495057134739883210878202927368 absolute error = 0.50495057134739883210878202927368 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.64 Order of pole = 1.438 x[1] = 0.628 y[1] (analytic) = 0 y[1] (numeric) = 0.50591877515923165873293219844387 absolute error = 0.50591877515923165873293219844387 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.641 Order of pole = 1.438 x[1] = 0.629 y[1] (analytic) = 0 y[1] (numeric) = 0.50688700929185521476165161349729 absolute error = 0.50688700929185521476165161349729 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.642 Order of pole = 1.439 x[1] = 0.63 y[1] (analytic) = 0 y[1] (numeric) = 0.50785527370971013980896532809692 absolute error = 0.50785527370971013980896532809692 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=450.1MB, alloc=4.4MB, time=45.29 Complex estimate of poles used Radius of convergence = 2.644 Order of pole = 1.44 x[1] = 0.631 y[1] (analytic) = 0 y[1] (numeric) = 0.50882356837728789243538339322216 absolute error = 0.50882356837728789243538339322216 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.645 Order of pole = 1.441 x[1] = 0.632 y[1] (analytic) = 0 y[1] (numeric) = 0.5097918932591306628133032649251 absolute error = 0.5097918932591306628133032649251 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.646 Order of pole = 1.442 x[1] = 0.633 y[1] (analytic) = 0 y[1] (numeric) = 0.5107602483198312855702429515204 absolute error = 0.5107602483198312855702429515204 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.647 Order of pole = 1.443 x[1] = 0.634 y[1] (analytic) = 0 y[1] (numeric) = 0.5117286335240331528094820297835 absolute error = 0.5117286335240331528094820297835 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.649 Order of pole = 1.443 x[1] = 0.635 y[1] (analytic) = 0 y[1] (numeric) = 0.51269704883643012730768881868608 absolute error = 0.51269704883643012730768881868608 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=453.9MB, alloc=4.4MB, time=45.67 Complex estimate of poles used Radius of convergence = 2.65 Order of pole = 1.444 x[1] = 0.636 y[1] (analytic) = 0 y[1] (numeric) = 0.51366549422176645588911315453306 absolute error = 0.51366549422176645588911315453306 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.651 Order of pole = 1.445 x[1] = 0.637 y[1] (analytic) = 0 y[1] (numeric) = 0.51463396964483668297592536309491 absolute error = 0.51463396964483668297592536309491 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.652 Order of pole = 1.446 x[1] = 0.638 y[1] (analytic) = 0 y[1] (numeric) = 0.51560247507048556431428317246582 absolute error = 0.51560247507048556431428317246582 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.654 Order of pole = 1.447 x[1] = 0.639 y[1] (analytic) = 0 y[1] (numeric) = 0.51657101046360798087570945493415 absolute error = 0.51657101046360798087570945493415 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.655 Order of pole = 1.448 memory used=457.7MB, alloc=4.4MB, time=46.06 x[1] = 0.64 y[1] (analytic) = 0 y[1] (numeric) = 0.51753957578914885293336482713975 absolute error = 0.51753957578914885293336482713975 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.656 Order of pole = 1.448 x[1] = 0.641 y[1] (analytic) = 0 y[1] (numeric) = 0.51850817101210305431280027522573 absolute error = 0.51850817101210305431280027522573 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.657 Order of pole = 1.449 x[1] = 0.642 y[1] (analytic) = 0 y[1] (numeric) = 0.51947679609751532681677610558209 absolute error = 0.51947679609751532681677610558209 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.659 Order of pole = 1.45 x[1] = 0.643 y[1] (analytic) = 0 y[1] (numeric) = 0.52044545101048019482373465213832 absolute error = 0.52044545101048019482373465213832 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.66 Order of pole = 1.451 x[1] = 0.644 y[1] (analytic) = 0 y[1] (numeric) = 0.52141413571614188005951529800358 absolute error = 0.52141413571614188005951529800358 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=461.5MB, alloc=4.4MB, time=46.46 Complex estimate of poles used Radius of convergence = 2.661 Order of pole = 1.452 x[1] = 0.645 y[1] (analytic) = 0 y[1] (numeric) = 0.52238285017969421654190149258911 absolute error = 0.52238285017969421654190149258911 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.662 Order of pole = 1.452 x[1] = 0.646 y[1] (analytic) = 0 y[1] (numeric) = 0.52335159436638056569759056518994 absolute error = 0.52335159436638056569759056518994 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.664 Order of pole = 1.453 x[1] = 0.647 y[1] (analytic) = 0 y[1] (numeric) = 0.52432036824149373165117825236454 absolute error = 0.52432036824149373165117825236454 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.665 Order of pole = 1.454 x[1] = 0.648 y[1] (analytic) = 0 y[1] (numeric) = 0.52528917177037587668575096934347 absolute error = 0.52528917177037587668575096934347 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.666 Order of pole = 1.455 x[1] = 0.649 y[1] (analytic) = 0 y[1] (numeric) = 0.52625800491841843687467996513394 absolute error = 0.52625800491841843687467996513394 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=465.4MB, alloc=4.4MB, time=46.84 Complex estimate of poles used Radius of convergence = 2.667 Order of pole = 1.455 x[1] = 0.65 y[1] (analytic) = 0 y[1] (numeric) = 0.52722686765106203788421260697822 absolute error = 0.52722686765106203788421260697822 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.669 Order of pole = 1.456 x[1] = 0.651 y[1] (analytic) = 0 y[1] (numeric) = 0.52819575993379641094645714238247 absolute error = 0.52819575993379641094645714238247 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.67 Order of pole = 1.457 x[1] = 0.652 y[1] (analytic) = 0 y[1] (numeric) = 0.52916468173216030900235838607031 absolute error = 0.52916468173216030900235838607031 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.671 Order of pole = 1.458 x[1] = 0.653 y[1] (analytic) = 0 y[1] (numeric) = 0.53013363301174142301426287494493 absolute error = 0.53013363301174142301426287494493 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=469.2MB, alloc=4.4MB, time=47.23 Complex estimate of poles used Radius of convergence = 2.672 Order of pole = 1.459 x[1] = 0.654 y[1] (analytic) = 0 y[1] (numeric) = 0.53110261373817629844767312647598 absolute error = 0.53110261373817629844767312647598 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.674 Order of pole = 1.459 x[1] = 0.655 y[1] (analytic) = 0 y[1] (numeric) = 0.53207162387715025192179172487536 absolute error = 0.53207162387715025192179172487536 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.675 Order of pole = 1.46 x[1] = 0.656 y[1] (analytic) = 0 y[1] (numeric) = 0.53304066339439728802845704500069 absolute error = 0.53304066339439728802845704500069 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.676 Order of pole = 1.461 x[1] = 0.657 y[1] (analytic) = 0 y[1] (numeric) = 0.53400973225570001631907350613879 absolute error = 0.53400973225570001631907350613879 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.677 Order of pole = 1.462 x[1] = 0.658 y[1] (analytic) = 0 y[1] (numeric) = 0.53497883042688956845914032668556 absolute error = 0.53497883042688956845914032668556 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=473.0MB, alloc=4.4MB, time=47.61 Complex estimate of poles used Radius of convergence = 2.678 Order of pole = 1.462 x[1] = 0.659 y[1] (analytic) = 0 y[1] (numeric) = 0.53594795787384551554998382626469 absolute error = 0.53594795787384551554998382626469 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.68 Order of pole = 1.463 x[1] = 0.66 y[1] (analytic) = 0 y[1] (numeric) = 0.5369171145624957856172993940279 absolute error = 0.5369171145624957856172993940279 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.681 Order of pole = 1.464 x[1] = 0.661 y[1] (analytic) = 0 y[1] (numeric) = 0.53788630045881658126611031076463 absolute error = 0.53788630045881658126611031076463 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.682 Order of pole = 1.465 x[1] = 0.662 y[1] (analytic) = 0 y[1] (numeric) = 0.53885551552883229750175167803164 absolute error = 0.53885551552883229750175167803164 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=476.8MB, alloc=4.4MB, time=48.00 Complex estimate of poles used Radius of convergence = 2.683 Order of pole = 1.465 x[1] = 0.663 y[1] (analytic) = 0 y[1] (numeric) = 0.5398247597386154397164887698039 absolute error = 0.5398247597386154397164887698039 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.685 Order of pole = 1.466 x[1] = 0.664 y[1] (analytic) = 0 y[1] (numeric) = 0.54079403305428654184138018115884 absolute error = 0.54079403305428654184138018115884 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.686 Order of pole = 1.467 x[1] = 0.665 y[1] (analytic) = 0 y[1] (numeric) = 0.54176333544201408466299720424846 absolute error = 0.54176333544201408466299720424846 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.687 Order of pole = 1.467 x[1] = 0.666 y[1] (analytic) = 0 y[1] (numeric) = 0.5427326668680144143046119142985 absolute error = 0.5427326668680144143046119142985 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.688 Order of pole = 1.468 x[1] = 0.667 y[1] (analytic) = 0 y[1] (numeric) = 0.54370202729855166087146749761296 absolute error = 0.54370202729855166087146749761296 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=480.6MB, alloc=4.4MB, time=48.39 Complex estimate of poles used Radius of convergence = 2.69 Order of pole = 1.469 x[1] = 0.668 y[1] (analytic) = 0 y[1] (numeric) = 0.54467141669993765725974539956653 absolute error = 0.54467141669993765725974539956653 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.691 Order of pole = 1.47 x[1] = 0.669 y[1] (analytic) = 0 y[1] (numeric) = 0.54564083503853185812884491334844 absolute error = 0.54564083503853185812884491334844 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.692 Order of pole = 1.47 x[1] = 0.67 y[1] (analytic) = 0 y[1] (numeric) = 0.54661028228074125903659186978982 absolute error = 0.54661028228074125903659186978982 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.693 Order of pole = 1.471 x[1] = 0.671 y[1] (analytic) = 0 y[1] (numeric) = 0.5475797583930203157369941249743 absolute error = 0.5475797583930203157369941249743 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=484.4MB, alloc=4.4MB, time=48.78 Complex estimate of poles used Radius of convergence = 2.695 Order of pole = 1.472 x[1] = 0.672 y[1] (analytic) = 0 y[1] (numeric) = 0.54854926334187086364016257550922 absolute error = 0.54854926334187086364016257550922 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.696 Order of pole = 1.472 x[1] = 0.673 y[1] (analytic) = 0 y[1] (numeric) = 0.54951879709384203743401746133349 absolute error = 0.54951879709384203743401746133349 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.697 Order of pole = 1.473 x[1] = 0.674 y[1] (analytic) = 0 y[1] (numeric) = 0.55048835961553019086740074276903 absolute error = 0.55048835961553019086740074276903 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.698 Order of pole = 1.474 x[1] = 0.675 y[1] (analytic) = 0 y[1] (numeric) = 0.55145795087357881669421636219672 absolute error = 0.55145795087357881669421636219672 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.699 Order of pole = 1.475 x[1] = 0.676 y[1] (analytic) = 0 y[1] (numeric) = 0.55242757083467846677822122126567 absolute error = 0.55242757083467846677822122126567 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=488.3MB, alloc=4.4MB, time=49.16 Complex estimate of poles used Radius of convergence = 2.701 Order of pole = 1.475 x[1] = 0.677 y[1] (analytic) = 0 y[1] (numeric) = 0.55339721946556667235809072193775 absolute error = 0.55339721946556667235809072193775 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.702 Order of pole = 1.476 x[1] = 0.678 y[1] (analytic) = 0 y[1] (numeric) = 0.5543668967330278644723837339378 absolute error = 0.5543668967330278644723837339378 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.703 Order of pole = 1.477 x[1] = 0.679 y[1] (analytic) = 0 y[1] (numeric) = 0.55533660260389329454403286233557 absolute error = 0.55533660260389329454403286233557 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.704 Order of pole = 1.477 x[1] = 0.68 y[1] (analytic) = 0 y[1] (numeric) = 0.55630633704504095512398689703793 absolute error = 0.55630633704504095512398689703793 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=492.1MB, alloc=4.4MB, time=49.55 Complex estimate of poles used Radius of convergence = 2.706 Order of pole = 1.478 x[1] = 0.681 y[1] (analytic) = 0 y[1] (numeric) = 0.55727610002339550079363333093081 absolute error = 0.55727610002339550079363333093081 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.707 Order of pole = 1.479 x[1] = 0.682 y[1] (analytic) = 0 y[1] (numeric) = 0.55824589150592816922562983528996 absolute error = 0.55824589150592816922562983528996 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.708 Order of pole = 1.479 x[1] = 0.683 y[1] (analytic) = 0 y[1] (numeric) = 0.5592157114596567024027745798886 absolute error = 0.5592157114596567024027745798886 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.709 Order of pole = 1.48 x[1] = 0.684 y[1] (analytic) = 0 y[1] (numeric) = 0.56018555985164526799454628097918 absolute error = 0.56018555985164526799454628097918 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.71 Order of pole = 1.481 x[1] = 0.685 y[1] (analytic) = 0 y[1] (numeric) = 0.56115543664900438089094585302609 absolute error = 0.56115543664900438089094585302609 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=495.9MB, alloc=4.4MB, time=49.94 Complex estimate of poles used Radius of convergence = 2.712 Order of pole = 1.481 x[1] = 0.686 y[1] (analytic) = 0 y[1] (numeric) = 0.56212534181889082489327252972709 absolute error = 0.56212534181889082489327252972709 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.713 Order of pole = 1.482 x[1] = 0.687 y[1] (analytic) = 0 y[1] (numeric) = 0.56309527532850757456146830649358 absolute error = 0.56309527532850757456146830649358 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.714 Order of pole = 1.483 x[1] = 0.688 y[1] (analytic) = 0 y[1] (numeric) = 0.56406523714510371721766554017424 absolute error = 0.56406523714510371721766554017424 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.715 Order of pole = 1.483 x[1] = 0.689 y[1] (analytic) = 0 y[1] (numeric) = 0.56503522723597437510557352241377 absolute error = 0.56503522723597437510557352241377 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=499.7MB, alloc=4.4MB, time=50.32 Complex estimate of poles used Radius of convergence = 2.717 Order of pole = 1.484 x[1] = 0.69 y[1] (analytic) = 0 y[1] (numeric) = 0.56600524556846062770534082064785 absolute error = 0.56600524556846062770534082064785 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.718 Order of pole = 1.485 x[1] = 0.691 y[1] (analytic) = 0 y[1] (numeric) = 0.56697529210994943420353115535863 absolute error = 0.56697529210994943420353115535863 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.719 Order of pole = 1.485 x[1] = 0.692 y[1] (analytic) = 0 y[1] (numeric) = 0.56794536682787355611785155386119 absolute error = 0.56794536682787355611785155386119 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.72 Order of pole = 1.486 x[1] = 0.693 y[1] (analytic) = 0 y[1] (numeric) = 0.56891546968971148007627248957149 absolute error = 0.56891546968971148007627248957149 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.721 Order of pole = 1.487 x[1] = 0.694 y[1] (analytic) = 0 y[1] (numeric) = 0.56988560066298734075018068143004 absolute error = 0.56988560066298734075018068143004 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=503.5MB, alloc=4.4MB, time=50.71 Complex estimate of poles used Radius of convergence = 2.723 Order of pole = 1.487 x[1] = 0.695 y[1] (analytic) = 0 y[1] (numeric) = 0.57085575971527084394120619093349 absolute error = 0.57085575971527084394120619093349 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.724 Order of pole = 1.488 x[1] = 0.696 y[1] (analytic) = 0 y[1] (numeric) = 0.57182594681417718982136641406837 absolute error = 0.57182594681417718982136641406837 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.725 Order of pole = 1.489 x[1] = 0.697 y[1] (analytic) = 0 y[1] (numeric) = 0.57279616192736699632617052235731 absolute error = 0.57279616192736699632617052235731 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.726 Order of pole = 1.489 x[1] = 0.698 y[1] (analytic) = 0 y[1] (numeric) = 0.57376640502254622270032886122878 absolute error = 0.57376640502254622270032886122878 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.728 Order of pole = 1.49 x[1] = 0.699 y[1] (analytic) = 0 y[1] (numeric) = 0.57473667606746609319571276501624 absolute error = 0.57473667606746609319571276501624 memory used=507.3MB, alloc=4.4MB, time=51.09 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.729 Order of pole = 1.491 x[1] = 0.7 y[1] (analytic) = 0 y[1] (numeric) = 0.57570697502992302092121119609151 absolute error = 0.57570697502992302092121119609151 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.73 Order of pole = 1.491 x[1] = 0.701 y[1] (analytic) = 0 y[1] (numeric) = 0.5766773018777585318441315609507 absolute error = 0.5766773018777585318441315609507 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.731 Order of pole = 1.492 x[1] = 0.702 y[1] (analytic) = 0 y[1] (numeric) = 0.57764765657885918894279299850832 absolute error = 0.57764765657885918894279299850832 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.732 Order of pole = 1.492 x[1] = 0.703 y[1] (analytic) = 0 y[1] (numeric) = 0.57861803910115651650996137542658 absolute error = 0.57861803910115651650996137542658 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=511.1MB, alloc=4.4MB, time=51.47 Complex estimate of poles used Radius of convergence = 2.734 Order of pole = 1.493 x[1] = 0.704 y[1] (analytic) = 0 y[1] (numeric) = 0.57958844941262692460677616002199 absolute error = 0.57958844941262692460677616002199 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.735 Order of pole = 1.494 x[1] = 0.705 y[1] (analytic) = 0 y[1] (numeric) = 0.58055888748129163366682028016012 absolute error = 0.58055888748129163366682028016012 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.736 Order of pole = 1.494 x[1] = 0.706 y[1] (analytic) = 0 y[1] (numeric) = 0.58152935327521659924998500158124 absolute error = 0.58152935327521659924998500158124 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.737 Order of pole = 1.495 x[1] = 0.707 y[1] (analytic) = 0 y[1] (numeric) = 0.58249984676251243694578279130465 absolute error = 0.58249984676251243694578279130465 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.738 Order of pole = 1.496 x[1] = 0.708 y[1] (analytic) = 0 y[1] (numeric) = 0.58347036791133434742576205614699 absolute error = 0.58347036791133434742576205614699 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=515.0MB, alloc=4.4MB, time=51.85 Complex estimate of poles used Radius of convergence = 2.74 Order of pole = 1.496 x[1] = 0.709 y[1] (analytic) = 0 y[1] (numeric) = 0.58444091668988204164467856897 absolute error = 0.58444091668988204164467856897 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.741 Order of pole = 1.497 x[1] = 0.71 y[1] (analytic) = 0 y[1] (numeric) = 0.5854114930663996661900793150548 absolute error = 0.5854114930663996661900793150548 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.742 Order of pole = 1.497 x[1] = 0.711 y[1] (analytic) = 0 y[1] (numeric) = 0.5863820970091757287799554079932 absolute error = 0.5863820970091757287799554079932 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.743 Order of pole = 1.498 x[1] = 0.712 y[1] (analytic) = 0 y[1] (numeric) = 0.58735272848654302390812163870088 absolute error = 0.58735272848654302390812163870088 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=518.8MB, alloc=4.4MB, time=52.24 Complex estimate of poles used Radius of convergence = 2.744 Order of pole = 1.499 x[1] = 0.713 y[1] (analytic) = 0 y[1] (numeric) = 0.5883233874668785586369811326018 absolute error = 0.5883233874668785586369811326018 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.746 Order of pole = 1.499 x[1] = 0.714 y[1] (analytic) = 0 y[1] (numeric) = 0.58929407391860347853733449871819 absolute error = 0.58929407391860347853733449871819 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.747 Order of pole = 1.5 x[1] = 0.715 y[1] (analytic) = 0 y[1] (numeric) = 0.59026478781018299377489376033416 absolute error = 0.59026478781018299377489376033416 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.748 Order of pole = 1.5 x[1] = 0.716 y[1] (analytic) = 0 y[1] (numeric) = 0.59123552911012630534316226009392 absolute error = 0.59123552911012630534316226009392 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.749 Order of pole = 1.501 x[1] = 0.717 y[1] (analytic) = 0 y[1] (numeric) = 0.59220629778698653144234263285621 absolute error = 0.59220629778698653144234263285621 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=522.6MB, alloc=4.4MB, time=52.64 Complex estimate of poles used Radius of convergence = 2.75 Order of pole = 1.502 x[1] = 0.718 y[1] (analytic) = 0 y[1] (numeric) = 0.5931770938093606340039358373647 absolute error = 0.5931770938093606340039358373647 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.752 Order of pole = 1.502 x[1] = 0.719 y[1] (analytic) = 0 y[1] (numeric) = 0.59414791714588934536069513281893 absolute error = 0.59414791714588934536069513281893 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.753 Order of pole = 1.503 x[1] = 0.72 y[1] (analytic) = 0 y[1] (numeric) = 0.5951187677652570950615997787509 absolute error = 0.5951187677652570950615997787509 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.754 Order of pole = 1.503 x[1] = 0.721 y[1] (analytic) = 0 y[1] (numeric) = 0.59608964563619193683151412623815 absolute error = 0.59608964563619193683151412623815 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=526.4MB, alloc=4.4MB, time=53.02 Complex estimate of poles used Radius of convergence = 2.755 Order of pole = 1.504 x[1] = 0.722 y[1] (analytic) = 0 y[1] (numeric) = 0.5970605507274654756751986554241 absolute error = 0.5970605507274654756751986554241 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.756 Order of pole = 1.504 x[1] = 0.723 y[1] (analytic) = 0 y[1] (numeric) = 0.5980314830078927951253403985797 absolute error = 0.5980314830078927951253403985797 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.758 Order of pole = 1.505 x[1] = 0.724 y[1] (analytic) = 0 y[1] (numeric) = 0.59900244244633238463427106953619 absolute error = 0.59900244244633238463427106953619 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.759 Order of pole = 1.506 x[1] = 0.725 y[1] (analytic) = 0 y[1] (numeric) = 0.59997342901168606710904209925612 absolute error = 0.59997342901168606710904209925612 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.76 Order of pole = 1.506 x[1] = 0.726 y[1] (analytic) = 0 y[1] (numeric) = 0.60094444267289892658952665359748 absolute error = 0.60094444267289892658952665359748 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=530.2MB, alloc=4.4MB, time=53.42 Complex estimate of poles used Radius of convergence = 2.761 Order of pole = 1.507 x[1] = 0.727 y[1] (analytic) = 0 y[1] (numeric) = 0.60191548339895923606921958297334 absolute error = 0.60191548339895923606921958297334 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.762 Order of pole = 1.507 x[1] = 0.728 y[1] (analytic) = 0 y[1] (numeric) = 0.60288655115889838545840712462521 absolute error = 0.60288655115889838545840712462521 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.764 Order of pole = 1.508 x[1] = 0.729 y[1] (analytic) = 0 y[1] (numeric) = 0.60385764592179080968937904662164 absolute error = 0.60385764592179080968937904662164 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.765 Order of pole = 1.508 x[1] = 0.73 y[1] (analytic) = 0 y[1] (numeric) = 0.60482876765675391696335678847331 absolute error = 0.60482876765675391696335678847331 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=534.0MB, alloc=4.4MB, time=53.81 Complex estimate of poles used Radius of convergence = 2.766 Order of pole = 1.509 x[1] = 0.731 y[1] (analytic) = 0 y[1] (numeric) = 0.60579991633294801713881201643067 absolute error = 0.60579991633294801713881201643067 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.767 Order of pole = 1.51 x[1] = 0.732 y[1] (analytic) = 0 y[1] (numeric) = 0.60677109191957625026085087210905 absolute error = 0.60677109191957625026085087210905 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.768 Order of pole = 1.51 x[1] = 0.733 y[1] (analytic) = 0 y[1] (numeric) = 0.60774229438588451523134005107773 absolute error = 0.60774229438588451523134005107773 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.77 Order of pole = 1.511 x[1] = 0.734 y[1] (analytic) = 0 y[1] (numeric) = 0.60871352370116139861945170346289 absolute error = 0.60871352370116139861945170346289 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.771 Order of pole = 1.511 x[1] = 0.735 y[1] (analytic) = 0 y[1] (numeric) = 0.6096847798347381036123050014576 absolute error = 0.6096847798347381036123050014576 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=537.8MB, alloc=4.4MB, time=54.20 Complex estimate of poles used Radius of convergence = 2.772 Order of pole = 1.512 x[1] = 0.736 y[1] (analytic) = 0 y[1] (numeric) = 0.61065606275598837910538306891467 absolute error = 0.61065606275598837910538306891467 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.773 Order of pole = 1.512 x[1] = 0.737 y[1] (analytic) = 0 y[1] (numeric) = 0.6116273724343284489324048159282 absolute error = 0.6116273724343284489324048159282 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.774 Order of pole = 1.513 x[1] = 0.738 y[1] (analytic) = 0 y[1] (numeric) = 0.61259870883921694123433206649615 absolute error = 0.61259870883921694123433206649615 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.776 Order of pole = 1.513 x[1] = 0.739 y[1] (analytic) = 0 y[1] (numeric) = 0.61357007194015481796719321000731 absolute error = 0.61357007194015481796719321000731 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=541.7MB, alloc=4.4MB, time=54.60 Complex estimate of poles used Radius of convergence = 2.777 Order of pole = 1.514 x[1] = 0.74 y[1] (analytic) = 0 y[1] (numeric) = 0.6145414617066853045484054474209 absolute error = 0.6145414617066853045484054474209 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.778 Order of pole = 1.514 x[1] = 0.741 y[1] (analytic) = 0 y[1] (numeric) = 0.61551287810839381964127854061347 absolute error = 0.61551287810839381964127854061347 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.779 Order of pole = 1.515 x[1] = 0.742 y[1] (analytic) = 0 y[1] (numeric) = 0.61648432111490790507738380846495 absolute error = 0.61648432111490790507738380846495 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.78 Order of pole = 1.516 x[1] = 0.743 y[1] (analytic) = 0 y[1] (numeric) = 0.61745579069589715591647294585157 absolute error = 0.61745579069589715591647294585157 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.782 Order of pole = 1.516 x[1] = 0.744 y[1] (analytic) = 0 y[1] (numeric) = 0.61842728682107315064363207181669 absolute error = 0.61842728682107315064363207181669 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=545.5MB, alloc=4.4MB, time=54.99 Complex estimate of poles used Radius of convergence = 2.783 Order of pole = 1.517 x[1] = 0.745 y[1] (analytic) = 0 y[1] (numeric) = 0.61939880946018938150335724080969 absolute error = 0.61939880946018938150335724080969 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.784 Order of pole = 1.517 x[1] = 0.746 y[1] (analytic) = 0 y[1] (numeric) = 0.62037035858304118497023847602616 absolute error = 0.62037035858304118497023847602616 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.785 Order of pole = 1.518 x[1] = 0.747 y[1] (analytic) = 0 y[1] (numeric) = 0.62134193415946567235594020655831 absolute error = 0.62134193415946567235594020655831 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.786 Order of pole = 1.518 x[1] = 0.748 y[1] (analytic) = 0 y[1] (numeric) = 0.6223135361593416605521668102809 absolute error = 0.6223135361593416605521668102809 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.788 Order of pole = 1.519 memory used=549.3MB, alloc=4.4MB, time=55.38 x[1] = 0.749 y[1] (analytic) = 0 y[1] (numeric) = 0.6232851645525896029093027821634 absolute error = 0.6232851645525896029093027821634 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.789 Order of pole = 1.519 x[1] = 0.75 y[1] (analytic) = 0 y[1] (numeric) = 0.62425681930917152025041786302182 absolute error = 0.62425681930917152025041786302182 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.79 Order of pole = 1.52 x[1] = 0.751 y[1] (analytic) = 0 y[1] (numeric) = 0.62522850039909093202032827661185 absolute error = 0.62522850039909093202032827661185 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.791 Order of pole = 1.52 x[1] = 0.752 y[1] (analytic) = 0 y[1] (numeric) = 0.62620020779239278756940603342683 absolute error = 0.62620020779239278756940603342683 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.792 Order of pole = 1.521 x[1] = 0.753 y[1] (analytic) = 0 y[1] (numeric) = 0.62717194145916339757182906760788 absolute error = 0.62717194145916339757182906760788 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=553.1MB, alloc=4.4MB, time=55.76 Complex estimate of poles used Radius of convergence = 2.793 Order of pole = 1.521 x[1] = 0.754 y[1] (analytic) = 0 y[1] (numeric) = 0.62814370136953036557796577900703 absolute error = 0.62814370136953036557796577900703 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.795 Order of pole = 1.522 x[1] = 0.755 y[1] (analytic) = 0 y[1] (numeric) = 0.62911548749366251970058835567617 absolute error = 0.62911548749366251970058835567617 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.796 Order of pole = 1.522 x[1] = 0.756 y[1] (analytic) = 0 y[1] (numeric) = 0.63008729980176984443461005289219 absolute error = 0.63008729980176984443461005289219 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.797 Order of pole = 1.523 x[1] = 0.757 y[1] (analytic) = 0 y[1] (numeric) = 0.63105913826410341261004240328096 absolute error = 0.63105913826410341261004240328096 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.798 Order of pole = 1.523 x[1] = 0.758 y[1] (analytic) = 0 y[1] (numeric) = 0.63203100285095531747786912867666 absolute error = 0.63203100285095531747786912867666 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=556.9MB, alloc=4.4MB, time=56.16 Complex estimate of poles used Radius of convergence = 2.799 Order of pole = 1.524 x[1] = 0.759 y[1] (analytic) = 0 y[1] (numeric) = 0.63300289353265860492853431805742 absolute error = 0.63300289353265860492853431805742 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.801 Order of pole = 1.524 x[1] = 0.76 y[1] (analytic) = 0 y[1] (numeric) = 0.63397481027958720584274322724032 absolute error = 0.63397481027958720584274322724032 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.802 Order of pole = 1.525 x[1] = 0.761 y[1] (analytic) = 0 y[1] (numeric) = 0.63494675306215586857427484500729 absolute error = 0.63494675306215586857427484500729 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.803 Order of pole = 1.525 x[1] = 0.762 y[1] (analytic) = 0 y[1] (numeric) = 0.63591872185082009156450615697529 absolute error = 0.63591872185082009156450615697529 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=560.7MB, alloc=4.4MB, time=56.55 Complex estimate of poles used Radius of convergence = 2.804 Order of pole = 1.526 x[1] = 0.763 y[1] (analytic) = 0 y[1] (numeric) = 0.63689071661607605608834882282816 absolute error = 0.63689071661607605608834882282816 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.805 Order of pole = 1.526 x[1] = 0.764 y[1] (analytic) = 0 y[1] (numeric) = 0.63786273732846055913129976450078 absolute error = 0.63786273732846055913129976450078 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.806 Order of pole = 1.527 x[1] = 0.765 y[1] (analytic) = 0 y[1] (numeric) = 0.6388347839585509463973079425568 absolute error = 0.6388347839585509463973079425568 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.808 Order of pole = 1.527 x[1] = 0.766 y[1] (analytic) = 0 y[1] (numeric) = 0.63980685647696504544716037533697 absolute error = 0.63980685647696504544716037533697 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.809 Order of pole = 1.528 x[1] = 0.767 y[1] (analytic) = 0 y[1] (numeric) = 0.64077895485436109896709123048357 absolute error = 0.64077895485436109896709123048357 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=564.5MB, alloc=4.4MB, time=56.93 Complex estimate of poles used Radius of convergence = 2.81 Order of pole = 1.528 x[1] = 0.768 y[1] (analytic) = 0 y[1] (numeric) = 0.64175107906143769816731859117568 absolute error = 0.64175107906143769816731859117568 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.811 Order of pole = 1.529 x[1] = 0.769 y[1] (analytic) = 0 y[1] (numeric) = 0.64272322906893371631021426984702 absolute error = 0.64272322906893371631021426984702 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.812 Order of pole = 1.529 x[1] = 0.77 y[1] (analytic) = 0 y[1] (numeric) = 0.64369540484762824236781281031158 absolute error = 0.64369540484762824236781281031158 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.814 Order of pole = 1.53 x[1] = 0.771 y[1] (analytic) = 0 y[1] (numeric) = 0.64466760636834051480836658509846 absolute error = 0.64466760636834051480836658509846 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=568.4MB, alloc=4.4MB, time=57.32 Complex estimate of poles used Radius of convergence = 2.815 Order of pole = 1.53 x[1] = 0.772 y[1] (analytic) = 0 y[1] (numeric) = 0.64563983360192985551165465840539 absolute error = 0.64563983360192985551165465840539 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.816 Order of pole = 1.531 x[1] = 0.773 y[1] (analytic) = 0 y[1] (numeric) = 0.6466120865192956038127538464264 absolute error = 0.6466120865192956038127538464264 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.817 Order of pole = 1.531 x[1] = 0.774 y[1] (analytic) = 0 y[1] (numeric) = 0.64758436509137705067398116590182 absolute error = 0.64758436509137705067398116590182 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.818 Order of pole = 1.532 x[1] = 0.775 y[1] (analytic) = 0 y[1] (numeric) = 0.6485566692891533729847176185847 absolute error = 0.6485566692891533729847176185847 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.819 Order of pole = 1.532 x[1] = 0.776 y[1] (analytic) = 0 y[1] (numeric) = 0.64952899908364356798882401392533 absolute error = 0.64952899908364356798882401392533 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=572.2MB, alloc=4.4MB, time=57.70 Complex estimate of poles used Radius of convergence = 2.821 Order of pole = 1.533 x[1] = 0.777 y[1] (analytic) = 0 y[1] (numeric) = 0.65050135444590638783936028465116 absolute error = 0.65050135444590638783936028465116 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.822 Order of pole = 1.533 x[1] = 0.778 y[1] (analytic) = 0 y[1] (numeric) = 0.65147373534704027428032050007163 absolute error = 0.65147373534704027428032050007163 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.823 Order of pole = 1.533 x[1] = 0.779 y[1] (analytic) = 0 y[1] (numeric) = 0.65244614175818329345509652987265 absolute error = 0.65244614175818329345509652987265 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.824 Order of pole = 1.534 x[1] = 0.78 y[1] (analytic) = 0 y[1] (numeric) = 0.65341857365051307084138405689175 absolute error = 0.65341857365051307084138405689175 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=576.0MB, alloc=4.4MB, time=58.10 Complex estimate of poles used Radius of convergence = 2.825 Order of pole = 1.534 x[1] = 0.781 y[1] (analytic) = 0 y[1] (numeric) = 0.65439103099524672631224538088918 absolute error = 0.65439103099524672631224538088918 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.826 Order of pole = 1.535 x[1] = 0.782 y[1] (analytic) = 0 y[1] (numeric) = 0.65536351376364080932304419666019 absolute error = 0.65536351376364080932304419666019 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.828 Order of pole = 1.535 x[1] = 0.783 y[1] (analytic) = 0 y[1] (numeric) = 0.65633602192699123422396826897604 absolute error = 0.65633602192699123422396826897604 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.829 Order of pole = 1.536 x[1] = 0.784 y[1] (analytic) = 0 y[1] (numeric) = 0.65730855545663321569785666380418 absolute error = 0.65730855545663321569785666380418 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.83 Order of pole = 1.536 x[1] = 0.785 y[1] (analytic) = 0 y[1] (numeric) = 0.65828111432394120432304893004749 absolute error = 0.65828111432394120432304893004749 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=579.8MB, alloc=4.4MB, time=58.49 Complex estimate of poles used Radius of convergence = 2.831 Order of pole = 1.537 x[1] = 0.786 y[1] (analytic) = 0 y[1] (numeric) = 0.65925369850032882226097435866709 absolute error = 0.65925369850032882226097435866709 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.832 Order of pole = 1.537 x[1] = 0.787 y[1] (analytic) = 0 y[1] (numeric) = 0.66022630795724879906820017651886 absolute error = 0.66022630795724879906820017651886 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.834 Order of pole = 1.538 x[1] = 0.788 y[1] (analytic) = 0 y[1] (numeric) = 0.66119894266619290763265826054868 absolute error = 0.66119894266619290763265826054868 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.835 Order of pole = 1.538 x[1] = 0.789 y[1] (analytic) = 0 y[1] (numeric) = 0.66217160259869190023377068416198 absolute error = 0.66217160259869190023377068416198 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=583.6MB, alloc=4.4MB, time=58.88 Complex estimate of poles used Radius of convergence = 2.836 Order of pole = 1.538 x[1] = 0.79 y[1] (analytic) = 0 y[1] (numeric) = 0.66314428772631544472619513161676 absolute error = 0.66314428772631544472619513161676 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.837 Order of pole = 1.539 x[1] = 0.791 y[1] (analytic) = 0 y[1] (numeric) = 0.66411699802067206084691193819307 absolute error = 0.66411699802067206084691193819307 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.838 Order of pole = 1.539 x[1] = 0.792 y[1] (analytic) = 0 y[1] (numeric) = 0.66508973345340905664537523367278 absolute error = 0.66508973345340905664537523367278 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.839 Order of pole = 1.54 x[1] = 0.793 y[1] (analytic) = 0 y[1] (numeric) = 0.66606249399621246503645138432848 absolute error = 0.66606249399621246503645138432848 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.841 Order of pole = 1.54 x[1] = 0.794 y[1] (analytic) = 0 y[1] (numeric) = 0.66703527962080698047586864417668 absolute error = 0.66703527962080698047586864417668 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=587.4MB, alloc=4.4MB, time=59.27 Complex estimate of poles used Radius of convergence = 2.842 Order of pole = 1.541 x[1] = 0.795 y[1] (analytic) = 0 y[1] (numeric) = 0.66800809029895589575790263970469 absolute error = 0.66800809029895589575790263970469 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.843 Order of pole = 1.541 x[1] = 0.796 y[1] (analytic) = 0 y[1] (numeric) = 0.66898092600246103893502302364015 absolute error = 0.66898092600246103893502302364015 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.844 Order of pole = 1.541 x[1] = 0.797 y[1] (analytic) = 0 y[1] (numeric) = 0.66995378670316271035922734260349 absolute error = 0.66995378670316271035922734260349 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.845 Order of pole = 1.542 x[1] = 0.798 y[1] (analytic) = 0 y[1] (numeric) = 0.67092667237293961984478887067406 absolute error = 0.67092667237293961984478887067406 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.846 Order of pole = 1.542 memory used=591.3MB, alloc=4.4MB, time=59.63 x[1] = 0.799 y[1] (analytic) = 0 y[1] (numeric) = 0.67189958298370882395214586601668 absolute error = 0.67189958298370882395214586601668 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.848 Order of pole = 1.543 x[1] = 0.8 y[1] (analytic) = 0 y[1] (numeric) = 0.67287251850742566339266041076423 absolute error = 0.67287251850742566339266041076423 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.849 Order of pole = 1.543 x[1] = 0.801 y[1] (analytic) = 0 y[1] (numeric) = 0.67384547891608370055397569533987 absolute error = 0.67384547891608370055397569533987 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.85 Order of pole = 1.544 x[1] = 0.802 y[1] (analytic) = 0 y[1] (numeric) = 0.67481846418171465714570130733704 absolute error = 0.67481846418171465714570130733704 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.851 Order of pole = 1.544 x[1] = 0.803 y[1] (analytic) = 0 y[1] (numeric) = 0.6757914742763883519651567819627 absolute error = 0.6757914742763883519651567819627 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=595.1MB, alloc=4.4MB, time=60.00 Complex estimate of poles used Radius of convergence = 2.852 Order of pole = 1.544 x[1] = 0.804 y[1] (analytic) = 0 y[1] (numeric) = 0.67676450917221263878290436589639 absolute error = 0.67676450917221263878290436589639 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.853 Order of pole = 1.545 x[1] = 0.805 y[1] (analytic) = 0 y[1] (numeric) = 0.67773756884133334434780263923125 absolute error = 0.67773756884133334434780263923125 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.855 Order of pole = 1.545 x[1] = 0.806 y[1] (analytic) = 0 y[1] (numeric) = 0.67871065325593420651131333094995 absolute error = 0.67871065325593420651131333094995 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.856 Order of pole = 1.546 x[1] = 0.807 y[1] (analytic) = 0 y[1] (numeric) = 0.67968376238823681247079435215497 absolute error = 0.67968376238823681247079435215497 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.857 Order of pole = 1.546 x[1] = 0.808 y[1] (analytic) = 0 y[1] (numeric) = 0.68065689621050053713151275802575 absolute error = 0.68065689621050053713151275802575 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=598.9MB, alloc=4.4MB, time=60.38 Complex estimate of poles used Radius of convergence = 2.858 Order of pole = 1.547 x[1] = 0.809 y[1] (analytic) = 0 y[1] (numeric) = 0.68163005469502248158711203422123 absolute error = 0.68163005469502248158711203422123 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.859 Order of pole = 1.547 x[1] = 0.81 y[1] (analytic) = 0 y[1] (numeric) = 0.68260323781413741171826878619234 absolute error = 0.68260323781413741171826878619234 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.86 Order of pole = 1.547 x[1] = 0.811 y[1] (analytic) = 0 y[1] (numeric) = 0.68357644554021769690927459062075 absolute error = 0.68357644554021769690927459062075 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.862 Order of pole = 1.548 x[1] = 0.812 y[1] (analytic) = 0 y[1] (numeric) = 0.68454967784567324888227944696538 absolute error = 0.68454967784567324888227944696538 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=602.7MB, alloc=4.4MB, time=60.75 Complex estimate of poles used Radius of convergence = 2.863 Order of pole = 1.548 x[1] = 0.813 y[1] (analytic) = 0 y[1] (numeric) = 0.68552293470295146064893394388212 absolute error = 0.68552293470295146064893394388212 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.864 Order of pole = 1.549 x[1] = 0.814 y[1] (analytic) = 0 y[1] (numeric) = 0.68649621608453714557916793009241 absolute error = 0.68649621608453714557916793009241 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.865 Order of pole = 1.549 x[1] = 0.815 y[1] (analytic) = 0 y[1] (numeric) = 0.68746952196295247658684415211863 absolute error = 0.68746952196295247658684415211863 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.866 Order of pole = 1.549 x[1] = 0.816 y[1] (analytic) = 0 y[1] (numeric) = 0.68844285231075692543202599218536 absolute error = 0.68844285231075692543202599218536 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.867 Order of pole = 1.55 x[1] = 0.817 y[1] (analytic) = 0 y[1] (numeric) = 0.68941620710054720213959910851184 absolute error = 0.68941620710054720213959910851184 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=606.5MB, alloc=4.4MB, time=61.12 Complex estimate of poles used Radius of convergence = 2.868 Order of pole = 1.55 x[1] = 0.818 y[1] (analytic) = 0 y[1] (numeric) = 0.69038958630495719453398744719897 absolute error = 0.69038958630495719453398744719897 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.87 Order of pole = 1.551 x[1] = 0.819 y[1] (analytic) = 0 y[1] (numeric) = 0.69136298989665790788970475995005 absolute error = 0.69136298989665790788970475995005 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.871 Order of pole = 1.551 x[1] = 0.82 y[1] (analytic) = 0 y[1] (numeric) = 0.69233641784835740469748342496456 absolute error = 0.69233641784835740469748342496456 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.872 Order of pole = 1.551 x[1] = 0.821 y[1] (analytic) = 0 y[1] (numeric) = 0.69330987013280074454572302951542 absolute error = 0.69330987013280074454572302951542 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=610.3MB, alloc=4.4MB, time=61.49 Complex estimate of poles used Radius of convergence = 2.873 Order of pole = 1.552 x[1] = 0.822 y[1] (analytic) = 0 y[1] (numeric) = 0.69428334672276992411700183196794 absolute error = 0.69428334672276992411700183196794 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.874 Order of pole = 1.552 x[1] = 0.823 y[1] (analytic) = 0 y[1] (numeric) = 0.6952568475910838172993948783298 absolute error = 0.6952568475910838172993948783298 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.875 Order of pole = 1.553 x[1] = 0.824 y[1] (analytic) = 0 y[1] (numeric) = 0.69623037271059811541234320384232 absolute error = 0.69623037271059811541234320384232 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.877 Order of pole = 1.553 x[1] = 0.825 y[1] (analytic) = 0 y[1] (numeric) = 0.69720392205420526754681920363965 absolute error = 0.69720392205420526754681920363965 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.878 Order of pole = 1.553 x[1] = 0.826 y[1] (analytic) = 0 y[1] (numeric) = 0.6981774955948344210195339081211 absolute error = 0.6981774955948344210195339081211 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=614.1MB, alloc=4.4MB, time=61.87 Complex estimate of poles used Radius of convergence = 2.879 Order of pole = 1.554 x[1] = 0.827 y[1] (analytic) = 0 y[1] (numeric) = 0.69915109330545136194093254840867 absolute error = 0.69915109330545136194093254840867 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.88 Order of pole = 1.554 x[1] = 0.828 y[1] (analytic) = 0 y[1] (numeric) = 0.70012471515905845589672544510281 absolute error = 0.70012471515905845589672544510281 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.881 Order of pole = 1.554 x[1] = 0.829 y[1] (analytic) = 0 y[1] (numeric) = 0.70109836112869458874270189951134 absolute error = 0.70109836112869458874270189951134 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.882 Order of pole = 1.555 x[1] = 0.83 y[1] (analytic) = 0 y[1] (numeric) = 0.70207203118743510751257541061469 absolute error = 0.70207203118743510751257541061469 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=618.0MB, alloc=4.4MB, time=62.25 Complex estimate of poles used Radius of convergence = 2.884 Order of pole = 1.555 x[1] = 0.831 y[1] (analytic) = 0 y[1] (numeric) = 0.70304572530839176143860918325179 absolute error = 0.70304572530839176143860918325179 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.885 Order of pole = 1.556 x[1] = 0.832 y[1] (analytic) = 0 y[1] (numeric) = 0.70401944346471264308477153337105 absolute error = 0.70401944346471264308477153337105 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.886 Order of pole = 1.556 x[1] = 0.833 y[1] (analytic) = 0 y[1] (numeric) = 0.70499318562958212959217143469567 absolute error = 0.70499318562958212959217143469567 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.887 Order of pole = 1.556 x[1] = 0.834 y[1] (analytic) = 0 y[1] (numeric) = 0.70596695177622082403652508780868 absolute error = 0.70596695177622082403652508780868 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.888 Order of pole = 1.557 x[1] = 0.835 y[1] (analytic) = 0 y[1] (numeric) = 0.70694074187788549689740502747583 absolute error = 0.70694074187788549689740502747583 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=621.8MB, alloc=4.4MB, time=62.64 Complex estimate of poles used Radius of convergence = 2.889 Order of pole = 1.557 x[1] = 0.836 y[1] (analytic) = 0 y[1] (numeric) = 0.70791455590786902763902391700054 absolute error = 0.70791455590786902763902391700054 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.89 Order of pole = 1.557 x[1] = 0.837 y[1] (analytic) = 0 y[1] (numeric) = 0.70888839383950034640230580954996 absolute error = 0.70888839383950034640230580954996 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.892 Order of pole = 1.558 x[1] = 0.838 y[1] (analytic) = 0 y[1] (numeric) = 0.70986225564614437580799828571107 absolute error = 0.70986225564614437580799828571107 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.893 Order of pole = 1.558 x[1] = 0.839 y[1] (analytic) = 0 y[1] (numeric) = 0.71083614130120197287057950403645 absolute error = 0.71083614130120197287057950403645 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=625.6MB, alloc=4.4MB, time=63.01 Complex estimate of poles used Radius of convergence = 2.894 Order of pole = 1.559 x[1] = 0.84 y[1] (analytic) = 0 y[1] (numeric) = 0.71181005077810987102271482702684 absolute error = 0.71181005077810987102271482702684 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.895 Order of pole = 1.559 x[1] = 0.841 y[1] (analytic) = 0 y[1] (numeric) = 0.71278398405034062225001830887782 absolute error = 0.71278398405034062225001830887782 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.896 Order of pole = 1.559 x[1] = 0.842 y[1] (analytic) = 0 y[1] (numeric) = 0.7137579410914025393358749533965 absolute error = 0.7137579410914025393358749533965 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.897 Order of pole = 1.56 x[1] = 0.843 y[1] (analytic) = 0 y[1] (numeric) = 0.71473192187483963821608027077739 absolute error = 0.71473192187483963821608027077739 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.899 Order of pole = 1.56 x[1] = 0.844 y[1] (analytic) = 0 y[1] (numeric) = 0.71570592637423158044305428041978 absolute error = 0.71570592637423158044305428041978 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=629.4MB, alloc=4.4MB, time=63.40 Complex estimate of poles used Radius of convergence = 2.9 Order of pole = 1.56 x[1] = 0.845 y[1] (analytic) = 0 y[1] (numeric) = 0.7166799545631936157593877236783 absolute error = 0.7166799545631936157593877236783 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.901 Order of pole = 1.561 x[1] = 0.846 y[1] (analytic) = 0 y[1] (numeric) = 0.71765400641537652478047886536956 absolute error = 0.71765400641537652478047886536956 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.902 Order of pole = 1.561 x[1] = 0.847 y[1] (analytic) = 0 y[1] (numeric) = 0.71862808190446656178601987601631 absolute error = 0.71862808190446656178601987601631 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.903 Order of pole = 1.561 x[1] = 0.848 y[1] (analytic) = 0 y[1] (numeric) = 0.7196021810041853976200923982027 absolute error = 0.7196021810041853976200923982027 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.904 Order of pole = 1.562 memory used=633.2MB, alloc=4.4MB, time=63.78 x[1] = 0.849 y[1] (analytic) = 0 y[1] (numeric) = 0.72057630368829006269963251004525 absolute error = 0.72057630368829006269963251004525 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.905 Order of pole = 1.562 x[1] = 0.85 y[1] (analytic) = 0 y[1] (numeric) = 0.72155044993057289013102590665985 absolute error = 0.72155044993057289013102590665985 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.907 Order of pole = 1.562 x[1] = 0.851 y[1] (analytic) = 0 y[1] (numeric) = 0.7225246197048614589345947266314 absolute error = 0.7225246197048614589345947266314 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.908 Order of pole = 1.563 x[1] = 0.852 y[1] (analytic) = 0 y[1] (numeric) = 0.72349881298501853737673805487497 absolute error = 0.72349881298501853737673805487497 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.909 Order of pole = 1.563 x[1] = 0.853 y[1] (analytic) = 0 y[1] (numeric) = 0.72447302974494202640948873592137 absolute error = 0.72447302974494202640948873592137 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=637.0MB, alloc=4.4MB, time=64.16 Complex estimate of poles used Radius of convergence = 2.91 Order of pole = 1.563 x[1] = 0.854 y[1] (analytic) = 0 y[1] (numeric) = 0.72544726995856490321724973257134 absolute error = 0.72544726995856490321724973257134 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.911 Order of pole = 1.564 x[1] = 0.855 y[1] (analytic) = 0 y[1] (numeric) = 0.7264215335998551648704738640469 absolute error = 0.7264215335998551648704738640469 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.912 Order of pole = 1.564 x[1] = 0.856 y[1] (analytic) = 0 y[1] (numeric) = 0.72739582064281577208605135523127 absolute error = 0.72739582064281577208605135523127 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.913 Order of pole = 1.565 x[1] = 0.857 y[1] (analytic) = 0 y[1] (numeric) = 0.72837013106148459309417022433549 absolute error = 0.72837013106148459309417022433549 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.915 Order of pole = 1.565 x[1] = 0.858 y[1] (analytic) = 0 y[1] (numeric) = 0.72934446482993434761141513036666 absolute error = 0.72934446482993434761141513036666 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=640.8MB, alloc=4.4MB, time=64.53 Complex estimate of poles used Radius of convergence = 2.916 Order of pole = 1.565 x[1] = 0.859 y[1] (analytic) = 0 y[1] (numeric) = 0.73031882192227255091987089410409 absolute error = 0.73031882192227255091987089410409 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.917 Order of pole = 1.566 x[1] = 0.86 y[1] (analytic) = 0 y[1] (numeric) = 0.7312932023126414580519974969222 absolute error = 0.7312932023126414580519974969222 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.918 Order of pole = 1.566 x[1] = 0.861 y[1] (analytic) = 0 y[1] (numeric) = 0.73226760597521800808104395073727 absolute error = 0.73226760597521800808104395073727 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.919 Order of pole = 1.566 x[1] = 0.862 y[1] (analytic) = 0 y[1] (numeric) = 0.73324203288421376851676901960524 absolute error = 0.73324203288421376851676901960524 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=644.7MB, alloc=4.4MB, time=64.91 Complex estimate of poles used Radius of convergence = 2.92 Order of pole = 1.567 x[1] = 0.863 y[1] (analytic) = 0 y[1] (numeric) = 0.73421648301387487980623735906473 absolute error = 0.73421648301387487980623735906473 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.922 Order of pole = 1.567 x[1] = 0.864 y[1] (analytic) = 0 y[1] (numeric) = 0.73519095633848199993946022320893 absolute error = 0.73519095633848199993946022320893 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.923 Order of pole = 1.567 x[1] = 0.865 y[1] (analytic) = 0 y[1] (numeric) = 0.7361654528323502491596504716874 absolute error = 0.7361654528323502491596504716874 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.924 Order of pole = 1.568 x[1] = 0.866 y[1] (analytic) = 0 y[1] (numeric) = 0.73713997246982915477786218938922 absolute error = 0.73713997246982915477786218938922 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.925 Order of pole = 1.568 x[1] = 0.867 y[1] (analytic) = 0 y[1] (numeric) = 0.73811451522530259609178581044828 absolute error = 0.73811451522530259609178581044828 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=648.5MB, alloc=4.4MB, time=65.30 Complex estimate of poles used Radius of convergence = 2.926 Order of pole = 1.568 x[1] = 0.868 y[1] (analytic) = 0 y[1] (numeric) = 0.73908908107318874940847021544428 absolute error = 0.73908908107318874940847021544428 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.927 Order of pole = 1.569 x[1] = 0.869 y[1] (analytic) = 0 y[1] (numeric) = 0.74006366998794003317074384625569 absolute error = 0.74006366998794003317074384625569 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.928 Order of pole = 1.569 x[1] = 0.87 y[1] (analytic) = 0 y[1] (numeric) = 0.74103828194404305318710745695751 absolute error = 0.74103828194404305318710745695751 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.93 Order of pole = 1.569 x[1] = 0.871 y[1] (analytic) = 0 y[1] (numeric) = 0.74201291691601854796487169145362 absolute error = 0.74201291691601854796487169145362 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=652.3MB, alloc=4.4MB, time=65.67 Complex estimate of poles used Radius of convergence = 2.931 Order of pole = 1.569 x[1] = 0.872 y[1] (analytic) = 0 y[1] (numeric) = 0.74298757487842133414631324919524 absolute error = 0.74298757487842133414631324919524 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.932 Order of pole = 1.57 x[1] = 0.873 y[1] (analytic) = 0 y[1] (numeric) = 0.74396225580584025204762396936947 absolute error = 0.74396225580584025204762396936947 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.933 Order of pole = 1.57 x[1] = 0.874 y[1] (analytic) = 0 y[1] (numeric) = 0.74493695967289811130042773134942 absolute error = 0.74493695967289811130042773134942 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.934 Order of pole = 1.57 x[1] = 0.875 y[1] (analytic) = 0 y[1] (numeric) = 0.74591168645425163659564063498637 absolute error = 0.74591168645425163659564063498637 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.935 Order of pole = 1.571 x[1] = 0.876 y[1] (analytic) = 0 y[1] (numeric) = 0.74688643612459141352945048849889 absolute error = 0.74688643612459141352945048849889 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=656.1MB, alloc=4.4MB, time=66.05 Complex estimate of poles used Radius of convergence = 2.936 Order of pole = 1.571 x[1] = 0.877 y[1] (analytic) = 0 y[1] (numeric) = 0.74786120865864183455119219427975 absolute error = 0.74786120865864183455119219427975 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.938 Order of pole = 1.571 x[1] = 0.878 y[1] (analytic) = 0 y[1] (numeric) = 0.74883600403116104501289618390362 absolute error = 0.74883600403116104501289618390362 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.939 Order of pole = 1.572 x[1] = 0.879 y[1] (analytic) = 0 y[1] (numeric) = 0.74981082221694088932028761298212 absolute error = 0.74981082221694088932028761298212 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.94 Order of pole = 1.572 x[1] = 0.88 y[1] (analytic) = 0 y[1] (numeric) = 0.75078566319080685718501458428313 absolute error = 0.75078566319080685718501458428313 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=659.9MB, alloc=4.4MB, time=66.42 Complex estimate of poles used Radius of convergence = 2.941 Order of pole = 1.572 x[1] = 0.881 y[1] (analytic) = 0 y[1] (numeric) = 0.75176052692761802997788422371307 absolute error = 0.75176052692761802997788422371307 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.942 Order of pole = 1.573 x[1] = 0.882 y[1] (analytic) = 0 y[1] (numeric) = 0.75273541340226702718288598835968 absolute error = 0.75273541340226702718288598835968 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.943 Order of pole = 1.573 x[1] = 0.883 y[1] (analytic) = 0 y[1] (numeric) = 0.75371032258967995295178213881317 absolute error = 0.75371032258967995295178213881317 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.944 Order of pole = 1.573 x[1] = 0.884 y[1] (analytic) = 0 y[1] (numeric) = 0.75468525446481634275904585943129 absolute error = 0.75468525446481634275904585943129 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.946 Order of pole = 1.574 x[1] = 0.885 y[1] (analytic) = 0 y[1] (numeric) = 0.75566020900266911015692806009295 absolute error = 0.75566020900266911015692806009295 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=663.7MB, alloc=4.4MB, time=66.81 Complex estimate of poles used Radius of convergence = 2.947 Order of pole = 1.574 x[1] = 0.886 y[1] (analytic) = 0 y[1] (numeric) = 0.75663518617826449363043444130138 absolute error = 0.75663518617826449363043444130138 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.948 Order of pole = 1.574 x[1] = 0.887 y[1] (analytic) = 0 y[1] (numeric) = 0.75761018596666200355199495125601 absolute error = 0.75761018596666200355199495125601 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.949 Order of pole = 1.574 x[1] = 0.888 y[1] (analytic) = 0 y[1] (numeric) = 0.75858520834295436923560830871729 absolute error = 0.75858520834295436923560830871729 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.95 Order of pole = 1.575 x[1] = 0.889 y[1] (analytic) = 0 y[1] (numeric) = 0.75956025328226748609024480914552 absolute error = 0.75956025328226748609024480914552 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=667.5MB, alloc=4.4MB, time=67.20 Complex estimate of poles used Radius of convergence = 2.951 Order of pole = 1.575 x[1] = 0.89 y[1] (analytic) = 0 y[1] (numeric) = 0.76053532075976036287229117370851 absolute error = 0.76053532075976036287229117370851 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.952 Order of pole = 1.575 x[1] = 0.891 y[1] (analytic) = 0 y[1] (numeric) = 0.76151041075062506903682174132831 absolute error = 0.76151041075062506903682174132831 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.953 Order of pole = 1.576 x[1] = 0.892 y[1] (analytic) = 0 y[1] (numeric) = 0.76248552323008668218748084297922 absolute error = 0.76248552323008668218748084297922 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.955 Order of pole = 1.576 x[1] = 0.893 y[1] (analytic) = 0 y[1] (numeric) = 0.76346065817340323562476173496285 absolute error = 0.76346065817340323562476173496285 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.956 Order of pole = 1.576 x[1] = 0.894 y[1] (analytic) = 0 y[1] (numeric) = 0.76443581555586566599246800387584 absolute error = 0.76443581555586566599246800387584 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=671.4MB, alloc=4.4MB, time=67.59 Complex estimate of poles used Radius of convergence = 2.957 Order of pole = 1.577 x[1] = 0.895 y[1] (analytic) = 0 y[1] (numeric) = 0.76541099535279776102214389045704 absolute error = 0.76541099535279776102214389045704 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.958 Order of pole = 1.577 x[1] = 0.896 y[1] (analytic) = 0 y[1] (numeric) = 0.76638619753955610737526051245803 absolute error = 0.76638619753955610737526051245803 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.959 Order of pole = 1.577 x[1] = 0.897 y[1] (analytic) = 0 y[1] (numeric) = 0.76736142209153003858294549812907 absolute error = 0.76736142209153003858294549812907 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.96 Order of pole = 1.577 x[1] = 0.898 y[1] (analytic) = 0 y[1] (numeric) = 0.76833666898414158308304407185606 absolute error = 0.76833666898414158308304407185606 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.961 Order of pole = 1.578 memory used=675.2MB, alloc=4.4MB, time=67.97 x[1] = 0.899 y[1] (analytic) = 0 y[1] (numeric) = 0.76931193819284541235430016192852 absolute error = 0.76931193819284541235430016192852 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.963 Order of pole = 1.578 x[1] = 0.9 y[1] (analytic) = 0 y[1] (numeric) = 0.77028722969312878914744662736792 absolute error = 0.77028722969312878914744662736792 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.964 Order of pole = 1.578 x[1] = 0.901 y[1] (analytic) = 0 y[1] (numeric) = 0.77126254346051151581299422620501 absolute error = 0.77126254346051151581299422620501 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.965 Order of pole = 1.579 x[1] = 0.902 y[1] (analytic) = 0 y[1] (numeric) = 0.77223787947054588272550947156912 absolute error = 0.77223787947054588272550947156912 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.966 Order of pole = 1.579 x[1] = 0.903 y[1] (analytic) = 0 y[1] (numeric) = 0.77321323769881661680417204444572 absolute error = 0.77321323769881661680417204444572 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=679.0MB, alloc=4.4MB, time=68.35 Complex estimate of poles used Radius of convergence = 2.967 Order of pole = 1.579 x[1] = 0.904 y[1] (analytic) = 0 y[1] (numeric) = 0.77418861812094083012940295297638 absolute error = 0.77418861812094083012940295297638 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.968 Order of pole = 1.579 x[1] = 0.905 y[1] (analytic) = 0 y[1] (numeric) = 0.77516402071256796865535514772166 absolute error = 0.77516402071256796865535514772166 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.969 Order of pole = 1.58 x[1] = 0.906 y[1] (analytic) = 0 y[1] (numeric) = 0.77613944544937976101805882038748 absolute error = 0.77613944544937976101805882038748 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.971 Order of pole = 1.58 x[1] = 0.907 y[1] (analytic) = 0 y[1] (numeric) = 0.77711489230709016743901413013356 absolute error = 0.77711489230709016743901413013356 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.972 Order of pole = 1.58 x[1] = 0.908 y[1] (analytic) = 0 y[1] (numeric) = 0.77809036126144532872402461674343 absolute error = 0.77809036126144532872402461674343 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=682.8MB, alloc=4.4MB, time=68.73 Complex estimate of poles used Radius of convergence = 2.973 Order of pole = 1.581 x[1] = 0.909 y[1] (analytic) = 0 y[1] (numeric) = 0.77906585228822351535706507364381 absolute error = 0.77906585228822351535706507364381 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.974 Order of pole = 1.581 x[1] = 0.91 y[1] (analytic) = 0 y[1] (numeric) = 0.7800413653632350766889781660212 absolute error = 0.7800413653632350766889781660212 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.975 Order of pole = 1.581 x[1] = 0.911 y[1] (analytic) = 0 y[1] (numeric) = 0.78101690046232239022079459010056 absolute error = 0.78101690046232239022079459010056 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.976 Order of pole = 1.581 x[1] = 0.912 y[1] (analytic) = 0 y[1] (numeric) = 0.78199245756135981098147207902865 absolute error = 0.78199245756135981098147207902865 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=686.6MB, alloc=4.4MB, time=69.12 Complex estimate of poles used Radius of convergence = 2.977 Order of pole = 1.582 x[1] = 0.913 y[1] (analytic) = 0 y[1] (numeric) = 0.78296803663625362099984906874846 absolute error = 0.78296803663625362099984906874846 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.978 Order of pole = 1.582 x[1] = 0.914 y[1] (analytic) = 0 y[1] (numeric) = 0.78394363766294197887060934376479 absolute error = 0.78394363766294197887060934376479 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.98 Order of pole = 1.582 x[1] = 0.915 y[1] (analytic) = 0 y[1] (numeric) = 0.7849192606173948694140544877898 absolute error = 0.7849192606173948694140544877898 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.981 Order of pole = 1.582 x[1] = 0.916 y[1] (analytic) = 0 y[1] (numeric) = 0.78589490547561405342948146792507 absolute error = 0.78589490547561405342948146792507 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.982 Order of pole = 1.583 x[1] = 0.917 y[1] (analytic) = 0 y[1] (numeric) = 0.78687057221363301754196318328842 absolute error = 0.78687057221363301754196318328842 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=690.4MB, alloc=4.4MB, time=69.51 Complex estimate of poles used Radius of convergence = 2.983 Order of pole = 1.583 x[1] = 0.918 y[1] (analytic) = 0 y[1] (numeric) = 0.78784626080751692414233030983342 absolute error = 0.78784626080751692414233030983342 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.984 Order of pole = 1.583 x[1] = 0.919 y[1] (analytic) = 0 y[1] (numeric) = 0.7888219712333625614201532725421 absolute error = 0.7888219712333625614201532725421 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.985 Order of pole = 1.584 x[1] = 0.92 y[1] (analytic) = 0 y[1] (numeric) = 0.78979770346729829348952367420083 absolute error = 0.78979770346729829348952367420083 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.986 Order of pole = 1.584 x[1] = 0.921 y[1] (analytic) = 0 y[1] (numeric) = 0.79077345748548401060743500660067 absolute error = 0.79077345748548401060743500660067 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=694.3MB, alloc=4.4MB, time=69.89 Complex estimate of poles used Radius of convergence = 2.988 Order of pole = 1.584 x[1] = 0.922 y[1] (analytic) = 0 y[1] (numeric) = 0.79174923326411107948456296524024 absolute error = 0.79174923326411107948456296524024 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.989 Order of pole = 1.584 x[1] = 0.923 y[1] (analytic) = 0 y[1] (numeric) = 0.79272503077940229368824618245698 absolute error = 0.79272503077940229368824618245698 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.99 Order of pole = 1.585 x[1] = 0.924 y[1] (analytic) = 0 y[1] (numeric) = 0.7937008500076118241374686863744 absolute error = 0.7937008500076118241374686863744 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.991 Order of pole = 1.585 x[1] = 0.925 y[1] (analytic) = 0 y[1] (numeric) = 0.79467669092502516968964588413454 absolute error = 0.79467669092502516968964588413454 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.992 Order of pole = 1.585 x[1] = 0.926 y[1] (analytic) = 0 y[1] (numeric) = 0.79565255350795910781901635758917 absolute error = 0.79565255350795910781901635758917 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=698.1MB, alloc=4.4MB, time=70.27 Complex estimate of poles used Radius of convergence = 2.993 Order of pole = 1.585 x[1] = 0.927 y[1] (analytic) = 0 y[1] (numeric) = 0.79662843773276164538644224795601 absolute error = 0.79662843773276164538644224795601 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.994 Order of pole = 1.586 x[1] = 0.928 y[1] (analytic) = 0 y[1] (numeric) = 0.79760434357581196950042149291054 absolute error = 0.79760434357581196950042149291054 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.995 Order of pole = 1.586 x[1] = 0.929 y[1] (analytic) = 0 y[1] (numeric) = 0.79858027101352039846911566518502 absolute error = 0.79858027101352039846911566518502 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.997 Order of pole = 1.586 x[1] = 0.93 y[1] (analytic) = 0 y[1] (numeric) = 0.79955622002232833284319764598799 absolute error = 0.79955622002232833284319764598799 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=701.9MB, alloc=4.4MB, time=70.64 Complex estimate of poles used Radius of convergence = 2.998 Order of pole = 1.586 x[1] = 0.931 y[1] (analytic) = 0 y[1] (numeric) = 0.80053219057870820654932384944387 absolute error = 0.80053219057870820654932384944387 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 2.999 Order of pole = 1.587 x[1] = 0.932 y[1] (analytic) = 0 y[1] (numeric) = 0.80150818265916343811403619578825 absolute error = 0.80150818265916343811403619578825 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3 Order of pole = 1.587 x[1] = 0.933 y[1] (analytic) = 0 y[1] (numeric) = 0.80248419624022838197789951124371 absolute error = 0.80248419624022838197789951124371 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.001 Order of pole = 1.587 x[1] = 0.934 y[1] (analytic) = 0 y[1] (numeric) = 0.80346023129846827989968051134766 absolute error = 0.80346023129846827989968051134766 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.002 Order of pole = 1.587 x[1] = 0.935 y[1] (analytic) = 0 y[1] (numeric) = 0.80443628781047921245037500201282 absolute error = 0.80443628781047921245037500201282 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=705.7MB, alloc=4.4MB, time=71.02 Complex estimate of poles used Radius of convergence = 3.003 Order of pole = 1.588 x[1] = 0.936 y[1] (analytic) = 0 y[1] (numeric) = 0.80541236575288805059689040877569 absolute error = 0.80541236575288805059689040877569 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.004 Order of pole = 1.588 x[1] = 0.937 y[1] (analytic) = 0 y[1] (numeric) = 0.80638846510235240737519121953355 absolute error = 0.80638846510235240737519121953355 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.006 Order of pole = 1.588 x[1] = 0.938 y[1] (analytic) = 0 y[1] (numeric) = 0.80736458583556058965271539959028 absolute error = 0.80736458583556058965271539959028 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.007 Order of pole = 1.588 x[1] = 0.939 y[1] (analytic) = 0 y[1] (numeric) = 0.80834072792923154997987031002943 absolute error = 0.80834072792923154997987031002943 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=709.5MB, alloc=4.4MB, time=71.40 Complex estimate of poles used Radius of convergence = 3.008 Order of pole = 1.589 x[1] = 0.94 y[1] (analytic) = 0 y[1] (numeric) = 0.80931689136011483853041713131405 absolute error = 0.80931689136011483853041713131405 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.009 Order of pole = 1.589 x[1] = 0.941 y[1] (analytic) = 0 y[1] (numeric) = 0.81029307610499055513055326358062 absolute error = 0.81029307610499055513055326358062 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.01 Order of pole = 1.589 x[1] = 0.942 y[1] (analytic) = 0 y[1] (numeric) = 0.81126928214066930137650264335327 absolute error = 0.81126928214066930137650264335327 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.011 Order of pole = 1.589 x[1] = 0.943 y[1] (analytic) = 0 y[1] (numeric) = 0.81224550944399213284042438335852 absolute error = 0.81224550944399213284042438335852 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.012 Order of pole = 1.59 x[1] = 0.944 y[1] (analytic) = 0 y[1] (numeric) = 0.8132217579918305113644506077737 absolute error = 0.8132217579918305113644506077737 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=713.3MB, alloc=4.4MB, time=71.78 Complex estimate of poles used Radius of convergence = 3.013 Order of pole = 1.59 x[1] = 0.945 y[1] (analytic) = 0 y[1] (numeric) = 0.81419802776108625744266481959881 absolute error = 0.81419802776108625744266481959881 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.015 Order of pole = 1.59 x[1] = 0.946 y[1] (analytic) = 0 y[1] (numeric) = 0.81517431872869150269083259990492 absolute error = 0.81517431872869150269083259990492 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.016 Order of pole = 1.59 x[1] = 0.947 y[1] (analytic) = 0 y[1] (numeric) = 0.81615063087160864240369690048751 absolute error = 0.81615063087160864240369690048751 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.017 Order of pole = 1.591 x[1] = 0.948 y[1] (analytic) = 0 y[1] (numeric) = 0.81712696416683028819965065194314 absolute error = 0.81712696416683028819965065194314 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.018 Order of pole = 1.591 x[1] = 0.949 y[1] (analytic) = 0 y[1] (numeric) = 0.81810331859137922075259986839784 absolute error = 0.81810331859137922075259986839784 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=717.1MB, alloc=4.4MB, time=72.16 Complex estimate of poles used Radius of convergence = 3.019 Order of pole = 1.591 x[1] = 0.95 y[1] (analytic) = 0 y[1] (numeric) = 0.81907969412230834261083088804849 absolute error = 0.81907969412230834261083088804849 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.02 Order of pole = 1.591 x[1] = 0.951 y[1] (analytic) = 0 y[1] (numeric) = 0.82005609073670063110269584533895 absolute error = 0.82005609073670063110269584533895 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.021 Order of pole = 1.592 x[1] = 0.952 y[1] (analytic) = 0 y[1] (numeric) = 0.82103250841166909132893092598449 absolute error = 0.82103250841166909132893092598449 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.022 Order of pole = 1.592 x[1] = 0.953 y[1] (analytic) = 0 y[1] (numeric) = 0.82200894712435670924142241018499 absolute error = 0.82200894712435670924142241018499 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=721.0MB, alloc=4.4MB, time=72.53 Complex estimate of poles used Radius of convergence = 3.024 Order of pole = 1.592 x[1] = 0.954 y[1] (analytic) = 0 y[1] (numeric) = 0.8229854068519364048082359622338 absolute error = 0.8229854068519364048082359622338 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.025 Order of pole = 1.592 x[1] = 0.955 y[1] (analytic) = 0 y[1] (numeric) = 0.82396188757161098526472507633842 absolute error = 0.82396188757161098526472507633842 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.026 Order of pole = 1.592 x[1] = 0.956 y[1] (analytic) = 0 y[1] (numeric) = 0.82493838926061309845053503882571 absolute error = 0.82493838926061309845053503882571 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.027 Order of pole = 1.593 x[1] = 0.957 y[1] (analytic) = 0 y[1] (numeric) = 0.8259149118962051862323192160119 absolute error = 0.8259149118962051862323192160119 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.028 Order of pole = 1.593 x[1] = 0.958 y[1] (analytic) = 0 y[1] (numeric) = 0.82689145545567943801198492487977 absolute error = 0.82689145545567943801198492487977 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=724.8MB, alloc=4.4MB, time=72.92 Complex estimate of poles used Radius of convergence = 3.029 Order of pole = 1.593 x[1] = 0.959 y[1] (analytic) = 0 y[1] (numeric) = 0.82786801991635774432028659032668 absolute error = 0.82786801991635774432028659032668 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.03 Order of pole = 1.593 x[1] = 0.96 y[1] (analytic) = 0 y[1] (numeric) = 0.82884460525559165049558433813063 absolute error = 0.82884460525559165049558433813063 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.031 Order of pole = 1.594 x[1] = 0.961 y[1] (analytic) = 0 y[1] (numeric) = 0.82982121145076231044758661693178 absolute error = 0.82982121145076231044758661693178 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.033 Order of pole = 1.594 x[1] = 0.962 y[1] (analytic) = 0 y[1] (numeric) = 0.83079783847928044050589588544717 absolute error = 0.83079783847928044050589588544717 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=728.6MB, alloc=4.4MB, time=73.29 Complex estimate of poles used Radius of convergence = 3.034 Order of pole = 1.594 x[1] = 0.963 y[1] (analytic) = 0 y[1] (numeric) = 0.8317744863185862733531768428309 absolute error = 0.8317744863185862733531768428309 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.035 Order of pole = 1.594 x[1] = 0.964 y[1] (analytic) = 0 y[1] (numeric) = 0.8327511549461495120427671205645 absolute error = 0.8327511549461495120427671205645 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.036 Order of pole = 1.594 x[1] = 0.965 y[1] (analytic) = 0 y[1] (numeric) = 0.83372784433946928410055079351645 absolute error = 0.83372784433946928410055079351645 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.037 Order of pole = 1.595 x[1] = 0.966 y[1] (analytic) = 0 y[1] (numeric) = 0.83470455447607409571091550584918 absolute error = 0.83470455447607409571091550584918 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.038 Order of pole = 1.595 x[1] = 0.967 y[1] (analytic) = 0 y[1] (numeric) = 0.83568128533352178598661444428113 absolute error = 0.83568128533352178598661444428113 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=732.4MB, alloc=4.4MB, time=73.67 Complex estimate of poles used Radius of convergence = 3.039 Order of pole = 1.595 x[1] = 0.968 y[1] (analytic) = 0 y[1] (numeric) = 0.83665803688939948132235482683304 absolute error = 0.83665803688939948132235482683304 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.04 Order of pole = 1.595 x[1] = 0.969 y[1] (analytic) = 0 y[1] (numeric) = 0.83763480912132354983193500960668 absolute error = 0.83763480912132354983193500960668 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.042 Order of pole = 1.596 x[1] = 0.97 y[1] (analytic) = 0 y[1] (numeric) = 0.83861160200693955586875274736303 absolute error = 0.83861160200693955586875274736303 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.043 Order of pole = 1.596 x[1] = 0.971 y[1] (analytic) = 0 y[1] (numeric) = 0.83958841552392221462950757569069 absolute error = 0.83958841552392221462950757569069 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=736.2MB, alloc=4.4MB, time=74.05 Complex estimate of poles used Radius of convergence = 3.044 Order of pole = 1.596 x[1] = 0.972 y[1] (analytic) = 0 y[1] (numeric) = 0.84056524964997534684092071338633 absolute error = 0.84056524964997534684092071338633 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.045 Order of pole = 1.596 x[1] = 0.973 y[1] (analytic) = 0 y[1] (numeric) = 0.84154210436283183352929631331214 absolute error = 0.84154210436283183352929631331214 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.046 Order of pole = 1.596 x[1] = 0.974 y[1] (analytic) = 0 y[1] (numeric) = 0.84251897964025357087274831845323 absolute error = 0.84251897964025357087274831845323 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.047 Order of pole = 1.597 x[1] = 0.975 y[1] (analytic) = 0 y[1] (numeric) = 0.84349587546003142513591760717536 absolute error = 0.84349587546003142513591760717536 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.048 Order of pole = 1.597 x[1] = 0.976 y[1] (analytic) = 0 y[1] (numeric) = 0.84447279179998518768700453778292 absolute error = 0.84447279179998518768700453778292 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=740.0MB, alloc=4.4MB, time=74.43 Complex estimate of poles used Radius of convergence = 3.049 Order of pole = 1.597 x[1] = 0.977 y[1] (analytic) = 0 y[1] (numeric) = 0.84544972863796353009694242740335 absolute error = 0.84544972863796353009694242740335 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.05 Order of pole = 1.597 x[1] = 0.978 y[1] (analytic) = 0 y[1] (numeric) = 0.84642668595184395932053792397987 absolute error = 0.84642668595184395932053792397987 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.052 Order of pole = 1.597 x[1] = 0.979 y[1] (analytic) = 0 y[1] (numeric) = 0.84740366371953277295940465274406 absolute error = 0.84740366371953277295940465274406 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.053 Order of pole = 1.598 x[1] = 0.98 y[1] (analytic) = 0 y[1] (numeric) = 0.84838066191896501460651693996609 absolute error = 0.84838066191896501460651693996609 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=743.8MB, alloc=4.4MB, time=74.82 Complex estimate of poles used Radius of convergence = 3.054 Order of pole = 1.598 x[1] = 0.981 y[1] (analytic) = 0 y[1] (numeric) = 0.84935768052810442927221083704783 absolute error = 0.84935768052810442927221083704783 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.055 Order of pole = 1.598 x[1] = 0.982 y[1] (analytic) = 0 y[1] (numeric) = 0.85033471952494341889146008713548 absolute error = 0.85033471952494341889146008713548 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.056 Order of pole = 1.598 x[1] = 0.983 y[1] (analytic) = 0 y[1] (numeric) = 0.85131177888750299791225509438756 absolute error = 0.85131177888750299791225509438756 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.057 Order of pole = 1.599 x[1] = 0.984 y[1] (analytic) = 0 y[1] (numeric) = 0.85228885859383274896491337284511 absolute error = 0.85228885859383274896491337284511 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.058 Order of pole = 1.599 x[1] = 0.985 y[1] (analytic) = 0 y[1] (numeric) = 0.85326595862201077861215036751625 absolute error = 0.85326595862201077861215036751625 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=747.7MB, alloc=4.4MB, time=75.20 Complex estimate of poles used Radius of convergence = 3.059 Order of pole = 1.599 x[1] = 0.986 y[1] (analytic) = 0 y[1] (numeric) = 0.85424307895014367317973995481171 absolute error = 0.85424307895014367317973995481171 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.061 Order of pole = 1.599 x[1] = 0.987 y[1] (analytic) = 0 y[1] (numeric) = 0.85522021955636645466759434285381 absolute error = 0.85522021955636645466759434285381 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.062 Order of pole = 1.599 x[1] = 0.988 y[1] (analytic) = 0 y[1] (numeric) = 0.85619738041884253674109350443308 absolute error = 0.85619738041884253674109350443308 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.063 Order of pole = 1.6 x[1] = 0.989 y[1] (analytic) = 0 y[1] (numeric) = 0.85717456151576368080249468650734 absolute error = 0.85717456151576368080249468650734 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.064 Order of pole = 1.6 x[1] = 0.99 y[1] (analytic) = 0 y[1] (numeric) = 0.85815176282534995214225295013099 absolute error = 0.85815176282534995214225295013099 relative error = -1 % memory used=751.5MB, alloc=4.4MB, time=75.59 Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.065 Order of pole = 1.6 x[1] = 0.991 y[1] (analytic) = 0 y[1] (numeric) = 0.85912898432584967617008410357139 absolute error = 0.85912898432584967617008410357139 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.066 Order of pole = 1.6 x[1] = 0.992 y[1] (analytic) = 0 y[1] (numeric) = 0.86010622599553939472560179911755 absolute error = 0.86010622599553939472560179911755 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.067 Order of pole = 1.6 x[1] = 0.993 y[1] (analytic) = 0 y[1] (numeric) = 0.86108348781272382246836097071754 absolute error = 0.86108348781272382246836097071754 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.068 Order of pole = 1.601 x[1] = 0.994 y[1] (analytic) = 0 y[1] (numeric) = 0.8620607697557358033471401950987 absolute error = 0.8620607697557358033471401950987 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=755.3MB, alloc=4.4MB, time=75.97 Complex estimate of poles used Radius of convergence = 3.069 Order of pole = 1.601 x[1] = 0.995 y[1] (analytic) = 0 y[1] (numeric) = 0.86303807180293626714829596343175 absolute error = 0.86303807180293626714829596343175 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.071 Order of pole = 1.601 x[1] = 0.996 y[1] (analytic) = 0 y[1] (numeric) = 0.86401539393271418612302225390041 absolute error = 0.86401539393271418612302225390041 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.072 Order of pole = 1.601 x[1] = 0.997 y[1] (analytic) = 0 y[1] (numeric) = 0.86499273612348653169334919773495 absolute error = 0.86499273612348653169334919773495 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.073 Order of pole = 1.601 x[1] = 0.998 y[1] (analytic) = 0 y[1] (numeric) = 0.86597009835369823123671503236469 absolute error = 0.86597009835369823123671503236469 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.074 Order of pole = 1.601 x[1] = 0.999 y[1] (analytic) = 0 y[1] (numeric) = 0.86694748060182212494894593534475 absolute error = 0.86694748060182212494894593534475 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=759.1MB, alloc=4.4MB, time=76.35 Complex estimate of poles used Radius of convergence = 3.075 Order of pole = 1.602 x[1] = 1 y[1] (analytic) = 0 y[1] (numeric) = 0.86792488284635892278547873161884 absolute error = 0.86792488284635892278547873161884 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.076 Order of pole = 1.602 x[1] = 1.001 y[1] (analytic) = 0 y[1] (numeric) = 0.86890230506583716148066186449656 absolute error = 0.86890230506583716148066186449656 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.077 Order of pole = 1.602 x[1] = 1.002 y[1] (analytic) = 0 y[1] (numeric) = 0.86987974723881316164497041745377 absolute error = 0.86987974723881316164497041745377 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.078 Order of pole = 1.602 x[1] = 1.003 y[1] (analytic) = 0 y[1] (numeric) = 0.87085720934387098493997136951123 absolute error = 0.87085720934387098493997136951123 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=762.9MB, alloc=4.4MB, time=76.73 Complex estimate of poles used Radius of convergence = 3.079 Order of pole = 1.602 x[1] = 1.004 y[1] (analytic) = 0 y[1] (numeric) = 0.87183469135962239133087566151328 absolute error = 0.87183469135962239133087566151328 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.081 Order of pole = 1.603 x[1] = 1.005 y[1] (analytic) = 0 y[1] (numeric) = 0.87281219326470679641651404411844 absolute error = 0.87281219326470679641651404411844 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.082 Order of pole = 1.603 x[1] = 1.006 y[1] (analytic) = 0 y[1] (numeric) = 0.87378971503779122883657407073028 absolute error = 0.87378971503779122883657407073028 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.083 Order of pole = 1.603 x[1] = 1.007 y[1] (analytic) = 0 y[1] (numeric) = 0.87476725665757028775593598994328 absolute error = 0.87476725665757028775593598994328 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.084 Order of pole = 1.603 x[1] = 1.008 y[1] (analytic) = 0 y[1] (numeric) = 0.8757448181027661004259456823581 absolute error = 0.8757448181027661004259456823581 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=766.7MB, alloc=4.4MB, time=77.11 Complex estimate of poles used Radius of convergence = 3.085 Order of pole = 1.603 x[1] = 1.009 y[1] (analytic) = 0 y[1] (numeric) = 0.87672239935212827982246317583665 absolute error = 0.87672239935212827982246317583665 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.086 Order of pole = 1.604 x[1] = 1.01 y[1] (analytic) = 0 y[1] (numeric) = 0.87770000038443388236052566142289 absolute error = 0.87770000038443388236052566142289 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.087 Order of pole = 1.604 x[1] = 1.011 y[1] (analytic) = 0 y[1] (numeric) = 0.87867762117848736568546431925406 absolute error = 0.87867762117848736568546431925406 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.088 Order of pole = 1.604 x[1] = 1.012 y[1] (analytic) = 0 y[1] (numeric) = 0.87965526171312054654031464983158 absolute error = 0.87965526171312054654031464983158 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=770.5MB, alloc=4.4MB, time=77.48 Complex estimate of poles used Radius of convergence = 3.089 Order of pole = 1.604 x[1] = 1.013 y[1] (analytic) = 0 y[1] (numeric) = 0.88063292196719255870936039101504 absolute error = 0.88063292196719255870936039101504 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.091 Order of pole = 1.604 x[1] = 1.014 y[1] (analytic) = 0 y[1] (numeric) = 0.88161060191958981103765148504929 absolute error = 0.88161060191958981103765148504929 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.092 Order of pole = 1.604 x[1] = 1.015 y[1] (analytic) = 0 y[1] (numeric) = 0.88258830154922594552633694283699 absolute error = 0.88258830154922594552633694283699 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.093 Order of pole = 1.605 x[1] = 1.016 y[1] (analytic) = 0 y[1] (numeric) = 0.88356602083504179550365383453047 absolute error = 0.88356602083504179550365383453047 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.094 Order of pole = 1.605 x[1] = 1.017 y[1] (analytic) = 0 y[1] (numeric) = 0.88454375975600534387141401634003 absolute error = 0.88454375975600534387141401634003 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=774.4MB, alloc=4.4MB, time=77.86 Complex estimate of poles used Radius of convergence = 3.095 Order of pole = 1.605 x[1] = 1.018 y[1] (analytic) = 0 y[1] (numeric) = 0.88552151829111168142683058324471 absolute error = 0.88552151829111168142683058324471 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.096 Order of pole = 1.605 x[1] = 1.019 y[1] (analytic) = 0 y[1] (numeric) = 0.88649929641938296525952641604873 absolute error = 0.88649929641938296525952641604873 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.097 Order of pole = 1.605 x[1] = 1.02 y[1] (analytic) = 0 y[1] (numeric) = 0.88747709411986837722356756895554 absolute error = 0.88747709411986837722356756895554 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.098 Order of pole = 1.606 x[1] = 1.021 y[1] (analytic) = 0 y[1] (numeric) = 0.88845491137164408248436462053498 absolute error = 0.88845491137164408248436462053498 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=778.2MB, alloc=4.4MB, time=78.24 Complex estimate of poles used Radius of convergence = 3.099 Order of pole = 1.606 x[1] = 1.022 y[1] (analytic) = 0 y[1] (numeric) = 0.88943274815381318814028548664036 absolute error = 0.88943274815381318814028548664036 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.101 Order of pole = 1.606 x[1] = 1.023 y[1] (analytic) = 0 y[1] (numeric) = 0.89041060444550570191882356849464 absolute error = 0.89041060444550570191882356849464 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.102 Order of pole = 1.606 x[1] = 1.024 y[1] (analytic) = 0 y[1] (numeric) = 0.89138848022587849094716548281109 absolute error = 0.89138848022587849094716548281109 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.103 Order of pole = 1.606 x[1] = 1.025 y[1] (analytic) = 0 y[1] (numeric) = 0.8923663754741152405970029934475 absolute error = 0.8923663754741152405970029934475 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.104 Order of pole = 1.606 x[1] = 1.026 y[1] (analytic) = 0 y[1] (numeric) = 0.89334429016942641340343413571659 absolute error = 0.89334429016942641340343413571659 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=782.0MB, alloc=4.4MB, time=78.62 Complex estimate of poles used Radius of convergence = 3.105 Order of pole = 1.607 x[1] = 1.027 y[1] (analytic) = 0 y[1] (numeric) = 0.89432222429104920805779889509233 absolute error = 0.89432222429104920805779889509233 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.106 Order of pole = 1.607 x[1] = 1.028 y[1] (analytic) = 0 y[1] (numeric) = 0.89530017781824751847429517166525 absolute error = 0.89530017781824751847429517166525 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.107 Order of pole = 1.607 x[1] = 1.029 y[1] (analytic) = 0 y[1] (numeric) = 0.89627815073031189293022113031255 absolute error = 0.89627815073031189293022113031255 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.108 Order of pole = 1.607 x[1] = 1.03 y[1] (analytic) = 0 y[1] (numeric) = 0.89725614300655949327969040416407 absolute error = 0.89725614300655949327969040416407 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used memory used=785.8MB, alloc=4.4MB, time=79.00 Radius of convergence = 3.109 Order of pole = 1.607 x[1] = 1.031 y[1] (analytic) = 0 y[1] (numeric) = 0.89823415462633405424066698556582 absolute error = 0.89823415462633405424066698556582 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.111 Order of pole = 1.607 x[1] = 1.032 y[1] (analytic) = 0 y[1] (numeric) = 0.89921218556900584275516700437192 absolute error = 0.89921218556900584275516700437192 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.112 Order of pole = 1.608 x[1] = 1.033 y[1] (analytic) = 0 y[1] (numeric) = 0.9001902358139716174224749580365 absolute error = 0.9001902358139716174224749580365 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.113 Order of pole = 1.608 x[1] = 1.034 y[1] (analytic) = 0 y[1] (numeric) = 0.90116830534065458800522232163215 absolute error = 0.90116830534065458800522232163215 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.114 Order of pole = 1.608 x[1] = 1.035 y[1] (analytic) = 0 y[1] (numeric) = 0.90214639412850437500817682859428 absolute error = 0.90214639412850437500817682859428 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=789.6MB, alloc=4.4MB, time=79.39 Complex estimate of poles used Radius of convergence = 3.115 Order of pole = 1.608 x[1] = 1.036 y[1] (analytic) = 0 y[1] (numeric) = 0.90312450215699696932959107468362 absolute error = 0.90312450215699696932959107468362 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.116 Order of pole = 1.608 x[1] = 1.037 y[1] (analytic) = 0 y[1] (numeric) = 0.90410262940563469198495945837583 absolute error = 0.90410262940563469198495945837583 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.117 Order of pole = 1.608 x[1] = 1.038 y[1] (analytic) = 0 y[1] (numeric) = 0.90508077585394615390303283062981 absolute error = 0.90508077585394615390303283062981 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.118 Order of pole = 1.609 x[1] = 1.039 y[1] (analytic) = 0 y[1] (numeric) = 0.90605894148148621579394058575877 absolute error = 0.90605894148148621579394058575877 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.119 Order of pole = 1.609 x[1] = 1.04 y[1] (analytic) = 0 y[1] (numeric) = 0.90703712626783594808927028293236 absolute error = 0.90703712626783594808927028293236 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=793.4MB, alloc=4.4MB, time=79.76 Complex estimate of poles used Radius of convergence = 3.121 Order of pole = 1.609 x[1] = 1.041 y[1] (analytic) = 0 y[1] (numeric) = 0.90801533019260259095395524467795 absolute error = 0.90801533019260259095395524467795 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.122 Order of pole = 1.609 x[1] = 1.042 y[1] (analytic) = 0 y[1] (numeric) = 0.90899355323541951436982093462694 absolute error = 0.90899355323541951436982093462694 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.123 Order of pole = 1.609 x[1] = 1.043 y[1] (analytic) = 0 y[1] (numeric) = 0.90997179537594617829064127167067 absolute error = 0.90997179537594617829064127167067 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.124 Order of pole = 1.609 x[1] = 1.044 y[1] (analytic) = 0 y[1] (numeric) = 0.91095005659386809286855639165338 absolute error = 0.91095005659386809286855639165338 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=797.3MB, alloc=4.4MB, time=80.15 Complex estimate of poles used Radius of convergence = 3.125 Order of pole = 1.609 x[1] = 1.045 y[1] (analytic) = 0 y[1] (numeric) = 0.91192833686889677875170372073894 absolute error = 0.91192833686889677875170372073894 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.126 Order of pole = 1.61 x[1] = 1.046 y[1] (analytic) = 0 y[1] (numeric) = 0.91290663618076972745291457664759 absolute error = 0.91290663618076972745291457664759 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.127 Order of pole = 1.61 x[1] = 1.047 y[1] (analytic) = 0 y[1] (numeric) = 0.91388495450925036178932886507041 absolute error = 0.91388495450925036178932886507041 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.128 Order of pole = 1.61 x[1] = 1.048 y[1] (analytic) = 0 y[1] (numeric) = 0.91486329183412799639278078873659 absolute error = 0.91486329183412799639278078873659 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.129 Order of pole = 1.61 x[1] = 1.049 y[1] (analytic) = 0 y[1] (numeric) = 0.91584164813521779829080883583386 absolute error = 0.91584164813521779829080883583386 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=801.1MB, alloc=4.4MB, time=80.54 Complex estimate of poles used Radius of convergence = 3.131 Order of pole = 1.61 x[1] = 1.05 y[1] (analytic) = 0 y[1] (numeric) = 0.91682002339236074755814366276912 absolute error = 0.91682002339236074755814366276912 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.132 Order of pole = 1.61 x[1] = 1.051 y[1] (analytic) = 0 y[1] (numeric) = 0.91779841758542359803852783360675 absolute error = 0.91779841758542359803852783360675 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.133 Order of pole = 1.611 x[1] = 1.052 y[1] (analytic) = 0 y[1] (numeric) = 0.91877683069429883813672172493914 absolute error = 0.91877683069429883813672172493914 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.134 Order of pole = 1.611 x[1] = 1.053 y[1] (analytic) = 0 y[1] (numeric) = 0.91975526269890465168055025043109 absolute error = 0.91975526269890465168055025043109 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=804.9MB, alloc=4.4MB, time=80.92 Complex estimate of poles used Radius of convergence = 3.135 Order of pole = 1.611 x[1] = 1.054 y[1] (analytic) = 0 y[1] (numeric) = 0.92073371357918487885284540383853 absolute error = 0.92073371357918487885284540383853 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.136 Order of pole = 1.611 x[1] = 1.055 y[1] (analytic) = 0 y[1] (numeric) = 0.92171218331510897719313996293672 absolute error = 0.92171218331510897719313996293672 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.137 Order of pole = 1.611 x[1] = 1.056 y[1] (analytic) = 0 y[1] (numeric) = 0.92269067188667198266896803950498 absolute error = 0.92269067188667198266896803950498 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.138 Order of pole = 1.611 x[1] = 1.057 y[1] (analytic) = 0 y[1] (numeric) = 0.92366917927389447081662850230832 absolute error = 0.92366917927389447081662850230832 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.139 Order of pole = 1.611 x[1] = 1.058 y[1] (analytic) = 0 y[1] (numeric) = 0.92464770545682251795126764089264 absolute error = 0.92464770545682251795126764089264 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=808.7MB, alloc=4.4MB, time=81.30 Complex estimate of poles used Radius of convergence = 3.14 Order of pole = 1.612 x[1] = 1.059 y[1] (analytic) = 0 y[1] (numeric) = 0.92562625041552766244613777797291 absolute error = 0.92562625041552766244613777797291 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.142 Order of pole = 1.612 x[1] = 1.06 y[1] (analytic) = 0 y[1] (numeric) = 0.92660481413010686608088887724556 absolute error = 0.92660481413010686608088887724556 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.143 Order of pole = 1.612 x[1] = 1.061 y[1] (analytic) = 0 y[1] (numeric) = 0.92758339658068247545875053159956 absolute error = 0.92758339658068247545875053159956 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.144 Order of pole = 1.612 x[1] = 1.062 y[1] (analytic) = 0 y[1] (numeric) = 0.9285619977474021834924620539388 absolute error = 0.9285619977474021834924620539388 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=812.5MB, alloc=4.4MB, time=81.68 Complex estimate of poles used Radius of convergence = 3.145 Order of pole = 1.612 x[1] = 1.063 y[1] (analytic) = 0 y[1] (numeric) = 0.9295406176104389909588087291632 absolute error = 0.9295406176104389909588087291632 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.146 Order of pole = 1.612 x[1] = 1.064 y[1] (analytic) = 0 y[1] (numeric) = 0.93051925614999116812162262129117 absolute error = 0.93051925614999116812162262129117 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.147 Order of pole = 1.612 x[1] = 1.065 y[1] (analytic) = 0 y[1] (numeric) = 0.9314979133462822164231066642433 absolute error = 0.9314979133462822164231066642433 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.148 Order of pole = 1.613 x[1] = 1.066 y[1] (analytic) = 0 y[1] (numeric) = 0.93247658917956083024334109845029 absolute error = 0.93247658917956083024334109845029 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.149 Order of pole = 1.613 x[1] = 1.067 y[1] (analytic) = 0 y[1] (numeric) = 0.9334552836301008587278316481986 absolute error = 0.9334552836301008587278316481986 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=816.3MB, alloc=4.4MB, time=82.06 Complex estimate of poles used Radius of convergence = 3.15 Order of pole = 1.613 x[1] = 1.068 y[1] (analytic) = 0 y[1] (numeric) = 0.93443399667820126768295916648893 absolute error = 0.93443399667820126768295916648893 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.151 Order of pole = 1.613 x[1] = 1.069 y[1] (analytic) = 0 y[1] (numeric) = 0.9354127283041861015391908051572 absolute error = 0.9354127283041861015391908051572 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.153 Order of pole = 1.613 x[1] = 1.07 y[1] (analytic) = 0 y[1] (numeric) = 0.93639147848840444538191309809841 absolute error = 0.93639147848840444538191309809841 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.154 Order of pole = 1.613 x[1] = 1.071 y[1] (analytic) = 0 y[1] (numeric) = 0.93737024721123038704974767464307 absolute error = 0.93737024721123038704974767464307 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=820.1MB, alloc=4.4MB, time=82.44 Complex estimate of poles used Radius of convergence = 3.155 Order of pole = 1.613 x[1] = 1.072 y[1] (analytic) = 0 y[1] (numeric) = 0.93834903445306297930021064846633 absolute error = 0.93834903445306297930021064846633 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.156 Order of pole = 1.614 x[1] = 1.073 y[1] (analytic) = 0 y[1] (numeric) = 0.93932784019432620204257705486425 absolute error = 0.93932784019432620204257705486425 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.157 Order of pole = 1.614 x[1] = 1.074 y[1] (analytic) = 0 y[1] (numeric) = 0.94030666441546892463781203581277 absolute error = 0.94030666441546892463781203581277 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.158 Order of pole = 1.614 x[1] = 1.075 y[1] (analytic) = 0 y[1] (numeric) = 0.94128550709696486826543079793456 absolute error = 0.94128550709696486826543079793456 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.159 Order of pole = 1.614 x[1] = 1.076 y[1] (analytic) = 0 y[1] (numeric) = 0.94226436821931256835714969334092 absolute error = 0.94226436821931256835714969334092 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=824.0MB, alloc=4.4MB, time=82.82 Complex estimate of poles used Radius of convergence = 3.16 Order of pole = 1.614 x[1] = 1.077 y[1] (analytic) = 0 y[1] (numeric) = 0.94324324776303533709719109729174 absolute error = 0.94324324776303533709719109729174 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.161 Order of pole = 1.614 x[1] = 1.078 y[1] (analytic) = 0 y[1] (numeric) = 0.94422214570868122598910507972934 absolute error = 0.94422214570868122598910507972934 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.163 Order of pole = 1.614 x[1] = 1.079 y[1] (analytic) = 0 y[1] (numeric) = 0.94520106203682298848897118999456 absolute error = 0.94520106203682298848897118999456 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.164 Order of pole = 1.614 x[1] = 1.08 y[1] (analytic) = 0 y[1] (numeric) = 0.94617999672805804270484399542768 absolute error = 0.94617999672805804270484399542768 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.165 Order of pole = 1.615 memory used=827.8MB, alloc=4.4MB, time=83.20 x[1] = 1.081 y[1] (analytic) = 0 y[1] (numeric) = 0.94715894976300843416230633509575 absolute error = 0.94715894976300843416230633509575 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.166 Order of pole = 1.615 x[1] = 1.082 y[1] (analytic) = 0 y[1] (numeric) = 0.9481379211223207986359945695741 absolute error = 0.9481379211223207986359945695741 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.167 Order of pole = 1.615 x[1] = 1.083 y[1] (analytic) = 0 y[1] (numeric) = 0.94911691078666632504696042654564 absolute error = 0.94911691078666632504696042654564 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.168 Order of pole = 1.615 x[1] = 1.084 y[1] (analytic) = 0 y[1] (numeric) = 0.95009591873674071842573435996948 absolute error = 0.95009591873674071842573435996948 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.169 Order of pole = 1.615 x[1] = 1.085 y[1] (analytic) = 0 y[1] (numeric) = 0.9510749449532641629409556577134 absolute error = 0.9510749449532641629409556577134 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=831.6MB, alloc=4.4MB, time=83.58 Complex estimate of poles used Radius of convergence = 3.17 Order of pole = 1.615 x[1] = 1.086 y[1] (analytic) = 0 y[1] (numeric) = 0.9520539894169812849934348488446 absolute error = 0.9520539894169812849934348488446 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.171 Order of pole = 1.615 x[1] = 1.087 y[1] (analytic) = 0 y[1] (numeric) = 0.95303305210866111637551427723319 absolute error = 0.95303305210866111637551427723319 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.172 Order of pole = 1.615 x[1] = 1.088 y[1] (analytic) = 0 y[1] (numeric) = 0.95401213300909705749559302274493 absolute error = 0.95401213300909705749559302274493 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.174 Order of pole = 1.616 x[1] = 1.089 y[1] (analytic) = 0 y[1] (numeric) = 0.95499123209910684066768266508676 absolute error = 0.95499123209910684066768266508676 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.175 Order of pole = 1.616 x[1] = 1.09 y[1] (analytic) = 0 y[1] (numeric) = 0.95597034935953249346586069832276 absolute error = 0.95597034935953249346586069832276 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=835.4MB, alloc=4.4MB, time=83.97 Complex estimate of poles used Radius of convergence = 3.176 Order of pole = 1.616 x[1] = 1.091 y[1] (analytic) = 0 y[1] (numeric) = 0.95694948477124030214348871620221 absolute error = 0.95694948477124030214348871620221 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.177 Order of pole = 1.616 x[1] = 1.092 y[1] (analytic) = 0 y[1] (numeric) = 0.95792863831512077511706279973762 absolute error = 0.95792863831512077511706279973762 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.178 Order of pole = 1.616 x[1] = 1.093 y[1] (analytic) = 0 y[1] (numeric) = 0.95890780997208860651456384894132 absolute error = 0.95890780997208860651456384894132 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.179 Order of pole = 1.616 x[1] = 1.094 y[1] (analytic) = 0 y[1] (numeric) = 0.95988699972308263978817591027726 absolute error = 0.95988699972308263978817591027726 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=839.2MB, alloc=4.4MB, time=84.35 Complex estimate of poles used Radius of convergence = 3.18 Order of pole = 1.616 x[1] = 1.095 y[1] (analytic) = 0 y[1] (numeric) = 0.96086620754906583139124086021214 absolute error = 0.96086620754906583139124086021214 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.181 Order of pole = 1.616 x[1] = 1.096 y[1] (analytic) = 0 y[1] (numeric) = 0.96184543343102521451931811325965 absolute error = 0.96184543343102521451931811325965 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.182 Order of pole = 1.617 x[1] = 1.097 y[1] (analytic) = 0 y[1] (numeric) = 0.9628246773499718629152183301054 absolute error = 0.9628246773499718629152183301054 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.183 Order of pole = 1.617 x[1] = 1.098 y[1] (analytic) = 0 y[1] (numeric) = 0.96380393928694085473788040778109 absolute error = 0.96380393928694085473788040778109 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.184 Order of pole = 1.617 x[1] = 1.099 y[1] (analytic) = 0 y[1] (numeric) = 0.96478321922299123649496133942662 absolute error = 0.96478321922299123649496133942662 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=843.0MB, alloc=4.4MB, time=84.73 Complex estimate of poles used Radius of convergence = 3.186 Order of pole = 1.617 x[1] = 1.1 y[1] (analytic) = 0 y[1] (numeric) = 0.96576251713920598703900883594036 absolute error = 0.96576251713920598703900883594036 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.187 Order of pole = 1.617 x[1] = 1.101 y[1] (analytic) = 0 y[1] (numeric) = 0.96674183301669198162708690577401 absolute error = 0.96674183301669198162708690577401 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.188 Order of pole = 1.617 x[1] = 1.102 y[1] (analytic) = 0 y[1] (numeric) = 0.96772116683657995604372489228047 absolute error = 0.96772116683657995604372489228047 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.189 Order of pole = 1.617 x[1] = 1.103 y[1] (analytic) = 0 y[1] (numeric) = 0.9687005185800244707870607703745 absolute error = 0.9687005185800244707870607703745 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=846.8MB, alloc=4.4MB, time=85.11 Complex estimate of poles used Radius of convergence = 3.19 Order of pole = 1.617 x[1] = 1.104 y[1] (analytic) = 0 y[1] (numeric) = 0.96967988822820387531804980581818 absolute error = 0.96967988822820387531804980581818 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.191 Order of pole = 1.618 x[1] = 1.105 y[1] (analytic) = 0 y[1] (numeric) = 0.97065927576232027237260998119919 absolute error = 0.97065927576232027237260998119919 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.192 Order of pole = 1.618 x[1] = 1.106 y[1] (analytic) = 0 y[1] (numeric) = 0.97163868116359948233657589263182 absolute error = 0.97163868116359948233657589263182 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.193 Order of pole = 1.618 x[1] = 1.107 y[1] (analytic) = 0 y[1] (numeric) = 0.97261810441329100768333312038062 absolute error = 0.97261810441329100768333312038062 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.194 Order of pole = 1.618 x[1] = 1.108 y[1] (analytic) = 0 y[1] (numeric) = 0.97359754549266799747400537498767 absolute error = 0.97359754549266799747400537498767 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=850.7MB, alloc=4.4MB, time=85.49 Complex estimate of poles used Radius of convergence = 3.195 Order of pole = 1.618 x[1] = 1.109 y[1] (analytic) = 0 y[1] (numeric) = 0.97457700438302721192006701807789 absolute error = 0.97457700438302721192006701807789 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.197 Order of pole = 1.618 x[1] = 1.11 y[1] (analytic) = 0 y[1] (numeric) = 0.97555648106568898700825385382605 absolute error = 0.97555648106568898700825385382605 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.198 Order of pole = 1.618 x[1] = 1.111 y[1] (analytic) = 0 y[1] (numeric) = 0.97653597552199719918764538309573 absolute error = 0.97653597552199719918764538309573 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.199 Order of pole = 1.618 x[1] = 1.112 y[1] (analytic) = 0 y[1] (numeric) = 0.977515487733319230118792007507 absolute error = 0.977515487733319230118792007507 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=854.5MB, alloc=4.4MB, time=85.87 Complex estimate of poles used Radius of convergence = 3.2 Order of pole = 1.618 x[1] = 1.113 y[1] (analytic) = 0 y[1] (numeric) = 0.97849501768104593148476096515837 absolute error = 0.97849501768104593148476096515837 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.201 Order of pole = 1.619 x[1] = 1.114 y[1] (analytic) = 0 y[1] (numeric) = 0.97947456534659158986397507342195 absolute error = 0.97947456534659158986397507342195 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.202 Order of pole = 1.619 x[1] = 1.115 y[1] (analytic) = 0 y[1] (numeric) = 0.98045413071139389166471864715076 absolute error = 0.98045413071139389166471864715076 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.203 Order of pole = 1.619 x[1] = 1.116 y[1] (analytic) = 0 y[1] (numeric) = 0.98143371375691388812118525278634 absolute error = 0.98143371375691388812118525278634 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.204 Order of pole = 1.619 x[1] = 1.117 y[1] (analytic) = 0 y[1] (numeric) = 0.98241331446463596035094225023546 absolute error = 0.98241331446463596035094225023546 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=858.3MB, alloc=4.4MB, time=86.26 Complex estimate of poles used Radius of convergence = 3.205 Order of pole = 1.619 x[1] = 1.118 y[1] (analytic) = 0 y[1] (numeric) = 0.98339293281606778447368736499873 absolute error = 0.98339293281606778447368736499873 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.206 Order of pole = 1.619 x[1] = 1.119 y[1] (analytic) = 0 y[1] (numeric) = 0.9843725687927402967911728228842 absolute error = 0.9843725687927402967911728228842 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.208 Order of pole = 1.619 x[1] = 1.12 y[1] (analytic) = 0 y[1] (numeric) = 0.98535222237620765902817286872702 absolute error = 0.98535222237620765902817286872702 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.209 Order of pole = 1.619 x[1] = 1.121 y[1] (analytic) = 0 y[1] (numeric) = 0.98633189354804722363437077886503 absolute error = 0.98633189354804722363437077886503 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=862.1MB, alloc=4.4MB, time=86.64 Complex estimate of poles used Radius of convergence = 3.21 Order of pole = 1.619 x[1] = 1.122 y[1] (analytic) = 0 y[1] (numeric) = 0.98731158228985949914704176469114 absolute error = 0.98731158228985949914704176469114 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.211 Order of pole = 1.619 x[1] = 1.123 y[1] (analytic) = 0 y[1] (numeric) = 0.9882912885832681156144084514196 absolute error = 0.9882912885832681156144084514196 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.212 Order of pole = 1.62 x[1] = 1.124 y[1] (analytic) = 0 y[1] (numeric) = 0.98927101240991979007954590226628 absolute error = 0.98927101240991979007954590226628 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.213 Order of pole = 1.62 x[1] = 1.125 y[1] (analytic) = 0 y[1] (numeric) = 0.99025075375148429212471344355548 absolute error = 0.99025075375148429212471344355548 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.214 Order of pole = 1.62 x[1] = 1.126 y[1] (analytic) = 0 y[1] (numeric) = 0.99123051258965440947599083082975 absolute error = 0.99123051258965440947599083082975 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=865.9MB, alloc=4.4MB, time=87.02 Complex estimate of poles used Radius of convergence = 3.215 Order of pole = 1.62 x[1] = 1.127 y[1] (analytic) = 0 y[1] (numeric) = 0.99221028890614591366809657985674 absolute error = 0.99221028890614591366809657985674 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.216 Order of pole = 1.62 x[1] = 1.128 y[1] (analytic) = 0 y[1] (numeric) = 0.99319008268269752576926656950057 absolute error = 0.99319008268269752576926656950057 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.217 Order of pole = 1.62 x[1] = 1.129 y[1] (analytic) = 0 y[1] (numeric) = 0.99416989390107088216607130575681 absolute error = 0.99416989390107088216607130575681 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.218 Order of pole = 1.62 x[1] = 1.13 y[1] (analytic) = 0 y[1] (numeric) = 0.99514972254305050040805051784188 absolute error = 0.99514972254305050040805051784188 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.22 Order of pole = 1.62 x[1] = 1.131 y[1] (analytic) = 0 y[1] (numeric) = 0.99612956859044374511204403808193 absolute error = 0.99612956859044374511204403808193 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=869.7MB, alloc=4.4MB, time=87.40 Complex estimate of poles used Radius of convergence = 3.221 Order of pole = 1.62 x[1] = 1.132 y[1] (analytic) = 0 y[1] (numeric) = 0.99710943202508079392609819746516 absolute error = 0.99710943202508079392609819746516 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.222 Order of pole = 1.62 x[1] = 1.133 y[1] (analytic) = 0 y[1] (numeric) = 0.99808931282881460355282724810685 absolute error = 0.99808931282881460355282724810685 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.223 Order of pole = 1.621 x[1] = 1.134 y[1] (analytic) = 0 y[1] (numeric) = 0.99906921098352087583210960253108 absolute error = 0.99906921098352087583210960253108 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.224 Order of pole = 1.621 x[1] = 1.135 y[1] (analytic) = 0 y[1] (numeric) = 1.0000491264710980238829989575984 absolute error = 1.0000491264710980238829989575984 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=873.5MB, alloc=4.4MB, time=87.78 Complex estimate of poles used Radius of convergence = 3.225 Order of pole = 1.621 x[1] = 1.136 y[1] (analytic) = 0 y[1] (numeric) = 1.0010290592734671383047306481077 absolute error = 1.0010290592734671383047306481077 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.226 Order of pole = 1.621 x[1] = 1.137 y[1] (analytic) = 0 y[1] (numeric) = 1.0020090093725719534367038515735 absolute error = 1.0020090093725719534367038515735 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.227 Order of pole = 1.621 x[1] = 1.138 y[1] (analytic) = 0 y[1] (numeric) = 1.0029889767503788136773205414331 absolute error = 1.0029889767503788136773205414331 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.228 Order of pole = 1.621 x[1] = 1.139 y[1] (analytic) = 0 y[1] (numeric) = 1.003968961388876639861562360967 absolute error = 1.003968961388876639861562360967 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.229 Order of pole = 1.621 x[1] = 1.14 y[1] (analytic) = 0 y[1] (numeric) = 1.0049489632700768956971868645296 absolute error = 1.0049489632700768956971868645296 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=877.4MB, alloc=4.4MB, time=88.16 Complex estimate of poles used Radius of convergence = 3.23 Order of pole = 1.621 x[1] = 1.141 y[1] (analytic) = 0 y[1] (numeric) = 1.0059289823760135542594248462836 absolute error = 1.0059289823760135542594248462836 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.232 Order of pole = 1.621 x[1] = 1.142 y[1] (analytic) = 0 y[1] (numeric) = 1.0069090186887430645440607495136 absolute error = 1.0069090186887430645440607495136 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.233 Order of pole = 1.621 x[1] = 1.143 y[1] (analytic) = 0 y[1] (numeric) = 1.0078890721903443180787784217637 absolute error = 1.0078890721903443180787784217637 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.234 Order of pole = 1.622 x[1] = 1.144 y[1] (analytic) = 0 y[1] (numeric) = 1.008869142862918615592654752505 absolute error = 1.008869142862918615592654752505 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=881.2MB, alloc=4.4MB, time=88.55 Complex estimate of poles used Radius of convergence = 3.235 Order of pole = 1.622 x[1] = 1.145 y[1] (analytic) = 0 y[1] (numeric) = 1.0098492306885896337436840007919 absolute error = 1.0098492306885896337436840007919 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.236 Order of pole = 1.622 x[1] = 1.146 y[1] (analytic) = 0 y[1] (numeric) = 1.0108293356495033919042158904094 absolute error = 1.0108293356495033919042158904094 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.237 Order of pole = 1.622 x[1] = 1.147 y[1] (analytic) = 0 y[1] (numeric) = 1.0118094577278282190041908193602 absolute error = 1.0118094577278282190041908193602 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.238 Order of pole = 1.622 x[1] = 1.148 y[1] (analytic) = 0 y[1] (numeric) = 1.0127895969057547204320557991782 absolute error = 1.0127895969057547204320557991782 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.239 Order of pole = 1.622 x[1] = 1.149 y[1] (analytic) = 0 y[1] (numeric) = 1.0137697531654957449932450074978 absolute error = 1.0137697531654957449932450074978 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=885.0MB, alloc=4.4MB, time=88.93 Complex estimate of poles used Radius of convergence = 3.24 Order of pole = 1.622 x[1] = 1.15 y[1] (analytic) = 0 y[1] (numeric) = 1.0147499264892863519261091045516 absolute error = 1.0147499264892863519261091045516 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.241 Order of pole = 1.622 x[1] = 1.151 y[1] (analytic) = 0 y[1] (numeric) = 1.0157301168593837779751777308166 absolute error = 1.0157301168593837779751777308166 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.243 Order of pole = 1.622 x[1] = 1.152 y[1] (analytic) = 0 y[1] (numeric) = 1.0167103242580674045216398688847 absolute error = 1.0167103242580674045216398688847 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.244 Order of pole = 1.622 x[1] = 1.153 y[1] (analytic) = 0 y[1] (numeric) = 1.0176905486676387247709270177944 absolute error = 1.0176905486676387247709270177944 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=888.8MB, alloc=4.4MB, time=89.31 Complex estimate of poles used Radius of convergence = 3.245 Order of pole = 1.622 x[1] = 1.154 y[1] (analytic) = 0 y[1] (numeric) = 1.0186707900704213109972843925354 absolute error = 1.0186707900704213109972843925354 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.246 Order of pole = 1.622 x[1] = 1.155 y[1] (analytic) = 0 y[1] (numeric) = 1.0196510484487607818452156252234 absolute error = 1.0196510484487607818452156252234 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.247 Order of pole = 1.623 x[1] = 1.156 y[1] (analytic) = 0 y[1] (numeric) = 1.0206313237850247696876867075413 absolute error = 1.0206313237850247696876867075413 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.248 Order of pole = 1.623 x[1] = 1.157 y[1] (analytic) = 0 y[1] (numeric) = 1.0216116160616028880409751764619 absolute error = 1.0216116160616028880409751764619 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.249 Order of pole = 1.623 x[1] = 1.158 y[1] (analytic) = 0 y[1] (numeric) = 1.022591925260906699036050807001 absolute error = 1.022591925260906699036050807001 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=892.6MB, alloc=4.4MB, time=89.69 Complex estimate of poles used Radius of convergence = 3.25 Order of pole = 1.623 x[1] = 1.159 y[1] (analytic) = 0 y[1] (numeric) = 1.0235722513653696809463743368055 absolute error = 1.0235722513653696809463743368055 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.251 Order of pole = 1.623 x[1] = 1.16 y[1] (analytic) = 0 y[1] (numeric) = 1.0245525943574471957720010077602 absolute error = 1.0245525943574471957720010077602 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.252 Order of pole = 1.623 x[1] = 1.161 y[1] (analytic) = 0 y[1] (numeric) = 1.0255329542196164568798759694979 absolute error = 1.0255329542196164568798759694979 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.253 Order of pole = 1.623 x[1] = 1.162 y[1] (analytic) = 0 y[1] (numeric) = 1.0265133309343764967002088487281 absolute error = 1.0265133309343764967002088487281 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=896.4MB, alloc=4.4MB, time=90.06 Complex estimate of poles used Radius of convergence = 3.254 Order of pole = 1.623 x[1] = 1.163 y[1] (analytic) = 0 y[1] (numeric) = 1.0274937244842481344788150466548 absolute error = 1.0274937244842481344788150466548 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.256 Order of pole = 1.623 x[1] = 1.164 y[1] (analytic) = 0 y[1] (numeric) = 1.0284741348517739440853115844433 absolute error = 1.0284741348517739440853115844433 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.257 Order of pole = 1.623 x[1] = 1.165 y[1] (analytic) = 0 y[1] (numeric) = 1.0294545620195182218770555737137 absolute error = 1.0294545620195182218770555737137 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.258 Order of pole = 1.623 x[1] = 1.166 y[1] (analytic) = 0 y[1] (numeric) = 1.0304350059700669546187136453934 absolute error = 1.0304350059700669546187136453934 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.259 Order of pole = 1.623 x[1] = 1.167 y[1] (analytic) = 0 y[1] (numeric) = 1.0314154666860277874573509259514 absolute error = 1.0314154666860277874573509259514 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=900.3MB, alloc=4.4MB, time=90.44 Complex estimate of poles used Radius of convergence = 3.26 Order of pole = 1.624 x[1] = 1.168 y[1] (analytic) = 0 y[1] (numeric) = 1.0323959441500299919529284050636 absolute error = 1.0323959441500299919529284050636 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.261 Order of pole = 1.624 x[1] = 1.169 y[1] (analytic) = 0 y[1] (numeric) = 1.033376438344724434164097793127 absolute error = 1.033376438344724434164097793127 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.262 Order of pole = 1.624 x[1] = 1.17 y[1] (analytic) = 0 y[1] (numeric) = 1.0343569492527835427891832207503 absolute error = 1.0343569492527835427891832207503 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.263 Order of pole = 1.624 x[1] = 1.171 y[1] (analytic) = 0 y[1] (numeric) = 1.0353374768569012773622393854012 absolute error = 1.0353374768569012773622393854012 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.264 Order of pole = 1.624 x[1] = 1.172 y[1] (analytic) = 0 y[1] (numeric) = 1.0363180211397930965040760027906 absolute error = 1.0363180211397930965040760027906 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=904.1MB, alloc=4.4MB, time=90.82 Complex estimate of poles used Radius of convergence = 3.265 Order of pole = 1.624 x[1] = 1.173 y[1] (analytic) = 0 y[1] (numeric) = 1.037298582084195926228138672319 absolute error = 1.037298582084195926228138672319 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.266 Order of pole = 1.624 x[1] = 1.174 y[1] (analytic) = 0 y[1] (numeric) = 1.0382791596728681283011365170081 absolute error = 1.0382791596728681283011365170081 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.268 Order of pole = 1.624 x[1] = 1.175 y[1] (analytic) = 0 y[1] (numeric) = 1.0392597538885894686583072087861 absolute error = 1.0392597538885894686583072087861 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.269 Order of pole = 1.624 x[1] = 1.176 y[1] (analytic) = 0 y[1] (numeric) = 1.0402403647141610858732102397977 absolute error = 1.0402403647141610858732102397977 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=907.9MB, alloc=4.4MB, time=91.20 Complex estimate of poles used Radius of convergence = 3.27 Order of pole = 1.624 x[1] = 1.177 y[1] (analytic) = 0 y[1] (numeric) = 1.0412209921324054596819395495627 absolute error = 1.0412209921324054596819395495627 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.271 Order of pole = 1.624 x[1] = 1.178 y[1] (analytic) = 0 y[1] (numeric) = 1.0422016361261663795616468663221 absolute error = 1.0422016361261663795616468663221 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.272 Order of pole = 1.624 x[1] = 1.179 y[1] (analytic) = 0 y[1] (numeric) = 1.0431822966783089133632673687805 absolute error = 1.0431822966783089133632673687805 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.273 Order of pole = 1.624 x[1] = 1.18 y[1] (analytic) = 0 y[1] (numeric) = 1.0441629737717193759983395216852 absolute error = 1.0441629737717193759983395216852 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.274 Order of pole = 1.624 x[1] = 1.181 y[1] (analytic) = 0 y[1] (numeric) = 1.0451436673893052981798111852775 absolute error = 1.0451436673893052981798111852775 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=911.7MB, alloc=4.4MB, time=91.59 Complex estimate of poles used Radius of convergence = 3.275 Order of pole = 1.625 x[1] = 1.182 y[1] (analytic) = 0 y[1] (numeric) = 1.0461243775139953952167243446105 absolute error = 1.0461243775139953952167243446105 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.276 Order of pole = 1.625 x[1] = 1.183 y[1] (analytic) = 0 y[1] (numeric) = 1.0471051041287395358626710500512 absolute error = 1.0471051041287395358626710500512 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.277 Order of pole = 1.625 x[1] = 1.184 y[1] (analytic) = 0 y[1] (numeric) = 1.0480858472165087112179134049789 absolute error = 1.0480858472165087112179134049789 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.278 Order of pole = 1.625 x[1] = 1.185 y[1] (analytic) = 0 y[1] (numeric) = 1.0490666067602950036850606807541 absolute error = 1.0490666067602950036850606807541 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=915.5MB, alloc=4.4MB, time=91.97 Complex estimate of poles used Radius of convergence = 3.28 Order of pole = 1.625 x[1] = 1.186 y[1] (analytic) = 0 y[1] (numeric) = 1.0500473827431115559781968824664 absolute error = 1.0500473827431115559781968824664 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.281 Order of pole = 1.625 x[1] = 1.187 y[1] (analytic) = 0 y[1] (numeric) = 1.0510281751479925401853523317765 absolute error = 1.0510281751479925401853523317765 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.282 Order of pole = 1.625 x[1] = 1.188 y[1] (analytic) = 0 y[1] (numeric) = 1.0520089839579931268842130753523 absolute error = 1.0520089839579931268842130753523 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.283 Order of pole = 1.625 x[1] = 1.189 y[1] (analytic) = 0 y[1] (numeric) = 1.0529898091561894543109621689579 absolute error = 1.0529898091561894543109621689579 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.284 Order of pole = 1.625 x[1] = 1.19 y[1] (analytic) = 0 y[1] (numeric) = 1.0539706507256785975821471281924 absolute error = 1.0539706507256785975821471281924 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=919.3MB, alloc=4.4MB, time=92.36 Complex estimate of poles used Radius of convergence = 3.285 Order of pole = 1.625 x[1] = 1.191 y[1] (analytic) = 0 y[1] (numeric) = 1.0549515086495785379694680771971 absolute error = 1.0549515086495785379694680771971 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.286 Order of pole = 1.625 x[1] = 1.192 y[1] (analytic) = 0 y[1] (numeric) = 1.055932382911028132227381366349 absolute error = 1.055932382911028132227381366349 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.287 Order of pole = 1.625 x[1] = 1.193 y[1] (analytic) = 0 y[1] (numeric) = 1.0569132734931870819734136690462 absolute error = 1.0569132734931870819734136690462 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.288 Order of pole = 1.625 x[1] = 1.194 y[1] (analytic) = 0 y[1] (numeric) = 1.0578941803792359031210818061622 absolute error = 1.0578941803792359031210818061622 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=923.1MB, alloc=4.4MB, time=92.73 Complex estimate of poles used Radius of convergence = 3.289 Order of pole = 1.625 x[1] = 1.195 y[1] (analytic) = 0 y[1] (numeric) = 1.0588751035523758953653137846062 absolute error = 1.0588751035523758953653137846062 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.29 Order of pole = 1.625 x[1] = 1.196 y[1] (analytic) = 0 y[1] (numeric) = 1.0598560429958291117202667736752 absolute error = 1.0598560429958291117202667736752 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.291 Order of pole = 1.626 x[1] = 1.197 y[1] (analytic) = 0 y[1] (numeric) = 1.0608369986928383281094379795244 absolute error = 1.0608369986928383281094379795244 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.293 Order of pole = 1.626 x[1] = 1.198 y[1] (analytic) = 0 y[1] (numeric) = 1.0618179706266670130079646141161 absolute error = 1.0618179706266670130079646141161 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.294 Order of pole = 1.626 x[1] = 1.199 y[1] (analytic) = 0 y[1] (numeric) = 1.0627989587805992971370093904351 absolute error = 1.0627989587805992971370093904351 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=927.0MB, alloc=4.4MB, time=93.12 Complex estimate of poles used Radius of convergence = 3.295 Order of pole = 1.626 x[1] = 1.2 y[1] (analytic) = 0 y[1] (numeric) = 1.0637799631379399432101282105834 absolute error = 1.0637799631379399432101282105834 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.296 Order of pole = 1.626 x[1] = 1.201 y[1] (analytic) = 0 y[1] (numeric) = 1.0647609836820143157315169475896 absolute error = 1.0647609836820143157315169475896 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.297 Order of pole = 1.626 x[1] = 1.202 y[1] (analytic) = 0 y[1] (numeric) = 1.0657420203961683508460344553924 absolute error = 1.0657420203961683508460344553924 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.298 Order of pole = 1.626 x[1] = 1.203 y[1] (analytic) = 0 y[1] (numeric) = 1.0667230732637685262408991744796 absolute error = 1.0667230732637685262408991744796 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=930.8MB, alloc=4.4MB, time=93.49 Complex estimate of poles used Radius of convergence = 3.299 Order of pole = 1.626 x[1] = 1.204 y[1] (analytic) = 0 y[1] (numeric) = 1.0677041422682018310989569330944 absolute error = 1.0677041422682018310989569330944 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.3 Order of pole = 1.626 x[1] = 1.205 y[1] (analytic) = 0 y[1] (numeric) = 1.0686852273928757361034177757522 absolute error = 1.0686852273928757361034177757522 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.301 Order of pole = 1.626 x[1] = 1.206 y[1] (analytic) = 0 y[1] (numeric) = 1.069666328621218163493959882051 absolute error = 1.069666328621218163493959882051 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.302 Order of pole = 1.626 x[1] = 1.207 y[1] (analytic) = 0 y[1] (numeric) = 1.0706474459366774571740988694064 absolute error = 1.0706474459366774571740988694064 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.303 Order of pole = 1.626 x[1] = 1.208 y[1] (analytic) = 0 y[1] (numeric) = 1.0716285793227223528697210034021 absolute error = 1.0716285793227223528697210034021 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=934.6MB, alloc=4.4MB, time=93.87 Complex estimate of poles used Radius of convergence = 3.304 Order of pole = 1.626 x[1] = 1.209 y[1] (analytic) = 0 y[1] (numeric) = 1.0726097287628419483386790689141 absolute error = 1.0726097287628419483386790689141 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.306 Order of pole = 1.626 x[1] = 1.21 y[1] (analytic) = 0 y[1] (numeric) = 1.0735908942405456736313498840531 absolute error = 1.0735908942405456736313498840531 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.307 Order of pole = 1.626 x[1] = 1.211 y[1] (analytic) = 0 y[1] (numeric) = 1.0745720757393632614020526672676 absolute error = 1.0745720757393632614020526672676 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.308 Order of pole = 1.626 x[1] = 1.212 y[1] (analytic) = 0 y[1] (numeric) = 1.0755532732428447172712276956655 absolute error = 1.0755532732428447172712276956655 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.309 Order of pole = 1.626 x[1] = 1.213 y[1] (analytic) = 0 y[1] (numeric) = 1.0765344867345602902382749197479 absolute error = 1.0765344867345602902382749197479 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=938.4MB, alloc=4.4MB, time=94.25 Complex estimate of poles used Radius of convergence = 3.31 Order of pole = 1.626 x[1] = 1.214 y[1] (analytic) = 0 y[1] (numeric) = 1.0775157161981004431449524263011 absolute error = 1.0775157161981004431449524263011 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.311 Order of pole = 1.627 x[1] = 1.215 y[1] (analytic) = 0 y[1] (numeric) = 1.0784969616170758231892348671719 absolute error = 1.0784969616170758231892348671719 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.312 Order of pole = 1.627 x[1] = 1.216 y[1] (analytic) = 0 y[1] (numeric) = 1.07947822297511723248953219705 absolute error = 1.07947822297511723248953219705 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.313 Order of pole = 1.627 x[1] = 1.217 y[1] (analytic) = 0 y[1] (numeric) = 1.080459500255875598699169288206 absolute error = 1.080459500255875598699169288206 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=942.2MB, alloc=4.4MB, time=94.63 Complex estimate of poles used Radius of convergence = 3.314 Order of pole = 1.627 x[1] = 1.218 y[1] (analytic) = 0 y[1] (numeric) = 1.081440793443021945671027214387 absolute error = 1.081440793443021945671027214387 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.315 Order of pole = 1.627 x[1] = 1.219 y[1] (analytic) = 0 y[1] (numeric) = 1.082422102520247364172247219751 absolute error = 1.082422102520247364172247219751 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.316 Order of pole = 1.627 x[1] = 1.22 y[1] (analytic) = 0 y[1] (numeric) = 1.0834034274712629826488986118333 absolute error = 1.0834034274712629826488986118333 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.317 Order of pole = 1.627 x[1] = 1.221 y[1] (analytic) = 0 y[1] (numeric) = 1.0843847682797999380405120400787 absolute error = 1.0843847682797999380405120400787 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.319 Order of pole = 1.627 x[1] = 1.222 y[1] (analytic) = 0 y[1] (numeric) = 1.0853661249296093466443798434503 absolute error = 1.0853661249296093466443798434503 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=946.0MB, alloc=4.4MB, time=95.00 Complex estimate of poles used Radius of convergence = 3.32 Order of pole = 1.627 x[1] = 1.223 y[1] (analytic) = 0 y[1] (numeric) = 1.0863474974044622750295253720357 absolute error = 1.0863474974044622750295253720357 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.321 Order of pole = 1.627 x[1] = 1.224 y[1] (analytic) = 0 y[1] (numeric) = 1.0873288856881497110002434084192 absolute error = 1.0873288856881497110002434084192 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.322 Order of pole = 1.627 x[1] = 1.225 y[1] (analytic) = 0 y[1] (numeric) = 1.0883102897644825346091140348726 absolute error = 1.0883102897644825346091140348726 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.323 Order of pole = 1.627 x[1] = 1.226 y[1] (analytic) = 0 y[1] (numeric) = 1.0892917096172914892193925121439 absolute error = 1.0892917096172914892193925121439 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=949.8MB, alloc=4.4MB, time=95.38 Complex estimate of poles used Radius of convergence = 3.324 Order of pole = 1.627 x[1] = 1.227 y[1] (analytic) = 0 y[1] (numeric) = 1.0902731452304271526166779547886 absolute error = 1.0902731452304271526166779547886 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.325 Order of pole = 1.627 x[1] = 1.228 y[1] (analytic) = 0 y[1] (numeric) = 1.0912545965877599081697638065977 absolute error = 1.0912545965877599081697638065977 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.326 Order of pole = 1.627 x[1] = 1.229 y[1] (analytic) = 0 y[1] (numeric) = 1.0922360636731799160405733377312 absolute error = 1.0922360636731799160405733377312 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.327 Order of pole = 1.627 x[1] = 1.23 y[1] (analytic) = 0 y[1] (numeric) = 1.0932175464705970844430836026655 absolute error = 1.0932175464705970844430836026655 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.328 Order of pole = 1.627 x[1] = 1.231 y[1] (analytic) = 0 y[1] (numeric) = 1.0941990449639410409511415150099 absolute error = 1.0941990449639410409511415150099 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=953.7MB, alloc=4.4MB, time=95.77 Complex estimate of poles used Radius of convergence = 3.329 Order of pole = 1.627 x[1] = 1.232 y[1] (analytic) = 0 y[1] (numeric) = 1.0951805591371611038550759116466 absolute error = 1.0951805591371611038550759116466 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.33 Order of pole = 1.627 x[1] = 1.233 y[1] (analytic) = 0 y[1] (numeric) = 1.0961620889742262535670096944941 absolute error = 1.0961620889742262535670096944941 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.332 Order of pole = 1.627 x[1] = 1.234 y[1] (analytic) = 0 y[1] (numeric) = 1.0971436344591251040747763534956 absolute error = 1.0971436344591251040747763534956 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.333 Order of pole = 1.627 x[1] = 1.235 y[1] (analytic) = 0 y[1] (numeric) = 1.0981251955758658744443453891874 absolute error = 1.0981251955758658744443453891874 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=957.5MB, alloc=4.4MB, time=96.15 Complex estimate of poles used Radius of convergence = 3.334 Order of pole = 1.627 x[1] = 1.236 y[1] (analytic) = 0 y[1] (numeric) = 1.0991067723084763603706613674124 absolute error = 1.0991067723084763603706613674124 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.335 Order of pole = 1.628 x[1] = 1.237 y[1] (analytic) = 0 y[1] (numeric) = 1.1000883646410039057768015524099 absolute error = 1.1000883646410039057768015524099 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.336 Order of pole = 1.628 x[1] = 1.238 y[1] (analytic) = 0 y[1] (numeric) = 1.101069972557515374461357277639 absolute error = 1.101069972557515374461357277639 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.337 Order of pole = 1.628 x[1] = 1.239 y[1] (analytic) = 0 y[1] (numeric) = 1.1020515960420971217939444262767 absolute error = 1.1020515960420971217939444262767 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.338 Order of pole = 1.628 x[1] = 1.24 y[1] (analytic) = 0 y[1] (numeric) = 1.103033235078854966458748605381 absolute error = 1.103033235078854966458748605381 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=961.3MB, alloc=4.4MB, time=96.53 Complex estimate of poles used Radius of convergence = 3.339 Order of pole = 1.628 x[1] = 1.241 y[1] (analytic) = 0 y[1] (numeric) = 1.1040148896519141622460108092174 absolute error = 1.1040148896519141622460108092174 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.34 Order of pole = 1.628 x[1] = 1.242 y[1] (analytic) = 0 y[1] (numeric) = 1.1049965597454193698913595782231 absolute error = 1.1049965597454193698913595782231 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.341 Order of pole = 1.628 x[1] = 1.243 y[1] (analytic) = 0 y[1] (numeric) = 1.1059782453435346289628958705237 absolute error = 1.1059782453435346289628958705237 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.342 Order of pole = 1.628 x[1] = 1.244 y[1] (analytic) = 0 y[1] (numeric) = 1.1069599464304433297959370728269 absolute error = 1.1069599464304433297959370728269 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=965.1MB, alloc=4.4MB, time=96.91 Complex estimate of poles used Radius of convergence = 3.343 Order of pole = 1.628 x[1] = 1.245 y[1] (analytic) = 0 y[1] (numeric) = 1.1079416629903481854753267868941 absolute error = 1.1079416629903481854753267868941 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.345 Order of pole = 1.628 x[1] = 1.246 y[1] (analytic) = 0 y[1] (numeric) = 1.1089233950074712038652172366414 absolute error = 1.1089233950074712038652172366414 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.346 Order of pole = 1.628 x[1] = 1.247 y[1] (analytic) = 0 y[1] (numeric) = 1.1099051424660536596862313492402 absolute error = 1.1099051424660536596862313492402 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.347 Order of pole = 1.628 x[1] = 1.248 y[1] (analytic) = 0 y[1] (numeric) = 1.1108869053503560666399117713848 absolute error = 1.1108869053503560666399117713848 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.348 Order of pole = 1.628 x[1] = 1.249 y[1] (analytic) = 0 y[1] (numeric) = 1.1118686836446581495803642891616 absolute error = 1.1118686836446581495803642891616 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=968.9MB, alloc=4.4MB, time=97.31 Complex estimate of poles used Radius of convergence = 3.349 Order of pole = 1.628 x[1] = 1.25 y[1] (analytic) = 0 y[1] (numeric) = 1.1128504773332588167330033267032 absolute error = 1.1128504773332588167330033267032 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.35 Order of pole = 1.628 x[1] = 1.251 y[1] (analytic) = 0 y[1] (numeric) = 1.1138322864004761319603074050337 absolute error = 1.1138322864004761319603074050337 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.351 Order of pole = 1.628 x[1] = 1.252 y[1] (analytic) = 0 y[1] (numeric) = 1.1148141108306472870744926482174 absolute error = 1.1148141108306472870744926482174 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.352 Order of pole = 1.628 x[1] = 1.253 y[1] (analytic) = 0 y[1] (numeric) = 1.1157959506081285741970126291066 absolute error = 1.1157959506081285741970126291066 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.353 Order of pole = 1.628 x[1] = 1.254 y[1] (analytic) = 0 y[1] (numeric) = 1.1167778057172953581647930516543 absolute error = 1.1167778057172953581647930516543 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=972.7MB, alloc=4.4MB, time=97.70 Complex estimate of poles used Radius of convergence = 3.354 Order of pole = 1.628 x[1] = 1.255 y[1] (analytic) = 0 y[1] (numeric) = 1.1177596761425420489831099709079 absolute error = 1.1177596761425420489831099709079 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.355 Order of pole = 1.628 x[1] = 1.256 y[1] (analytic) = 0 y[1] (numeric) = 1.1187415618682820743250204554385 absolute error = 1.1187415618682820743250204554385 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.356 Order of pole = 1.628 x[1] = 1.257 y[1] (analytic) = 0 y[1] (numeric) = 1.1197234628789478520772548000842 absolute error = 1.1197234628789478520772548000842 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.357 Order of pole = 1.628 x[1] = 1.258 y[1] (analytic) = 0 y[1] (numeric) = 1.1207053791589907629324795994995 absolute error = 1.1207053791589907629324795994995 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=976.6MB, alloc=4.4MB, time=98.09 Complex estimate of poles used Radius of convergence = 3.359 Order of pole = 1.628 x[1] = 1.259 y[1] (analytic) = 0 y[1] (numeric) = 1.1216873106928811230278411951042 absolute error = 1.1216873106928811230278411951042 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.36 Order of pole = 1.628 x[1] = 1.26 y[1] (analytic) = 0 y[1] (numeric) = 1.1226692574651081566296992096208 absolute error = 1.1226692574651081566296992096208 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.361 Order of pole = 1.628 x[1] = 1.261 y[1] (analytic) = 0 y[1] (numeric) = 1.1236512194601799688644600844745 absolute error = 1.1236512194601799688644600844745 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.362 Order of pole = 1.628 x[1] = 1.262 y[1] (analytic) = 0 y[1] (numeric) = 1.1246331966626235184954207359113 absolute error = 1.1246331966626235184954207359113 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.363 Order of pole = 1.628 x[1] = 1.263 y[1] (analytic) = 0 y[1] (numeric) = 1.1256151890569845907455326457662 absolute error = 1.1256151890569845907455326457662 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=980.4MB, alloc=4.4MB, time=98.48 Complex estimate of poles used Radius of convergence = 3.364 Order of pole = 1.628 x[1] = 1.264 y[1] (analytic) = 0 y[1] (numeric) = 1.1265971966278277701659969023867 absolute error = 1.1265971966278277701659969023867 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.365 Order of pole = 1.628 x[1] = 1.265 y[1] (analytic) = 0 y[1] (numeric) = 1.1275792193597364135506009062872 absolute error = 1.1275792193597364135506009062872 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.366 Order of pole = 1.628 x[1] = 1.266 y[1] (analytic) = 0 y[1] (numeric) = 1.1285612572373126228957076536838 absolute error = 1.1285612572373126228957076536838 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.367 Order of pole = 1.629 x[1] = 1.267 y[1] (analytic) = 0 y[1] (numeric) = 1.1295433102451772184058087091289 absolute error = 1.1295433102451772184058087091289 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=984.2MB, alloc=4.4MB, time=98.88 Complex estimate of poles used Radius of convergence = 3.368 Order of pole = 1.629 x[1] = 1.268 y[1] (analytic) = 0 y[1] (numeric) = 1.1305253783679697115445521760424 absolute error = 1.1305253783679697115445521760424 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.369 Order of pole = 1.629 x[1] = 1.269 y[1] (analytic) = 0 y[1] (numeric) = 1.1315074615903482781311571710145 absolute error = 1.1315074615903482781311571710145 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.37 Order of pole = 1.629 x[1] = 1.27 y[1] (analytic) = 0 y[1] (numeric) = 1.132489559896989731482126504339 absolute error = 1.132489559896989731482126504339 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.371 Order of pole = 1.629 x[1] = 1.271 y[1] (analytic) = 0 y[1] (numeric) = 1.1334716732725894955981694653299 absolute error = 1.1334716732725894955981694653299 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.373 Order of pole = 1.629 x[1] = 1.272 y[1] (analytic) = 0 y[1] (numeric) = 1.1344538017018615783962468065706 absolute error = 1.1344538017018615783962468065706 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=988.0MB, alloc=4.4MB, time=99.26 Complex estimate of poles used Radius of convergence = 3.374 Order of pole = 1.629 x[1] = 1.273 y[1] (analytic) = 0 y[1] (numeric) = 1.1354359451695385449866502163563 absolute error = 1.1354359451695385449866502163563 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.375 Order of pole = 1.629 x[1] = 1.274 y[1] (analytic) = 0 y[1] (numeric) = 1.1364181036603714909950287632092 absolute error = 1.1364181036603714909950287632092 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.376 Order of pole = 1.629 x[1] = 1.275 y[1] (analytic) = 0 y[1] (numeric) = 1.1374002771591300159292749904793 absolute error = 1.1374002771591300159292749904793 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.377 Order of pole = 1.629 x[1] = 1.276 y[1] (analytic) = 0 y[1] (numeric) = 1.1383824656506021965911835326884 absolute error = 1.1383824656506021965911835326884 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=991.8MB, alloc=4.4MB, time=99.64 Complex estimate of poles used Radius of convergence = 3.378 Order of pole = 1.629 x[1] = 1.277 y[1] (analytic) = 0 y[1] (numeric) = 1.1393646691195945605327953184368 absolute error = 1.1393646691195945605327953184368 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.379 Order of pole = 1.629 x[1] = 1.278 y[1] (analytic) = 0 y[1] (numeric) = 1.1403468875509320595573406173696 absolute error = 1.1403468875509320595573406173696 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.38 Order of pole = 1.629 x[1] = 1.279 y[1] (analytic) = 0 y[1] (numeric) = 1.1413291209294580432646943808941 absolute error = 1.1413291209294580432646943808941 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.381 Order of pole = 1.629 x[1] = 1.28 y[1] (analytic) = 0 y[1] (numeric) = 1.1423113692400342326412575180545 absolute error = 1.1423113692400342326412575180545 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.382 Order of pole = 1.629 x[1] = 1.281 y[1] (analytic) = 0 y[1] (numeric) = 1.1432936324675406936941779392048 absolute error = 1.1432936324675406936941779392048 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=995.6MB, alloc=4.4MB, time=100.03 Complex estimate of poles used Radius of convergence = 3.383 Order of pole = 1.629 x[1] = 1.282 y[1] (analytic) = 0 y[1] (numeric) = 1.1442759105968758111298253908768 absolute error = 1.1442759105968758111298253908768 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.384 Order of pole = 1.629 x[1] = 1.283 y[1] (analytic) = 0 y[1] (numeric) = 1.1452582036129562620764342955198 absolute error = 1.1452582036129562620764342955198 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.385 Order of pole = 1.629 x[1] = 1.284 y[1] (analytic) = 0 y[1] (numeric) = 1.1462405115007169898508289995929 absolute error = 1.1462405115007169898508289995929 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.387 Order of pole = 1.629 x[1] = 1.285 y[1] (analytic) = 0 y[1] (numeric) = 1.1472228342451111777691460228209 absolute error = 1.1472228342451111777691460228209 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.388 Order of pole = 1.629 memory used=999.4MB, alloc=4.4MB, time=100.40 x[1] = 1.286 y[1] (analytic) = 0 y[1] (numeric) = 1.14820517183111022300146809028 absolute error = 1.14820517183111022300146809028 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.389 Order of pole = 1.629 x[1] = 1.287 y[1] (analytic) = 0 y[1] (numeric) = 1.1491875242437037104702849173672 absolute error = 1.1491875242437037104702849173672 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.39 Order of pole = 1.629 x[1] = 1.288 y[1] (analytic) = 0 y[1] (numeric) = 1.1501698914678993867926959056204 absolute error = 1.1501698914678993867926959056204 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.391 Order of pole = 1.629 x[1] = 1.289 y[1] (analytic) = 0 y[1] (numeric) = 1.1511522734887231342662700948032 absolute error = 1.1511522734887231342662700948032 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.392 Order of pole = 1.629 x[1] = 1.29 y[1] (analytic) = 0 y[1] (numeric) = 1.152134670291218944898478903647 absolute error = 1.152134670291218944898478903647 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1003.3MB, alloc=4.4MB, time=100.79 Complex estimate of poles used Radius of convergence = 3.393 Order of pole = 1.629 x[1] = 1.291 y[1] (analytic) = 0 y[1] (numeric) = 1.1531170818604488944796173781547 absolute error = 1.1531170818604488944796173781547 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.394 Order of pole = 1.629 x[1] = 1.292 y[1] (analytic) = 0 y[1] (numeric) = 1.1540995081814931166991298524172 absolute error = 1.1540995081814931166991298524172 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.395 Order of pole = 1.629 x[1] = 1.293 y[1] (analytic) = 0 y[1] (numeric) = 1.1550819492394497773052561124783 absolute error = 1.1550819492394497773052561124783 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.396 Order of pole = 1.629 x[1] = 1.294 y[1] (analytic) = 0 y[1] (numeric) = 1.1560644050194350483079143389033 absolute error = 1.1560644050194350483079143389033 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.397 Order of pole = 1.629 x[1] = 1.295 y[1] (analytic) = 0 y[1] (numeric) = 1.1570468755065830822247372883676 absolute error = 1.1570468755065830822247372883676 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1007.1MB, alloc=4.4MB, time=101.17 Complex estimate of poles used Radius of convergence = 3.398 Order of pole = 1.629 x[1] = 1.296 y[1] (analytic) = 0 y[1] (numeric) = 1.15802936068604598637017835878 absolute error = 1.15802936068604598637017835878 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.399 Order of pole = 1.629 x[1] = 1.297 y[1] (analytic) = 0 y[1] (numeric) = 1.1590118605429937971876043661987 absolute error = 1.1590118605429937971876043661987 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.401 Order of pole = 1.629 x[1] = 1.298 y[1] (analytic) = 0 y[1] (numeric) = 1.1599943750626144546242920450797 absolute error = 1.1599943750626144546242920450797 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.402 Order of pole = 1.629 x[1] = 1.299 y[1] (analytic) = 0 y[1] (numeric) = 1.1609769042301137765492454662279 absolute error = 1.1609769042301137765492454662279 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1010.9MB, alloc=4.4MB, time=101.55 Complex estimate of poles used Radius of convergence = 3.403 Order of pole = 1.629 x[1] = 1.3 y[1] (analytic) = 0 y[1] (numeric) = 1.1619594480307154332137517491919 absolute error = 1.1619594480307154332137517491919 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.404 Order of pole = 1.629 x[1] = 1.301 y[1] (analytic) = 0 y[1] (numeric) = 1.162942006449660921754592627765 absolute error = 1.162942006449660921754592627765 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.405 Order of pole = 1.629 x[1] = 1.302 y[1] (analytic) = 0 y[1] (numeric) = 1.1639245794722095407398296087217 absolute error = 1.1639245794722095407398296087217 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.406 Order of pole = 1.629 x[1] = 1.303 y[1] (analytic) = 0 y[1] (numeric) = 1.1649071670836383647570806449353 absolute error = 1.1649071670836383647570806449353 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.407 Order of pole = 1.629 x[1] = 1.304 y[1] (analytic) = 0 y[1] (numeric) = 1.1658897692692422190442064245898 absolute error = 1.1658897692692422190442064245898 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1014.7MB, alloc=4.4MB, time=101.93 Complex estimate of poles used Radius of convergence = 3.408 Order of pole = 1.629 x[1] = 1.305 y[1] (analytic) = 0 y[1] (numeric) = 1.1668723860143336541623245583164 absolute error = 1.1668723860143336541623245583164 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.409 Order of pole = 1.629 x[1] = 1.306 y[1] (analytic) = 0 y[1] (numeric) = 1.167855017304242920711070125757 absolute error = 1.167855017304242920711070125757 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.41 Order of pole = 1.629 x[1] = 1.307 y[1] (analytic) = 0 y[1] (numeric) = 1.1688376631243179440860212222815 absolute error = 1.1688376631243179440860212222815 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.411 Order of pole = 1.629 x[1] = 1.308 y[1] (analytic) = 0 y[1] (numeric) = 1.1698203234599242992782083253671 absolute error = 1.1698203234599242992782083253671 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1018.5MB, alloc=4.4MB, time=102.30 Complex estimate of poles used Radius of convergence = 3.412 Order of pole = 1.629 x[1] = 1.309 y[1] (analytic) = 0 y[1] (numeric) = 1.1708029982964451857156264784827 absolute error = 1.1708029982964451857156264784827 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.413 Order of pole = 1.629 x[1] = 1.31 y[1] (analytic) = 0 y[1] (numeric) = 1.1717856876192814021466694682177 absolute error = 1.1717856876192814021466694682177 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.415 Order of pole = 1.629 x[1] = 1.311 y[1] (analytic) = 0 y[1] (numeric) = 1.1727683914138513215654053478474 absolute error = 1.1727683914138513215654053478474 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.416 Order of pole = 1.629 x[1] = 1.312 y[1] (analytic) = 0 y[1] (numeric) = 1.173751109665590866178612837541 absolute error = 1.173751109665590866178612837541 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.417 Order of pole = 1.629 x[1] = 1.313 y[1] (analytic) = 0 y[1] (numeric) = 1.1747338423599534824144983079923 absolute error = 1.1747338423599534824144983079923 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1022.3MB, alloc=4.4MB, time=102.68 Complex estimate of poles used Radius of convergence = 3.418 Order of pole = 1.629 x[1] = 1.314 y[1] (analytic) = 0 y[1] (numeric) = 1.1757165894824101159730132303923 absolute error = 1.1757165894824101159730132303923 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.419 Order of pole = 1.629 x[1] = 1.315 y[1] (analytic) = 0 y[1] (numeric) = 1.1766993510184491869176921513629 absolute error = 1.1766993510184491869176921513629 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.42 Order of pole = 1.629 x[1] = 1.316 y[1] (analytic) = 0 y[1] (numeric) = 1.1776821269535765648089314267383 absolute error = 1.1776821269535765648089314267383 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.421 Order of pole = 1.629 x[1] = 1.317 y[1] (analytic) = 0 y[1] (numeric) = 1.1786649172733155438786291229129 absolute error = 1.1786649172733155438786291229129 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1026.1MB, alloc=4.4MB, time=103.07 Complex estimate of poles used Radius of convergence = 3.422 Order of pole = 1.629 x[1] = 1.318 y[1] (analytic) = 0 y[1] (numeric) = 1.1796477219632068182461066688744 absolute error = 1.1796477219632068182461066688744 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.423 Order of pole = 1.629 x[1] = 1.319 y[1] (analytic) = 0 y[1] (numeric) = 1.1806305410088084571752330160101 absolute error = 1.1806305410088084571752330160101 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.424 Order of pole = 1.629 x[1] = 1.32 y[1] (analytic) = 0 y[1] (numeric) = 1.1816133743956958803726722363123 absolute error = 1.1816133743956958803726722363123 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.425 Order of pole = 1.629 x[1] = 1.321 y[1] (analytic) = 0 y[1] (numeric) = 1.1825962221094618333271756627183 absolute error = 1.1825962221094618333271756627183 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.426 Order of pole = 1.629 x[1] = 1.322 y[1] (analytic) = 0 y[1] (numeric) = 1.1835790841357163626898398480026 absolute error = 1.1835790841357163626898398480026 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1030.0MB, alloc=4.4MB, time=103.45 Complex estimate of poles used Radius of convergence = 3.427 Order of pole = 1.629 x[1] = 1.323 y[1] (analytic) = 0 y[1] (numeric) = 1.1845619604600867916952517908936 absolute error = 1.1845619604600867916952517908936 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.428 Order of pole = 1.629 x[1] = 1.324 y[1] (analytic) = 0 y[1] (numeric) = 1.1855448510682176956234430499163 absolute error = 1.1855448510682176956234430499163 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.43 Order of pole = 1.629 x[1] = 1.325 y[1] (analytic) = 0 y[1] (numeric) = 1.1865277559457708773025745368694 absolute error = 1.1865277559457708773025745368694 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.431 Order of pole = 1.629 x[1] = 1.326 y[1] (analytic) = 0 y[1] (numeric) = 1.1875106750784253426522739528247 absolute error = 1.1875106750784253426522739528247 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.432 Order of pole = 1.629 memory used=1033.8MB, alloc=4.4MB, time=103.84 x[1] = 1.327 y[1] (analytic) = 0 y[1] (numeric) = 1.1884936084518772762675480001004 absolute error = 1.1884936084518772762675480001004 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.433 Order of pole = 1.629 x[1] = 1.328 y[1] (analytic) = 0 y[1] (numeric) = 1.1894765560518400170431916737962 absolute error = 1.1894765560518400170431916737962 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.434 Order of pole = 1.629 x[1] = 1.329 y[1] (analytic) = 0 y[1] (numeric) = 1.1904595178640440338386171062001 absolute error = 1.1904595178640440338386171062001 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.435 Order of pole = 1.629 x[1] = 1.33 y[1] (analytic) = 0 y[1] (numeric) = 1.1914424938742369011830246066776 absolute error = 1.1914424938742369011830246066776 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.436 Order of pole = 1.629 x[1] = 1.331 y[1] (analytic) = 0 y[1] (numeric) = 1.1924254840681832750208387085379 absolute error = 1.1924254840681832750208387085379 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1037.6MB, alloc=4.4MB, time=104.21 Complex estimate of poles used Radius of convergence = 3.437 Order of pole = 1.629 x[1] = 1.332 y[1] (analytic) = 0 y[1] (numeric) = 1.1934084884316648684973322028399 absolute error = 1.1934084884316648684973322028399 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.438 Order of pole = 1.629 x[1] = 1.333 y[1] (analytic) = 0 y[1] (numeric) = 1.1943915069504804277843613071543 absolute error = 1.1943915069504804277843613071543 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.439 Order of pole = 1.629 x[1] = 1.334 y[1] (analytic) = 0 y[1] (numeric) = 1.1953745396104457079461352849359 absolute error = 1.1953745396104457079461352849359 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.44 Order of pole = 1.629 x[1] = 1.335 y[1] (analytic) = 0 y[1] (numeric) = 1.1963575863973934488449439983885 absolute error = 1.1963575863973934488449439983885 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.441 Order of pole = 1.629 x[1] = 1.336 y[1] (analytic) = 0 y[1] (numeric) = 1.1973406472971733510867670445175 absolute error = 1.1973406472971733510867670445175 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1041.4MB, alloc=4.4MB, time=104.59 Complex estimate of poles used Radius of convergence = 3.442 Order of pole = 1.629 x[1] = 1.337 y[1] (analytic) = 0 y[1] (numeric) = 1.198323722295652052006688290472 absolute error = 1.198323722295652052006688290472 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.443 Order of pole = 1.629 x[1] = 1.338 y[1] (analytic) = 0 y[1] (numeric) = 1.1993068113787131016940397902708 absolute error = 1.1993068113787131016940397902708 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.445 Order of pole = 1.629 x[1] = 1.339 y[1] (analytic) = 0 y[1] (numeric) = 1.2002899145322569390571992305956 absolute error = 1.2002899145322569390571992305956 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.446 Order of pole = 1.629 x[1] = 1.34 y[1] (analytic) = 0 y[1] (numeric) = 1.2012730317422008679279652185131 absolute error = 1.2012730317422008679279652185131 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1045.2MB, alloc=4.4MB, time=104.97 Complex estimate of poles used Radius of convergence = 3.447 Order of pole = 1.629 x[1] = 1.341 y[1] (analytic) = 0 y[1] (numeric) = 1.202256162994479033205434888763 absolute error = 1.202256162994479033205434888763 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.448 Order of pole = 1.629 x[1] = 1.342 y[1] (analytic) = 0 y[1] (numeric) = 1.2032393082750423970393084726156 absolute error = 1.2032393082750423970393084726156 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.449 Order of pole = 1.629 x[1] = 1.343 y[1] (analytic) = 0 y[1] (numeric) = 1.2042224675698587150525456342706 absolute error = 1.2042224675698587150525456342706 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.45 Order of pole = 1.629 x[1] = 1.344 y[1] (analytic) = 0 y[1] (numeric) = 1.2052056408649125126032985443291 absolute error = 1.2052056408649125126032985443291 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.451 Order of pole = 1.629 x[1] = 1.345 y[1] (analytic) = 0 y[1] (numeric) = 1.2061888281462050610860468230335 absolute error = 1.2061888281462050610860468230335 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1049.0MB, alloc=4.4MB, time=105.36 Complex estimate of poles used Radius of convergence = 3.452 Order of pole = 1.629 x[1] = 1.346 y[1] (analytic) = 0 y[1] (numeric) = 1.2071720293997543542718596487298 absolute error = 1.2071720293997543542718596487298 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.453 Order of pole = 1.629 x[1] = 1.347 y[1] (analytic) = 0 y[1] (numeric) = 1.2081552446115950846877104893688 absolute error = 1.2081552446115950846877104893688 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.454 Order of pole = 1.629 x[1] = 1.348 y[1] (analytic) = 0 y[1] (numeric) = 1.2091384737677786200347700768245 absolute error = 1.2091384737677786200347700768245 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.455 Order of pole = 1.629 x[1] = 1.349 y[1] (analytic) = 0 y[1] (numeric) = 1.2101217168543729796456034053768 absolute error = 1.2101217168543729796456034053768 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1052.8MB, alloc=4.4MB, time=105.74 Complex estimate of poles used Radius of convergence = 3.456 Order of pole = 1.629 x[1] = 1.35 y[1] (analytic) = 0 y[1] (numeric) = 1.2111049738574628109801966968725 absolute error = 1.2111049738574628109801966968725 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.457 Order of pole = 1.629 x[1] = 1.351 y[1] (analytic) = 0 y[1] (numeric) = 1.2120882447631493661607404358555 absolute error = 1.2120882447631493661607404358555 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.458 Order of pole = 1.629 x[1] = 1.352 y[1] (analytic) = 0 y[1] (numeric) = 1.213071529557550478545094738338 absolute error = 1.213071529557550478545094738338 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.46 Order of pole = 1.629 x[1] = 1.353 y[1] (analytic) = 0 y[1] (numeric) = 1.214054828226800539338863477873 absolute error = 1.214054828226800539338863477873 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.461 Order of pole = 1.629 x[1] = 1.354 y[1] (analytic) = 0 y[1] (numeric) = 1.2150381407570504742460037521841 absolute error = 1.2150381407570504742460037521841 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1056.7MB, alloc=4.4MB, time=106.12 Complex estimate of poles used Radius of convergence = 3.462 Order of pole = 1.629 x[1] = 1.355 y[1] (analytic) = 0 y[1] (numeric) = 1.2160214671344677201578974328156 absolute error = 1.2160214671344677201578974328156 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.463 Order of pole = 1.629 x[1] = 1.356 y[1] (analytic) = 0 y[1] (numeric) = 1.2170048073452362018808116990831 absolute error = 1.2170048073452362018808116990831 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.464 Order of pole = 1.629 x[1] = 1.357 y[1] (analytic) = 0 y[1] (numeric) = 1.2179881613755563089016756160302 absolute error = 1.2179881613755563089016756160302 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.465 Order of pole = 1.629 x[1] = 1.358 y[1] (analytic) = 0 y[1] (numeric) = 1.2189715292116448721920999741401 absolute error = 1.2189715292116448721920999741401 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1060.5MB, alloc=4.4MB, time=106.49 Complex estimate of poles used Radius of convergence = 3.466 Order of pole = 1.629 x[1] = 1.359 y[1] (analytic) = 0 y[1] (numeric) = 1.2199549108397351410505677662039 absolute error = 1.2199549108397351410505677662039 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.467 Order of pole = 1.629 x[1] = 1.36 y[1] (analytic) = 0 y[1] (numeric) = 1.2209383062460767599827228340151 absolute error = 1.2209383062460767599827228340151 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.468 Order of pole = 1.629 x[1] = 1.361 y[1] (analytic) = 0 y[1] (numeric) = 1.2219217154169357456196843744472 absolute error = 1.2219217154169357456196843744472 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.469 Order of pole = 1.629 x[1] = 1.362 y[1] (analytic) = 0 y[1] (numeric) = 1.2229051383385944636743151509689 absolute error = 1.2229051383385944636743151509689 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.47 Order of pole = 1.629 x[1] = 1.363 y[1] (analytic) = 0 y[1] (numeric) = 1.2238885749973516059353714127737 absolute error = 1.2238885749973516059353714127737 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1064.3MB, alloc=4.4MB, time=106.88 Complex estimate of poles used Radius of convergence = 3.471 Order of pole = 1.629 x[1] = 1.364 y[1] (analytic) = 0 y[1] (numeric) = 1.2248720253795221672994626794369 absolute error = 1.2248720253795221672994626794369 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.472 Order of pole = 1.629 x[1] = 1.365 y[1] (analytic) = 0 y[1] (numeric) = 1.2258554894714374228407497043711 absolute error = 1.2258554894714374228407497043711 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.473 Order of pole = 1.629 x[1] = 1.366 y[1] (analytic) = 0 y[1] (numeric) = 1.2268389672594449049183090853303 absolute error = 1.2268389672594449049183090853303 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.474 Order of pole = 1.629 x[1] = 1.367 y[1] (analytic) = 0 y[1] (numeric) = 1.2278224587299083803210931448141 absolute error = 1.2278224587299083803210931448141 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.476 Order of pole = 1.629 memory used=1068.1MB, alloc=4.4MB, time=107.26 x[1] = 1.368 y[1] (analytic) = 0 y[1] (numeric) = 1.2288059638692078274504138574456 absolute error = 1.2288059638692078274504138574456 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.477 Order of pole = 1.629 x[1] = 1.369 y[1] (analytic) = 0 y[1] (numeric) = 1.2297894826637394135398797552462 absolute error = 1.2297894826637394135398797552462 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.478 Order of pole = 1.629 x[1] = 1.37 y[1] (analytic) = 0 y[1] (numeric) = 1.2307730150999154719127148952023 absolute error = 1.2307730150999154719127148952023 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.479 Order of pole = 1.629 x[1] = 1.371 y[1] (analytic) = 0 y[1] (numeric) = 1.2317565611641644792763891266177 absolute error = 1.2317565611641644792763891266177 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.48 Order of pole = 1.629 x[1] = 1.372 y[1] (analytic) = 0 y[1] (numeric) = 1.2327401208429310330544890484731 absolute error = 1.2327401208429310330544890484731 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1071.9MB, alloc=4.4MB, time=107.64 Complex estimate of poles used Radius of convergence = 3.481 Order of pole = 1.629 x[1] = 1.373 y[1] (analytic) = 0 y[1] (numeric) = 1.2337236941226758287557591993654 absolute error = 1.2337236941226758287557591993654 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.482 Order of pole = 1.629 x[1] = 1.374 y[1] (analytic) = 0 y[1] (numeric) = 1.2347072809898756373802431745858 absolute error = 1.2347072809898756373802431745858 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.483 Order of pole = 1.629 x[1] = 1.375 y[1] (analytic) = 0 y[1] (numeric) = 1.235690881431023282862454516507 absolute error = 1.235690881431023282862454516507 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.484 Order of pole = 1.629 x[1] = 1.376 y[1] (analytic) = 0 y[1] (numeric) = 1.2366744954326276195515073756951 absolute error = 1.2366744954326276195515073756951 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.485 Order of pole = 1.629 x[1] = 1.377 y[1] (analytic) = 0 y[1] (numeric) = 1.2376581229812135097281370910388 absolute error = 1.2376581229812135097281370910388 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1075.7MB, alloc=4.4MB, time=108.03 Complex estimate of poles used Radius of convergence = 3.486 Order of pole = 1.629 x[1] = 1.378 y[1] (analytic) = 0 y[1] (numeric) = 1.238641764063321801158540987697 absolute error = 1.238641764063321801158540987697 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.487 Order of pole = 1.629 x[1] = 1.379 y[1] (analytic) = 0 y[1] (numeric) = 1.2396254186655093046849698418117 absolute error = 1.2396254186655093046849698418117 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.488 Order of pole = 1.629 x[1] = 1.38 y[1] (analytic) = 0 y[1] (numeric) = 1.2406090867743487718530006107105 absolute error = 1.2406090867743487718530006107105 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.489 Order of pole = 1.628 x[1] = 1.381 y[1] (analytic) = 0 y[1] (numeric) = 1.2415927683764288725754211767392 absolute error = 1.2415927683764288725754211767392 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1079.6MB, alloc=4.4MB, time=108.41 Complex estimate of poles used Radius of convergence = 3.49 Order of pole = 1.628 x[1] = 1.382 y[1] (analytic) = 0 y[1] (numeric) = 1.2425764634583541728326580019168 absolute error = 1.2425764634583541728326580019168 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.492 Order of pole = 1.628 x[1] = 1.383 y[1] (analytic) = 0 y[1] (numeric) = 1.2435601720067451124096777392962 absolute error = 1.2435601720067451124096777392962 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.493 Order of pole = 1.628 x[1] = 1.384 y[1] (analytic) = 0 y[1] (numeric) = 1.2445438940082379826692939952422 absolute error = 1.2445438940082379826692939952422 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.494 Order of pole = 1.628 x[1] = 1.385 y[1] (analytic) = 0 y[1] (numeric) = 1.2455276294494849043618105848096 absolute error = 1.2455276294494849043618105848096 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.495 Order of pole = 1.628 x[1] = 1.386 y[1] (analytic) = 0 y[1] (numeric) = 1.246511378317153805470932770013 absolute error = 1.246511378317153805470932770013 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1083.4MB, alloc=4.4MB, time=108.80 Complex estimate of poles used Radius of convergence = 3.496 Order of pole = 1.628 x[1] = 1.387 y[1] (analytic) = 0 y[1] (numeric) = 1.247495140597928399095878118034 absolute error = 1.247495140597928399095878118034 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.497 Order of pole = 1.628 x[1] = 1.388 y[1] (analytic) = 0 y[1] (numeric) = 1.2484789162785081613696187633058 absolute error = 1.2484789162785081613696187633058 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.498 Order of pole = 1.628 x[1] = 1.389 y[1] (analytic) = 0 y[1] (numeric) = 1.2494627053456083094131870039559 absolute error = 1.2494627053456083094131870039559 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.499 Order of pole = 1.628 x[1] = 1.39 y[1] (analytic) = 0 y[1] (numeric) = 1.2504465077859597793259763092706 absolute error = 1.2504465077859597793259763092706 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1087.2MB, alloc=4.4MB, time=109.18 Complex estimate of poles used Radius of convergence = 3.5 Order of pole = 1.628 x[1] = 1.391 y[1] (analytic) = 0 y[1] (numeric) = 1.2514303235863092042119699606771 absolute error = 1.2514303235863092042119699606771 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.501 Order of pole = 1.628 x[1] = 1.392 y[1] (analytic) = 0 y[1] (numeric) = 1.2524141527334188922418296942134 absolute error = 1.2524141527334188922418296942134 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.502 Order of pole = 1.628 x[1] = 1.393 y[1] (analytic) = 0 y[1] (numeric) = 1.2533979952140668047507768575847 absolute error = 1.2533979952140668047507768575847 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.503 Order of pole = 1.628 x[1] = 1.394 y[1] (analytic) = 0 y[1] (numeric) = 1.2543818510150465343721987396748 absolute error = 1.2543818510150465343721987396748 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.504 Order of pole = 1.628 x[1] = 1.395 y[1] (analytic) = 0 y[1] (numeric) = 1.2553657201231672832069128748074 absolute error = 1.2553657201231672832069128748074 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1091.0MB, alloc=4.4MB, time=109.56 Complex estimate of poles used Radius of convergence = 3.505 Order of pole = 1.628 x[1] = 1.396 y[1] (analytic) = 0 y[1] (numeric) = 1.2563496025252538410280222681243 absolute error = 1.2563496025252538410280222681243 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.506 Order of pole = 1.628 x[1] = 1.397 y[1] (analytic) = 0 y[1] (numeric) = 1.2573334982081465635212946321737 absolute error = 1.2573334982081465635212946321737 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.508 Order of pole = 1.628 x[1] = 1.398 y[1] (analytic) = 0 y[1] (numeric) = 1.2583174071587013505609988681797 absolute error = 1.2583174071587013505609988681797 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.509 Order of pole = 1.628 x[1] = 1.399 y[1] (analytic) = 0 y[1] (numeric) = 1.2593013293637896245211321684958 absolute error = 1.2593013293637896245211321684958 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1094.8MB, alloc=4.4MB, time=109.94 Complex estimate of poles used Radius of convergence = 3.51 Order of pole = 1.628 x[1] = 1.4 y[1] (analytic) = 0 y[1] (numeric) = 1.2602852648102983086219712594308 absolute error = 1.2602852648102983086219712594308 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.511 Order of pole = 1.628 x[1] = 1.401 y[1] (analytic) = 0 y[1] (numeric) = 1.2612692134851298053118814459768 absolute error = 1.2612692134851298053118814459768 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.512 Order of pole = 1.628 x[1] = 1.402 y[1] (analytic) = 0 y[1] (numeric) = 1.262253175375201974684317261967 absolute error = 1.262253175375201974684317261967 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.513 Order of pole = 1.628 x[1] = 1.403 y[1] (analytic) = 0 y[1] (numeric) = 1.2632371504674481129299486708442 absolute error = 1.2632371504674481129299486708442 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.514 Order of pole = 1.628 x[1] = 1.404 y[1] (analytic) = 0 y[1] (numeric) = 1.2642211387488169308238469035361 absolute error = 1.2642211387488169308238469035361 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1098.6MB, alloc=4.4MB, time=110.33 Complex estimate of poles used Radius of convergence = 3.515 Order of pole = 1.628 x[1] = 1.405 y[1] (analytic) = 0 y[1] (numeric) = 1.265205140206272532247664160903 absolute error = 1.265205140206272532247664160903 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.516 Order of pole = 1.628 x[1] = 1.406 y[1] (analytic) = 0 y[1] (numeric) = 1.2661891548267943927467415488562 absolute error = 1.2661891548267943927467415488562 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.517 Order of pole = 1.628 x[1] = 1.407 y[1] (analytic) = 0 y[1] (numeric) = 1.2671731825973773381220797545382 absolute error = 1.2671731825973773381220797545382 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.518 Order of pole = 1.628 x[1] = 1.408 y[1] (analytic) = 0 y[1] (numeric) = 1.2681572235050315230571071119107 absolute error = 1.2681572235050315230571071119107 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.519 Order of pole = 1.628 x[1] = 1.409 y[1] (analytic) = 0 y[1] (numeric) = 1.2691412775367824097791798447115 absolute error = 1.2691412775367824097791798447115 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1102.4MB, alloc=4.4MB, time=110.71 Complex estimate of poles used Radius of convergence = 3.52 Order of pole = 1.628 x[1] = 1.41 y[1] (analytic) = 0 y[1] (numeric) = 1.2701253446796707467557494140251 absolute error = 1.2701253446796707467557494140251 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.521 Order of pole = 1.628 x[1] = 1.411 y[1] (analytic) = 0 y[1] (numeric) = 1.2711094249207525474251320366538 absolute error = 1.2711094249207525474251320366538 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.522 Order of pole = 1.627 x[1] = 1.412 y[1] (analytic) = 0 y[1] (numeric) = 1.27209351824709906896181557909 absolute error = 1.27209351824709906896181557909 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.524 Order of pole = 1.627 x[1] = 1.413 y[1] (analytic) = 0 y[1] (numeric) = 1.2730776246457967910762391701646 absolute error = 1.2730776246457967910762391701646 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1106.3MB, alloc=4.4MB, time=111.09 Complex estimate of poles used Radius of convergence = 3.525 Order of pole = 1.627 x[1] = 1.414 y[1] (analytic) = 0 y[1] (numeric) = 1.2740617441039473948489810133918 absolute error = 1.2740617441039473948489810133918 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.526 Order of pole = 1.627 x[1] = 1.415 y[1] (analytic) = 0 y[1] (numeric) = 1.2750458766086677415992900176435 absolute error = 1.2750458766086677415992900176435 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.527 Order of pole = 1.627 x[1] = 1.416 y[1] (analytic) = 0 y[1] (numeric) = 1.2760300221470898517878970020664 absolute error = 1.2760300221470898517878970020664 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.528 Order of pole = 1.627 x[1] = 1.417 y[1] (analytic) = 0 y[1] (numeric) = 1.2770141807063608839540413681065 absolute error = 1.2770141807063608839540413681065 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.529 Order of pole = 1.627 x[1] = 1.418 y[1] (analytic) = 0 y[1] (numeric) = 1.2779983522736431136866492681286 absolute error = 1.2779983522736431136866492681286 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1110.1MB, alloc=4.4MB, time=111.48 Complex estimate of poles used Radius of convergence = 3.53 Order of pole = 1.627 x[1] = 1.419 y[1] (analytic) = 0 y[1] (numeric) = 1.2789825368361139126295994364104 absolute error = 1.2789825368361139126295994364104 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.531 Order of pole = 1.627 x[1] = 1.42 y[1] (analytic) = 0 y[1] (numeric) = 1.2799667343809657275210129842582 absolute error = 1.2799667343809657275210129842582 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.532 Order of pole = 1.627 x[1] = 1.421 y[1] (analytic) = 0 y[1] (numeric) = 1.2809509448954060592665035966299 absolute error = 1.2809509448954060592665035966299 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.533 Order of pole = 1.627 x[1] = 1.422 y[1] (analytic) = 0 y[1] (numeric) = 1.2819351683666574420463247029658 absolute error = 1.2819351683666574420463247029658 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1113.9MB, alloc=4.4MB, time=111.87 Complex estimate of poles used Radius of convergence = 3.534 Order of pole = 1.627 x[1] = 1.423 y[1] (analytic) = 0 y[1] (numeric) = 1.2829194047819574224563503299148 absolute error = 1.2829194047819574224563503299148 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.535 Order of pole = 1.627 x[1] = 1.424 y[1] (analytic) = 0 y[1] (numeric) = 1.2839036541285585386828264783117 absolute error = 1.2839036541285585386828264783117 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.536 Order of pole = 1.627 x[1] = 1.425 y[1] (analytic) = 0 y[1] (numeric) = 1.2848879163937282997108300010999 absolute error = 1.2848879163937282997108300010999 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.537 Order of pole = 1.627 x[1] = 1.426 y[1] (analytic) = 0 y[1] (numeric) = 1.285872191564749164566372092916 absolute error = 1.285872191564749164566372092916 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.538 Order of pole = 1.627 x[1] = 1.427 y[1] (analytic) = 0 y[1] (numeric) = 1.2868564796289185215920836357499 absolute error = 1.2868564796289185215920836357499 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1117.7MB, alloc=4.4MB, time=112.25 Complex estimate of poles used Radius of convergence = 3.539 Order of pole = 1.627 x[1] = 1.428 y[1] (analytic) = 0 y[1] (numeric) = 1.2878407805735486677564197784723 absolute error = 1.2878407805735486677564197784723 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.541 Order of pole = 1.627 x[1] = 1.429 y[1] (analytic) = 0 y[1] (numeric) = 1.2888250943859667879963212610797 absolute error = 1.2888250943859667879963212610797 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.542 Order of pole = 1.627 x[1] = 1.43 y[1] (analytic) = 0 y[1] (numeric) = 1.2898094210535149345932701272462 absolute error = 1.2898094210535149345932701272462 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.543 Order of pole = 1.627 x[1] = 1.431 y[1] (analytic) = 0 y[1] (numeric) = 1.2907937605635500065826776011933 absolute error = 1.2907937605635500065826776011933 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1121.5MB, alloc=4.4MB, time=112.63 Complex estimate of poles used Radius of convergence = 3.544 Order of pole = 1.627 x[1] = 1.432 y[1] (analytic) = 0 y[1] (numeric) = 1.291778112903443729196542036993 absolute error = 1.291778112903443729196542036993 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.545 Order of pole = 1.627 x[1] = 1.433 y[1] (analytic) = 0 y[1] (numeric) = 1.2927624780605826333393149802073 absolute error = 1.2927624780605826333393149802073 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.546 Order of pole = 1.627 x[1] = 1.434 y[1] (analytic) = 0 y[1] (numeric) = 1.2937468560223680350969135132412 absolute error = 1.2937468560223680350969135132412 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.547 Order of pole = 1.627 x[1] = 1.435 y[1] (analytic) = 0 y[1] (numeric) = 1.2947312467762160152788171869433 absolute error = 1.2947312467762160152788171869433 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.548 Order of pole = 1.626 x[1] = 1.436 y[1] (analytic) = 0 y[1] (numeric) = 1.2957156503095573989931879718333 absolute error = 1.2957156503095573989931879718333 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1125.3MB, alloc=4.4MB, time=113.01 Complex estimate of poles used Radius of convergence = 3.549 Order of pole = 1.626 x[1] = 1.437 y[1] (analytic) = 0 y[1] (numeric) = 1.2967000666098377352549517928669 absolute error = 1.2967000666098377352549517928669 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.55 Order of pole = 1.626 x[1] = 1.438 y[1] (analytic) = 0 y[1] (numeric) = 1.2976844956645172766267803418689 absolute error = 1.2976844956645172766267803418689 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.551 Order of pole = 1.626 x[1] = 1.439 y[1] (analytic) = 0 y[1] (numeric) = 1.2986689374610709588929119916732 absolute error = 1.2986689374610709588929119916732 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.552 Order of pole = 1.626 x[1] = 1.44 y[1] (analytic) = 0 y[1] (numeric) = 1.2996533919869883807657507656067 absolute error = 1.2996533919869883807657507656067 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.553 Order of pole = 1.626 memory used=1129.1MB, alloc=4.4MB, time=113.39 x[1] = 1.441 y[1] (analytic) = 0 y[1] (numeric) = 1.3006378592297737836251824452423 absolute error = 1.3006378592297737836251824452423 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.554 Order of pole = 1.626 x[1] = 1.442 y[1] (analytic) = 0 y[1] (numeric) = 1.3016223391769460312905470283265 absolute error = 1.3016223391769460312905470283265 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.555 Order of pole = 1.626 x[1] = 1.443 y[1] (analytic) = 0 y[1] (numeric) = 1.3026068318160385898252068774593 absolute error = 1.3026068318160385898252068774593 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.556 Order of pole = 1.626 x[1] = 1.444 y[1] (analytic) = 0 y[1] (numeric) = 1.3035913371345995073736500284674 absolute error = 1.3035913371345995073736500284674 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.558 Order of pole = 1.626 x[1] = 1.445 y[1] (analytic) = 0 y[1] (numeric) = 1.3045758551201913940310682554723 absolute error = 1.3045758551201913940310682554723 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1133.0MB, alloc=4.4MB, time=113.78 Complex estimate of poles used Radius of convergence = 3.559 Order of pole = 1.626 x[1] = 1.446 y[1] (analytic) = 0 y[1] (numeric) = 1.3055603857603914017453496174068 absolute error = 1.3055603857603914017453496174068 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.56 Order of pole = 1.626 x[1] = 1.447 y[1] (analytic) = 0 y[1] (numeric) = 1.3065449290427912042514253381824 absolute error = 1.3065449290427912042514253381824 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.561 Order of pole = 1.626 x[1] = 1.448 y[1] (analytic) = 0 y[1] (numeric) = 1.3075294849549969770379109998549 absolute error = 1.3075294849549969770379109998549 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.562 Order of pole = 1.626 x[1] = 1.449 y[1] (analytic) = 0 y[1] (numeric) = 1.3085140534846293773459821549766 absolute error = 1.3085140534846293773459821549766 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.563 Order of pole = 1.626 x[1] = 1.45 y[1] (analytic) = 0 y[1] (numeric) = 1.3094986346193235242004245908645 absolute error = 1.3094986346193235242004245908645 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1136.8MB, alloc=4.4MB, time=114.17 Complex estimate of poles used Radius of convergence = 3.564 Order of pole = 1.626 x[1] = 1.451 y[1] (analytic) = 0 y[1] (numeric) = 1.3104832283467289784727996047502 absolute error = 1.3104832283467289784727996047502 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.565 Order of pole = 1.626 x[1] = 1.452 y[1] (analytic) = 0 y[1] (numeric) = 1.3114678346545097229766647747162 absolute error = 1.3114678346545097229766647747162 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.566 Order of pole = 1.626 x[1] = 1.453 y[1] (analytic) = 0 y[1] (numeric) = 1.3124524535303441425947908369607 absolute error = 1.3124524535303441425947908369607 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.567 Order of pole = 1.626 x[1] = 1.454 y[1] (analytic) = 0 y[1] (numeric) = 1.3134370849619250044383154052713 absolute error = 1.3134370849619250044383154052713 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1140.6MB, alloc=4.4MB, time=114.55 Complex estimate of poles used Radius of convergence = 3.568 Order of pole = 1.625 x[1] = 1.455 y[1] (analytic) = 0 y[1] (numeric) = 1.3144217289369594380377743936294 absolute error = 1.3144217289369594380377743936294 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.569 Order of pole = 1.625 x[1] = 1.456 y[1] (analytic) = 0 y[1] (numeric) = 1.3154063854431689155659521276096 absolute error = 1.3154063854431689155659521276096 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.57 Order of pole = 1.625 x[1] = 1.457 y[1] (analytic) = 0 y[1] (numeric) = 1.3163910544682892320924912546857 absolute error = 1.3163910544682892320924912546857 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.571 Order of pole = 1.625 x[1] = 1.458 y[1] (analytic) = 0 y[1] (numeric) = 1.3173757360000704858702036877047 absolute error = 1.3173757360000704858702036877047 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.572 Order of pole = 1.625 x[1] = 1.459 y[1] (analytic) = 0 y[1] (numeric) = 1.3183604300262770586530239396469 absolute error = 1.3183604300262770586530239396469 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1144.4MB, alloc=4.4MB, time=114.94 Complex estimate of poles used Radius of convergence = 3.573 Order of pole = 1.625 x[1] = 1.46 y[1] (analytic) = 0 y[1] (numeric) = 1.3193451365346875960455463313509 absolute error = 1.3193451365346875960455463313509 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.574 Order of pole = 1.625 x[1] = 1.461 y[1] (analytic) = 0 y[1] (numeric) = 1.3203298555130949878840876771512 absolute error = 1.3203298555130949878840876771512 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.576 Order of pole = 1.625 x[1] = 1.462 y[1] (analytic) = 0 y[1] (numeric) = 1.3213145869493063486492171763498 absolute error = 1.3213145869493063486492171763498 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.577 Order of pole = 1.625 x[1] = 1.463 y[1] (analytic) = 0 y[1] (numeric) = 1.3222993308311429979096953611288 absolute error = 1.3222993308311429979096953611288 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1148.2MB, alloc=4.4MB, time=115.32 Complex estimate of poles used Radius of convergence = 3.578 Order of pole = 1.625 x[1] = 1.464 y[1] (analytic) = 0 y[1] (numeric) = 1.3232840871464404407977640739007 absolute error = 1.3232840871464404407977640739007 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.579 Order of pole = 1.625 x[1] = 1.465 y[1] (analytic) = 0 y[1] (numeric) = 1.3242688558830483485157295691972 absolute error = 1.3242688558830483485157295691972 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.58 Order of pole = 1.625 x[1] = 1.466 y[1] (analytic) = 0 y[1] (numeric) = 1.3252536370288305388737809570082 absolute error = 1.3252536370288305388737809570082 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.581 Order of pole = 1.625 x[1] = 1.467 y[1] (analytic) = 0 y[1] (numeric) = 1.3262384305716649568589863260064 absolute error = 1.3262384305716649568589863260064 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.582 Order of pole = 1.625 x[1] = 1.468 y[1] (analytic) = 0 y[1] (numeric) = 1.3272232364994436552354090063281 absolute error = 1.3272232364994436552354090063281 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1152.0MB, alloc=4.4MB, time=115.71 Complex estimate of poles used Radius of convergence = 3.583 Order of pole = 1.625 x[1] = 1.469 y[1] (analytic) = 0 y[1] (numeric) = 1.3282080548000727751752865525295 absolute error = 1.3282080548000727751752865525295 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.584 Order of pole = 1.625 x[1] = 1.47 y[1] (analytic) = 0 y[1] (numeric) = 1.3291928854614725269212151479982 absolute error = 1.3291928854614725269212151479982 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.585 Order of pole = 1.625 x[1] = 1.471 y[1] (analytic) = 0 y[1] (numeric) = 1.330177728471577170479282252476 absolute error = 1.330177728471577170479282252476 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.586 Order of pole = 1.624 x[1] = 1.472 y[1] (analytic) = 0 y[1] (numeric) = 1.3311625838183349963430904344395 absolute error = 1.3311625838183349963430904344395 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1155.8MB, alloc=4.4MB, time=116.08 Complex estimate of poles used Radius of convergence = 3.587 Order of pole = 1.624 x[1] = 1.473 y[1] (analytic) = 0 y[1] (numeric) = 1.3321474514897083062486154498915 absolute error = 1.3321474514897083062486154498915 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.588 Order of pole = 1.624 x[1] = 1.474 y[1] (analytic) = 0 y[1] (numeric) = 1.3331323314736733939598417486386 absolute error = 1.3331323314736733939598417486386 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.589 Order of pole = 1.624 x[1] = 1.475 y[1] (analytic) = 0 y[1] (numeric) = 1.3341172237582205260851187083706 absolute error = 1.3341172237582205260851187083706 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.59 Order of pole = 1.624 x[1] = 1.476 y[1] (analytic) = 0 y[1] (numeric) = 1.3351021283313539229241810158159 absolute error = 1.3351021283313539229241810158159 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.591 Order of pole = 1.624 x[1] = 1.477 y[1] (analytic) = 0 y[1] (numeric) = 1.3360870451810917393457767329228 absolute error = 1.3360870451810917393457767329228 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1159.7MB, alloc=4.4MB, time=116.47 Complex estimate of poles used Radius of convergence = 3.592 Order of pole = 1.624 x[1] = 1.478 y[1] (analytic) = 0 y[1] (numeric) = 1.3370719742954660456958467044135 absolute error = 1.3370719742954660456958467044135 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.594 Order of pole = 1.624 x[1] = 1.479 y[1] (analytic) = 0 y[1] (numeric) = 1.3380569156625228087361990811731 absolute error = 1.3380569156625228087361990811731 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.595 Order of pole = 1.624 x[1] = 1.48 y[1] (analytic) = 0 y[1] (numeric) = 1.3390418692703218726136228517748 absolute error = 1.3390418692703218726136228517748 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.596 Order of pole = 1.624 x[1] = 1.481 y[1] (analytic) = 0 y[1] (numeric) = 1.3400268351069369398593843919996 absolute error = 1.3400268351069369398593843919996 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.597 Order of pole = 1.624 memory used=1163.5MB, alloc=4.4MB, time=116.85 x[1] = 1.482 y[1] (analytic) = 0 y[1] (numeric) = 1.3410118131604555524190511594906 absolute error = 1.3410118131604555524190511594906 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.598 Order of pole = 1.624 x[1] = 1.483 y[1] (analytic) = 0 y[1] (numeric) = 1.341996803418979072712586777688 absolute error = 1.341996803418979072712586777688 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.599 Order of pole = 1.624 x[1] = 1.484 y[1] (analytic) = 0 y[1] (numeric) = 1.342981805870622664724661869917 absolute error = 1.342981805870622664724661869917 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.6 Order of pole = 1.624 x[1] = 1.485 y[1] (analytic) = 0 y[1] (numeric) = 1.3439668205035152751251251209553 absolute error = 1.3439668205035152751251251209553 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.601 Order of pole = 1.624 x[1] = 1.486 y[1] (analytic) = 0 y[1] (numeric) = 1.3449518473057996144195791595844 absolute error = 1.3449518473057996144195791595844 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1167.3MB, alloc=4.4MB, time=117.23 Complex estimate of poles used Radius of convergence = 3.602 Order of pole = 1.624 x[1] = 1.487 y[1] (analytic) = 0 y[1] (numeric) = 1.3459368862656321381300059715333 absolute error = 1.3459368862656321381300059715333 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.603 Order of pole = 1.623 x[1] = 1.488 y[1] (analytic) = 0 y[1] (numeric) = 1.3469219373711830280053866678549 absolute error = 1.3469219373711830280053866678549 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.604 Order of pole = 1.623 x[1] = 1.489 y[1] (analytic) = 0 y[1] (numeric) = 1.347907000610636173262260549133 absolute error = 1.347907000610636173262260549133 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.605 Order of pole = 1.623 x[1] = 1.49 y[1] (analytic) = 0 y[1] (numeric) = 1.3488920759721891518551685210047 absolute error = 1.3488920759721891518551685210047 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.606 Order of pole = 1.623 x[1] = 1.491 y[1] (analytic) = 0 y[1] (numeric) = 1.3498771634440532117769260312997 absolute error = 1.3498771634440532117769260312997 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1171.1MB, alloc=4.4MB, time=117.61 Complex estimate of poles used Radius of convergence = 3.607 Order of pole = 1.623 x[1] = 1.492 y[1] (analytic) = 0 y[1] (numeric) = 1.3508622630144532523886708136412 absolute error = 1.3508622630144532523886708136412 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.608 Order of pole = 1.623 x[1] = 1.493 y[1] (analytic) = 0 y[1] (numeric) = 1.3518473746716278057796308366315 absolute error = 1.3518473746716278057796308366315 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.609 Order of pole = 1.623 x[1] = 1.494 y[1] (analytic) = 0 y[1] (numeric) = 1.3528324984038290181565579717488 absolute error = 1.3528324984038290181565579717488 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.61 Order of pole = 1.623 x[1] = 1.495 y[1] (analytic) = 0 y[1] (numeric) = 1.3538176341993226312627730068233 absolute error = 1.3538176341993226312627730068233 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1174.9MB, alloc=4.4MB, time=117.99 Complex estimate of poles used Radius of convergence = 3.612 Order of pole = 1.623 x[1] = 1.496 y[1] (analytic) = 0 y[1] (numeric) = 1.3548027820463879638267677454291 absolute error = 1.3548027820463879638267677454291 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.613 Order of pole = 1.623 x[1] = 1.497 y[1] (analytic) = 0 y[1] (numeric) = 1.3557879419333178930403100457338 absolute error = 1.3557879419333178930403100457338 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.614 Order of pole = 1.623 x[1] = 1.498 y[1] (analytic) = 0 y[1] (numeric) = 1.356773113848418836065997765285 absolute error = 1.356773113848418836065997765285 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.615 Order of pole = 1.623 x[1] = 1.499 y[1] (analytic) = 0 y[1] (numeric) = 1.3577582977800107315742076908859 absolute error = 1.3577582977800107315742076908859 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.616 Order of pole = 1.623 x[1] = 1.5 y[1] (analytic) = 0 y[1] (numeric) = 1.3587434937164270213093856451187 absolute error = 1.3587434937164270213093856451187 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1178.7MB, alloc=4.4MB, time=118.37 Complex estimate of poles used Radius of convergence = 3.617 Order of pole = 1.623 x[1] = 1.501 y[1] (analytic) = 0 y[1] (numeric) = 1.3597287016460146316856240732197 absolute error = 1.3597287016460146316856240732197 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.618 Order of pole = 1.622 x[1] = 1.502 y[1] (analytic) = 0 y[1] (numeric) = 1.3607139215571339554114735258893 absolute error = 1.3607139215571339554114735258893 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.619 Order of pole = 1.622 x[1] = 1.503 y[1] (analytic) = 0 y[1] (numeric) = 1.3616991534381588331439345652379 absolute error = 1.3616991534381588331439345652379 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.62 Order of pole = 1.622 x[1] = 1.504 y[1] (analytic) = 0 y[1] (numeric) = 1.3626843972774765351715767324247 absolute error = 1.3626843972774765351715767324247 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1182.6MB, alloc=4.4MB, time=118.76 Complex estimate of poles used Radius of convergence = 3.621 Order of pole = 1.622 x[1] = 1.505 y[1] (analytic) = 0 y[1] (numeric) = 1.3636696530634877431267313266396 absolute error = 1.3636696530634877431267313266396 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.622 Order of pole = 1.622 x[1] = 1.506 y[1] (analytic) = 0 y[1] (numeric) = 1.3646549207846065317267048559146 absolute error = 1.3646549207846065317267048559146 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.623 Order of pole = 1.622 x[1] = 1.507 y[1] (analytic) = 0 y[1] (numeric) = 1.3656402004292603505439601308215 absolute error = 1.3656402004292603505439601308215 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.624 Order of pole = 1.622 x[1] = 1.508 y[1] (analytic) = 0 y[1] (numeric) = 1.3666254919858900058052120824306 absolute error = 1.3666254919858900058052120824306 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.625 Order of pole = 1.622 x[1] = 1.509 y[1] (analytic) = 0 y[1] (numeric) = 1.3676107954429496422193854959587 absolute error = 1.3676107954429496422193854959587 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1186.4MB, alloc=4.4MB, time=119.14 Complex estimate of poles used Radius of convergence = 3.626 Order of pole = 1.622 x[1] = 1.51 y[1] (analytic) = 0 y[1] (numeric) = 1.3685961107889067248343819613345 absolute error = 1.3685961107889067248343819613345 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.627 Order of pole = 1.622 x[1] = 1.511 y[1] (analytic) = 0 y[1] (numeric) = 1.3695814380122420209226034514485 absolute error = 1.3695814380122420209226034514485 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.628 Order of pole = 1.622 x[1] = 1.512 y[1] (analytic) = 0 y[1] (numeric) = 1.3705667771014495818951800481419 absolute error = 1.3705667771014495818951800481419 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.629 Order of pole = 1.622 x[1] = 1.513 y[1] (analytic) = 0 y[1] (numeric) = 1.3715521280450367252448494450135 absolute error = 1.3715521280450367252448494450135 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1190.2MB, alloc=4.4MB, time=119.52 Complex estimate of poles used Radius of convergence = 3.631 Order of pole = 1.622 x[1] = 1.514 y[1] (analytic) = 0 y[1] (numeric) = 1.3725374908315240165174359649007 absolute error = 1.3725374908315240165174359649007 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.632 Order of pole = 1.621 x[1] = 1.515 y[1] (analytic) = 0 y[1] (numeric) = 1.3735228654494452513118769384067 absolute error = 1.3735228654494452513118769384067 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.633 Order of pole = 1.621 x[1] = 1.516 y[1] (analytic) = 0 y[1] (numeric) = 1.3745082518873474373087443981128 absolute error = 1.3745082518873474373087443981128 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.634 Order of pole = 1.621 x[1] = 1.517 y[1] (analytic) = 0 y[1] (numeric) = 1.3754936501337907763272101511252 absolute error = 1.3754936501337907763272101511252 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.635 Order of pole = 1.621 x[1] = 1.518 y[1] (analytic) = 0 y[1] (numeric) = 1.3764790601773486464104024003647 absolute error = 1.3764790601773486464104024003647 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1194.0MB, alloc=4.4MB, time=119.91 Complex estimate of poles used Radius of convergence = 3.636 Order of pole = 1.621 x[1] = 1.519 y[1] (analytic) = 0 y[1] (numeric) = 1.3774644820066075839391021925167 absolute error = 1.3774644820066075839391021925167 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.637 Order of pole = 1.621 x[1] = 1.52 y[1] (analytic) = 0 y[1] (numeric) = 1.3784499156101672657737280778121 absolute error = 1.3784499156101672657737280778121 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.638 Order of pole = 1.621 x[1] = 1.521 y[1] (analytic) = 0 y[1] (numeric) = 1.3794353609766404914245574738183 absolute error = 1.3794353609766404914245574738183 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.639 Order of pole = 1.621 x[1] = 1.522 y[1] (analytic) = 0 y[1] (numeric) = 1.380420818094653165250133332172 absolute error = 1.380420818094653165250133332172 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.64 Order of pole = 1.621 x[1] = 1.523 y[1] (analytic) = 0 y[1] (numeric) = 1.3814062869528442786838048136947 absolute error = 1.3814062869528442786838048136947 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1197.8MB, alloc=4.4MB, time=120.30 Complex estimate of poles used Radius of convergence = 3.641 Order of pole = 1.621 x[1] = 1.524 y[1] (analytic) = 0 y[1] (numeric) = 1.3823917675398658924883507835863 absolute error = 1.3823917675398658924883507835863 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.642 Order of pole = 1.621 x[1] = 1.525 y[1] (analytic) = 0 y[1] (numeric) = 1.3833772598443831190386350444049 absolute error = 1.3833772598443831190386350444049 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.643 Order of pole = 1.621 x[1] = 1.526 y[1] (analytic) = 0 y[1] (numeric) = 1.3843627638550741046322423303013 absolute error = 1.3843627638550741046322423303013 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.644 Order of pole = 1.621 x[1] = 1.527 y[1] (analytic) = 0 y[1] (numeric) = 1.3853482795606300118280441914925 absolute error = 1.3853482795606300118280441914925 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1201.6MB, alloc=4.4MB, time=120.68 Complex estimate of poles used Radius of convergence = 3.645 Order of pole = 1.62 x[1] = 1.528 y[1] (analytic) = 0 y[1] (numeric) = 1.3863338069497550018126440032295 absolute error = 1.3863338069497550018126440032295 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.646 Order of pole = 1.62 x[1] = 1.529 y[1] (analytic) = 0 y[1] (numeric) = 1.387319346011166216794650438537 absolute error = 1.387319346011166216794650438537 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.647 Order of pole = 1.62 x[1] = 1.53 y[1] (analytic) = 0 y[1] (numeric) = 1.3883048967335937624267288487835 absolute error = 1.3883048967335937624267288487835 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.648 Order of pole = 1.62 x[1] = 1.531 y[1] (analytic) = 0 y[1] (numeric) = 1.3892904591057806902553801006753 absolute error = 1.3892904591057806902553801006753 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.65 Order of pole = 1.62 x[1] = 1.532 y[1] (analytic) = 0 y[1] (numeric) = 1.3902760331164829801983965225592 absolute error = 1.3902760331164829801983965225592 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1205.4MB, alloc=4.4MB, time=121.06 Complex estimate of poles used Radius of convergence = 3.651 Order of pole = 1.62 x[1] = 1.533 y[1] (analytic) = 0 y[1] (numeric) = 1.391261618754469523049944716968 absolute error = 1.391261618754469523049944716968 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.652 Order of pole = 1.62 x[1] = 1.534 y[1] (analytic) = 0 y[1] (numeric) = 1.3922472160085221030132251001507 absolute error = 1.3922472160085221030132251001507 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.653 Order of pole = 1.62 x[1] = 1.535 y[1] (analytic) = 0 y[1] (numeric) = 1.3932328248674353802606581328923 absolute error = 1.3932328248674353802606581328923 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.654 Order of pole = 1.62 x[1] = 1.536 y[1] (analytic) = 0 y[1] (numeric) = 1.3942184453200168735215473102543 absolute error = 1.3942184453200168735215473102543 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1209.3MB, alloc=4.4MB, time=121.44 Complex estimate of poles used Radius of convergence = 3.655 Order of pole = 1.62 x[1] = 1.537 y[1] (analytic) = 0 y[1] (numeric) = 1.39520407735508694269716908095 absolute error = 1.39520407735508694269716908095 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.656 Order of pole = 1.62 x[1] = 1.538 y[1] (analytic) = 0 y[1] (numeric) = 1.3961897209614787715032399699129 absolute error = 1.3961897209614787715032399699129 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.657 Order of pole = 1.62 x[1] = 1.539 y[1] (analytic) = 0 y[1] (numeric) = 1.3971753761280383501397112802214 absolute error = 1.3971753761280383501397112802214 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.658 Order of pole = 1.619 x[1] = 1.54 y[1] (analytic) = 0 y[1] (numeric) = 1.3981610428436244579878418529104 absolute error = 1.3981610428436244579878418529104 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.659 Order of pole = 1.619 x[1] = 1.541 y[1] (analytic) = 0 y[1] (numeric) = 1.3991467210971086463344994653276 absolute error = 1.3991467210971086463344994653276 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1213.1MB, alloc=4.4MB, time=121.83 Complex estimate of poles used Radius of convergence = 3.66 Order of pole = 1.619 x[1] = 1.542 y[1] (analytic) = 0 y[1] (numeric) = 1.4001324108773752211236415505857 absolute error = 1.4001324108773752211236415505857 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.661 Order of pole = 1.619 x[1] = 1.543 y[1] (analytic) = 0 y[1] (numeric) = 1.4011181121733212257349260223145 absolute error = 1.4011181121733212257349260223145 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.662 Order of pole = 1.619 x[1] = 1.544 y[1] (analytic) = 0 y[1] (numeric) = 1.402103824973856423789403090338 absolute error = 1.402103824973856423789403090338 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.663 Order of pole = 1.619 x[1] = 1.545 y[1] (analytic) = 0 y[1] (numeric) = 1.4030895492679032819822390540825 absolute error = 1.4030895492679032819822390540825 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1216.9MB, alloc=4.4MB, time=122.20 Complex estimate of poles used Radius of convergence = 3.664 Order of pole = 1.619 x[1] = 1.546 y[1] (analytic) = 0 y[1] (numeric) = 1.4040752850443969529424231614731 absolute error = 1.4040752850443969529424231614731 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.665 Order of pole = 1.619 x[1] = 1.547 y[1] (analytic) = 0 y[1] (numeric) = 1.4050610322922852581194087217878 absolute error = 1.4050610322922852581194087217878 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.666 Order of pole = 1.619 x[1] = 1.548 y[1] (analytic) = 0 y[1] (numeric) = 1.4060467910005286706966397614212 absolute error = 1.4060467910005286706966397614212 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.667 Order of pole = 1.619 x[1] = 1.549 y[1] (analytic) = 0 y[1] (numeric) = 1.4070325611581002985319146117576 absolute error = 1.4070325611581002985319146117576 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.668 Order of pole = 1.619 x[1] = 1.55 y[1] (analytic) = 0 y[1] (numeric) = 1.408018342753985867124537918367 absolute error = 1.408018342753985867124537918367 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1220.7MB, alloc=4.4MB, time=122.58 Complex estimate of poles used Radius of convergence = 3.67 Order of pole = 1.618 x[1] = 1.551 y[1] (analytic) = 0 y[1] (numeric) = 1.4090041357771837026092126605242 absolute error = 1.4090041357771837026092126605242 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.671 Order of pole = 1.618 x[1] = 1.552 y[1] (analytic) = 0 y[1] (numeric) = 1.409989940216704714776623869601 absolute error = 1.409989940216704714776623869601 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.672 Order of pole = 1.618 x[1] = 1.553 y[1] (analytic) = 0 y[1] (numeric) = 1.4109757560615723801206658342061 absolute error = 1.4109757560615723801206658342061 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.673 Order of pole = 1.618 x[1] = 1.554 y[1] (analytic) = 0 y[1] (numeric) = 1.4119615833008227249122646790365 absolute error = 1.4119615833008227249122646790365 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.674 Order of pole = 1.618 x[1] = 1.555 y[1] (analytic) = 0 y[1] (numeric) = 1.4129474219235043082997483032706 absolute error = 1.4129474219235043082997483032706 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1224.5MB, alloc=4.4MB, time=122.97 Complex estimate of poles used Radius of convergence = 3.675 Order of pole = 1.618 x[1] = 1.556 y[1] (analytic) = 0 y[1] (numeric) = 1.413933271918678205435715762963 absolute error = 1.413933271918678205435715762963 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.676 Order of pole = 1.618 x[1] = 1.557 y[1] (analytic) = 0 y[1] (numeric) = 1.4149191332754179906303582803102 absolute error = 1.4149191332754179906303582803102 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.677 Order of pole = 1.618 x[1] = 1.558 y[1] (analytic) = 0 y[1] (numeric) = 1.4159050059828097205311841608327 absolute error = 1.4159050059828097205311841608327 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.678 Order of pole = 1.618 x[1] = 1.559 y[1] (analytic) = 0 y[1] (numeric) = 1.41689089002995191732909999747 absolute error = 1.41689089002995191732909999747 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1228.3MB, alloc=4.4MB, time=123.35 Complex estimate of poles used Radius of convergence = 3.679 Order of pole = 1.618 x[1] = 1.56 y[1] (analytic) = 0 y[1] (numeric) = 1.4178767854059555519908006383109 absolute error = 1.4178767854059555519908006383109 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.68 Order of pole = 1.618 x[1] = 1.561 y[1] (analytic) = 0 y[1] (numeric) = 1.418862692099944027517420492179 absolute error = 1.418862692099944027517420492179 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.681 Order of pole = 1.617 x[1] = 1.562 y[1] (analytic) = 0 y[1] (numeric) = 1.4198486101010531622293988435679 absolute error = 1.4198486101010531622293988435679 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.682 Order of pole = 1.617 x[1] = 1.563 y[1] (analytic) = 0 y[1] (numeric) = 1.4208345393984311730775119454683 absolute error = 1.4208345393984311730775119454683 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.683 Order of pole = 1.617 x[1] = 1.564 y[1] (analytic) = 0 y[1] (numeric) = 1.4218204799812386589800247554554 absolute error = 1.4218204799812386589800247554554 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1232.1MB, alloc=4.4MB, time=123.73 Complex estimate of poles used Radius of convergence = 3.684 Order of pole = 1.617 x[1] = 1.565 y[1] (analytic) = 0 y[1] (numeric) = 1.4228064318386485841859152770047 absolute error = 1.4228064318386485841859152770047 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.685 Order of pole = 1.617 x[1] = 1.566 y[1] (analytic) = 0 y[1] (numeric) = 1.423792394959846261664124564384 absolute error = 1.423792394959846261664124564384 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.686 Order of pole = 1.617 x[1] = 1.567 y[1] (analytic) = 0 y[1] (numeric) = 1.4247783693340293365187855456238 absolute error = 1.4247783693340293365187855456238 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.687 Order of pole = 1.617 x[1] = 1.568 y[1] (analytic) = 0 y[1] (numeric) = 1.4257643549504077694303839140042 absolute error = 1.4257643549504077694303839140042 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1236.0MB, alloc=4.4MB, time=124.11 Complex estimate of poles used Radius of convergence = 3.688 Order of pole = 1.617 x[1] = 1.569 y[1] (analytic) = 0 y[1] (numeric) = 1.4267503517982038201228044342074 absolute error = 1.4267503517982038201228044342074 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.69 Order of pole = 1.617 x[1] = 1.57 y[1] (analytic) = 0 y[1] (numeric) = 1.427736359866652030856216104778 absolute error = 1.427736359866652030856216104778 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.691 Order of pole = 1.617 x[1] = 1.571 y[1] (analytic) = 0 y[1] (numeric) = 1.4287223791449992099457497138059 absolute error = 1.4287223791449992099457497138059 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.692 Order of pole = 1.616 x[1] = 1.572 y[1] (analytic) = 0 y[1] (numeric) = 1.4297084096225044153059214197977 absolute error = 1.4297084096225044153059214197977 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.693 Order of pole = 1.616 x[1] = 1.573 y[1] (analytic) = 0 y[1] (numeric) = 1.4306944512884389380207560845377 absolute error = 1.4306944512884389380207560845377 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1239.8MB, alloc=4.4MB, time=124.49 Complex estimate of poles used Radius of convergence = 3.694 Order of pole = 1.616 x[1] = 1.574 y[1] (analytic) = 0 y[1] (numeric) = 1.4316805041320862859395641793535 absolute error = 1.4316805041320862859395641793535 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.695 Order of pole = 1.616 x[1] = 1.575 y[1] (analytic) = 0 y[1] (numeric) = 1.4326665681427421672983261805992 absolute error = 1.4326665681427421672983261805992 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.696 Order of pole = 1.616 x[1] = 1.576 y[1] (analytic) = 0 y[1] (numeric) = 1.433652643309714474366638464349 absolute error = 1.433652643309714474366638464349 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.697 Order of pole = 1.616 x[1] = 1.577 y[1] (analytic) = 0 y[1] (numeric) = 1.4346387296223232671201748042573 absolute error = 1.4346387296223232671201748042573 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1243.6MB, alloc=4.4MB, time=124.87 Complex estimate of poles used Radius of convergence = 3.698 Order of pole = 1.616 x[1] = 1.578 y[1] (analytic) = 0 y[1] (numeric) = 1.4356248270699007569386176702893 absolute error = 1.4356248270699007569386176702893 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.699 Order of pole = 1.616 x[1] = 1.579 y[1] (analytic) = 0 y[1] (numeric) = 1.4366109356417912903290136195559 absolute error = 1.4366109356417912903290136195559 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.7 Order of pole = 1.616 x[1] = 1.58 y[1] (analytic) = 0 y[1] (numeric) = 1.4375970553273513326745071638051 absolute error = 1.4375970553273513326745071638051 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.701 Order of pole = 1.616 x[1] = 1.581 y[1] (analytic) = 0 y[1] (numeric) = 1.438583186115949452008407591223 absolute error = 1.438583186115949452008407591223 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.702 Order of pole = 1.615 x[1] = 1.582 y[1] (analytic) = 0 y[1] (numeric) = 1.4395693279969663028135433130854 absolute error = 1.4395693279969663028135433130854 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1247.4MB, alloc=4.4MB, time=125.25 Complex estimate of poles used Radius of convergence = 3.703 Order of pole = 1.615 x[1] = 1.583 y[1] (analytic) = 0 y[1] (numeric) = 1.4405554809597946098468583984762 absolute error = 1.4405554809597946098468583984762 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.704 Order of pole = 1.615 x[1] = 1.584 y[1] (analytic) = 0 y[1] (numeric) = 1.4415416449938391519892060527505 absolute error = 1.4415416449938391519892060527505 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.705 Order of pole = 1.615 x[1] = 1.585 y[1] (analytic) = 0 y[1] (numeric) = 1.4425278200885167461202938876688 absolute error = 1.4425278200885167461202938876688 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.706 Order of pole = 1.615 x[1] = 1.586 y[1] (analytic) = 0 y[1] (numeric) = 1.4435140062332562310187359231673 absolute error = 1.4435140062332562310187359231673 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.707 Order of pole = 1.615 memory used=1251.2MB, alloc=4.4MB, time=125.64 x[1] = 1.587 y[1] (analytic) = 0 y[1] (numeric) = 1.4445002034174984512871663525558 absolute error = 1.4445002034174984512871663525558 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.708 Order of pole = 1.615 x[1] = 1.588 y[1] (analytic) = 0 y[1] (numeric) = 1.4454864116306962413023701945491 absolute error = 1.4454864116306962413023701945491 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.709 Order of pole = 1.615 x[1] = 1.589 y[1] (analytic) = 0 y[1] (numeric) = 1.4464726308623144091903860469448 absolute error = 1.4464726308623144091903860469448 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.711 Order of pole = 1.615 x[1] = 1.59 y[1] (analytic) = 0 y[1] (numeric) = 1.447458861101829720826536247956 absolute error = 1.447458861101829720826536247956 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.712 Order of pole = 1.615 x[1] = 1.591 y[1] (analytic) = 0 y[1] (numeric) = 1.4484451023387308838603398421935 absolute error = 1.4484451023387308838603398421935 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1255.0MB, alloc=4.4MB, time=126.02 Complex estimate of poles used Radius of convergence = 3.713 Order of pole = 1.614 x[1] = 1.592 y[1] (analytic) = 0 y[1] (numeric) = 1.4494313545625185317652638390713 absolute error = 1.4494313545625185317652638390713 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.714 Order of pole = 1.614 x[1] = 1.593 y[1] (analytic) = 0 y[1] (numeric) = 1.4504176177627052079132683419794 absolute error = 1.4504176177627052079132683419794 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.715 Order of pole = 1.614 x[1] = 1.594 y[1] (analytic) = 0 y[1] (numeric) = 1.4514038919288153496741012169299 absolute error = 1.4514038919288153496741012169299 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.716 Order of pole = 1.614 x[1] = 1.595 y[1] (analytic) = 0 y[1] (numeric) = 1.4523901770503852725392980595393 absolute error = 1.4523901770503852725392980595393 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.717 Order of pole = 1.614 x[1] = 1.596 y[1] (analytic) = 0 y[1] (numeric) = 1.4533764731169631542708433091592 absolute error = 1.4533764731169631542708433091592 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1258.8MB, alloc=4.4MB, time=126.39 Complex estimate of poles used Radius of convergence = 3.718 Order of pole = 1.614 x[1] = 1.597 y[1] (analytic) = 0 y[1] (numeric) = 1.4543627801181090190744484487108 absolute error = 1.4543627801181090190744484487108 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.719 Order of pole = 1.614 x[1] = 1.598 y[1] (analytic) = 0 y[1] (numeric) = 1.4553490980433947217974033183165 absolute error = 1.4553490980433947217974033183165 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.72 Order of pole = 1.614 x[1] = 1.599 y[1] (analytic) = 0 y[1] (numeric) = 1.4563354268824039321509566601564 absolute error = 1.4563354268824039321509566601564 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.721 Order of pole = 1.614 x[1] = 1.6 y[1] (analytic) = 0 y[1] (numeric) = 1.4573217666247321189571821011053 absolute error = 1.4573217666247321189571821011053 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1262.7MB, alloc=4.4MB, time=126.77 Complex estimate of poles used Radius of convergence = 3.722 Order of pole = 1.613 x[1] = 1.601 y[1] (analytic) = 0 y[1] (numeric) = 1.4583081172599865344202858686327 absolute error = 1.4583081172599865344202858686327 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.723 Order of pole = 1.613 x[1] = 1.602 y[1] (analytic) = 0 y[1] (numeric) = 1.4592944787777861984223126241674 absolute error = 1.4592944787777861984223126241674 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.724 Order of pole = 1.613 x[1] = 1.603 y[1] (analytic) = 0 y[1] (numeric) = 1.4602808511677618828432058866513 absolute error = 1.4602808511677618828432058866513 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.725 Order of pole = 1.613 x[1] = 1.604 y[1] (analytic) = 0 y[1] (numeric) = 1.4612672344195560959051796073204 absolute error = 1.4612672344195560959051796073204 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.726 Order of pole = 1.613 x[1] = 1.605 y[1] (analytic) = 0 y[1] (numeric) = 1.462253628522823066541357544869 absolute error = 1.462253628522823066541357544869 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1266.5MB, alloc=4.4MB, time=127.15 Complex estimate of poles used Radius of convergence = 3.727 Order of pole = 1.613 x[1] = 1.606 y[1] (analytic) = 0 y[1] (numeric) = 1.4632400334672287287886371780653 absolute error = 1.4632400334672287287886371780653 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.728 Order of pole = 1.613 x[1] = 1.607 y[1] (analytic) = 0 y[1] (numeric) = 1.4642264492424507062047349806005 absolute error = 1.4642264492424507062047349806005 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.729 Order of pole = 1.613 x[1] = 1.608 y[1] (analytic) = 0 y[1] (numeric) = 1.4652128758381782963093699704677 absolute error = 1.4652128758381782963093699704677 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.73 Order of pole = 1.613 x[1] = 1.609 y[1] (analytic) = 0 y[1] (numeric) = 1.4661993132441124550495425334781 absolute error = 1.4661993132441124550495425334781 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1270.3MB, alloc=4.4MB, time=127.53 Complex estimate of poles used Radius of convergence = 3.731 Order of pole = 1.612 x[1] = 1.61 y[1] (analytic) = 0 y[1] (numeric) = 1.4671857614499657812888656076386 absolute error = 1.4671857614499657812888656076386 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.733 Order of pole = 1.612 x[1] = 1.611 y[1] (analytic) = 0 y[1] (numeric) = 1.468172220445462501320905402029 absolute error = 1.468172220445462501320905402029 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.734 Order of pole = 1.612 x[1] = 1.612 y[1] (analytic) = 0 y[1] (numeric) = 1.4691586902203384534064889105352 absolute error = 1.4691586902203384534064889105352 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.735 Order of pole = 1.612 x[1] = 1.613 y[1] (analytic) = 0 y[1] (numeric) = 1.4701451707643410723349355673144 absolute error = 1.4701451707643410723349355673144 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.736 Order of pole = 1.612 x[1] = 1.614 y[1] (analytic) = 0 y[1] (numeric) = 1.4711316620672293740091704771909 absolute error = 1.4711316620672293740091704771909 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1274.1MB, alloc=4.4MB, time=127.92 Complex estimate of poles used Radius of convergence = 3.737 Order of pole = 1.612 x[1] = 1.615 y[1] (analytic) = 0 y[1] (numeric) = 1.4721181641187739400546767403073 absolute error = 1.4721181641187739400546767403073 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.738 Order of pole = 1.612 x[1] = 1.616 y[1] (analytic) = 0 y[1] (numeric) = 1.4731046769087569024522444762851 absolute error = 1.4731046769087569024522444762851 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.739 Order of pole = 1.612 x[1] = 1.617 y[1] (analytic) = 0 y[1] (numeric) = 1.4740912004269719281944742388843 absolute error = 1.4740912004269719281944742388843 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.74 Order of pole = 1.612 x[1] = 1.618 y[1] (analytic) = 0 y[1] (numeric) = 1.4750777346632242039659925976892 absolute error = 1.4750777346632242039659925976892 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.741 Order of pole = 1.611 memory used=1277.9MB, alloc=4.4MB, time=128.30 x[1] = 1.619 y[1] (analytic) = 0 y[1] (numeric) = 1.4760642796073304208473377486924 absolute error = 1.4760642796073304208473377486924 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.742 Order of pole = 1.611 x[1] = 1.62 y[1] (analytic) = 0 y[1] (numeric) = 1.4770508352491187590424731008001 absolute error = 1.4770508352491187590424731008001 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.743 Order of pole = 1.611 x[1] = 1.621 y[1] (analytic) = 0 y[1] (numeric) = 1.4780374015784288726298868702366 absolute error = 1.4780374015784288726298868702366 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.744 Order of pole = 1.611 x[1] = 1.622 y[1] (analytic) = 0 y[1] (numeric) = 1.4790239785851118743372357995912 absolute error = 1.4790239785851118743372357995912 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.745 Order of pole = 1.611 x[1] = 1.623 y[1] (analytic) = 0 y[1] (numeric) = 1.4800105662590303203394912028201 absolute error = 1.4800105662590303203394912028201 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1281.7MB, alloc=4.4MB, time=128.68 Complex estimate of poles used Radius of convergence = 3.746 Order of pole = 1.611 x[1] = 1.624 y[1] (analytic) = 0 y[1] (numeric) = 1.4809971645900581950805456218942 absolute error = 1.4809971645900581950805456218942 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.747 Order of pole = 1.611 x[1] = 1.625 y[1] (analytic) = 0 y[1] (numeric) = 1.4819837735680808961182384649721 absolute error = 1.4819837735680808961182384649721 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.748 Order of pole = 1.611 x[1] = 1.626 y[1] (analytic) = 0 y[1] (numeric) = 1.4829703931829952189927590799708 absolute error = 1.4829703931829952189927590799708 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.749 Order of pole = 1.61 x[1] = 1.627 y[1] (analytic) = 0 y[1] (numeric) = 1.4839570234247093421183858012128 absolute error = 1.4839570234247093421183858012128 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.75 Order of pole = 1.61 x[1] = 1.628 y[1] (analytic) = 0 y[1] (numeric) = 1.4849436642831428116985195904436 absolute error = 1.4849436642831428116985195904436 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1285.6MB, alloc=4.4MB, time=129.06 Complex estimate of poles used Radius of convergence = 3.751 Order of pole = 1.61 x[1] = 1.629 y[1] (analytic) = 0 y[1] (numeric) = 1.4859303157482265266639709769353 absolute error = 1.4859303157482265266639709769353 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.752 Order of pole = 1.61 x[1] = 1.63 y[1] (analytic) = 0 y[1] (numeric) = 1.4869169778099027236344590846312 absolute error = 1.4869169778099027236344590846312 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.753 Order of pole = 1.61 x[1] = 1.631 y[1] (analytic) = 0 y[1] (numeric) = 1.4879036504581249619032816173302 absolute error = 1.4879036504581249619032816173302 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.754 Order of pole = 1.61 x[1] = 1.632 y[1] (analytic) = 0 y[1] (numeric) = 1.4888903336828581084451147557689 absolute error = 1.4888903336828581084451147557689 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1289.4MB, alloc=4.4MB, time=129.44 Complex estimate of poles used Radius of convergence = 3.756 Order of pole = 1.61 x[1] = 1.633 y[1] (analytic) = 0 y[1] (numeric) = 1.4898770274740783229469020031298 absolute error = 1.4898770274740783229469020031298 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.757 Order of pole = 1.61 x[1] = 1.634 y[1] (analytic) = 0 y[1] (numeric) = 1.4908637318217730428617910979871 absolute error = 1.4908637318217730428617910979871 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.758 Order of pole = 1.61 x[1] = 1.635 y[1] (analytic) = 0 y[1] (numeric) = 1.4918504467159409684860781959974 absolute error = 1.4918504467159409684860781959974 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.759 Order of pole = 1.609 x[1] = 1.636 y[1] (analytic) = 0 y[1] (numeric) = 1.4928371721465920480591186037521 absolute error = 1.4928371721465920480591186037521 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.76 Order of pole = 1.609 x[1] = 1.637 y[1] (analytic) = 0 y[1] (numeric) = 1.4938239081037474628861634301322 absolute error = 1.4938239081037474628861634301322 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1293.2MB, alloc=4.4MB, time=129.83 Complex estimate of poles used Radius of convergence = 3.761 Order of pole = 1.609 x[1] = 1.638 y[1] (analytic) = 0 y[1] (numeric) = 1.4948106545774396124840816022445 absolute error = 1.4948106545774396124840816022445 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.762 Order of pole = 1.609 x[1] = 1.639 y[1] (analytic) = 0 y[1] (numeric) = 1.4957974115577120997499267745709 absolute error = 1.4957974115577120997499267745709 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.763 Order of pole = 1.609 x[1] = 1.64 y[1] (analytic) = 0 y[1] (numeric) = 1.4967841790346197161523087413312 absolute error = 1.4967841790346197161523087413312 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.764 Order of pole = 1.609 x[1] = 1.641 y[1] (analytic) = 0 y[1] (numeric) = 1.4977709569982284269455290432446 absolute error = 1.4977709569982284269455290432446 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1297.0MB, alloc=4.4MB, time=130.21 Complex estimate of poles used Radius of convergence = 3.765 Order of pole = 1.609 x[1] = 1.642 y[1] (analytic) = 0 y[1] (numeric) = 1.4987577454386153564064405408749 absolute error = 1.4987577454386153564064405408749 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.766 Order of pole = 1.609 x[1] = 1.643 y[1] (analytic) = 0 y[1] (numeric) = 1.4997445443458687730939908075635 absolute error = 1.4997445443458687730939908075635 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.767 Order of pole = 1.608 x[1] = 1.644 y[1] (analytic) = 0 y[1] (numeric) = 1.5007313537100880751314092755874 absolute error = 1.5007313537100880751314092755874 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.768 Order of pole = 1.608 x[1] = 1.645 y[1] (analytic) = 0 y[1] (numeric) = 1.501718173521383775510998149634 absolute error = 1.501718173521383775510998149634 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.769 Order of pole = 1.608 x[1] = 1.646 y[1] (analytic) = 0 y[1] (numeric) = 1.5027050037698774874214871819538 absolute error = 1.5027050037698774874214871819538 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1300.8MB, alloc=4.4MB, time=130.60 Complex estimate of poles used Radius of convergence = 3.77 Order of pole = 1.608 x[1] = 1.647 y[1] (analytic) = 0 y[1] (numeric) = 1.5036918444457019095979124836418 absolute error = 1.5036918444457019095979124836418 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.771 Order of pole = 1.608 x[1] = 1.648 y[1] (analytic) = 0 y[1] (numeric) = 1.5046786955390008116939796264085 absolute error = 1.5046786955390008116939796264085 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.772 Order of pole = 1.608 x[1] = 1.649 y[1] (analytic) = 0 y[1] (numeric) = 1.5056655570399290196768713689276 absolute error = 1.5056655570399290196768713689276 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.773 Order of pole = 1.608 x[1] = 1.65 y[1] (analytic) = 0 y[1] (numeric) = 1.5066524289386524012444604213967 absolute error = 1.5066524289386524012444604213967 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1304.6MB, alloc=4.4MB, time=130.97 Complex estimate of poles used Radius of convergence = 3.774 Order of pole = 1.608 x[1] = 1.651 y[1] (analytic) = 0 y[1] (numeric) = 1.5076393112253478512648877413167 absolute error = 1.5076393112253478512648877413167 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.775 Order of pole = 1.607 x[1] = 1.652 y[1] (analytic) = 0 y[1] (numeric) = 1.5086262038902032772384669326835 absolute error = 1.5086262038902032772384669326835 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.776 Order of pole = 1.607 x[1] = 1.653 y[1] (analytic) = 0 y[1] (numeric) = 1.5096131069234175847818753997985 absolute error = 1.5096131069234175847818753997985 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.777 Order of pole = 1.607 x[1] = 1.654 y[1] (analytic) = 0 y[1] (numeric) = 1.5106000203152006631345929857364 absolute error = 1.5106000203152006631345929857364 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.779 Order of pole = 1.607 x[1] = 1.655 y[1] (analytic) = 0 y[1] (numeric) = 1.5115869440557733706875489041631 absolute error = 1.5115869440557733706875489041631 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1308.4MB, alloc=4.4MB, time=131.36 Complex estimate of poles used Radius of convergence = 3.78 Order of pole = 1.607 x[1] = 1.656 y[1] (analytic) = 0 y[1] (numeric) = 1.5125738781353675205339378516768 absolute error = 1.5125738781353675205339378516768 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.781 Order of pole = 1.607 x[1] = 1.657 y[1] (analytic) = 0 y[1] (numeric) = 1.5135608225442258660421662661434 absolute error = 1.5135608225442258660421662661434 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.782 Order of pole = 1.607 x[1] = 1.658 y[1] (analytic) = 0 y[1] (numeric) = 1.5145477772726020864508897746248 absolute error = 1.5145477772726020864508897746248 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.783 Order of pole = 1.607 x[1] = 1.659 y[1] (analytic) = 0 y[1] (numeric) = 1.5155347423107607724861029524455 absolute error = 1.5155347423107607724861029524455 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.784 Order of pole = 1.606 x[1] = 1.66 y[1] (analytic) = 0 y[1] (numeric) = 1.5165217176489774120002425927171 absolute error = 1.5165217176489774120002425927171 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1312.3MB, alloc=4.4MB, time=131.74 Complex estimate of poles used Radius of convergence = 3.785 Order of pole = 1.606 x[1] = 1.661 y[1] (analytic) = 0 y[1] (numeric) = 1.5175087032775383756332657632378 absolute error = 1.5175087032775383756332657632378 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.786 Order of pole = 1.606 x[1] = 1.662 y[1] (analytic) = 0 y[1] (numeric) = 1.5184956991867409024956640051092 absolute error = 1.5184956991867409024956640051092 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.787 Order of pole = 1.606 x[1] = 1.663 y[1] (analytic) = 0 y[1] (numeric) = 1.5194827053668930858733751046592 absolute error = 1.5194827053668930858733751046592 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.788 Order of pole = 1.606 x[1] = 1.664 y[1] (analytic) = 0 y[1] (numeric) = 1.5204697218083138589545539473387 absolute error = 1.5204697218083138589545539473387 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1316.1MB, alloc=4.4MB, time=132.12 Complex estimate of poles used Radius of convergence = 3.789 Order of pole = 1.606 x[1] = 1.665 y[1] (analytic) = 0 y[1] (numeric) = 1.5214567485013329805781640391596 absolute error = 1.5214567485013329805781640391596 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.79 Order of pole = 1.606 x[1] = 1.666 y[1] (analytic) = 0 y[1] (numeric) = 1.5224437854362910210043513579727 absolute error = 1.5224437854362910210043513579727 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.791 Order of pole = 1.606 x[1] = 1.667 y[1] (analytic) = 0 y[1] (numeric) = 1.5234308326035393477065622734405 absolute error = 1.5234308326035393477065622734405 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.792 Order of pole = 1.605 x[1] = 1.668 y[1] (analytic) = 0 y[1] (numeric) = 1.5244178899934401111853673509446 absolute error = 1.5244178899934401111853673509446 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.793 Order of pole = 1.605 x[1] = 1.669 y[1] (analytic) = 0 y[1] (numeric) = 1.5254049575963662308039529308815 absolute error = 1.5254049575963662308039529308815 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1319.9MB, alloc=4.4MB, time=132.50 Complex estimate of poles used Radius of convergence = 3.794 Order of pole = 1.605 x[1] = 1.67 y[1] (analytic) = 0 y[1] (numeric) = 1.526392035402701380645242450843 absolute error = 1.526392035402701380645242450843 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.795 Order of pole = 1.605 x[1] = 1.671 y[1] (analytic) = 0 y[1] (numeric) = 1.5273791234028399753906095540481 absolute error = 1.5273791234028399753906095540481 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.796 Order of pole = 1.605 x[1] = 1.672 y[1] (analytic) = 0 y[1] (numeric) = 1.5283662215871871562201451030957 absolute error = 1.5283662215871871562201451030957 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.797 Order of pole = 1.605 x[1] = 1.673 y[1] (analytic) = 0 y[1] (numeric) = 1.5293533299461587767344402936379 absolute error = 1.5293533299461587767344402936379 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1323.7MB, alloc=4.4MB, time=132.87 Complex estimate of poles used Radius of convergence = 3.798 Order of pole = 1.605 x[1] = 1.674 y[1] (analytic) = 0 y[1] (numeric) = 1.5303404484701813888978481379366 absolute error = 1.5303404484701813888978481379366 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.799 Order of pole = 1.604 x[1] = 1.675 y[1] (analytic) = 0 y[1] (numeric) = 1.5313275771496922290031856634585 absolute error = 1.5313275771496922290031856634585 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.8 Order of pole = 1.604 x[1] = 1.676 y[1] (analytic) = 0 y[1] (numeric) = 1.5323147159751392036578392466878 absolute error = 1.5323147159751392036578392466878 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.801 Order of pole = 1.604 x[1] = 1.677 y[1] (analytic) = 0 y[1] (numeric) = 1.5333018649369808757912355771934 absolute error = 1.5333018649369808757912355771934 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.803 Order of pole = 1.604 x[1] = 1.678 y[1] (analytic) = 0 y[1] (numeric) = 1.5342890240256864506836408216741 absolute error = 1.5342890240256864506836408216741 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1327.5MB, alloc=4.4MB, time=133.25 Complex estimate of poles used Radius of convergence = 3.804 Order of pole = 1.604 x[1] = 1.679 y[1] (analytic) = 0 y[1] (numeric) = 1.5352761932317357620162506322278 absolute error = 1.5352761932317357620162506322278 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.805 Order of pole = 1.604 x[1] = 1.68 y[1] (analytic) = 0 y[1] (numeric) = 1.5362633725456192579425337174445 absolute error = 1.5362633725456192579425337174445 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.806 Order of pole = 1.604 x[1] = 1.681 y[1] (analytic) = 0 y[1] (numeric) = 1.5372505619578379871807917691104 absolute error = 1.5372505619578379871807917691104 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.807 Order of pole = 1.604 x[1] = 1.682 y[1] (analytic) = 0 y[1] (numeric) = 1.538237761458903585127898611333 absolute error = 1.538237761458903585127898611333 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1331.3MB, alloc=4.4MB, time=133.63 Complex estimate of poles used Radius of convergence = 3.808 Order of pole = 1.603 x[1] = 1.683 y[1] (analytic) = 0 y[1] (numeric) = 1.5392249710393382599941815127515 absolute error = 1.5392249710393382599941815127515 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.809 Order of pole = 1.603 x[1] = 1.684 y[1] (analytic) = 0 y[1] (numeric) = 1.5402121906896747789594076761891 absolute error = 1.5402121906896747789594076761891 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.81 Order of pole = 1.603 x[1] = 1.685 y[1] (analytic) = 0 y[1] (numeric) = 1.5411994204004564543498389936289 absolute error = 1.5411994204004564543498389936289 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.811 Order of pole = 1.603 x[1] = 1.686 y[1] (analytic) = 0 y[1] (numeric) = 1.542186660162237129836318227757 absolute error = 1.542186660162237129836318227757 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.812 Order of pole = 1.603 x[1] = 1.687 y[1] (analytic) = 0 y[1] (numeric) = 1.5431739099655811666533498545134 absolute error = 1.5431739099655811666533498545134 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1335.1MB, alloc=4.4MB, time=134.01 Complex estimate of poles used Radius of convergence = 3.813 Order of pole = 1.603 x[1] = 1.688 y[1] (analytic) = 0 y[1] (numeric) = 1.5441611698010634298391388741252 absolute error = 1.5441611698010634298391388741252 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.814 Order of pole = 1.603 x[1] = 1.689 y[1] (analytic) = 0 y[1] (numeric) = 1.5451484396592692744965509709681 absolute error = 1.5451484396592692744965509709681 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.815 Order of pole = 1.602 x[1] = 1.69 y[1] (analytic) = 0 y[1] (numeric) = 1.5461357195307945320749574753088 absolute error = 1.5461357195307945320749574753088 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.816 Order of pole = 1.602 x[1] = 1.691 y[1] (analytic) = 0 y[1] (numeric) = 1.5471230094062454966729286525271 absolute error = 1.5471230094062454966729286525271 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.817 Order of pole = 1.602 x[1] = 1.692 y[1] (analytic) = 0 y[1] (numeric) = 1.5481103092762389113617389178001 absolute error = 1.5481103092762389113617389178001 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1339.0MB, alloc=4.4MB, time=134.39 Complex estimate of poles used Radius of convergence = 3.818 Order of pole = 1.602 x[1] = 1.693 y[1] (analytic) = 0 y[1] (numeric) = 1.5490976191314019545296476464525 absolute error = 1.5490976191314019545296476464525 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.819 Order of pole = 1.602 x[1] = 1.694 y[1] (analytic) = 0 y[1] (numeric) = 1.550084938962372226246919322237 absolute error = 1.550084938962372226246919322237 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.82 Order of pole = 1.602 x[1] = 1.695 y[1] (analytic) = 0 y[1] (numeric) = 1.5510722687597977346515468377108 absolute error = 1.5510722687597977346515468377108 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.821 Order of pole = 1.602 x[1] = 1.696 y[1] (analytic) = 0 y[1] (numeric) = 1.5520596085143368823556418326114 absolute error = 1.5520596085143368823556418326114 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1342.8MB, alloc=4.4MB, time=134.77 Complex estimate of poles used Radius of convergence = 3.822 Order of pole = 1.601 x[1] = 1.697 y[1] (analytic) = 0 y[1] (numeric) = 1.5530469582166584528724560277159 absolute error = 1.5530469582166584528724560277159 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.823 Order of pole = 1.601 x[1] = 1.698 y[1] (analytic) = 0 y[1] (numeric) = 1.5540343178574415970639975830876 absolute error = 1.5540343178574415970639975830876 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.824 Order of pole = 1.601 x[1] = 1.699 y[1] (analytic) = 0 y[1] (numeric) = 1.5550216874273758196092065808744 absolute error = 1.5550216874273758196092065808744 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.825 Order of pole = 1.601 x[1] = 1.7 y[1] (analytic) = 0 y[1] (numeric) = 1.5560090669171609654926538039257 absolute error = 1.5560090669171609654926538039257 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.826 Order of pole = 1.601 x[1] = 1.701 y[1] (analytic) = 0 y[1] (numeric) = 1.5569964563175072065137270524381 absolute error = 1.5569964563175072065137270524381 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1346.6MB, alloc=4.4MB, time=135.15 Complex estimate of poles used Radius of convergence = 3.827 Order of pole = 1.601 x[1] = 1.702 y[1] (analytic) = 0 y[1] (numeric) = 1.5579838556191350278162693116256 absolute error = 1.5579838556191350278162693116256 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.829 Order of pole = 1.601 x[1] = 1.703 y[1] (analytic) = 0 y[1] (numeric) = 1.5589712648127752144386331540382 absolute error = 1.5589712648127752144386331540382 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.83 Order of pole = 1.601 x[1] = 1.704 y[1] (analytic) = 0 y[1] (numeric) = 1.5599586838891688378841158306235 absolute error = 1.5599586838891688378841158306235 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.831 Order of pole = 1.6 x[1] = 1.705 y[1] (analytic) = 0 y[1] (numeric) = 1.5609461128390672427117395749401 absolute error = 1.5609461128390672427117395749401 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1350.4MB, alloc=4.4MB, time=135.53 Complex estimate of poles used Radius of convergence = 3.832 Order of pole = 1.6 x[1] = 1.706 y[1] (analytic) = 0 y[1] (numeric) = 1.5619335516532320331473417150883 absolute error = 1.5619335516532320331473417150883 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.833 Order of pole = 1.6 x[1] = 1.707 y[1] (analytic) = 0 y[1] (numeric) = 1.5629210003224350597149392579263 absolute error = 1.5629210003224350597149392579263 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.834 Order of pole = 1.6 x[1] = 1.708 y[1] (analytic) = 0 y[1] (numeric) = 1.5639084588374584058883326799851 absolute error = 1.5639084588374584058883326799851 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.835 Order of pole = 1.6 x[1] = 1.709 y[1] (analytic) = 0 y[1] (numeric) = 1.5648959271890943747629137291851 absolute error = 1.5648959271890943747629137291851 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.836 Order of pole = 1.6 x[1] = 1.71 y[1] (analytic) = 0 y[1] (numeric) = 1.5658834053681454757476421109953 absolute error = 1.5658834053681454757476421109953 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1354.2MB, alloc=4.4MB, time=135.91 Complex estimate of poles used Radius of convergence = 3.837 Order of pole = 1.6 x[1] = 1.711 y[1] (analytic) = 0 y[1] (numeric) = 1.5668708933654244112771560020544 absolute error = 1.5668708933654244112771560020544 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.838 Order of pole = 1.599 x[1] = 1.712 y[1] (analytic) = 0 y[1] (numeric) = 1.5678583911717540635439814035019 absolute error = 1.5678583911717540635439814035019 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.839 Order of pole = 1.599 x[1] = 1.713 y[1] (analytic) = 0 y[1] (numeric) = 1.56884589877796748125080541534 absolute error = 1.56884589877796748125080541534 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.84 Order of pole = 1.599 x[1] = 1.714 y[1] (analytic) = 0 y[1] (numeric) = 1.5698334161749078663827785820663 absolute error = 1.5698334161749078663827785820663 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1358.0MB, alloc=4.4MB, time=136.29 Complex estimate of poles used Radius of convergence = 3.841 Order of pole = 1.599 x[1] = 1.715 y[1] (analytic) = 0 y[1] (numeric) = 1.5708209433534285609998115285858 absolute error = 1.5708209433534285609998115285858 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.842 Order of pole = 1.599 x[1] = 1.716 y[1] (analytic) = 0 y[1] (numeric) = 1.571808480304393034048831174023 absolute error = 1.571808480304393034048831174023 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.843 Order of pole = 1.599 x[1] = 1.717 y[1] (analytic) = 0 y[1] (numeric) = 1.5727960270186748681959618795183 absolute error = 1.5727960270186748681959618795183 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.844 Order of pole = 1.598 x[1] = 1.718 y[1] (analytic) = 0 y[1] (numeric) = 1.5737835834871577466785969544026 absolute error = 1.5737835834871577466785969544026 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.845 Order of pole = 1.598 x[1] = 1.719 y[1] (analytic) = 0 y[1] (numeric) = 1.5747711497007354401773260133028 absolute error = 1.5747711497007354401773260133028 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1361.9MB, alloc=4.4MB, time=136.68 Complex estimate of poles used Radius of convergence = 3.846 Order of pole = 1.598 x[1] = 1.72 y[1] (analytic) = 0 y[1] (numeric) = 1.5757587256503117937076837447383 absolute error = 1.5757587256503117937076837447383 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.847 Order of pole = 1.598 x[1] = 1.721 y[1] (analytic) = 0 y[1] (numeric) = 1.5767463113268007135316857196257 absolute error = 1.5767463113268007135316857196257 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.848 Order of pole = 1.598 x[1] = 1.722 y[1] (analytic) = 0 y[1] (numeric) = 1.5777339067211261540891169358154 absolute error = 1.5777339067211261540891169358154 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.849 Order of pole = 1.598 x[1] = 1.723 y[1] (analytic) = 0 y[1] (numeric) = 1.57872151182422210494853886234 absolute error = 1.57872151182422210494853886234 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.85 Order of pole = 1.598 memory used=1365.7MB, alloc=4.4MB, time=137.08 x[1] = 1.724 y[1] (analytic) = 0 y[1] (numeric) = 1.5797091266270325777779808144615 absolute error = 1.5797091266270325777779808144615 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.851 Order of pole = 1.597 x[1] = 1.725 y[1] (analytic) = 0 y[1] (numeric) = 1.5806967511205115933352815578623 absolute error = 1.5806967511205115933352815578623 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.852 Order of pole = 1.597 x[1] = 1.726 y[1] (analytic) = 0 y[1] (numeric) = 1.5816843852956231684780471074333 absolute error = 1.5816843852956231684780471074333 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.853 Order of pole = 1.597 x[1] = 1.727 y[1] (analytic) = 0 y[1] (numeric) = 1.5826720291433413031931907530724 absolute error = 1.5826720291433413031931907530724 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.854 Order of pole = 1.597 x[1] = 1.728 y[1] (analytic) = 0 y[1] (numeric) = 1.5836596826546499676460214117195 absolute error = 1.5836596826546499676460214117195 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1369.5MB, alloc=4.4MB, time=137.46 Complex estimate of poles used Radius of convergence = 3.856 Order of pole = 1.597 x[1] = 1.729 y[1] (analytic) = 0 y[1] (numeric) = 1.5846473458205430892488464715188 absolute error = 1.5846473458205430892488464715188 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.857 Order of pole = 1.597 x[1] = 1.73 y[1] (analytic) = 0 y[1] (numeric) = 1.5856350186320245397490553605137 absolute error = 1.5856350186320245397490553605137 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.858 Order of pole = 1.597 x[1] = 1.731 y[1] (analytic) = 0 y[1] (numeric) = 1.5866227010801081223366501386534 absolute error = 1.5866227010801081223366501386534 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.859 Order of pole = 1.596 x[1] = 1.732 y[1] (analytic) = 0 y[1] (numeric) = 1.587610393155817558771189478109 absolute error = 1.587610393155817558771189478109 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.86 Order of pole = 1.596 x[1] = 1.733 y[1] (analytic) = 0 y[1] (numeric) = 1.5885980948501864765281124629782 absolute error = 1.5885980948501864765281124629782 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1373.3MB, alloc=4.4MB, time=137.83 Complex estimate of poles used Radius of convergence = 3.861 Order of pole = 1.596 x[1] = 1.734 y[1] (analytic) = 0 y[1] (numeric) = 1.5895858061542583959644087053847 absolute error = 1.5895858061542583959644087053847 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.862 Order of pole = 1.596 x[1] = 1.735 y[1] (analytic) = 0 y[1] (numeric) = 1.5905735270590867175036013407658 absolute error = 1.5905735270590867175036013407658 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.863 Order of pole = 1.596 x[1] = 1.736 y[1] (analytic) = 0 y[1] (numeric) = 1.5915612575557347088400095307819 absolute error = 1.5915612575557347088400095307819 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.864 Order of pole = 1.596 x[1] = 1.737 y[1] (analytic) = 0 y[1] (numeric) = 1.5925489976352754921622571677751 absolute error = 1.5925489976352754921622571677751 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1377.1MB, alloc=4.4MB, time=138.21 Complex estimate of poles used Radius of convergence = 3.865 Order of pole = 1.596 x[1] = 1.738 y[1] (analytic) = 0 y[1] (numeric) = 1.5935367472887920313959945400562 absolute error = 1.5935367472887920313959945400562 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.866 Order of pole = 1.595 x[1] = 1.739 y[1] (analytic) = 0 y[1] (numeric) = 1.5945245065073771194657997825048 absolute error = 1.5945245065073771194657997825048 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.867 Order of pole = 1.595 x[1] = 1.74 y[1] (analytic) = 0 y[1] (numeric) = 1.5955122752821333655762270020307 absolute error = 1.5955122752821333655762270020307 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.868 Order of pole = 1.595 x[1] = 1.741 y[1] (analytic) = 0 y[1] (numeric) = 1.5965000536041731825119680323629 absolute error = 1.5965000536041731825119680323629 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.869 Order of pole = 1.595 x[1] = 1.742 y[1] (analytic) = 0 y[1] (numeric) = 1.5974878414646187739570948374093 absolute error = 1.5974878414646187739570948374093 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1380.9MB, alloc=4.4MB, time=138.59 Complex estimate of poles used Radius of convergence = 3.87 Order of pole = 1.595 x[1] = 1.743 y[1] (analytic) = 0 y[1] (numeric) = 1.5984756388546021218333496470623 absolute error = 1.5984756388546021218333496470623 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.871 Order of pole = 1.595 x[1] = 1.744 y[1] (analytic) = 0 y[1] (numeric) = 1.599463445765264973657449973818 absolute error = 1.599463445765264973657449973818 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.872 Order of pole = 1.594 x[1] = 1.745 y[1] (analytic) = 0 y[1] (numeric) = 1.600451262187758829917375722924 absolute error = 1.600451262187758829917375722924 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.873 Order of pole = 1.594 x[1] = 1.746 y[1] (analytic) = 0 y[1] (numeric) = 1.6014390881132449314676056729775 absolute error = 1.6014390881132449314676056729775 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1384.7MB, alloc=4.4MB, time=138.98 Complex estimate of poles used Radius of convergence = 3.874 Order of pole = 1.594 x[1] = 1.747 y[1] (analytic) = 0 y[1] (numeric) = 1.6024269235328942469432706679632 absolute error = 1.6024269235328942469432706679632 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.875 Order of pole = 1.594 x[1] = 1.748 y[1] (analytic) = 0 y[1] (numeric) = 1.6034147684378874601931909256418 absolute error = 1.6034147684378874601931909256418 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.876 Order of pole = 1.594 x[1] = 1.749 y[1] (analytic) = 0 y[1] (numeric) = 1.6044026228194149577317649309873 absolute error = 1.6044026228194149577317649309873 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.877 Order of pole = 1.594 x[1] = 1.75 y[1] (analytic) = 0 y[1] (numeric) = 1.6053904866686768162096774470122 absolute error = 1.6053904866686768162096774470122 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.878 Order of pole = 1.594 x[1] = 1.751 y[1] (analytic) = 0 y[1] (numeric) = 1.606378359976882789903394238824 absolute error = 1.606378359976882789903394238824 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1388.6MB, alloc=4.4MB, time=139.36 Complex estimate of poles used Radius of convergence = 3.879 Order of pole = 1.593 x[1] = 1.752 y[1] (analytic) = 0 y[1] (numeric) = 1.6073662427352522982234111701218 absolute error = 1.6073662427352522982234111701218 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.88 Order of pole = 1.593 x[1] = 1.753 y[1] (analytic) = 0 y[1] (numeric) = 1.6083541349350144132412253945639 absolute error = 1.6083541349350144132412253945639 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.881 Order of pole = 1.593 x[1] = 1.754 y[1] (analytic) = 0 y[1] (numeric) = 1.609342036567407847234996427525 absolute error = 1.609342036567407847234996427525 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.882 Order of pole = 1.593 x[1] = 1.755 y[1] (analytic) = 0 y[1] (numeric) = 1.6103299476236809402538649467078 absolute error = 1.6103299476236809402538649467078 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1392.4MB, alloc=4.4MB, time=139.74 Complex estimate of poles used Radius of convergence = 3.884 Order of pole = 1.593 x[1] = 1.756 y[1] (analytic) = 0 y[1] (numeric) = 1.6113178680950916477008972328826 absolute error = 1.6113178680950916477008972328826 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.885 Order of pole = 1.593 x[1] = 1.757 y[1] (analytic) = 0 y[1] (numeric) = 1.6123057979729075279346232246992 absolute error = 1.6123057979729075279346232246992 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.886 Order of pole = 1.592 x[1] = 1.758 y[1] (analytic) = 0 y[1] (numeric) = 1.613293737248405729889136224049 absolute error = 1.613293737248405729889136224049 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.887 Order of pole = 1.592 x[1] = 1.759 y[1] (analytic) = 0 y[1] (numeric) = 1.6142816859128729807127223508509 absolute error = 1.6142816859128729807127223508509 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.888 Order of pole = 1.592 x[1] = 1.76 y[1] (analytic) = 0 y[1] (numeric) = 1.6152696439576055734249879083935 absolute error = 1.6152696439576055734249879083935 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1396.2MB, alloc=4.4MB, time=140.12 Complex estimate of poles used Radius of convergence = 3.889 Order of pole = 1.592 x[1] = 1.761 y[1] (analytic) = 0 y[1] (numeric) = 1.6162576113739093545924528824882 absolute error = 1.6162576113739093545924528824882 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.89 Order of pole = 1.592 x[1] = 1.762 y[1] (analytic) = 0 y[1] (numeric) = 1.6172455881530997120225788596749 absolute error = 1.6172455881530997120225788596749 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.891 Order of pole = 1.592 x[1] = 1.763 y[1] (analytic) = 0 y[1] (numeric) = 1.6182335742865015624761997115712 absolute error = 1.6182335742865015624761997115712 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.892 Order of pole = 1.591 x[1] = 1.764 y[1] (analytic) = 0 y[1] (numeric) = 1.6192215697654493393983234541711 absolute error = 1.6192215697654493393983234541711 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.893 Order of pole = 1.591 x[1] = 1.765 y[1] (analytic) = 0 y[1] (numeric) = 1.6202095745812869806672737524777 absolute error = 1.6202095745812869806672737524777 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1400.0MB, alloc=4.4MB, time=140.50 Complex estimate of poles used Radius of convergence = 3.894 Order of pole = 1.591 x[1] = 1.766 y[1] (analytic) = 0 y[1] (numeric) = 1.6211975887253679163621396023006 absolute error = 1.6211975887253679163621396023006 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.895 Order of pole = 1.591 x[1] = 1.767 y[1] (analytic) = 0 y[1] (numeric) = 1.6221856121890550565485017823564 absolute error = 1.6221856121890550565485017823564 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.896 Order of pole = 1.591 x[1] = 1.768 y[1] (analytic) = 0 y[1] (numeric) = 1.6231736449637207790824047309871 absolute error = 1.6231736449637207790824047309871 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.897 Order of pole = 1.591 x[1] = 1.769 y[1] (analytic) = 0 y[1] (numeric) = 1.6241616870407469174325425628529 absolute error = 1.6241616870407469174325425628529 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1403.8MB, alloc=4.4MB, time=140.88 Complex estimate of poles used Radius of convergence = 3.898 Order of pole = 1.591 x[1] = 1.77 y[1] (analytic) = 0 y[1] (numeric) = 1.6251497384115247485206280018635 absolute error = 1.6251497384115247485206280018635 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.899 Order of pole = 1.59 x[1] = 1.771 y[1] (analytic) = 0 y[1] (numeric) = 1.6261377990674549805799130673865 absolute error = 1.6261377990674549805799130673865 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.9 Order of pole = 1.59 x[1] = 1.772 y[1] (analytic) = 0 y[1] (numeric) = 1.6271258689999477410318304114138 absolute error = 1.6271258689999477410318304114138 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.901 Order of pole = 1.59 x[1] = 1.773 y[1] (analytic) = 0 y[1] (numeric) = 1.6281139482004225643807242648743 absolute error = 1.6281139482004225643807242648743 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.902 Order of pole = 1.59 x[1] = 1.774 y[1] (analytic) = 0 y[1] (numeric) = 1.6291020366603083801266400116595 absolute error = 1.6291020366603083801266400116595 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1407.6MB, alloc=4.4MB, time=141.26 Complex estimate of poles used Radius of convergence = 3.903 Order of pole = 1.59 x[1] = 1.775 y[1] (analytic) = 0 y[1] (numeric) = 1.630090134371043500696141469173 absolute error = 1.630090134371043500696141469173 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.904 Order of pole = 1.59 x[1] = 1.776 y[1] (analytic) = 0 y[1] (numeric) = 1.6310782413240756093911250143261 absolute error = 1.6310782413240756093911250143261 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.905 Order of pole = 1.589 x[1] = 1.777 y[1] (analytic) = 0 y[1] (numeric) = 1.6320663575108617483555997538859 absolute error = 1.6320663575108617483555997538859 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.906 Order of pole = 1.589 x[1] = 1.778 y[1] (analytic) = 0 y[1] (numeric) = 1.6330544829228683065604029979306 absolute error = 1.6330544829228683065604029979306 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1411.4MB, alloc=4.4MB, time=141.64 Complex estimate of poles used Radius of convergence = 3.907 Order of pole = 1.589 x[1] = 1.779 y[1] (analytic) = 0 y[1] (numeric) = 1.6340426175515710078058203548877 absolute error = 1.6340426175515710078058203548877 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.908 Order of pole = 1.589 x[1] = 1.78 y[1] (analytic) = 0 y[1] (numeric) = 1.63503076138845489874207982622 absolute error = 1.63503076138845489874207982622 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.909 Order of pole = 1.589 x[1] = 1.781 y[1] (analytic) = 0 y[1] (numeric) = 1.6360189144250143369076893382832 absolute error = 1.6360189144250143369076893382832 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.91 Order of pole = 1.589 x[1] = 1.782 y[1] (analytic) = 0 y[1] (numeric) = 1.6370070766527529787855872082086 absolute error = 1.6370070766527529787855872082086 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.911 Order of pole = 1.588 x[1] = 1.783 y[1] (analytic) = 0 y[1] (numeric) = 1.637995248063183767877075099865 absolute error = 1.637995248063183767877075099865 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1415.3MB, alloc=4.4MB, time=142.02 Complex estimate of poles used Radius of convergence = 3.912 Order of pole = 1.588 x[1] = 1.784 y[1] (analytic) = 0 y[1] (numeric) = 1.6389834286478289227935030850242 absolute error = 1.6389834286478289227935030850242 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.914 Order of pole = 1.588 x[1] = 1.785 y[1] (analytic) = 0 y[1] (numeric) = 1.6399716183982199253656764837964 absolute error = 1.6399716183982199253656764837964 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.915 Order of pole = 1.588 x[1] = 1.786 y[1] (analytic) = 0 y[1] (numeric) = 1.640959817305897508770954217216 absolute error = 1.640959817305897508770954217216 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.916 Order of pole = 1.588 x[1] = 1.787 y[1] (analytic) = 0 y[1] (numeric) = 1.6419480253624116456780084635437 absolute error = 1.6419480253624116456780084635437 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1419.1MB, alloc=4.4MB, time=142.41 Complex estimate of poles used Radius of convergence = 3.917 Order of pole = 1.588 x[1] = 1.788 y[1] (analytic) = 0 y[1] (numeric) = 1.6429362425593215364092154684073 absolute error = 1.6429362425593215364092154684073 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.918 Order of pole = 1.587 x[1] = 1.789 y[1] (analytic) = 0 y[1] (numeric) = 1.6439244688881955971206474173348 absolute error = 1.6439244688881955971206474173348 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.919 Order of pole = 1.587 x[1] = 1.79 y[1] (analytic) = 0 y[1] (numeric) = 1.6449127043406114479996353375349 absolute error = 1.6449127043406114479996353375349 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.92 Order of pole = 1.587 x[1] = 1.791 y[1] (analytic) = 0 y[1] (numeric) = 1.6459009489081559014798730539563 absolute error = 1.6459009489081559014798730539563 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.921 Order of pole = 1.587 x[1] = 1.792 y[1] (analytic) = 0 y[1] (numeric) = 1.6468892025824249504740322827061 absolute error = 1.6468892025824249504740322827061 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1422.9MB, alloc=4.4MB, time=142.79 Complex estimate of poles used Radius of convergence = 3.922 Order of pole = 1.587 x[1] = 1.793 y[1] (analytic) = 0 y[1] (numeric) = 1.64787746535502375662385900283 absolute error = 1.64787746535502375662385900283 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.923 Order of pole = 1.587 x[1] = 1.794 y[1] (analytic) = 0 y[1] (numeric) = 1.648865737217566638567721305254 absolute error = 1.648865737217566638567721305254 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.924 Order of pole = 1.586 x[1] = 1.795 y[1] (analytic) = 0 y[1] (numeric) = 1.6498540181616770602255789753571 absolute error = 1.6498540181616770602255789753571 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.925 Order of pole = 1.586 x[1] = 1.796 y[1] (analytic) = 0 y[1] (numeric) = 1.650842308178987619101345123192 absolute error = 1.650842308178987619101345123192 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.926 Order of pole = 1.586 memory used=1426.7MB, alloc=4.4MB, time=143.17 x[1] = 1.797 y[1] (analytic) = 0 y[1] (numeric) = 1.6518306072611400346026102327891 absolute error = 1.6518306072611400346026102327891 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.927 Order of pole = 1.586 x[1] = 1.798 y[1] (analytic) = 0 y[1] (numeric) = 1.6528189153997851363776990592748 absolute error = 1.6528189153997851363776990592748 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.928 Order of pole = 1.586 x[1] = 1.799 y[1] (analytic) = 0 y[1] (numeric) = 1.6538072325865828526700308597078 absolute error = 1.6538072325865828526700308597078 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.929 Order of pole = 1.586 x[1] = 1.8 y[1] (analytic) = 0 y[1] (numeric) = 1.6547955588132021986897535005816 absolute error = 1.6547955588132021986897535005816 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.93 Order of pole = 1.585 x[1] = 1.801 y[1] (analytic) = 0 y[1] (numeric) = 1.6557838940713212650026220418654 absolute error = 1.6557838940713212650026220418654 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1430.5MB, alloc=4.4MB, time=143.56 Complex estimate of poles used Radius of convergence = 3.931 Order of pole = 1.585 x[1] = 1.802 y[1] (analytic) = 0 y[1] (numeric) = 1.6567722383526272059360924542549 absolute error = 1.6567722383526272059360924542549 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.932 Order of pole = 1.585 x[1] = 1.803 y[1] (analytic) = 0 y[1] (numeric) = 1.6577605916488162280026011829792 absolute error = 1.6577605916488162280026011829792 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.933 Order of pole = 1.585 x[1] = 1.804 y[1] (analytic) = 0 y[1] (numeric) = 1.6587489539515935783400013280651 absolute error = 1.6587489539515935783400013280651 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.934 Order of pole = 1.585 x[1] = 1.805 y[1] (analytic) = 0 y[1] (numeric) = 1.659737325252673533169126267387 absolute error = 1.659737325252673533169126267387 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.935 Order of pole = 1.585 x[1] = 1.806 y[1] (analytic) = 0 y[1] (numeric) = 1.6607257055437793862684516051412 absolute error = 1.6607257055437793862684516051412 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1434.3MB, alloc=4.4MB, time=143.94 Complex estimate of poles used Radius of convergence = 3.936 Order of pole = 1.584 x[1] = 1.807 y[1] (analytic) = 0 y[1] (numeric) = 1.6617140948166434374658263845676 absolute error = 1.6617140948166434374658263845676 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.937 Order of pole = 1.584 x[1] = 1.808 y[1] (analytic) = 0 y[1] (numeric) = 1.6627024930630069811472445598051 absolute error = 1.6627024930630069811472445598051 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.938 Order of pole = 1.584 x[1] = 1.809 y[1] (analytic) = 0 y[1] (numeric) = 1.6636909002746202947826277777108 absolute error = 1.6636909002746202947826277777108 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.939 Order of pole = 1.584 x[1] = 1.81 y[1] (analytic) = 0 y[1] (numeric) = 1.6646793164432426274685905762914 absolute error = 1.6646793164432426274685905762914 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1438.1MB, alloc=4.4MB, time=144.32 Complex estimate of poles used Radius of convergence = 3.94 Order of pole = 1.584 x[1] = 1.811 y[1] (analytic) = 0 y[1] (numeric) = 1.6656677415606421884881591620983 absolute error = 1.6656677415606421884881591620983 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.941 Order of pole = 1.584 x[1] = 1.812 y[1] (analytic) = 0 y[1] (numeric) = 1.6666561756185961358874149845143 absolute error = 1.6666561756185961358874149845143 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.942 Order of pole = 1.583 x[1] = 1.813 y[1] (analytic) = 0 y[1] (numeric) = 1.6676446186088905650690343803207 absolute error = 1.6676446186088905650690343803207 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.943 Order of pole = 1.583 x[1] = 1.814 y[1] (analytic) = 0 y[1] (numeric) = 1.6686330705233204974026956172714 absolute error = 1.6686330705233204974026956172714 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.944 Order of pole = 1.583 x[1] = 1.815 y[1] (analytic) = 0 y[1] (numeric) = 1.6696215313536898688523247206193 absolute error = 1.6696215313536898688523247206193 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1442.0MB, alloc=4.4MB, time=144.70 Complex estimate of poles used Radius of convergence = 3.946 Order of pole = 1.583 x[1] = 1.816 y[1] (analytic) = 0 y[1] (numeric) = 1.670610001091811518620151521642 absolute error = 1.670610001091811518620151521642 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.947 Order of pole = 1.583 x[1] = 1.817 y[1] (analytic) = 0 y[1] (numeric) = 1.6715984797295071778075474221904 absolute error = 1.6715984797295071778075474221904 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.948 Order of pole = 1.583 x[1] = 1.818 y[1] (analytic) = 0 y[1] (numeric) = 1.6725869672586074580926164241492 absolute error = 1.6725869672586074580926164241492 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.949 Order of pole = 1.582 x[1] = 1.819 y[1] (analytic) = 0 y[1] (numeric) = 1.6735754636709518404245110274373 absolute error = 1.6735754636709518404245110274373 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1445.8MB, alloc=4.4MB, time=145.08 Complex estimate of poles used Radius of convergence = 3.95 Order of pole = 1.582 x[1] = 1.82 y[1] (analytic) = 0 y[1] (numeric) = 1.6745639689583886637344446548038 absolute error = 1.6745639689583886637344446548038 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.951 Order of pole = 1.582 x[1] = 1.821 y[1] (analytic) = 0 y[1] (numeric) = 1.675552483112775113663372316179 absolute error = 1.675552483112775113663372316179 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.952 Order of pole = 1.582 x[1] = 1.822 y[1] (analytic) = 0 y[1] (numeric) = 1.6765410061259772113063112797294 absolute error = 1.6765410061259772113063112797294 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.953 Order of pole = 1.582 x[1] = 1.823 y[1] (analytic) = 0 y[1] (numeric) = 1.677529537989869801973273571037 absolute error = 1.677529537989869801973273571037 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.954 Order of pole = 1.581 x[1] = 1.824 y[1] (analytic) = 0 y[1] (numeric) = 1.6785180786963365439667821759761 absolute error = 1.6785180786963365439667821759761 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1449.6MB, alloc=4.4MB, time=145.46 Complex estimate of poles used Radius of convergence = 3.955 Order of pole = 1.581 x[1] = 1.825 y[1] (analytic) = 0 y[1] (numeric) = 1.6795066282372698973759428768985 absolute error = 1.6795066282372698973759428768985 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.956 Order of pole = 1.581 x[1] = 1.826 y[1] (analytic) = 0 y[1] (numeric) = 1.6804951866045711128870437056571 absolute error = 1.6804951866045711128870437056571 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.957 Order of pole = 1.581 x[1] = 1.827 y[1] (analytic) = 0 y[1] (numeric) = 1.6814837537901502206106540508029 absolute error = 1.6814837537901502206106540508029 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.958 Order of pole = 1.581 x[1] = 1.828 y[1] (analytic) = 0 y[1] (numeric) = 1.6824723297859260189251955099769 absolute error = 1.6824723297859260189251955099769 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.959 Order of pole = 1.581 memory used=1453.4MB, alloc=4.4MB, time=145.84 x[1] = 1.829 y[1] (analytic) = 0 y[1] (numeric) = 1.6834609145838260633369566320916 absolute error = 1.6834609145838260633369566320916 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.96 Order of pole = 1.58 x[1] = 1.83 y[1] (analytic) = 0 y[1] (numeric) = 1.6844495081757866553565237473513 absolute error = 1.6844495081757866553565237473513 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.961 Order of pole = 1.58 x[1] = 1.831 y[1] (analytic) = 0 y[1] (numeric) = 1.6854381105537528313916001365035 absolute error = 1.6854381105537528313916001365035 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.962 Order of pole = 1.58 x[1] = 1.832 y[1] (analytic) = 0 y[1] (numeric) = 1.6864267217096783516561858439378 absolute error = 1.6864267217096783516561858439378 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.963 Order of pole = 1.58 x[1] = 1.833 y[1] (analytic) = 0 y[1] (numeric) = 1.6874153416355256890960904923621 absolute error = 1.6874153416355256890960904923621 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1457.2MB, alloc=4.4MB, time=146.22 Complex estimate of poles used Radius of convergence = 3.964 Order of pole = 1.58 x[1] = 1.834 y[1] (analytic) = 0 y[1] (numeric) = 1.6884039703232660183307515097802 absolute error = 1.6884039703232660183307515097802 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.965 Order of pole = 1.58 x[1] = 1.835 y[1] (analytic) = 0 y[1] (numeric) = 1.6893926077648792046113302323808 absolute error = 1.6893926077648792046113302323808 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.966 Order of pole = 1.579 x[1] = 1.836 y[1] (analytic) = 0 y[1] (numeric) = 1.6903812539523537927950583997137 absolute error = 1.6903812539523537927950583997137 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.967 Order of pole = 1.579 x[1] = 1.837 y[1] (analytic) = 0 y[1] (numeric) = 1.6913699088776869963358076111862 absolute error = 1.6913699088776869963358076111862 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.968 Order of pole = 1.579 x[1] = 1.838 y[1] (analytic) = 0 y[1] (numeric) = 1.6923585725328846862908543654545 absolute error = 1.6923585725328846862908543654545 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1461.0MB, alloc=4.4MB, time=146.61 Complex estimate of poles used Radius of convergence = 3.969 Order of pole = 1.579 x[1] = 1.839 y[1] (analytic) = 0 y[1] (numeric) = 1.693347244909961380343813356712 absolute error = 1.693347244909961380343813356712 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.97 Order of pole = 1.579 x[1] = 1.84 y[1] (analytic) = 0 y[1] (numeric) = 1.694335926000940231843711754195 absolute error = 1.694335926000940231843711754195 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.971 Order of pole = 1.578 x[1] = 1.841 y[1] (analytic) = 0 y[1] (numeric) = 1.6953246157978530188601772434279 absolute error = 1.6953246157978530188601772434279 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.972 Order of pole = 1.578 x[1] = 1.842 y[1] (analytic) = 0 y[1] (numeric) = 1.6963133142927401332547126598212 absolute error = 1.6963133142927401332547126598212 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1464.9MB, alloc=4.4MB, time=146.99 Complex estimate of poles used Radius of convergence = 3.973 Order of pole = 1.578 x[1] = 1.843 y[1] (analytic) = 0 y[1] (numeric) = 1.6973020214776505697680300972166 absolute error = 1.6973020214776505697680300972166 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.974 Order of pole = 1.578 x[1] = 1.844 y[1] (analytic) = 0 y[1] (numeric) = 1.6982907373446419151234174258388 absolute error = 1.6982907373446419151234174258388 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.975 Order of pole = 1.578 x[1] = 1.845 y[1] (analytic) = 0 y[1] (numeric) = 1.6992794618857803371461102058715 absolute error = 1.6992794618857803371461102058715 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.976 Order of pole = 1.578 x[1] = 1.846 y[1] (analytic) = 0 y[1] (numeric) = 1.7002681950931405738986420345187 absolute error = 1.7002681950931405738986420345187 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.977 Order of pole = 1.577 x[1] = 1.847 y[1] (analytic) = 0 y[1] (numeric) = 1.7012569369588059228321464159467 absolute error = 1.7012569369588059228321464159467 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1468.7MB, alloc=4.4MB, time=147.37 Complex estimate of poles used Radius of convergence = 3.978 Order of pole = 1.577 x[1] = 1.848 y[1] (analytic) = 0 y[1] (numeric) = 1.7022456874748682299535832949264 absolute error = 1.7022456874748682299535832949264 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.979 Order of pole = 1.577 x[1] = 1.849 y[1] (analytic) = 0 y[1] (numeric) = 1.7032344466334278790088634463062 absolute error = 1.7032344466334278790088634463062 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.981 Order of pole = 1.577 x[1] = 1.85 y[1] (analytic) = 0 y[1] (numeric) = 1.7042232144265937806818439636518 absolute error = 1.7042232144265937806818439636518 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.982 Order of pole = 1.577 x[1] = 1.851 y[1] (analytic) = 0 y[1] (numeric) = 1.7052119908464833618091681414783 absolute error = 1.7052119908464833618091681414783 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1472.5MB, alloc=4.4MB, time=147.75 Complex estimate of poles used Radius of convergence = 3.983 Order of pole = 1.576 x[1] = 1.852 y[1] (analytic) = 0 y[1] (numeric) = 1.7062007758852225546109230964869 absolute error = 1.7062007758852225546109230964869 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.984 Order of pole = 1.576 x[1] = 1.853 y[1] (analytic) = 0 y[1] (numeric) = 1.7071895695349457859370885240896 absolute error = 1.7071895695349457859370885240896 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.985 Order of pole = 1.576 x[1] = 1.854 y[1] (analytic) = 0 y[1] (numeric) = 1.708178371787795966529750037272 absolute error = 1.708178371787795966529750037272 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.986 Order of pole = 1.576 x[1] = 1.855 y[1] (analytic) = 0 y[1] (numeric) = 1.7091671826359244803010505854995 absolute error = 1.7091671826359244803010505854995 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.987 Order of pole = 1.576 x[1] = 1.856 y[1] (analytic) = 0 y[1] (numeric) = 1.71015600207149117362685350192 absolute error = 1.71015600207149117362685350192 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1476.3MB, alloc=4.4MB, time=148.14 Complex estimate of poles used Radius of convergence = 3.988 Order of pole = 1.576 x[1] = 1.857 y[1] (analytic) = 0 y[1] (numeric) = 1.7111448300866643446560907775551 absolute error = 1.7111448300866643446560907775551 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.989 Order of pole = 1.575 x[1] = 1.858 y[1] (analytic) = 0 y[1] (numeric) = 1.712133666673620732635770211503 absolute error = 1.712133666673620732635770211503 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.99 Order of pole = 1.575 x[1] = 1.859 y[1] (analytic) = 0 y[1] (numeric) = 1.7131225118245455072516151364001 absolute error = 1.7131225118245455072516151364001 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.991 Order of pole = 1.575 x[1] = 1.86 y[1] (analytic) = 0 y[1] (numeric) = 1.7141113655316322579843104685036 absolute error = 1.7141113655316322579843104685036 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.992 memory used=1480.1MB, alloc=4.4MB, time=148.52 Order of pole = 1.575 x[1] = 1.861 y[1] (analytic) = 0 y[1] (numeric) = 1.715100227787082983481328881766 absolute error = 1.715100227787082983481328881766 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.993 Order of pole = 1.575 x[1] = 1.862 y[1] (analytic) = 0 y[1] (numeric) = 1.7160890985831080809443109551741 absolute error = 1.7160890985831080809443109551741 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.994 Order of pole = 1.574 x[1] = 1.863 y[1] (analytic) = 0 y[1] (numeric) = 1.7170779779119263355319731924201 absolute error = 1.7170779779119263355319731924201 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.995 Order of pole = 1.574 x[1] = 1.864 y[1] (analytic) = 0 y[1] (numeric) = 1.71806686576576490977851786266 absolute error = 1.71806686576576490977851786266 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.996 Order of pole = 1.574 x[1] = 1.865 y[1] (analytic) = 0 y[1] (numeric) = 1.7190557621368593330275186606968 absolute error = 1.7190557621368593330275186606968 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1483.9MB, alloc=4.5MB, time=148.90 Complex estimate of poles used Radius of convergence = 3.997 Order of pole = 1.574 x[1] = 1.866 y[1] (analytic) = 0 y[1] (numeric) = 1.720044667017453490881256234403 absolute error = 1.720044667017453490881256234403 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.998 Order of pole = 1.574 x[1] = 1.867 y[1] (analytic) = 0 y[1] (numeric) = 1.7210335803997996146654776765649 absolute error = 1.7210335803997996146654776765649 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 3.999 Order of pole = 1.574 x[1] = 1.868 y[1] (analytic) = 0 y[1] (numeric) = 1.7220225022761582709095541275983 absolute error = 1.7220225022761582709095541275983 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4 Order of pole = 1.573 x[1] = 1.869 y[1] (analytic) = 0 y[1] (numeric) = 1.7230114326387983508420106847436 absolute error = 1.7230114326387983508420106847436 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.001 Order of pole = 1.573 x[1] = 1.87 y[1] (analytic) = 0 y[1] (numeric) = 1.7240003714799970599014028624022 absolute error = 1.7240003714799970599014028624022 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1487.7MB, alloc=4.5MB, time=149.28 Complex estimate of poles used Radius of convergence = 4.002 Order of pole = 1.573 x[1] = 1.871 y[1] (analytic) = 0 y[1] (numeric) = 1.7249893187920399072625138972277 absolute error = 1.7249893187920399072625138972277 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.003 Order of pole = 1.573 x[1] = 1.872 y[1] (analytic) = 0 y[1] (numeric) = 1.725978274567220695377847240429 absolute error = 1.725978274567220695377847240429 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.004 Order of pole = 1.573 x[1] = 1.873 y[1] (analytic) = 0 y[1] (numeric) = 1.7269672387978415095343886284837 absolute error = 1.7269672387978415095343886284837 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.005 Order of pole = 1.572 x[1] = 1.874 y[1] (analytic) = 0 y[1] (numeric) = 1.7279562114762127074256121720981 absolute error = 1.7279562114762127074256121720981 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1491.6MB, alloc=4.5MB, time=149.67 Complex estimate of poles used Radius of convergence = 4.006 Order of pole = 1.572 x[1] = 1.875 y[1] (analytic) = 0 y[1] (numeric) = 1.7289451925946529087387049517826 absolute error = 1.7289451925946529087387049517826 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.007 Order of pole = 1.572 x[1] = 1.876 y[1] (analytic) = 0 y[1] (numeric) = 1.7299341821454889847569846568415 absolute error = 1.7299341821454889847569846568415 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.008 Order of pole = 1.572 x[1] = 1.877 y[1] (analytic) = 0 y[1] (numeric) = 1.7309231801210560479774848529016 absolute error = 1.7309231801210560479774848529016 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.009 Order of pole = 1.572 x[1] = 1.878 y[1] (analytic) = 0 y[1] (numeric) = 1.7319121865136974417436825113293 absolute error = 1.7319121865136974417436825113293 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.01 Order of pole = 1.571 x[1] = 1.879 y[1] (analytic) = 0 y[1] (numeric) = 1.7329012013157647298933424820055 absolute error = 1.7329012013157647298933424820055 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1495.4MB, alloc=4.5MB, time=150.04 Complex estimate of poles used Radius of convergence = 4.011 Order of pole = 1.571 x[1] = 1.88 y[1] (analytic) = 0 y[1] (numeric) = 1.7338902245196176864214536389454 absolute error = 1.7338902245196176864214536389454 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.012 Order of pole = 1.571 x[1] = 1.881 y[1] (analytic) = 0 y[1] (numeric) = 1.7348792561176242851582314761671 absolute error = 1.7348792561176242851582314761671 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.013 Order of pole = 1.571 x[1] = 1.882 y[1] (analytic) = 0 y[1] (numeric) = 1.7358682961021606894621619790265 absolute error = 1.7358682961021606894621619790265 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.014 Order of pole = 1.571 x[1] = 1.883 y[1] (analytic) = 0 y[1] (numeric) = 1.7368573444656112419280616439476 absolute error = 1.7368573444656112419280616439476 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1499.2MB, alloc=4.5MB, time=150.42 Complex estimate of poles used Radius of convergence = 4.015 Order of pole = 1.571 x[1] = 1.884 y[1] (analytic) = 0 y[1] (numeric) = 1.7378464012003684541101285670885 absolute error = 1.7378464012003684541101285670885 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.016 Order of pole = 1.57 x[1] = 1.885 y[1] (analytic) = 0 y[1] (numeric) = 1.7388354662988329962599595699918 absolute error = 1.7388354662988329962599595699918 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.017 Order of pole = 1.57 x[1] = 1.886 y[1] (analytic) = 0 y[1] (numeric) = 1.739824539753413687079508377677 absolute error = 1.739824539753413687079508377677 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.019 Order of pole = 1.57 x[1] = 1.887 y[1] (analytic) = 0 y[1] (numeric) = 1.7408136215565274834889599119389 absolute error = 1.7408136215565274834889599119389 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.02 Order of pole = 1.57 x[1] = 1.888 y[1] (analytic) = 0 y[1] (numeric) = 1.7418027117005994704094958098237 absolute error = 1.7418027117005994704094958098237 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1503.0MB, alloc=4.5MB, time=150.80 Complex estimate of poles used Radius of convergence = 4.021 Order of pole = 1.57 x[1] = 1.889 y[1] (analytic) = 0 y[1] (numeric) = 1.7427918101780628505609263243595 absolute error = 1.7427918101780628505609263243595 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.022 Order of pole = 1.569 x[1] = 1.89 y[1] (analytic) = 0 y[1] (numeric) = 1.7437809169813589342741638116253 absolute error = 1.7437809169813589342741638116253 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.023 Order of pole = 1.569 x[1] = 1.891 y[1] (analytic) = 0 y[1] (numeric) = 1.7447700321029371293185130551482 absolute error = 1.7447700321029371293185130551482 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.024 Order of pole = 1.569 x[1] = 1.892 y[1] (analytic) = 0 y[1] (numeric) = 1.7457591555352549307437537254252 absolute error = 1.7457591555352549307437537254252 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1506.8MB, alloc=4.5MB, time=151.18 Complex estimate of poles used Radius of convergence = 4.025 Order of pole = 1.569 x[1] = 1.893 y[1] (analytic) = 0 y[1] (numeric) = 1.7467482872707779107369903190733 absolute error = 1.7467482872707779107369903190733 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.026 Order of pole = 1.569 x[1] = 1.894 y[1] (analytic) = 0 y[1] (numeric) = 1.7477374273019797084942449687197 absolute error = 1.7477374273019797084942449687197 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.027 Order of pole = 1.568 x[1] = 1.895 y[1] (analytic) = 0 y[1] (numeric) = 1.7487265756213420201067685612527 absolute error = 1.7487265756213420201067685612527 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.028 Order of pole = 1.568 x[1] = 1.896 y[1] (analytic) = 0 y[1] (numeric) = 1.7497157322213545884620456484648 absolute error = 1.7497157322213545884620456484648 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.029 Order of pole = 1.568 x[1] = 1.897 y[1] (analytic) = 0 y[1] (numeric) = 1.7507048970945151931594686804306 absolute error = 1.7507048970945151931594686804306 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1510.6MB, alloc=4.5MB, time=151.56 Complex estimate of poles used Radius of convergence = 4.03 Order of pole = 1.568 x[1] = 1.898 y[1] (analytic) = 0 y[1] (numeric) = 1.7516940702333296404406571381768 absolute error = 1.7516940702333296404406571381768 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.031 Order of pole = 1.568 x[1] = 1.899 y[1] (analytic) = 0 y[1] (numeric) = 1.7526832516303117531343971883161 absolute error = 1.7526832516303117531343971883161 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.032 Order of pole = 1.568 x[1] = 1.9 y[1] (analytic) = 0 y[1] (numeric) = 1.7536724412779833606161775283353 absolute error = 1.7536724412779833606161775283353 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.033 Order of pole = 1.567 x[1] = 1.901 y[1] (analytic) = 0 y[1] (numeric) = 1.7546616391688742887822971371484 absolute error = 1.7546616391688742887822971371484 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.034 Order of pole = 1.567 x[1] = 1.902 y[1] (analytic) = 0 y[1] (numeric) = 1.7556508452955223500385206913476 absolute error = 1.7556508452955223500385206913476 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1514.4MB, alloc=4.5MB, time=151.94 Complex estimate of poles used Radius of convergence = 4.035 Order of pole = 1.567 x[1] = 1.903 y[1] (analytic) = 0 y[1] (numeric) = 1.756640059650473333303257453312 absolute error = 1.756640059650473333303257453312 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.036 Order of pole = 1.567 x[1] = 1.904 y[1] (analytic) = 0 y[1] (numeric) = 1.7576292822262809940252394829623 absolute error = 1.7576292822262809940252394829623 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.037 Order of pole = 1.567 x[1] = 1.905 y[1] (analytic) = 0 y[1] (numeric) = 1.7586185130155070442156750704815 absolute error = 1.7586185130155070442156750704815 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.038 Order of pole = 1.566 x[1] = 1.906 y[1] (analytic) = 0 y[1] (numeric) = 1.7596077520107211424948533327594 absolute error = 1.7596077520107211424948533327594 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1518.3MB, alloc=4.5MB, time=152.32 Complex estimate of poles used Radius of convergence = 4.039 Order of pole = 1.566 x[1] = 1.907 y[1] (analytic) = 0 y[1] (numeric) = 1.7605969992045008841531759616566 absolute error = 1.7605969992045008841531759616566 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.04 Order of pole = 1.566 x[1] = 1.908 y[1] (analytic) = 0 y[1] (numeric) = 1.7615862545894317912265921574285 absolute error = 1.7615862545894317912265921574285 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.041 Order of pole = 1.566 x[1] = 1.909 y[1] (analytic) = 0 y[1] (numeric) = 1.7625755181581073025864128257976 absolute error = 1.7625755181581073025864128257976 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.042 Order of pole = 1.566 x[1] = 1.91 y[1] (analytic) = 0 y[1] (numeric) = 1.7635647899031287640434801622155 absolute error = 1.7635647899031287640434801622155 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.043 Order of pole = 1.565 x[1] = 1.911 y[1] (analytic) = 0 y[1] (numeric) = 1.7645540698171054184666687918124 absolute error = 1.7645540698171054184666687918124 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1522.1MB, alloc=4.5MB, time=152.70 Complex estimate of poles used Radius of convergence = 4.044 Order of pole = 1.565 x[1] = 1.912 y[1] (analytic) = 0 y[1] (numeric) = 1.7655433578926543959156946783952 absolute error = 1.7655433578926543959156946783952 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.045 Order of pole = 1.565 x[1] = 1.913 y[1] (analytic) = 0 y[1] (numeric) = 1.7665326541224007037882080606222 absolute error = 1.7665326541224007037882080606222 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.046 Order of pole = 1.565 x[1] = 1.914 y[1] (analytic) = 0 y[1] (numeric) = 1.7675219584989772169811467181547 absolute error = 1.7675219584989772169811467181547 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.047 Order of pole = 1.565 x[1] = 1.915 y[1] (analytic) = 0 y[1] (numeric) = 1.7685112710150246680663259151657 absolute error = 1.7685112710150246680663259151657 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1525.9MB, alloc=4.5MB, time=153.07 Complex estimate of poles used Radius of convergence = 4.048 Order of pole = 1.564 x[1] = 1.916 y[1] (analytic) = 0 y[1] (numeric) = 1.769500591663191637480241413069 absolute error = 1.769500591663191637480241413069 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.049 Order of pole = 1.564 x[1] = 1.917 y[1] (analytic) = 0 y[1] (numeric) = 1.7704899204361345437280619887226 absolute error = 1.7704899204361345437280619887226 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.05 Order of pole = 1.564 x[1] = 1.918 y[1] (analytic) = 0 y[1] (numeric) = 1.7714792573265176336017879386568 absolute error = 1.7714792573265176336017879386568 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.051 Order of pole = 1.564 x[1] = 1.919 y[1] (analytic) = 0 y[1] (numeric) = 1.7724686023270129724125520940816 absolute error = 1.7724686023270129724125520940816 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.052 Order of pole = 1.564 x[1] = 1.92 y[1] (analytic) = 0 y[1] (numeric) = 1.773457955430300434237039915536 absolute error = 1.773457955430300434237039915536 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1529.7MB, alloc=4.5MB, time=153.46 Complex estimate of poles used Radius of convergence = 4.053 Order of pole = 1.563 x[1] = 1.921 y[1] (analytic) = 0 y[1] (numeric) = 1.7744473166290676921780052800607 absolute error = 1.7744473166290676921780052800607 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.054 Order of pole = 1.563 x[1] = 1.922 y[1] (analytic) = 0 y[1] (numeric) = 1.7754366859160102086388586176971 absolute error = 1.7754366859160102086388586176971 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.055 Order of pole = 1.563 x[1] = 1.923 y[1] (analytic) = 0 y[1] (numeric) = 1.7764260632838312256123040979499 absolute error = 1.7764260632838312256123040979499 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.056 Order of pole = 1.563 x[1] = 1.924 y[1] (analytic) = 0 y[1] (numeric) = 1.7774154487252417549830026105866 absolute error = 1.7774154487252417549830026105866 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used memory used=1533.5MB, alloc=4.5MB, time=153.84 Radius of convergence = 4.057 Order of pole = 1.563 x[1] = 1.925 y[1] (analytic) = 0 y[1] (numeric) = 1.7784048422329605688442373287961 absolute error = 1.7784048422329605688442373287961 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.058 Order of pole = 1.562 x[1] = 1.926 y[1] (analytic) = 0 y[1] (numeric) = 1.7793942437997141898285586862818 absolute error = 1.7793942437997141898285586862818 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.059 Order of pole = 1.562 x[1] = 1.927 y[1] (analytic) = 0 y[1] (numeric) = 1.7803836534182368814523856433288 absolute error = 1.7803836534182368814523856433288 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.06 Order of pole = 1.562 x[1] = 1.928 y[1] (analytic) = 0 y[1] (numeric) = 1.7813730710812706384745401602554 absolute error = 1.7813730710812706384745401602554 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.062 Order of pole = 1.562 x[1] = 1.929 y[1] (analytic) = 0 y[1] (numeric) = 1.7823624967815651772686918399396 absolute error = 1.7823624967815651772686918399396 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1537.3MB, alloc=4.5MB, time=154.22 Complex estimate of poles used Radius of convergence = 4.063 Order of pole = 1.562 x[1] = 1.93 y[1] (analytic) = 0 y[1] (numeric) = 1.7833519305118779262096897443005 absolute error = 1.7833519305118779262096897443005 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.064 Order of pole = 1.561 x[1] = 1.931 y[1] (analytic) = 0 y[1] (numeric) = 1.7843413722649740160737584327119 absolute error = 1.7843413722649740160737584327119 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.065 Order of pole = 1.561 x[1] = 1.932 y[1] (analytic) = 0 y[1] (numeric) = 1.7853308220336262704525353133336 absolute error = 1.7853308220336262704525353133336 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.066 Order of pole = 1.561 x[1] = 1.933 y[1] (analytic) = 0 y[1] (numeric) = 1.7863202798106151961809264412626 absolute error = 1.7863202798106151961809264412626 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.067 Order of pole = 1.561 x[1] = 1.934 y[1] (analytic) = 0 y[1] (numeric) = 1.7873097455887289737787579402326 absolute error = 1.7873097455887289737787579402326 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1541.1MB, alloc=4.5MB, time=154.60 Complex estimate of poles used Radius of convergence = 4.068 Order of pole = 1.561 x[1] = 1.935 y[1] (analytic) = 0 y[1] (numeric) = 1.7882992193607634479062002673276 absolute error = 1.7882992193607634479062002673276 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.069 Order of pole = 1.56 x[1] = 1.936 y[1] (analytic) = 0 y[1] (numeric) = 1.7892887011195221178329425828217 absolute error = 1.7892887011195221178329425828217 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.07 Order of pole = 1.56 x[1] = 1.937 y[1] (analytic) = 0 y[1] (numeric) = 1.7902781908578161279210945298144 absolute error = 1.7902781908578161279210945298144 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.071 Order of pole = 1.56 x[1] = 1.938 y[1] (analytic) = 0 y[1] (numeric) = 1.7912676885684642581217927707987 absolute error = 1.7912676885684642581217927707987 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1545.0MB, alloc=4.5MB, time=154.98 Complex estimate of poles used Radius of convergence = 4.072 Order of pole = 1.56 x[1] = 1.939 y[1] (analytic) = 0 y[1] (numeric) = 1.7922571942442929144854896706769 absolute error = 1.7922571942442929144854896706769 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.073 Order of pole = 1.56 x[1] = 1.94 y[1] (analytic) = 0 y[1] (numeric) = 1.7932467078781361196859015580306 absolute error = 1.7932467078781361196859015580306 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.074 Order of pole = 1.559 x[1] = 1.941 y[1] (analytic) = 0 y[1] (numeric) = 1.7942362294628355035575940386492 absolute error = 1.7942362294628355035575940386492 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.075 Order of pole = 1.559 x[1] = 1.942 y[1] (analytic) = 0 y[1] (numeric) = 1.7952257589912402936471818774359 absolute error = 1.7952257589912402936471818774359 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.076 Order of pole = 1.559 x[1] = 1.943 y[1] (analytic) = 0 y[1] (numeric) = 1.7962152964562073057781210068328 absolute error = 1.7962152964562073057781210068328 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1548.8MB, alloc=4.5MB, time=155.36 Complex estimate of poles used Radius of convergence = 4.077 Order of pole = 1.559 x[1] = 1.944 y[1] (analytic) = 0 y[1] (numeric) = 1.7972048418506009346290702618415 absolute error = 1.7972048418506009346290702618415 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.078 Order of pole = 1.559 x[1] = 1.945 y[1] (analytic) = 0 y[1] (numeric) = 1.7981943951672931443258004835655 absolute error = 1.7981943951672931443258004835655 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.079 Order of pole = 1.558 x[1] = 1.946 y[1] (analytic) = 0 y[1] (numeric) = 1.7991839563991634590466286749582 absolute error = 1.7991839563991634590466286749582 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.08 Order of pole = 1.558 x[1] = 1.947 y[1] (analytic) = 0 y[1] (numeric) = 1.8001735255390989536413549341333 absolute error = 1.8001735255390989536413549341333 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1552.6MB, alloc=4.5MB, time=155.75 Complex estimate of poles used Radius of convergence = 4.081 Order of pole = 1.558 x[1] = 1.948 y[1] (analytic) = 0 y[1] (numeric) = 1.8011631025799942442636799321803 absolute error = 1.8011631025799942442636799321803 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.082 Order of pole = 1.558 x[1] = 1.949 y[1] (analytic) = 0 y[1] (numeric) = 1.8021526875147514790170807439243 absolute error = 1.8021526875147514790170807439243 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.083 Order of pole = 1.558 x[1] = 1.95 y[1] (analytic) = 0 y[1] (numeric) = 1.8031422803362803286141228814808 absolute error = 1.8031422803362803286141228814808 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.084 Order of pole = 1.557 x[1] = 1.951 y[1] (analytic) = 0 y[1] (numeric) = 1.8041318810374979770491864217798 absolute error = 1.8041318810374979770491864217798 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.085 Order of pole = 1.557 x[1] = 1.952 y[1] (analytic) = 0 y[1] (numeric) = 1.8051214896113291122845841604715 absolute error = 1.8051214896113291122845841604715 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1556.4MB, alloc=4.5MB, time=156.13 Complex estimate of poles used Radius of convergence = 4.086 Order of pole = 1.557 x[1] = 1.953 y[1] (analytic) = 0 y[1] (numeric) = 1.8061111060507059169500497657774 absolute error = 1.8061111060507059169500497657774 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.087 Order of pole = 1.557 x[1] = 1.954 y[1] (analytic) = 0 y[1] (numeric) = 1.8071007303485680590555739469139 absolute error = 1.8071007303485680590555739469139 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.088 Order of pole = 1.557 x[1] = 1.955 y[1] (analytic) = 0 y[1] (numeric) = 1.8080903624978626827175666926974 absolute error = 1.8080903624978626827175666926974 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.089 Order of pole = 1.556 x[1] = 1.956 y[1] (analytic) = 0 y[1] (numeric) = 1.8090800024915443988983236768306 absolute error = 1.8090800024915443988983236768306 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.09 Order of pole = 1.556 memory used=1560.2MB, alloc=4.5MB, time=156.51 x[1] = 1.957 y[1] (analytic) = 0 y[1] (numeric) = 1.8100696503225752761587749671794 absolute error = 1.8100696503225752761587749671794 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.091 Order of pole = 1.556 x[1] = 1.958 y[1] (analytic) = 0 y[1] (numeric) = 1.8110593059839248314244942170708 absolute error = 1.8110593059839248314244942170708 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.092 Order of pole = 1.556 x[1] = 1.959 y[1] (analytic) = 0 y[1] (numeric) = 1.8120489694685700207649465572812 absolute error = 1.8120489694685700207649465572812 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.093 Order of pole = 1.556 x[1] = 1.96 y[1] (analytic) = 0 y[1] (numeric) = 1.8130386407694952301859534479354 absolute error = 1.8130386407694952301859534479354 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.094 Order of pole = 1.555 x[1] = 1.961 y[1] (analytic) = 0 y[1] (numeric) = 1.8140283198796922664353527900049 absolute error = 1.8140283198796922664353527900049 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1564.0MB, alloc=4.5MB, time=156.89 Complex estimate of poles used Radius of convergence = 4.095 Order of pole = 1.555 x[1] = 1.962 y[1] (analytic) = 0 y[1] (numeric) = 1.8150180067921603478218326364778 absolute error = 1.8150180067921603478218326364778 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.096 Order of pole = 1.555 x[1] = 1.963 y[1] (analytic) = 0 y[1] (numeric) = 1.8160077014999060950469168835699 absolute error = 1.8160077014999060950469168835699 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.097 Order of pole = 1.555 x[1] = 1.964 y[1] (analytic) = 0 y[1] (numeric) = 1.8169974039959435220500813625624 absolute error = 1.8169974039959435220500813625624 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.098 Order of pole = 1.555 x[1] = 1.965 y[1] (analytic) = 0 y[1] (numeric) = 1.8179871142732940268669787929822 absolute error = 1.8179871142732940268669787929822 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.099 Order of pole = 1.554 x[1] = 1.966 y[1] (analytic) = 0 y[1] (numeric) = 1.8189768323249863825007510978865 absolute error = 1.8189768323249863825007510978865 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1567.9MB, alloc=4.5MB, time=157.27 Complex estimate of poles used Radius of convergence = 4.1 Order of pole = 1.554 x[1] = 1.967 y[1] (analytic) = 0 y[1] (numeric) = 1.8199665581440567278064076219785 absolute error = 1.8199665581440567278064076219785 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.101 Order of pole = 1.554 x[1] = 1.968 y[1] (analytic) = 0 y[1] (numeric) = 1.8209562917235485583882478331595 absolute error = 1.8209562917235485583882478331595 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.102 Order of pole = 1.554 x[1] = 1.969 y[1] (analytic) = 0 y[1] (numeric) = 1.8219460330565127175103071279194 absolute error = 1.8219460330565127175103071279194 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.103 Order of pole = 1.554 x[1] = 1.97 y[1] (analytic) = 0 y[1] (numeric) = 1.8229357821360073870198044006828 absolute error = 1.8229357821360073870198044006828 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1571.7MB, alloc=4.5MB, time=157.65 Complex estimate of poles used Radius of convergence = 4.104 Order of pole = 1.553 x[1] = 1.971 y[1] (analytic) = 0 y[1] (numeric) = 1.8239255389550980782835700768572 absolute error = 1.8239255389550980782835700768572 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.105 Order of pole = 1.553 x[1] = 1.972 y[1] (analytic) = 0 y[1] (numeric) = 1.824915303506857623137433348879 absolute error = 1.824915303506857623137433348879 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.106 Order of pole = 1.553 x[1] = 1.973 y[1] (analytic) = 0 y[1] (numeric) = 1.8259050757843661648485473940186 absolute error = 1.8259050757843661648485473940186 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.107 Order of pole = 1.553 x[1] = 1.974 y[1] (analytic) = 0 y[1] (numeric) = 1.8268948557807111490906313920901 absolute error = 1.8268948557807111490906313920901 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.108 Order of pole = 1.553 x[1] = 1.975 y[1] (analytic) = 0 y[1] (numeric) = 1.827884643488987314932108200512 absolute error = 1.827884643488987314932108200512 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1575.5MB, alloc=4.5MB, time=158.03 Complex estimate of poles used Radius of convergence = 4.109 Order of pole = 1.552 x[1] = 1.976 y[1] (analytic) = 0 y[1] (numeric) = 1.8288744389022966858371165833857 absolute error = 1.8288744389022966858371165833857 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.11 Order of pole = 1.552 x[1] = 1.977 y[1] (analytic) = 0 y[1] (numeric) = 1.8298642420137485606793769303965 absolute error = 1.8298642420137485606793769303965 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.112 Order of pole = 1.552 x[1] = 1.978 y[1] (analytic) = 0 y[1] (numeric) = 1.8308540528164595047688894403988 absolute error = 1.8308540528164595047688894403988 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.113 Order of pole = 1.552 x[1] = 1.979 y[1] (analytic) = 0 y[1] (numeric) = 1.8318438713035533408914437835221 absolute error = 1.8318438713035533408914437835221 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1579.3MB, alloc=4.5MB, time=158.41 Complex estimate of poles used Radius of convergence = 4.114 Order of pole = 1.552 x[1] = 1.98 y[1] (analytic) = 0 y[1] (numeric) = 1.8328336974681611403609192945293 absolute error = 1.8328336974681611403609192945293 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.115 Order of pole = 1.551 x[1] = 1.981 y[1] (analytic) = 0 y[1] (numeric) = 1.8338235313034212140843547889718 absolute error = 1.8338235313034212140843547889718 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.116 Order of pole = 1.551 x[1] = 1.982 y[1] (analytic) = 0 y[1] (numeric) = 1.8348133728024791036397671324193 absolute error = 1.8348133728024791036397671324193 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.117 Order of pole = 1.551 x[1] = 1.983 y[1] (analytic) = 0 y[1] (numeric) = 1.8358032219584875723666977316931 absolute error = 1.8358032219584875723666977316931 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.118 Order of pole = 1.551 x[1] = 1.984 y[1] (analytic) = 0 y[1] (numeric) = 1.836793078764606596469466155605 absolute error = 1.836793078764606596469466155605 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1583.1MB, alloc=4.5MB, time=158.79 Complex estimate of poles used Radius of convergence = 4.119 Order of pole = 1.551 x[1] = 1.985 y[1] (analytic) = 0 y[1] (numeric) = 1.837782943214003356133110131195 absolute error = 1.837782943214003356133110131195 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.12 Order of pole = 1.55 x[1] = 1.986 y[1] (analytic) = 0 y[1] (numeric) = 1.8387728152998522266519911998725 absolute error = 1.8387728152998522266519911998725 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.121 Order of pole = 1.55 x[1] = 1.987 y[1] (analytic) = 0 y[1] (numeric) = 1.8397626950153347695710453561978 absolute error = 1.8397626950153347695710453561978 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.122 Order of pole = 1.55 x[1] = 1.988 y[1] (analytic) = 0 y[1] (numeric) = 1.8407525823536397238396580302933 absolute error = 1.8407525823536397238396580302933 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.123 Order of pole = 1.55 memory used=1586.9MB, alloc=4.5MB, time=159.17 x[1] = 1.989 y[1] (analytic) = 0 y[1] (numeric) = 1.8417424773079629969781428130468 absolute error = 1.8417424773079629969781428130468 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.124 Order of pole = 1.549 x[1] = 1.99 y[1] (analytic) = 0 y[1] (numeric) = 1.8427323798715076562568033613622 absolute error = 1.8427323798715076562568033613622 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.125 Order of pole = 1.549 x[1] = 1.991 y[1] (analytic) = 0 y[1] (numeric) = 1.8437222900374839198875579587289 absolute error = 1.8437222900374839198875579587289 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.126 Order of pole = 1.549 x[1] = 1.992 y[1] (analytic) = 0 y[1] (numeric) = 1.8447122077991091482281062443152 absolute error = 1.8447122077991091482281062443152 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.127 Order of pole = 1.549 x[1] = 1.993 y[1] (analytic) = 0 y[1] (numeric) = 1.8457021331496078349986176616505 absolute error = 1.8457021331496078349986176616505 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1590.7MB, alloc=4.5MB, time=159.56 Complex estimate of poles used Radius of convergence = 4.128 Order of pole = 1.549 x[1] = 1.994 y[1] (analytic) = 0 y[1] (numeric) = 1.8466920660822115985109212157367 absolute error = 1.8466920660822115985109212157367 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.129 Order of pole = 1.548 x[1] = 1.995 y[1] (analytic) = 0 y[1] (numeric) = 1.8476820065901591729101761651328 absolute error = 1.8476820065901591729101761651328 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.13 Order of pole = 1.548 x[1] = 1.996 y[1] (analytic) = 0 y[1] (numeric) = 1.8486719546666963994290033131757 absolute error = 1.8486719546666963994290033131757 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.131 Order of pole = 1.548 x[1] = 1.997 y[1] (analytic) = 0 y[1] (numeric) = 1.849661910305076217654056600047 absolute error = 1.849661910305076217654056600047 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.132 Order of pole = 1.548 x[1] = 1.998 y[1] (analytic) = 0 y[1] (numeric) = 1.8506518734985586568050147348597 absolute error = 1.8506518734985586568050147348597 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1594.6MB, alloc=4.5MB, time=159.94 Complex estimate of poles used Radius of convergence = 4.133 Order of pole = 1.548 x[1] = 1.999 y[1] (analytic) = 0 y[1] (numeric) = 1.8516418442404108270259726443296 absolute error = 1.8516418442404108270259726443296 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.134 Order of pole = 1.547 x[1] = 2 y[1] (analytic) = 0 y[1] (numeric) = 1.8526318225239069106892125519062 absolute error = 1.8526318225239069106892125519062 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.135 Order of pole = 1.547 x[1] = 2.001 y[1] (analytic) = 0 y[1] (numeric) = 1.853621808342328153711334538472 absolute error = 1.853621808342328153711334538472 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.136 Order of pole = 1.547 x[1] = 2.002 y[1] (analytic) = 0 y[1] (numeric) = 1.8546118016889628568817264728776 absolute error = 1.8546118016889628568817264728776 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1598.4MB, alloc=4.5MB, time=160.33 Complex estimate of poles used Radius of convergence = 4.137 Order of pole = 1.547 x[1] = 2.003 y[1] (analytic) = 0 y[1] (numeric) = 1.8556018025571063672033532376576 absolute error = 1.8556018025571063672033532376576 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.138 Order of pole = 1.547 x[1] = 2.004 y[1] (analytic) = 0 y[1] (numeric) = 1.8565918109400610692458452122789 absolute error = 1.8565918109400610692458452122789 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.139 Order of pole = 1.546 x[1] = 2.005 y[1] (analytic) = 0 y[1] (numeric) = 1.8575818268311363765108660131973 absolute error = 1.8575818268311363765108660131973 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.14 Order of pole = 1.546 x[1] = 2.006 y[1] (analytic) = 0 y[1] (numeric) = 1.85857185022364872280973952685 absolute error = 1.85857185022364872280973952685 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.141 Order of pole = 1.546 x[1] = 2.007 y[1] (analytic) = 0 y[1] (numeric) = 1.8595618811109215536533163084861 absolute error = 1.8595618811109215536533163084861 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1602.2MB, alloc=4.5MB, time=160.71 Complex estimate of poles used Radius of convergence = 4.142 Order of pole = 1.546 x[1] = 2.008 y[1] (analytic) = 0 y[1] (numeric) = 1.860551919486285317654059456435 absolute error = 1.860551919486285317654059456435 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.143 Order of pole = 1.545 x[1] = 2.009 y[1] (analytic) = 0 y[1] (numeric) = 1.8615419653430774579403301080356 absolute error = 1.8615419653430774579403301080356 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.144 Order of pole = 1.545 x[1] = 2.01 y[1] (analytic) = 0 y[1] (numeric) = 1.8625320186746424035828527399957 absolute error = 1.8625320186746424035828527399957 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.145 Order of pole = 1.545 x[1] = 2.011 y[1] (analytic) = 0 y[1] (numeric) = 1.863522079474331561033340492423 absolute error = 1.863522079474331561033340492423 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1606.0MB, alloc=4.5MB, time=161.09 Complex estimate of poles used Radius of convergence = 4.146 Order of pole = 1.545 x[1] = 2.012 y[1] (analytic) = 0 y[1] (numeric) = 1.864512147735503305575260772164 absolute error = 1.864512147735503305575260772164 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.147 Order of pole = 1.545 x[1] = 2.013 y[1] (analytic) = 0 y[1] (numeric) = 1.8655022234515229727867214274095 absolute error = 1.8655022234515229727867214274095 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.148 Order of pole = 1.544 x[1] = 2.014 y[1] (analytic) = 0 y[1] (numeric) = 1.86649230661576285001545782177 absolute error = 1.86649230661576285001545782177 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.149 Order of pole = 1.544 x[1] = 2.015 y[1] (analytic) = 0 y[1] (numeric) = 1.8674823972216021678659011721966 absolute error = 1.8674823972216021678659011721966 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.15 Order of pole = 1.544 x[1] = 2.016 y[1] (analytic) = 0 y[1] (numeric) = 1.8684724952624270916983085512187 absolute error = 1.8684724952624270916983085512187 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1609.8MB, alloc=4.5MB, time=161.47 Complex estimate of poles used Radius of convergence = 4.151 Order of pole = 1.544 x[1] = 2.017 y[1] (analytic) = 0 y[1] (numeric) = 1.8694626007316307131399349899924 absolute error = 1.8694626007316307131399349899924 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.152 Order of pole = 1.544 x[1] = 2.018 y[1] (analytic) = 0 y[1] (numeric) = 1.8704527136226130416082281546007 absolute error = 1.8704527136226130416082281546007 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.153 Order of pole = 1.543 x[1] = 2.019 y[1] (analytic) = 0 y[1] (numeric) = 1.8714428339287809958460261039212 absolute error = 1.8714428339287809958460261039212 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.154 Order of pole = 1.543 x[1] = 2.02 y[1] (analytic) = 0 y[1] (numeric) = 1.8724329616435483954687386731763 absolute error = 1.8724329616435483954687386731763 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.155 Order of pole = 1.543 memory used=1613.6MB, alloc=4.5MB, time=161.85 x[1] = 2.021 y[1] (analytic) = 0 y[1] (numeric) = 1.8734230967603359525234930630063 absolute error = 1.8734230967603359525234930630063 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.156 Order of pole = 1.543 x[1] = 2.022 y[1] (analytic) = 0 y[1] (numeric) = 1.8744132392725712630602242495591 absolute error = 1.8744132392725712630602242495591 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.157 Order of pole = 1.543 x[1] = 2.023 y[1] (analytic) = 0 y[1] (numeric) = 1.8754033891736887987146908666687 absolute error = 1.8754033891736887987146908666687 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.158 Order of pole = 1.542 x[1] = 2.024 y[1] (analytic) = 0 y[1] (numeric) = 1.8763935464571298983033972467008 absolute error = 1.8763935464571298983033972467008 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.159 Order of pole = 1.542 x[1] = 2.025 y[1] (analytic) = 0 y[1] (numeric) = 1.8773837111163427594304023420751 absolute error = 1.8773837111163427594304023420751 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1617.4MB, alloc=4.5MB, time=162.23 Complex estimate of poles used Radius of convergence = 4.16 Order of pole = 1.542 x[1] = 2.026 y[1] (analytic) = 0 y[1] (numeric) = 1.8783738831447824301059962848353 absolute error = 1.8783738831447824301059962848353 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.161 Order of pole = 1.542 x[1] = 2.027 y[1] (analytic) = 0 y[1] (numeric) = 1.8793640625359108003772253769237 absolute error = 1.8793640625359108003772253769237 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.162 Order of pole = 1.541 x[1] = 2.028 y[1] (analytic) = 0 y[1] (numeric) = 1.8803542492831965939702463390316 absolute error = 1.8803542492831965939702463390316 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.163 Order of pole = 1.541 x[1] = 2.029 y[1] (analytic) = 0 y[1] (numeric) = 1.8813444433801153599444906810387 absolute error = 1.8813444433801153599444906810387 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.164 Order of pole = 1.541 x[1] = 2.03 y[1] (analytic) = 0 y[1] (numeric) = 1.8823346448201494643586200921242 absolute error = 1.8823346448201494643586200921242 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1621.3MB, alloc=4.5MB, time=162.61 Complex estimate of poles used Radius of convergence = 4.165 Order of pole = 1.541 x[1] = 2.031 y[1] (analytic) = 0 y[1] (numeric) = 1.8833248535967880819482537836302 absolute error = 1.8833248535967880819482537836302 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.166 Order of pole = 1.541 x[1] = 2.032 y[1] (analytic) = 0 y[1] (numeric) = 1.8843150697035271878154487526831 absolute error = 1.8843150697035271878154487526831 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.167 Order of pole = 1.54 x[1] = 2.033 y[1] (analytic) = 0 y[1] (numeric) = 1.8853052931338695491299139694325 absolute error = 1.8853052931338695491299139694325 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.168 Order of pole = 1.54 x[1] = 2.034 y[1] (analytic) = 0 y[1] (numeric) = 1.8862955238813247168419395255494 absolute error = 1.8862955238813247168419395255494 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1625.1MB, alloc=4.5MB, time=162.98 Complex estimate of poles used Radius of convergence = 4.169 Order of pole = 1.54 x[1] = 2.035 y[1] (analytic) = 0 y[1] (numeric) = 1.8872857619394090174070218163365 absolute error = 1.8872857619394090174070218163365 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.17 Order of pole = 1.54 x[1] = 2.036 y[1] (analytic) = 0 y[1] (numeric) = 1.8882760073016455445221658634423 absolute error = 1.8882760073016455445221658634423 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.171 Order of pole = 1.54 x[1] = 2.037 y[1] (analytic) = 0 y[1] (numeric) = 1.8892662599615641508738459197395 absolute error = 1.8892662599615641508738459197395 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.172 Order of pole = 1.539 x[1] = 2.038 y[1] (analytic) = 0 y[1] (numeric) = 1.8902565199127014398976055324253 absolute error = 1.8902565199127014398976055324253 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.174 Order of pole = 1.539 x[1] = 2.039 y[1] (analytic) = 0 y[1] (numeric) = 1.891246787148600757549278274828 absolute error = 1.891246787148600757549278274828 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1628.9MB, alloc=4.5MB, time=163.37 Complex estimate of poles used Radius of convergence = 4.175 Order of pole = 1.539 x[1] = 2.04 y[1] (analytic) = 0 y[1] (numeric) = 1.8922370616628121840878103917603 absolute error = 1.8922370616628121840878103917603 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.176 Order of pole = 1.539 x[1] = 2.041 y[1] (analytic) = 0 y[1] (numeric) = 1.8932273434488925258696666375444 absolute error = 1.8932273434488925258696666375444 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.177 Order of pole = 1.538 x[1] = 2.042 y[1] (analytic) = 0 y[1] (numeric) = 1.8942176325004053071548006200507 absolute error = 1.8942176325004053071548006200507 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.178 Order of pole = 1.538 x[1] = 2.043 y[1] (analytic) = 0 y[1] (numeric) = 1.8952079288109207619241709982356 absolute error = 1.8952079288109207619241709982356 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1632.7MB, alloc=4.5MB, time=163.75 Complex estimate of poles used Radius of convergence = 4.179 Order of pole = 1.538 x[1] = 2.044 y[1] (analytic) = 0 y[1] (numeric) = 1.8961982323740158257087849147393 absolute error = 1.8961982323740158257087849147393 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.18 Order of pole = 1.538 x[1] = 2.045 y[1] (analytic) = 0 y[1] (numeric) = 1.8971885431832741274302500791101 absolute error = 1.8971885431832741274302500791101 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.181 Order of pole = 1.538 x[1] = 2.046 y[1] (analytic) = 0 y[1] (numeric) = 1.8981788612322859812528169511565 absolute error = 1.8981788612322859812528169511565 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.182 Order of pole = 1.537 x[1] = 2.047 y[1] (analytic) = 0 y[1] (numeric) = 1.8991691865146483784468925077957 absolute error = 1.8991691865146483784468925077957 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.183 Order of pole = 1.537 x[1] = 2.048 y[1] (analytic) = 0 y[1] (numeric) = 1.9001595190239649792640071105619 absolute error = 1.9001595190239649792640071105619 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1636.5MB, alloc=4.5MB, time=164.13 Complex estimate of poles used Radius of convergence = 4.184 Order of pole = 1.537 x[1] = 2.049 y[1] (analytic) = 0 y[1] (numeric) = 1.9011498587538461048232160246671 absolute error = 1.9011498587538461048232160246671 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.185 Order of pole = 1.537 x[1] = 2.05 y[1] (analytic) = 0 y[1] (numeric) = 1.9021402056979087290089171741645 absolute error = 1.9021402056979087290089171741645 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.186 Order of pole = 1.536 x[1] = 2.051 y[1] (analytic) = 0 y[1] (numeric) = 1.9031305598497764703800667513546 absolute error = 1.9031305598497764703800667513546 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.187 Order of pole = 1.536 x[1] = 2.052 y[1] (analytic) = 0 y[1] (numeric) = 1.9041209212030795840907743320943 absolute error = 1.9041209212030795840907743320943 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.188 Order of pole = 1.536 memory used=1640.3MB, alloc=4.5MB, time=164.51 x[1] = 2.053 y[1] (analytic) = 0 y[1] (numeric) = 1.9051112897514549538222591821225 absolute error = 1.9051112897514549538222591821225 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.189 Order of pole = 1.536 x[1] = 2.054 y[1] (analytic) = 0 y[1] (numeric) = 1.9061016654885460837261494728991 absolute error = 1.9061016654885460837261494728991 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.19 Order of pole = 1.536 x[1] = 2.055 y[1] (analytic) = 0 y[1] (numeric) = 1.9070920484080030903791061587697 absolute error = 1.9070920484080030903791061587697 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.191 Order of pole = 1.535 x[1] = 2.056 y[1] (analytic) = 0 y[1] (numeric) = 1.9080824385034826947487533005159 absolute error = 1.9080824385034826947487533005159 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.192 Order of pole = 1.535 x[1] = 2.057 y[1] (analytic) = 0 y[1] (numeric) = 1.9090728357686482141708966535312 absolute error = 1.9090728357686482141708966535312 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1644.1MB, alloc=4.5MB, time=164.89 Complex estimate of poles used Radius of convergence = 4.193 Order of pole = 1.535 x[1] = 2.058 y[1] (analytic) = 0 y[1] (numeric) = 1.9100632401971695543380123719732 absolute error = 1.9100632401971695543380123719732 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.194 Order of pole = 1.535 x[1] = 2.059 y[1] (analytic) = 0 y[1] (numeric) = 1.911053651782723201298987713288 absolute error = 1.911053651782723201298987713288 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.195 Order of pole = 1.535 x[1] = 2.06 y[1] (analytic) = 0 y[1] (numeric) = 1.9120440705189922134700956604789 absolute error = 1.9120440705189922134700956604789 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.196 Order of pole = 1.534 x[1] = 2.061 y[1] (analytic) = 0 y[1] (numeric) = 1.9130344963996662136571854124003 absolute error = 1.9130344963996662136571854124003 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.197 Order of pole = 1.534 x[1] = 2.062 y[1] (analytic) = 0 y[1] (numeric) = 1.9140249294184413810890707252012 absolute error = 1.9140249294184413810890707252012 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1648.0MB, alloc=4.5MB, time=165.27 Complex estimate of poles used Radius of convergence = 4.198 Order of pole = 1.534 x[1] = 2.063 y[1] (analytic) = 0 y[1] (numeric) = 1.9150153695690204434620981208157 absolute error = 1.9150153695690204434620981208157 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.199 Order of pole = 1.534 x[1] = 2.064 y[1] (analytic) = 0 y[1] (numeric) = 1.9160058168451126689958770111085 absolute error = 1.9160058168451126689958770111085 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.2 Order of pole = 1.533 x[1] = 2.065 y[1] (analytic) = 0 y[1] (numeric) = 1.9169962712404338585001538189235 absolute error = 1.9169962712404338585001538189235 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.201 Order of pole = 1.533 x[1] = 2.066 y[1] (analytic) = 0 y[1] (numeric) = 1.917986732748706337452812209858 absolute error = 1.917986732748706337452812209858 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1651.8MB, alloc=4.5MB, time=165.65 Complex estimate of poles used Radius of convergence = 4.202 Order of pole = 1.533 x[1] = 2.067 y[1] (analytic) = 0 y[1] (numeric) = 1.9189772013636589480889815810957 absolute error = 1.9189772013636589480889815810957 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.203 Order of pole = 1.533 x[1] = 2.068 y[1] (analytic) = 0 y[1] (numeric) = 1.9199676770790270415012359860713 absolute error = 1.9199676770790270415012359860713 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.204 Order of pole = 1.533 x[1] = 2.069 y[1] (analytic) = 0 y[1] (numeric) = 1.9209581598885524697508657061179 absolute error = 1.9209581598885524697508657061179 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.205 Order of pole = 1.532 x[1] = 2.07 y[1] (analytic) = 0 y[1] (numeric) = 1.921948649785983577990203712557 absolute error = 1.921948649785983577990203712557 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.206 Order of pole = 1.532 x[1] = 2.071 y[1] (analytic) = 0 y[1] (numeric) = 1.9229391467650751965959892949362 absolute error = 1.9229391467650751965959892949362 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1655.6MB, alloc=4.5MB, time=166.03 Complex estimate of poles used Radius of convergence = 4.207 Order of pole = 1.532 x[1] = 2.072 y[1] (analytic) = 0 y[1] (numeric) = 1.9239296508195886333137511632974 absolute error = 1.9239296508195886333137511632974 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.208 Order of pole = 1.532 x[1] = 2.073 y[1] (analytic) = 0 y[1] (numeric) = 1.9249201619432916654131923644733 absolute error = 1.9249201619432916654131923644733 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.209 Order of pole = 1.531 x[1] = 2.074 y[1] (analytic) = 0 y[1] (numeric) = 1.925910680129958531854559384455 absolute error = 1.925910680129958531854559384455 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.21 Order of pole = 1.531 x[1] = 2.075 y[1] (analytic) = 0 y[1] (numeric) = 1.926901205373369925465977840859 absolute error = 1.926901205373369925465977840859 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1659.4MB, alloc=4.5MB, time=166.41 Complex estimate of poles used Radius of convergence = 4.211 Order of pole = 1.531 x[1] = 2.076 y[1] (analytic) = 0 y[1] (numeric) = 1.9278917376673129851317372014367 absolute error = 1.9278917376673129851317372014367 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.212 Order of pole = 1.531 x[1] = 2.077 y[1] (analytic) = 0 y[1] (numeric) = 1.9288822770055812879915069964247 absolute error = 1.9288822770055812879915069964247 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.213 Order of pole = 1.531 x[1] = 2.078 y[1] (analytic) = 0 y[1] (numeric) = 1.9298728233819748416504670243197 absolute error = 1.9298728233819748416504670243197 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.214 Order of pole = 1.53 x[1] = 2.079 y[1] (analytic) = 0 y[1] (numeric) = 1.9308633767903000764003340823856 absolute error = 1.9308633767903000764003340823856 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.215 Order of pole = 1.53 x[1] = 2.08 y[1] (analytic) = 0 y[1] (numeric) = 1.9318539372243698374512677848603 absolute error = 1.9318539372243698374512677848603 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1663.2MB, alloc=4.5MB, time=166.80 Complex estimate of poles used Radius of convergence = 4.216 Order of pole = 1.53 x[1] = 2.081 y[1] (analytic) = 0 y[1] (numeric) = 1.9328445046780033771746380634223 absolute error = 1.9328445046780033771746380634223 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.217 Order of pole = 1.53 x[1] = 2.082 y[1] (analytic) = 0 y[1] (numeric) = 1.9338350791450263473566369760074 absolute error = 1.9338350791450263473566369760074 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.218 Order of pole = 1.53 x[1] = 2.083 y[1] (analytic) = 0 y[1] (numeric) = 1.9348256606192707914627174815341 absolute error = 1.9348256606192707914627174815341 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.219 Order of pole = 1.529 x[1] = 2.084 y[1] (analytic) = 0 y[1] (numeric) = 1.9358162490945751369128418694945 absolute error = 1.9358162490945751369128418694945 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.22 Order of pole = 1.529 memory used=1667.0MB, alloc=4.5MB, time=167.17 x[1] = 2.085 y[1] (analytic) = 0 y[1] (numeric) = 1.93680684456478418736752256471 absolute error = 1.93680684456478418736752256471 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.221 Order of pole = 1.529 x[1] = 2.086 y[1] (analytic) = 0 y[1] (numeric) = 1.9377974470237491150246380588231 absolute error = 1.9377974470237491150246380588231 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.222 Order of pole = 1.529 x[1] = 2.087 y[1] (analytic) = 0 y[1] (numeric) = 1.9387880564653274529270067513082 absolute error = 1.9387880564653274529270067513082 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.223 Order of pole = 1.528 x[1] = 2.088 y[1] (analytic) = 0 y[1] (numeric) = 1.9397786728833830872807015139339 absolute error = 1.9397786728833830872807015139339 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.224 Order of pole = 1.528 x[1] = 2.089 y[1] (analytic) = 0 y[1] (numeric) = 1.9407692962717862497840878236916 absolute error = 1.9407692962717862497840878236916 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1670.9MB, alloc=4.5MB, time=167.56 Complex estimate of poles used Radius of convergence = 4.225 Order of pole = 1.528 x[1] = 2.09 y[1] (analytic) = 0 y[1] (numeric) = 1.9417599266244135099675683402293 absolute error = 1.9417599266244135099675683402293 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.226 Order of pole = 1.528 x[1] = 2.091 y[1] (analytic) = 0 y[1] (numeric) = 1.9427505639351477675440168347863 absolute error = 1.9427505639351477675440168347863 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.227 Order of pole = 1.528 x[1] = 2.092 y[1] (analytic) = 0 y[1] (numeric) = 1.9437412081978782447698844085213 absolute error = 1.9437412081978782447698844085213 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.228 Order of pole = 1.527 x[1] = 2.093 y[1] (analytic) = 0 y[1] (numeric) = 1.9447318594065004788169609689608 absolute error = 1.9447318594065004788169609689608 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.229 Order of pole = 1.527 x[1] = 2.094 y[1] (analytic) = 0 y[1] (numeric) = 1.9457225175549163141547749640632 absolute error = 1.9457225175549163141547749640632 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1674.7MB, alloc=4.5MB, time=167.95 Complex estimate of poles used Radius of convergence = 4.23 Order of pole = 1.527 x[1] = 2.095 y[1] (analytic) = 0 y[1] (numeric) = 1.9467131826370338949436144041051 absolute error = 1.9467131826370338949436144041051 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.231 Order of pole = 1.527 x[1] = 2.096 y[1] (analytic) = 0 y[1] (numeric) = 1.9477038546467676574381522322413 absolute error = 1.9477038546467676574381522322413 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.232 Order of pole = 1.526 x[1] = 2.097 y[1] (analytic) = 0 y[1] (numeric) = 1.9486945335780383224016591351742 absolute error = 1.9486945335780383224016591351742 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.233 Order of pole = 1.526 x[1] = 2.098 y[1] (analytic) = 0 y[1] (numeric) = 1.9496852194247728875307869158913 absolute error = 1.9496852194247728875307869158913 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1678.5MB, alloc=4.5MB, time=168.33 Complex estimate of poles used Radius of convergence = 4.234 Order of pole = 1.526 x[1] = 2.099 y[1] (analytic) = 0 y[1] (numeric) = 1.9506759121809046198909055808899 absolute error = 1.9506759121809046198909055808899 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.235 Order of pole = 1.526 x[1] = 2.1 y[1] (analytic) = 0 y[1] (numeric) = 1.9516666118403730483619773247069 absolute error = 1.9516666118403730483619773247069 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.236 Order of pole = 1.526 x[1] = 2.101 y[1] (analytic) = 0 y[1] (numeric) = 1.9526573183971239560949506249091 absolute error = 1.9526573183971239560949506249091 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.237 Order of pole = 1.525 x[1] = 2.102 y[1] (analytic) = 0 y[1] (numeric) = 1.9536480318451093729786576909755 absolute error = 1.9536480318451093729786576909755 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.238 Order of pole = 1.525 x[1] = 2.103 y[1] (analytic) = 0 y[1] (numeric) = 1.9546387521782875681171985407183 absolute error = 1.9546387521782875681171985407183 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1682.3MB, alloc=4.5MB, time=168.71 Complex estimate of poles used Radius of convergence = 4.239 Order of pole = 1.525 x[1] = 2.104 y[1] (analytic) = 0 y[1] (numeric) = 1.9556294793906230423177950080421 absolute error = 1.9556294793906230423177950080421 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.24 Order of pole = 1.525 x[1] = 2.105 y[1] (analytic) = 0 y[1] (numeric) = 1.9566202134760865205890980159349 absolute error = 1.9566202134760865205890980159349 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.241 Order of pole = 1.524 x[1] = 2.106 y[1] (analytic) = 0 y[1] (numeric) = 1.9576109544286549446499314786155 absolute error = 1.9576109544286549446499314786155 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.242 Order of pole = 1.524 x[1] = 2.107 y[1] (analytic) = 0 y[1] (numeric) = 1.9586017022423114654484562267335 absolute error = 1.9586017022423114654484562267335 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1686.1MB, alloc=4.5MB, time=169.09 Complex estimate of poles used Radius of convergence = 4.243 Order of pole = 1.524 x[1] = 2.108 y[1] (analytic) = 0 y[1] (numeric) = 1.9595924569110454356917373794293 absolute error = 1.9595924569110454356917373794293 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.244 Order of pole = 1.524 x[1] = 2.109 y[1] (analytic) = 0 y[1] (numeric) = 1.9605832184288524023856986169109 absolute error = 1.9605832184288524023856986169109 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.245 Order of pole = 1.524 x[1] = 2.11 y[1] (analytic) = 0 y[1] (numeric) = 1.9615739867897340993854468369956 absolute error = 1.9615739867897340993854468369956 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.246 Order of pole = 1.523 x[1] = 2.111 y[1] (analytic) = 0 y[1] (numeric) = 1.9625647619876984399559507087937 absolute error = 1.9625647619876984399559507087937 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.247 Order of pole = 1.523 x[1] = 2.112 y[1] (analytic) = 0 y[1] (numeric) = 1.9635555440167595093430566663814 absolute error = 1.9635555440167595093430566663814 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1689.9MB, alloc=4.5MB, time=169.48 Complex estimate of poles used Radius of convergence = 4.248 Order of pole = 1.523 x[1] = 2.113 y[1] (analytic) = 0 y[1] (numeric) = 1.964546332870937557354825914921 absolute error = 1.964546332870937557354825914921 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.249 Order of pole = 1.523 x[1] = 2.114 y[1] (analytic) = 0 y[1] (numeric) = 1.9655371285442589909531760512353 absolute error = 1.9655371285442589909531760512353 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.25 Order of pole = 1.522 x[1] = 2.115 y[1] (analytic) = 0 y[1] (numeric) = 1.9665279310307563668558109303358 absolute error = 1.9665279310307563668558109303358 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.251 Order of pole = 1.522 x[1] = 2.116 y[1] (analytic) = 0 y[1] (numeric) = 1.9675187403244683841484224388335 absolute error = 1.9675187403244683841484224388335 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.252 Order of pole = 1.522 memory used=1693.7MB, alloc=4.5MB, time=169.86 x[1] = 2.117 y[1] (analytic) = 0 y[1] (numeric) = 1.9685095564194398769071478655353 absolute error = 1.9685095564194398769071478655353 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.253 Order of pole = 1.522 x[1] = 2.118 y[1] (analytic) = 0 y[1] (numeric) = 1.9695003793097218068312665888394 absolute error = 1.9695003793097218068312665888394 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.254 Order of pole = 1.522 x[1] = 2.119 y[1] (analytic) = 0 y[1] (numeric) = 1.9704912089893712558861198297987 absolute error = 1.9704912089893712558861198297987 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.255 Order of pole = 1.521 x[1] = 2.12 y[1] (analytic) = 0 y[1] (numeric) = 1.971482045452451418956237248915 absolute error = 1.971482045452451418956237248915 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.256 Order of pole = 1.521 x[1] = 2.121 y[1] (analytic) = 0 y[1] (numeric) = 1.9724728886930315965086541938628 absolute error = 1.9724728886930315965086541938628 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1697.6MB, alloc=4.5MB, time=170.24 Complex estimate of poles used Radius of convergence = 4.257 Order of pole = 1.521 x[1] = 2.122 y[1] (analytic) = 0 y[1] (numeric) = 1.9734637387051871872664034344196 absolute error = 1.9734637387051871872664034344196 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.258 Order of pole = 1.521 x[1] = 2.123 y[1] (analytic) = 0 y[1] (numeric) = 1.9744545954829996808921652498965 absolute error = 1.9744545954829996808921652498965 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.259 Order of pole = 1.52 x[1] = 2.124 y[1] (analytic) = 0 y[1] (numeric) = 1.9754454590205566506820597633258 absolute error = 1.9754454590205566506820597633258 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.261 Order of pole = 1.52 x[1] = 2.125 y[1] (analytic) = 0 y[1] (numeric) = 1.9764363293119517462695654455619 absolute error = 1.9764363293119517462695654455619 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.262 Order of pole = 1.52 x[1] = 2.126 y[1] (analytic) = 0 y[1] (numeric) = 1.9774272063512846863395477412974 absolute error = 1.9774272063512846863395477412974 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1701.4MB, alloc=4.5MB, time=170.63 Complex estimate of poles used Radius of convergence = 4.263 Order of pole = 1.52 x[1] = 2.127 y[1] (analytic) = 0 y[1] (numeric) = 1.9784180901326612513523817977816 absolute error = 1.9784180901326612513523817977816 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.264 Order of pole = 1.52 x[1] = 2.128 y[1] (analytic) = 0 y[1] (numeric) = 1.979408980650193276278153305756 absolute error = 1.979408980650193276278153305756 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.265 Order of pole = 1.519 x[1] = 2.129 y[1] (analytic) = 0 y[1] (numeric) = 1.9803998778979986433409214907929 absolute error = 1.9803998778979986433409214907929 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.266 Order of pole = 1.519 x[1] = 2.13 y[1] (analytic) = 0 y[1] (numeric) = 1.981390781870201274773028321835 absolute error = 1.981390781870201274773028321835 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1705.2MB, alloc=4.5MB, time=171.02 Complex estimate of poles used Radius of convergence = 4.267 Order of pole = 1.519 x[1] = 2.131 y[1] (analytic) = 0 y[1] (numeric) = 1.982381692560931125579438032289 absolute error = 1.982381692560931125579438032289 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.268 Order of pole = 1.519 x[1] = 2.132 y[1] (analytic) = 0 y[1] (numeric) = 1.9833726099643241763120910775241 absolute error = 1.9833726099643241763120910775241 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.269 Order of pole = 1.518 x[1] = 2.133 y[1] (analytic) = 0 y[1] (numeric) = 1.9843635340745224258542566810672 absolute error = 1.9843635340745224258542566810672 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.27 Order of pole = 1.518 x[1] = 2.134 y[1] (analytic) = 0 y[1] (numeric) = 1.9853544648856738842148681501691 absolute error = 1.9853544648856738842148681501691 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.271 Order of pole = 1.518 x[1] = 2.135 y[1] (analytic) = 0 y[1] (numeric) = 1.9863454023919325653328251697436 absolute error = 1.9863454023919325653328251697436 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1709.0MB, alloc=4.5MB, time=171.40 Complex estimate of poles used Radius of convergence = 4.272 Order of pole = 1.518 x[1] = 2.136 y[1] (analytic) = 0 y[1] (numeric) = 1.9873363465874584798912473119494 absolute error = 1.9873363465874584798912473119494 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.273 Order of pole = 1.517 x[1] = 2.137 y[1] (analytic) = 0 y[1] (numeric) = 1.9883272974664176281416630268989 absolute error = 1.9883272974664176281416630268989 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.274 Order of pole = 1.517 x[1] = 2.138 y[1] (analytic) = 0 y[1] (numeric) = 1.9893182550229819927381184081338 absolute error = 1.9893182550229819927381184081338 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.275 Order of pole = 1.517 x[1] = 2.139 y[1] (analytic) = 0 y[1] (numeric) = 1.9903092192513295315811900546064 absolute error = 1.9903092192513295315811900546064 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1712.8MB, alloc=4.5MB, time=171.78 Complex estimate of poles used Radius of convergence = 4.276 Order of pole = 1.517 x[1] = 2.14 y[1] (analytic) = 0 y[1] (numeric) = 1.9913001901456441706718863789498 absolute error = 1.9913001901456441706718863789498 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.277 Order of pole = 1.517 x[1] = 2.141 y[1] (analytic) = 0 y[1] (numeric) = 1.9922911677001157969754217398071 absolute error = 1.9922911677001157969754217398071 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.278 Order of pole = 1.516 x[1] = 2.142 y[1] (analytic) = 0 y[1] (numeric) = 1.99328215190894025129484780392 absolute error = 1.99328215190894025129484780392 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.279 Order of pole = 1.516 x[1] = 2.143 y[1] (analytic) = 0 y[1] (numeric) = 1.9942731427663193211545265715533 absolute error = 1.9942731427663193211545265715533 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.28 Order of pole = 1.516 x[1] = 2.144 y[1] (analytic) = 0 y[1] (numeric) = 1.9952641402664607336934295266503 absolute error = 1.9952641402664607336934295266503 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1716.6MB, alloc=4.5MB, time=172.16 Complex estimate of poles used Radius of convergence = 4.281 Order of pole = 1.516 x[1] = 2.145 y[1] (analytic) = 0 y[1] (numeric) = 1.996255144403578148568247400878 absolute error = 1.996255144403578148568247400878 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.282 Order of pole = 1.515 x[1] = 2.146 y[1] (analytic) = 0 y[1] (numeric) = 1.9972461551718911508662950684282 absolute error = 1.9972461551718911508662950684282 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.283 Order of pole = 1.515 x[1] = 2.147 y[1] (analytic) = 0 y[1] (numeric) = 1.9982371725656252440281961160938 absolute error = 1.9982371725656252440281961160938 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.284 Order of pole = 1.515 x[1] = 2.148 y[1] (analytic) = 0 y[1] (numeric) = 1.9992281965790118427803316607357 absolute error = 1.9992281965790118427803316607357 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.285 Order of pole = 1.515 memory used=1720.4MB, alloc=4.5MB, time=172.54 x[1] = 2.149 y[1] (analytic) = 0 y[1] (numeric) = 2.0002192272062882660770380137984 absolute error = 2.0002192272062882660770380137984 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.286 Order of pole = 1.515 x[1] = 2.15 y[1] (analytic) = 0 y[1] (numeric) = 2.0012102644416977300525378200187 absolute error = 2.0012102644416977300525378200187 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.287 Order of pole = 1.514 x[1] = 2.151 y[1] (analytic) = 0 y[1] (numeric) = 2.0022013082794893409825893249028 absolute error = 2.0022013082794893409825893249028 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.288 Order of pole = 1.514 x[1] = 2.152 y[1] (analytic) = 0 y[1] (numeric) = 2.0031923587139180882558384529252 absolute error = 2.0031923587139180882558384529252 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.289 Order of pole = 1.514 x[1] = 2.153 y[1] (analytic) = 0 y[1] (numeric) = 2.0041834157392448373548584057241 absolute error = 2.0041834157392448373548584057241 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1724.3MB, alloc=4.5MB, time=172.93 Complex estimate of poles used Radius of convergence = 4.29 Order of pole = 1.514 x[1] = 2.154 y[1] (analytic) = 0 y[1] (numeric) = 2.0051744793497363228468615168356 absolute error = 2.0051744793497363228468615168356 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.291 Order of pole = 1.513 x[1] = 2.155 y[1] (analytic) = 0 y[1] (numeric) = 2.0061655495396651413840681267216 absolute error = 2.0061655495396651413840681267216 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.292 Order of pole = 1.513 x[1] = 2.156 y[1] (analytic) = 0 y[1] (numeric) = 2.0071566263033097447137172690056 absolute error = 2.0071566263033097447137172690056 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.293 Order of pole = 1.513 x[1] = 2.157 y[1] (analytic) = 0 y[1] (numeric) = 2.008147709634954432697703985934 absolute error = 2.008147709634954432697703985934 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.294 Order of pole = 1.513 x[1] = 2.158 y[1] (analytic) = 0 y[1] (numeric) = 2.0091387995288893463418281181311 absolute error = 2.0091387995288893463418281181311 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1728.1MB, alloc=4.5MB, time=173.31 Complex estimate of poles used Radius of convergence = 4.295 Order of pole = 1.513 x[1] = 2.159 y[1] (analytic) = 0 y[1] (numeric) = 2.0101298959794104608346394407125 absolute error = 2.0101298959794104608346394407125 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.296 Order of pole = 1.512 x[1] = 2.16 y[1] (analytic) = 0 y[1] (numeric) = 2.011120998980819578595864044763 absolute error = 2.011120998980819578595864044763 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.297 Order of pole = 1.512 x[1] = 2.161 y[1] (analytic) = 0 y[1] (numeric) = 2.0121121085274243223343968900737 absolute error = 2.0121121085274243223343968900737 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.298 Order of pole = 1.512 x[1] = 2.162 y[1] (analytic) = 0 y[1] (numeric) = 2.0131032246135381281158454818687 absolute error = 2.0131032246135381281158454818687 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1731.9MB, alloc=4.5MB, time=173.69 Complex estimate of poles used Radius of convergence = 4.299 Order of pole = 1.512 x[1] = 2.163 y[1] (analytic) = 0 y[1] (numeric) = 2.0140943472334802384396096510318 absolute error = 2.0140943472334802384396096510318 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.3 Order of pole = 1.511 x[1] = 2.164 y[1] (analytic) = 0 y[1] (numeric) = 2.015085476381575695325482444072 absolute error = 2.015085476381575695325482444072 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.301 Order of pole = 1.511 x[1] = 2.165 y[1] (analytic) = 0 y[1] (numeric) = 2.016076612052155333409757155741 absolute error = 2.016076612052155333409757155741 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.302 Order of pole = 1.511 x[1] = 2.166 y[1] (analytic) = 0 y[1] (numeric) = 2.0170677542395557730508255638379 absolute error = 2.0170677542395557730508255638379 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.303 Order of pole = 1.511 x[1] = 2.167 y[1] (analytic) = 0 y[1] (numeric) = 2.0180589029381194134442524523027 absolute error = 2.0180589029381194134442524523027 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1735.7MB, alloc=4.5MB, time=174.07 Complex estimate of poles used Radius of convergence = 4.304 Order of pole = 1.51 x[1] = 2.168 y[1] (analytic) = 0 y[1] (numeric) = 2.0190500581421944257473115352178 absolute error = 2.0190500581421944257473115352178 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.305 Order of pole = 1.51 x[1] = 2.169 y[1] (analytic) = 0 y[1] (numeric) = 2.0200412198461347462129679207973 absolute error = 2.0200412198461347462129679207973 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.306 Order of pole = 1.51 x[1] = 2.17 y[1] (analytic) = 0 y[1] (numeric) = 2.0210323880443000693332922808548 absolute error = 2.0210323880443000693332922808548 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.307 Order of pole = 1.51 x[1] = 2.171 y[1] (analytic) = 0 y[1] (numeric) = 2.0220235627310558409922919175969 absolute error = 2.0220235627310558409922919175969 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1739.5MB, alloc=4.5MB, time=174.46 Complex estimate of poles used Radius of convergence = 4.308 Order of pole = 1.51 x[1] = 2.172 y[1] (analytic) = 0 y[1] (numeric) = 2.0230147439007732516281439458948 absolute error = 2.0230147439007732516281439458948 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.309 Order of pole = 1.509 x[1] = 2.173 y[1] (analytic) = 0 y[1] (numeric) = 2.0240059315478292294048158354375 absolute error = 2.0240059315478292294048158354375 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.31 Order of pole = 1.509 x[1] = 2.174 y[1] (analytic) = 0 y[1] (numeric) = 2.0249971256666064333930585833719 absolute error = 2.0249971256666064333930585833719 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.311 Order of pole = 1.509 x[1] = 2.175 y[1] (analytic) = 0 y[1] (numeric) = 2.025988326251493246760757814182 absolute error = 2.025988326251493246760757814182 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.312 Order of pole = 1.509 x[1] = 2.176 y[1] (analytic) = 0 y[1] (numeric) = 2.0269795332968837699726281296542 absolute error = 2.0269795332968837699726281296542 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1743.3MB, alloc=4.5MB, time=174.83 Complex estimate of poles used Radius of convergence = 4.313 Order of pole = 1.508 x[1] = 2.177 y[1] (analytic) = 0 y[1] (numeric) = 2.0279707467971778139992360578224 absolute error = 2.0279707467971778139992360578224 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.314 Order of pole = 1.508 x[1] = 2.178 y[1] (analytic) = 0 y[1] (numeric) = 2.0289619667467808935353369757759 absolute error = 2.0289619667467808935353369757759 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.315 Order of pole = 1.508 x[1] = 2.179 y[1] (analytic) = 0 y[1] (numeric) = 2.0299531931401042202275114071557 absolute error = 2.0299531931401042202275114071557 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.316 Order of pole = 1.508 x[1] = 2.18 y[1] (analytic) = 0 y[1] (numeric) = 2.0309444259715646959110861210519 absolute error = 2.0309444259715646959110861210519 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.317 Order of pole = 1.508 x[1] = 2.181 y[1] (analytic) = 0 y[1] (numeric) = 2.0319356652355849058563254848546 absolute error = 2.0319356652355849058563254848546 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1747.1MB, alloc=4.5MB, time=175.21 Complex estimate of poles used Radius of convergence = 4.318 Order of pole = 1.507 x[1] = 2.182 y[1] (analytic) = 0 y[1] (numeric) = 2.0329269109265931120238785493945 absolute error = 2.0329269109265931120238785493945 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.319 Order of pole = 1.507 x[1] = 2.183 y[1] (analytic) = 0 y[1] (numeric) = 2.0339181630390232463294673704462 absolute error = 2.0339181630390232463294673704462 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.32 Order of pole = 1.507 x[1] = 2.184 y[1] (analytic) = 0 y[1] (numeric) = 2.0349094215673149039178020963495 absolute error = 2.0349094215673149039178020963495 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.321 Order of pole = 1.507 x[1] = 2.185 y[1] (analytic) = 0 y[1] (numeric) = 2.0359006865059133364457083771379 absolute error = 2.0359006865059133364457083771379 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1751.0MB, alloc=4.5MB, time=175.60 Complex estimate of poles used Radius of convergence = 4.322 Order of pole = 1.506 x[1] = 2.186 y[1] (analytic) = 0 y[1] (numeric) = 2.0368919578492694453744526761455 absolute error = 2.0368919578492694453744526761455 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.323 Order of pole = 1.506 x[1] = 2.187 y[1] (analytic) = 0 y[1] (numeric) = 2.0378832355918397752712510905933 absolute error = 2.0378832355918397752712510905933 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.324 Order of pole = 1.506 x[1] = 2.188 y[1] (analytic) = 0 y[1] (numeric) = 2.0388745197280865071199473131378 absolute error = 2.0388745197280865071199473131378 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.325 Order of pole = 1.506 x[1] = 2.189 y[1] (analytic) = 0 y[1] (numeric) = 2.0398658102524774516408453917944 absolute error = 2.0398658102524774516408453917944 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.326 Order of pole = 1.505 x[1] = 2.19 y[1] (analytic) = 0 y[1] (numeric) = 2.040857107159486042619682971027 absolute error = 2.040857107159486042619682971027 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1754.8MB, alloc=4.5MB, time=175.98 Complex estimate of poles used Radius of convergence = 4.327 Order of pole = 1.505 x[1] = 2.191 y[1] (analytic) = 0 y[1] (numeric) = 2.0418484104435913302457307221254 absolute error = 2.0418484104435913302457307221254 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.328 Order of pole = 1.505 x[1] = 2.192 y[1] (analytic) = 0 y[1] (numeric) = 2.0428397200992779744590036962696 absolute error = 2.0428397200992779744590036962696 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.329 Order of pole = 1.505 x[1] = 2.193 y[1] (analytic) = 0 y[1] (numeric) = 2.0438310361210362383065703589109 absolute error = 2.0438310361210362383065703589109 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.33 Order of pole = 1.505 x[1] = 2.194 y[1] (analytic) = 0 y[1] (numeric) = 2.0448223585033619813079450892769 absolute error = 2.0448223585033619813079450892769 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1758.6MB, alloc=4.5MB, time=176.37 Complex estimate of poles used Radius of convergence = 4.331 Order of pole = 1.504 x[1] = 2.195 y[1] (analytic) = 0 y[1] (numeric) = 2.0458136872407566528295499539371 absolute error = 2.0458136872407566528295499539371 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.332 Order of pole = 1.504 x[1] = 2.196 y[1] (analytic) = 0 y[1] (numeric) = 2.0468050223277272854682315884452 absolute error = 2.0468050223277272854682315884452 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.333 Order of pole = 1.504 x[1] = 2.197 y[1] (analytic) = 0 y[1] (numeric) = 2.0477963637587864884438190461037 absolute error = 2.0477963637587864884438190461037 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.334 Order of pole = 1.504 x[1] = 2.198 y[1] (analytic) = 0 y[1] (numeric) = 2.0487877115284524410007084978756 absolute error = 2.0487877115284524410007084978756 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.335 Order of pole = 1.503 x[1] = 2.199 y[1] (analytic) = 0 y[1] (numeric) = 2.0497790656312488858184606923997 absolute error = 2.0497790656312488858184606923997 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1762.4MB, alloc=4.5MB, time=176.75 Complex estimate of poles used Radius of convergence = 4.336 Order of pole = 1.503 x[1] = 2.2 y[1] (analytic) = 0 y[1] (numeric) = 2.0507704260617051224313971099471 absolute error = 2.0507704260617051224313971099471 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.337 Order of pole = 1.503 x[1] = 2.201 y[1] (analytic) = 0 y[1] (numeric) = 2.0517617928143560006571807689866 absolute error = 2.0517617928143560006571807689866 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.338 Order of pole = 1.503 x[1] = 2.202 y[1] (analytic) = 0 y[1] (numeric) = 2.0527531658837419140343676688126 absolute error = 2.0527531658837419140343676688126 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.339 Order of pole = 1.503 x[1] = 2.203 y[1] (analytic) = 0 y[1] (numeric) = 2.0537445452644087932689148764205 absolute error = 2.0537445452644087932689148764205 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1766.2MB, alloc=4.5MB, time=177.14 Complex estimate of poles used Radius of convergence = 4.34 Order of pole = 1.502 x[1] = 2.204 y[1] (analytic) = 0 y[1] (numeric) = 2.0547359309509080996896312905002 absolute error = 2.0547359309509080996896312905002 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.341 Order of pole = 1.502 x[1] = 2.205 y[1] (analytic) = 0 y[1] (numeric) = 2.0557273229377968187125571400553 absolute error = 2.0557273229377968187125571400553 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.342 Order of pole = 1.502 x[1] = 2.206 y[1] (analytic) = 0 y[1] (numeric) = 2.0567187212196374533142582997418 absolute error = 2.0567187212196374533142582997418 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.343 Order of pole = 1.502 x[1] = 2.207 y[1] (analytic) = 0 y[1] (numeric) = 2.0577101257909980175140215285594 absolute error = 2.0577101257909980175140215285594 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.344 Order of pole = 1.501 x[1] = 2.208 y[1] (analytic) = 0 y[1] (numeric) = 2.0587015366464520298649367630199 absolute error = 2.0587015366464520298649367630199 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1770.0MB, alloc=4.5MB, time=177.53 Complex estimate of poles used Radius of convergence = 4.345 Order of pole = 1.501 x[1] = 2.209 y[1] (analytic) = 0 y[1] (numeric) = 2.0596929537805785069538526203568 absolute error = 2.0596929537805785069538526203568 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.346 Order of pole = 1.501 x[1] = 2.21 y[1] (analytic) = 0 y[1] (numeric) = 2.0606843771879619569101912917368 absolute error = 2.0606843771879619569101912917368 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.347 Order of pole = 1.501 x[1] = 2.211 y[1] (analytic) = 0 y[1] (numeric) = 2.0616758068631923729236090297775 absolute error = 2.0616758068631923729236090297775 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.348 Order of pole = 1.5 x[1] = 2.212 y[1] (analytic) = 0 y[1] (numeric) = 2.0626672428008652267704884589738 absolute error = 2.0626672428008652267704884589738 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.349 Order of pole = 1.5 x[1] = 2.213 y[1] (analytic) = 0 y[1] (numeric) = 2.0636586849955814623492489618849 absolute error = 2.0636586849955814623492489618849 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1773.9MB, alloc=4.5MB, time=177.94 Complex estimate of poles used Radius of convergence = 4.35 Order of pole = 1.5 x[1] = 2.214 y[1] (analytic) = 0 y[1] (numeric) = 2.0646501334419474892244614181362 absolute error = 2.0646501334419474892244614181362 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.351 Order of pole = 1.5 x[1] = 2.215 y[1] (analytic) = 0 y[1] (numeric) = 2.0656415881345751761797535974433 absolute error = 2.0656415881345751761797535974433 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.352 Order of pole = 1.5 x[1] = 2.216 y[1] (analytic) = 0 y[1] (numeric) = 2.0666330490680818447794925319726 absolute error = 2.0666330490680818447794925319726 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.353 Order of pole = 1.499 x[1] = 2.217 y[1] (analytic) = 0 y[1] (numeric) = 2.0676245162370902629392302174115 absolute error = 2.0676245162370902629392302174115 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1777.7MB, alloc=4.5MB, time=178.36 Complex estimate of poles used Radius of convergence = 4.354 Order of pole = 1.499 x[1] = 2.218 y[1] (analytic) = 0 y[1] (numeric) = 2.0686159896362286385048990161321 absolute error = 2.0686159896362286385048990161321 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.355 Order of pole = 1.499 x[1] = 2.219 y[1] (analytic) = 0 y[1] (numeric) = 2.069607469260130612840743159798 absolute error = 2.069607469260130612840743159798 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.356 Order of pole = 1.499 x[1] = 2.22 y[1] (analytic) = 0 y[1] (numeric) = 2.0705989551034352544259727726783 absolute error = 2.0705989551034352544259727726783 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.357 Order of pole = 1.498 x[1] = 2.221 y[1] (analytic) = 0 y[1] (numeric) = 2.0715904471607870524601268608048 absolute error = 2.0715904471607870524601268608048 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.358 Order of pole = 1.498 x[1] = 2.222 y[1] (analytic) = 0 y[1] (numeric) = 2.0725819454268359104771317359302 absolute error = 2.0725819454268359104771317359302 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1781.5MB, alloc=4.5MB, time=178.78 Complex estimate of poles used Radius of convergence = 4.359 Order of pole = 1.498 x[1] = 2.223 y[1] (analytic) = 0 y[1] (numeric) = 2.0735734498962371399680413670205 absolute error = 2.0735734498962371399680413670205 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.36 Order of pole = 1.498 x[1] = 2.224 y[1] (analytic) = 0 y[1] (numeric) = 2.0745649605636514540124461757453 absolute error = 2.0745649605636514540124461757453 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.361 Order of pole = 1.497 x[1] = 2.225 y[1] (analytic) = 0 y[1] (numeric) = 2.0755564774237449609185368161101 absolute error = 2.0755564774237449609185368161101 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.362 Order of pole = 1.497 x[1] = 2.226 y[1] (analytic) = 0 y[1] (numeric) = 2.0765480004711891578718095020123 absolute error = 2.0765480004711891578718095020123 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1785.3MB, alloc=4.5MB, time=179.19 Complex estimate of poles used Radius of convergence = 4.363 Order of pole = 1.497 x[1] = 2.227 y[1] (analytic) = 0 y[1] (numeric) = 2.0775395297006609245923994700905 absolute error = 2.0775395297006609245923994700905 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.364 Order of pole = 1.497 x[1] = 2.228 y[1] (analytic) = 0 y[1] (numeric) = 2.0785310651068425170010291887802 absolute error = 2.0785310651068425170010291887802 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.365 Order of pole = 1.497 x[1] = 2.229 y[1] (analytic) = 0 y[1] (numeric) = 2.0795226066844215608935579479852 absolute error = 2.0795226066844215608935579479852 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.366 Order of pole = 1.496 x[1] = 2.23 y[1] (analytic) = 0 y[1] (numeric) = 2.080514154428091045624119487225 absolute error = 2.080514154428091045624119487225 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.367 Order of pole = 1.496 x[1] = 2.231 y[1] (analytic) = 0 y[1] (numeric) = 2.0815057083325493177968343435212 absolute error = 2.0815057083325493177968343435212 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop memory used=1789.1MB, alloc=4.5MB, time=179.60 Complex estimate of poles used Radius of convergence = 4.368 Order of pole = 1.496 x[1] = 2.232 y[1] (analytic) = 0 y[1] (numeric) = 2.0824972683925000749660836236468 absolute error = 2.0824972683925000749660836236468 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.369 Order of pole = 1.496 x[1] = 2.233 y[1] (analytic) = 0 y[1] (numeric) = 2.0834888346026523593453309286715 absolute error = 2.0834888346026523593453309286715 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.37 Order of pole = 1.495 x[1] = 2.234 y[1] (analytic) = 0 y[1] (numeric) = 2.0844804069577205515244791820052 absolute error = 2.0844804069577205515244791820052 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.371 Order of pole = 1.495 x[1] = 2.235 y[1] (analytic) = 0 y[1] (numeric) = 2.0854719854524243641957491353615 absolute error = 2.0854719854524243641957491353615 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.372 Order of pole = 1.495 memory used=1792.9MB, alloc=4.5MB, time=180.00 x[1] = 2.236 y[1] (analytic) = 0 y[1] (numeric) = 2.0864635700814888358880663502389 absolute error = 2.0864635700814888358880663502389 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.373 Order of pole = 1.495 x[1] = 2.237 y[1] (analytic) = 0 y[1] (numeric) = 2.0874551608396443247099434756463 absolute error = 2.0874551608396443247099434756463 relative error = -1 % Correct digits = -1 h = 0.001 TOP MAIN SOLVE Loop Complex estimate of poles used Radius of convergence = 4.374 Order of pole = 1.495 x[1] = 2.238 y[1] (analytic) = 0 y[1] (numeric) = 2.0884467577216265021008446658853 absolute error = 2.0884467577216265021008446658853 relative error = -1 % Correct digits = -1 h = 0.001 Finished! Maximum Time Reached before Solution Completed! diff ( y , x , 1 ) = tanh(sqrt(2.0*x + 3.0)); Iterations = 2138 Total Elapsed Time = 3 Minutes 0 Seconds Elapsed Time(since restart) = 2 Minutes 59 Seconds Expected Time Remaining = 3 Minutes 52 Seconds Optimized Time Remaining = 3 Minutes 52 Seconds Expected Total Time = 6 Minutes 52 Seconds Time to Timeout Unknown Percent Done = 43.65 % > quit memory used=1794.6MB, alloc=4.5MB, time=180.17